@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
    background-color: #141414;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0 !important;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0 !important;
    color: #0D1B14;
}
select{
    color: #858585;
}
ul,
li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

a,
a:hover {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s;
}
a:hover{
    color: #F48420;
}
img {
    max-width: 100%;
}

p {
    color: #0D1B14;
    font-size: 20px;
}

p:last-of-type {
    margin-bottom: 0 !important
}

button {
    cursor: pointer;
}
.overflow{
    overflow: hidden;
}


.custom-container {
    padding: 0px 200px;
}

.common-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.common-section {
    padding: 100px 0;

}

.common-btn {
    padding: 12px 24px;
    color: #fff;
    font-size: clamp(16px, 2.4vw, 18px);
    border: 2px solid transparent;
    background-color: #F48420;
    border-radius: 8px;
    font-weight: 500;
    align-items: center;
    text-transform: capitalize;
    transition: all 0.5s;
    display: inline-flex;
    border: 1px solid transparent;
}
.common-btn span{
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    background-color: #fff;
    transition: all 0.5s;
    margin-left: 8px;
}
.common-btn span svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.common-btn span svg path{
    stroke: #F48420;;
}
.common-btn:hover span svg path{
    stroke: #fff;
}
.common-btn:hover span{
    background-color: #F48420;
}


.common-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* header */

header {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    background: rgba(33, 33, 33, 0.60);
}

header .main-header .left-box a img {
    width: 120px;
}

nav.main-menu {
    display: flex;
    justify-content: center;
}

.right-box-header {
    display: flex;
    align-items: center;
    justify-content: end;
}

header .main-header .main-menu-ul .right-box-header a:hover {
    color: #fff;
}

header .color-logo,
.mobile-menu-close-box,
.mobile-menu-open-btn, header .right-box .contact-menu-box .common-btn {
    display: none;
}


/*  */
header .main-header .main-menu-ul li {
    position: relative;
}

header .main-header .main-menu-ul a:after {
    position: absolute;
    content: '';
    right: 0;
    width: 2px;
    height: 20px;
    background-color: #fff;
    top: 50%;
    border: none;
    transform: translateY(-50%) rotate(10deg);
}

header .main-header .main-menu-ul a:last-child a::after,
header .main-header .main-menu-ul.dropdown-menu a:after {
    content: none;
}

header .main-header .main-menu-ul.dropdown-menu ul li {
    width: 280px;
}

header .main-header .main-menu-ul li:last-child a::after {
    content: none;
}

header .main-header {
    grid-template-columns: 120px auto 200px;
    align-items: center;

}

header .main-header .main-menu-ul {

    display: flex;
    justify-content: end;
}

header .main-header .main-menu-ul a {
    display: flex;
    padding: 46px 20px;
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
}

header .main-header ul li:first-child a {
    padding-left: 0px;
}

header .main-header .main-menu-ul a:hover {
    color: #F48420;
}
header .main-header .main-menu-ul a:hover svg path{
    stroke: #F48420;
}

header .main-header .main-menu-ul li.active > a{
    color:  #F48420 !important;
}

header .main-header .main-menu-ul li.active > a svg path {
	stroke: #F48420;
}

.left-img-right-content-section .icons-box .common-box svg {
    width: 110px;
    height: 110px;
}

.left-content-right-img-section .icons-box .common-box svg {
    width: 110px;
    height: 110px;
}

header.shrink {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-animation-name: slideInDown;
    -moz-animation-name: slideInDown;
    -ms-animation-name: slideInDown;
    -o-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
}

@keyframes slideInDown {
    from {
        top: -100%;
        visibility: visible
    }

    to {
        top: 0
    }
}

@-webkit-keyframes slideInDown {
    from {
        top: -100%;
        visibility: visible
    }

    to {
        top: 0
    }
}

.menu-box {
    display: none;
}

.menu-box span {
    transition: all 500ms ease-in-out;
}
header .main-header .main-menu-ul a.dropdown-toggle {
    align-items: center;
}
.common-list-style li:last-child {
    margin-bottom: 0
}
.main-menu-ul li a.active, .banner-inner-section a.active{
    color: #F48420;
}


/* dropdown-menu */


.dropdown-menu {
    position: absolute;

}

.dropdown ul.main-menu-ul.dropdown-menu {
    background-color: rgb(0, 0, 0);
    border-radius: 0px 0px 12px 12px;
    border: none;
    width: 320px;
    display: none;
}

.dropdown ul.main-menu-ul.dropdown-menu a {
    padding: 10px;
}

.dropdown.open ul.main-menu-ul.dropdown-menu {
    display: block;
    /* opacity: 1; */
    /* left: 20%; */
}

.dropdown .dropdown-menu {
    display: none;
    /* opacity: 0; */
    /* transition:  0.3s ease; */
}
header .main-header .main-menu-ul .dropdown a.dropdown-toggle svg{
    width: 30px;
    height: 30px;
}
header .main-header .main-menu-ul .dropdown.open a.dropdown-toggle svg{
    transform: rotate(180deg);
    transition: all 0.5s;
}


/* banner-section */
.banner-section {
    position: relative;
    margin-top: -122px;
    overflow: hidden;
    width: 100%;
    height: 900px;
}

.banner-section::before, .banner-inner-section::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 20.83%, #000 100%);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.banner-section .banner-box {
    position: absolute;
    bottom: 60px;
    width: 40%;
    z-index: 2;
}

.banner-section .banner-box h1, .banner-inner-section .banner-inner-box h1 {
    /* font-size: 52px; */
    font-size: clamp(20px, 2.88vw, 52px);
    color: #fff;
    line-height: auto;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 32px !important;
}

.banner-section .banner-box .common-btn,
.services-section .tab-content .services-box .reach-box .common-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.banner-section .banner-box .common-btn:hover {
    background-color: #F48420;
    color: #fff;
    border: 1px solid transparent;
}
.banner-section .banner-box .common-btn:hover span svg path {
    stroke: #F48420;
}
.banner-section .banner-box .common-btn:hover span{
    background-color: #fff;
}
.banner-section .social-icon {
    position: absolute;
    left: 35px;
    bottom: 109px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.icon-box {
    padding: 13px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #fff;
    background-color: rgba(85, 85, 85, 0.50);
    transition: all 0.5s;
}

.icon-box:hover {
    background-color: #F48420;
    border-color: transparent;
}


/* aboust-us-section */
.about-section {
    background-color: #353535;
    overflow: hidden;
}
.center-title-box{
    text-align: center;
    margin-bottom: 50px !important;
}

.title-box , .center-title-box {
    /* font-size: 22px; */
    font-size: clamp(16px, 1.90vw, 22px);
    color: #F48420;
    font-weight: 500;

    transition: all 0.5s;
}

.title-box h2, .center-title-box h2 {
    font-size: clamp(22px, 2.20vw, 40px);
    /* font-size: 40px; */
    font-weight: 500;
    color: #fff;
    line-height: auto;
    margin-bottom: 24px !important;
    transition: all 0.5s;
}
.center-title-box h2{
    margin-bottom: 0px  !important;
}
.title-box p, .center-title-box p{
    font-size: 18PX;
    color: #fff;
    font-weight: 300;
    line-height: 35PX;
    margin-bottom: 16PX;
}
.about-section .right-box p {
    color: #fff;
    font-size: 18px;
    line-height: 35px;
}

.about-section .top-section {
    margin-bottom: 50px;
}

.about-section .bottom-section .common-grid {
    grid-template-columns: auto 350px;
}

.about-section .bottom-section .left-box img {
    border-radius: 12px;
}

.about-section .bottom-section .right-box {
    background-color: #212121;
    padding: 52px 65px;
    border-radius: 12px;
}

.about-section .bottom-section .right-box .common-box {
    border-bottom: 1px solid #7A7A7A;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.about-section .bottom-section .common-box:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.about-section .bottom-section .right-box .common-box h2 {
    color: #fff;
    /* font-size: 40px; */
    font-size: clamp(22px, 2.20vw, 40px);
    font-weight: 600;
    line-height: auto !important;
}
.about-section .bottom-section .right-box .common-box .count{
    display: flex;
    align-items: center;
}
.about-section .bottom-section .right-box .common-box span {
    /* font-size: 40px; */
    font-size: clamp(22px, 2.20vw, 40px);
    font-weight: 600;
    color: #F48420;

}

.about-section .bottom-section .right-box .common-box p {
    font-size: 22px;
    font-weight: 500;
    color: #F48420;
    line-height: auto !important;
}

/* services-section */
.services-section {
    background-color: #141414;
    overflow: hidden;
}

.services-section .center-title-box .tabs, .tabing-one-section .tabs{
    display: inline-flex;
    padding: 0px;
    width: 580px;
    justify-content: space-around;
    background-color: #353535;
    border-radius: 12px;
    margin-top: 40px;
}

.services-section .tabs .tab-box, .tabing-section .tabs a, .tabing-section .resp-tabs-list li, .tabing-one-section .tabs a {
    padding: 26px 0px 23px 0px;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    border: none;
    border-bottom: 3px solid transparent;
}
.services-section .tabs a.tab-box.active,  .tabing-section .tabs .tab-box-1.active, .tabing-section .resp-tabs-list li.resp-tab-active, .tabing-one-section .tabs .tab-box-1.active {
    border-bottom: 3px solid #F48420;
    color: #F48420;
}

/* tabing-one   */
.services-section .tab-content .services-box .common-box {
    border-bottom: 1px solid #626262;
    margin-bottom: 28px;
    transition: all 0.5s;
    overflow: hidden;
}

.services-section .tab-content .services-box .common-box .img-box , .tabing-section .tab-container .tab-content .common-box .img-box, .resp-tabs-container  .common-box .img-box ,.img-section .img-box {
    overflow: hidden;
    border-radius: 12px;
}


.services-section .tab-content .services-box .common-box:hover span {
    display: block;
    background-color: #F48420;
}
.services-section .tab-content .services-box .common-box:hover span svg path{
    stroke: #fff;
}

.services-section .tab-content .services-box .common-box:hover a.title p {
    color: #F48420;
}

.services-section .tab-content .services-box .common-box .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-section .tab-content .services-box .common-box span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    background-color: #fff;
    display: none;
    transition: all 0.5s;
}

.services-section .tab-content .services-box .common-box span svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services-section .tab-content .services-box .common-box:last-child {
    margin-bottom: 0px;
}

.services-section .tab-content .common-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-section .tab-content .services-box .common-box a p {
    display: flex;
    padding: 8px 0px;
    color: #fff;
    font-size: 28px;
    transition: all 0.5s;

}

.services-section .tab-content .services-box .reach-box {
    padding: 58px 106px;
    text-align: center;
    background-color: #F48420;
    border-radius: 12px;
}

.services-section .tab-content .services-box .reach-box h4 {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 24px;
}

.services-section .tab-content .services-box .common-box img {
    border-radius: 12px;
}

.services-section .tab-container .tab-content {
    display: none;
    padding: 0px 28px;
}

.services-section .tab-container .tab-content.active {
    display: block;
}

.services-section .tab-content .services-box .reach-box .common-btn:hover {
    background-color: #141414;
    border-color: transparent;
}

/* protfolio-section */
.protfolio-section .common-grid {
    grid-template-columns: auto 230px;
}
.protfolio-section {
    overflow: hidden;
}
.protfolio-section .title-box h2,.protfolio-section .title-box{
    margin-bottom: 0px !important;
}
.protfolio-section .owl-carousel{
    margin-top: 50px;
}
.protfolio-section #protfolio-slider .item {
    border-radius: 12px;
    position: relative;
    /* height: 550px; */
    transition: all 0.5s;
    overflow: hidden;
}

.protfolio-section #protfolio-slider .item .tag-btn {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 4px 20px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.50);
    transition: all 0.5s;
}

.protfolio-section #protfolio-slider .item .tag-btn a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.protfolio-section #protfolio-slider .item:hover .tag-btn {
    background-color: #F48420;
}

.protfolio-section #protfolio-slider .item .overlay {
    display: none;
}

.protfolio-section #protfolio-slider .item:hover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(0, 0, 0, 0.50) 56.4%);
}

.protfolio-section #protfolio-slider .item img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    transition: all 0.5s;
}

.protfolio-section #protfolio-slider .item .content-box {
    display: block;
    padding: 24px;
    transition: linear 0.5s;
    position: absolute;
    bottom: 0;
    border-radius: 12px;
    background-color: #353535;
    
    width: 100%;
    height: 80px;
}

.protfolio-section #protfolio-slider .item .content-box span {
    color: #fff;
    font-size: 28px;
    font-weight: 500;

}

.protfolio-section #protfolio-slider .item a.content-box  p{
    font-size: 18px;
    color: #fff;
    display: block;
    padding-top: 8px;
    transition: all 0.5s;
}

.protfolio-section #protfolio-slider .item:hover .content-box p, .protfolio-section #protfolio-slider .item:hover .content-box p svg path  {
    color: #F48420;
    stroke: #F48420;
}

.protfolio-section #protfolio-slider .item:hover .content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    height: 120px;
}

.protfolio-section #protfolio-slider .item:hover .content-box span {
    color: #F48420;
}
.protfolio-section .owl-dots {
    display: none;
}


/* why-chooseus-section */
.why-chooseus-section .center-title-box {
    margin-bottom: 100px !important;
}
.why-chooseus-section{
    overflow: hidden;
}
.why-chooseus-section .common-grid {
    grid-template-columns: repeat(4, 1fr);
}

.why-chooseus-section .common-box {
    padding: 74px 24px 24px 24px;
    position: relative;
    border: 1px solid #353535;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    transition: all 0.5s;
    z-index: 1;
}

.why-chooseus-section .common-box:hover {
    background-color: #F48420;
    border-color: #fff;
}

.why-chooseus-section .common-box:hover .icon-box {
    background-color: #fff;
    border: #F48420;
}

.why-chooseus-section .common-box h4 {
    font-size: 28px;
    font-weight: 500;
    padding-bottom: 16px;
    color: #fff;
    width: 80%;
    margin: 0 auto;
    display: block;
}

.why-chooseus-section .common-box p {
    font-size: 18px;
    color: #fff;
}

.why-chooseus-section .icon-box {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    cursor: default;
    background-color: #212121;
    border-radius: 12px;
    transition: all 0.5s;
    border-color: transparent;
}

/* cta */

.cta-section {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: end;
}
.cta-section .left-box.aos-init.aos-animate, .map-section .common-box.aos-init.aos-animate {
    z-index: 1;
}
.cta-section .left-box img {
    border-radius: 12px;
}
.cta-section .left-box{
    position: absolute;
    left: 200px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%) !important;
}
.cta-section .right-box{
    width: 1250px;
    height: 480px;
    background-color: #353535 !important;
    background-image: url('../img/cta-bg.png');
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    background-size: auto !important;
    border-radius: 12px;
    transition: all 0.5s;
    overflow: hidden;
    position: relative;
}
.cta-section .right-box .title-box{
    position: absolute;
    left: 47%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.cta-section .right-box .title-box p {
    font-size: 18px;
    padding-bottom: 24px;
}


/* client-section */
.client-section{
    overflow: hidden;
}
.client-section .custom-container {
    padding: 0px 30px 30px 30px;
}
.client-section .common-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.client-section .common-box {
    transition: 1s ease-in-out;
    animation: moveup 8s ease-in-out infinite;
}

.client-section .common-box .box , .client-section #client-slider .item .box {
    background: #353535;
    border-radius: 6px;
    height: 130px;
    margin-bottom: 28px;
    position: relative;
}
.client-section #client-slider .owl-dots, .instagram-section #instagram-slider .owl-dots, .life-m2k-section  #life-m2k-section-slider  .owl-dots{
    display: none;

}
.client-section #client-slider .item .box{
    margin-bottom: 0px;
    display: none;
}

.client-section .common-box .box img, .client-section #client-slider .item .box img {
    position: absolute;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.client-section .common-box .box:last-child {
    margin-bottom: 0px;
}


@keyframes moveup {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(60px);
    }

    100% {
        transform: translateY(0px);
    }
}

.client-section .common-box1 {
    transition: 1s ease-in-out;
    animation: movedown 8s ease-in-out infinite;
}

@keyframes movedown {
    0% {
        transform: translateY(60px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(60px);
    }
}


/* instagram-section */
.instagram-section .title-box {
    text-align: center;
}
.instagram-section{
    overflow: hidden;
}

.instagram-section .common-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.instagram-section .common-box {
    border-right: 2px solid #000;
    transition: all 0.5s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}


.instagram-section .common-box img{
    border-radius: 0px;
    border: none;
}
.img-box img , .common-box img, .inner-box img{
    transition: all 1.9s;
    border-radius: 12px;
    width: 100%;
}
.life-m2k-section .common-grid{
    grid-template-columns: repeat(5,1fr);
    gap: 0px;
}
 .common-box:hover img, .life-m2k-section .box-1:hover .inner-box img, .life-m2k-section .box-2:hover .inner-box img, .img-section .img-box:hover img {
    transform: scale(1.2)
    /* border-radius:12px; */
}

.instagram-section .icon-box {   
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F48420;
    border: none;
    padding: 0px;
    cursor: default;
    transition: all 0.5s;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: none;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.30);
}

.instagram-section .icon-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.instagram-section .common-box:hover .icon-box,
.instagram-section .common-box:hover .overlay {
    display: block;
    transition: all 0.5s;
}


/* getinto-section */
.getinto-section {
    margin-top: 100px;
    margin-bottom: -200px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.getinto-section .top-box { 
    padding: 50px;
    background-color: #353535;
    display: flex;
    border-radius: 12px;
    justify-content: space-between
}

.getinto-section .top-box .title-box h2 {
    margin-bottom: 8px !important;
}

.getinto-section .top-box .title-box p {
    color: #fff;
}

.getinto-section .top-box .right-box {
    align-items: center;
    display: flex;
}

/* footer */
footer {
    position: relative;
    background-color: #212121;
    padding-top: 90px;
    z-index: 1;
}
footer .middle-box .right-box .accordion{
    display: none;
}
.common-top-section {
    margin-top: 100px;
}

footer .middle-box {
    padding: 60px 0px;
    border-bottom: 1px solid #D9D9D9;
}

footer .middle-box .common-grid {
    gap: 90px;
}

footer .middle-box p {
    color: #fff;
    padding-top: 40px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

footer .middle-box .right-box .quick-box {
    padding-bottom: 40px;
}

footer .middle-box .right-box .services-box span,
footer .middle-box .right-box .quick-box span {
    font-size: 24px;
    color: #F48420;
    font-weight: 500;
    padding-bottom: 8px;
    display: block;
}

footer .middle-box .right-box .services-box a,
footer .middle-box .right-box .quick-box a {
    font-size: 18px;
    color: #E4E4E4;
    transition: all 0.5s;
    text-transform: capitalize;
}

footer .middle-box .right-box .services-box a:hover,
footer .middle-box .right-box .quick-box a:hover {
    color: #F48420;
}

footer .middle-box .right-box .quick-box ul.common-grid {
    /* display: flex;
    flex-wrap: wrap; */
    grid-template-columns: auto auto auto auto auto auto;
    gap: 32px;
}


footer .middle-box .right-box .quick-box ul li:first-child {
    padding-left: 0px;
}

footer .middle-box .right-box .services-box ul.common-grid {
    grid-template-columns: auto auto auto;
    gap: 8px 20px
}

footer .bottom-box {
    padding: 32px 0px;
    border-bottom: 1px solid #D9D9D9;
}

footer .bottom-box .common-grid {
    grid-template-columns: auto auto auto;
    gap: 76px;
}

footer .bottom-box .common-box {
    display: flex;
    transition: all 0.5s;
}

footer .bottom-box .common-box .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    position: relative;
    background-color: #353535;
    border: none;
    cursor: default;
    transition: all 0.5s;
}

footer .bottom-box .common-box:hover .icon-box {
    background-color: #F48420;
}

footer .bottom-box .common-box:hover .icon-box svg,
footer .bottom-box .common-box:hover .icon-box svg path {
    stroke: #fff;
}

footer .bottom-box .common-box .icon-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .bottom-box .common-box .right-box {
    padding-left: 20px;
    display: grid;
    align-items: center;
}

footer .bottom-box .common-box .right-box p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

footer .bottom-box .common-box .right-box a {
    color: #F48420;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

footer .bottom-last-box {
    padding: 16px 0px;
}

footer .bottom-last-box .common-grid {
    grid-template-columns: repeat(3, 1fr);
}

footer .bottom-last-box .left-box p {
    color: #fff;
    font-size: 16px;
}

footer .bottom-last-box .center-box {
    display: flex;
    justify-content: center;
}

footer .bottom-last-box .center-box .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #353535;
    margin-right: 16px;
    position: relative;
    transition: all 0.5s;
    border: none;

}

footer .bottom-last-box .center-box .icon-box:last-child {
    margin-right: 0px;
}

footer .bottom-last-box .center-box .icon-box:hover {
    background-color: #F48420;
}

footer .bottom-last-box .center-box .icon-box svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .bottom-last-box .right-box {
    display: flex;
    justify-content: end;

}
footer .bottom-box .common-box {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
}

footer .bottom-last-box .right-box span,
footer .bottom-last-box .right-box span a {
    color: #fff;
    font-size: 16px;
    transition: all 0.5s;
}

footer .bottom-last-box .right-box span a:hover {
    color: #F48420;
}
footer .middle-box .right-box .accordion {
    display: none;
    --bs-accordion-btn-color: #fff;
    -bs-accordion-border-color: none; 
    --bs-accordion-border-width: none;
    --bs-accordion-border-radius: none;
    --bs-accordion-inner-border-radius: none;

}

footer .middle-box .right-box .accordion-button {
    background-color: #212121;
    color: #F48420;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 0px;
}
footer .middle-box .right-box .accordion-item {
    background-color: #212121;
    border: none !important;
    color: #fff;
}
footer .middle-box .right-box .accordion-button:not(.collapsed) {
    background-color: #212121;
    color: #F48420;
}
footer .middle-box .right-box .accordion-button:focus {
    box-shadow: none;
}
footer .middle-box .right-box .accordion-body {
    padding: 0px 20px 10px 20px;
    background-color:#212121 ;
}
footer .middle-box .right-box .accordion-button:not(.collapsed)::after {
    content: '-';
    background-image:  none;
    display: flex;
    align-items: center;
    transform: none;
}
footer .middle-box .right-box .accordion-button::after{
    content: '+';
    display: flex;
    align-items: center;
       background-image: none;
}

/* back to top  */
#backToTop {
    background-color: #F48420;
    text-decoration: none;
    cursor: pointer;
    width: 56px;
    height: 56px;
    z-index: 999;
    position: fixed;
    right: 32px;
    bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    opacity: 0;
    border-radius: 100%;
    box-shadow: 0 4px 16px 0 rgba(black, 0.4);
}  
#backToTop:hover{
    background-color:#141414
}
#backToTop.show{
    opacity: 1;
  visibility: visible;
}

#backToTop  svg.icon__arrow-up {
    fill: #fff;
    width: 32px;
    height: 32px;
  }



/* about-us page */

/* banner-inner-section */
.about-inner-section{
    background-image: url('../img/aboutus_page.jpg');
}
.banner-inner-section{
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -121px;
    height: 650px;
}
.banner-inner-section .banner-inner-box h1{
    font-weight: 500;
    margin-bottom: 16px !important;
}
.banner-inner-section .banner-inner-box{
    position: absolute;
    left: 200px;
    bottom: 50px;
    z-index: 2;
}
.banner-inner-section .banner-inner-box p{
    color: #F48420;
    font-size: 24px;
}
.banner-inner-section .banner-inner-box a{
    font-size: 24px;
}
.banner-inner-section .banner-inner-box svg{
    margin: 0px 12px;
}

/*what-we-do-section  */

.what-we-do-section .left-box{
    position: relative;
    transition: all 0.50s;
}

.what-we-do-section .left-box .box:hover {
    background-color: #F48420;
    border-color: transparent;
     
}
.what-we-do-section .left-box .box:hover .icon-box svg path{
    stroke: #fff;
}
.what-we-do-section .left-box .box{
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #121C22;
    right: 49px;
    top: 171px;
    transition: all 0.50s;
    /* animation: rotate 5s linear infinite;  */
}

.what-we-do-section .left-box .box .icon-box{
    width: 100px;
    height: 100px;
    position: relative;
    border: 1px dashed #fff;
    background-color: transparent;   
    border-radius: 50%;
    cursor: default;
}
.what-we-do-section .left-box .box .icon-box svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* our-mission-section */
.our-mission-section .common-grid{
    grid-template-columns: repeat(3,1fr);
}
.our-mission-section .common-box .top-box{
    padding: 30px 30px 24px 30px;
    background:#f5f5f5; 
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0px 0px;
}
.our-mission-section .common-box .top-box img{
    width: 70px;
    height: 70px;
}
.our-mission-section .common-box .top-box::before, .our-mission-section .common-box .top-box.box-1::before, .our-mission-section .common-box .top-box.box-2::before{
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #E1CBF9;
filter: blur(150px); 
top: 100px;
left: 255px;
}
.our-mission-section .common-box .top-box.box-1::before{
    background: #B3FFFF; 
}
.our-mission-section .common-box .top-box.box-2::before{
    background: #FFBE5A; 
}
.our-mission-section .common-box .top-box h4{
    font-size: 32px;
    color: #141414;
    font-weight: 600;
    padding-top:16px ;
}
.our-mission-section .common-box .top-box .content-box{
    display: block;
    position: relative;
    z-index: 1;
}
.our-mission-section .common-box .bottom-box{
    border-radius:  0px 0px 8px 8px;
    background-color: #f5f5f5;
    padding: 24px 30px 0px 30px;
    height: 261px;
}
.our-mission-section .common-box .bottom-box p{
    font-size: 18px;
    color: #141414;  
}

/*Our Team Members */
.our-team-section  .title-box{
   text-align: center;
}

.our-team-section .common-grid{
    grid-template-columns: repeat(4,1fr);
}
.our-team-section .common-box{
    padding: 30px;
    background-color: #353535;
    text-align: center;
    border-radius: 12px;
    color: #fff;
    transition: all 0.50s;
}
.our-team-section .common-box:hover h5, .our-team-section .common-box:hover span{
    color: #F48420;
}
.our-team-section .common-box:hover img{
    transform: none;
}
.our-team-section .common-box img{
    border-radius: 149px;
}
.our-team-section .common-box h5{
    padding: 20px 0px 12px 0px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.50s;
}
.our-team-section .common-box span{
    font-size: 18px;
    transition: all 0.50s;
}
/* get into */
.getinto-top-section{
    margin-top: 0px !important;
}


/* contactUs-page */
.contact-us-page{
    background-image: url('../img/contactUs_page.jpg');
}
.form-section  .common-grid{
    background-color: #2C2C2C;
    border-radius: 12px;
    padding: 50px;
    grid-template-columns: auto 800px;
}
.form-section .left-box img{
    border-radius: 12px;
    border: 1px solid #7B7B7B;
}
.form-section .right-box form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.form-section .right-box form .form-group label{
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.form-group .form-control{
    background-color: #353535;
    padding: 16px 24px;
    font-size: 22px;
    height: auto;
    color: #858585;
    border-radius: 12px;
    border: 1px solid #7B7B7B;
}
.form-group br{
	display:none;
}
.form-section .form-group .form-control::placeholder{
color: #858585;
}
select {
    color: #858585 !important;
    background-color: #353535;
    padding: 16px 24px;
    font-size: 22px;
    height: auto;
    width: 100%;
    color: #858585;
    border-radius: 12px;
    border: 1px solid #7B7B7B;
}
.message-box{
    width: 100%;
    grid-column:  1 /2 span;
}
button{
    grid-column: 1/3 ;
}
.form-section .right-box .common-btn{
    width: max-content;
}
.form-control:focus, select:focus{
    box-shadow: none;
    border-color: #F48420;
}


/* contact-icon-sectipn */
.contact-icon-section{
    padding: 60px 0px;
    background-color: #2C2C2C;
}
.contact-icon-section .common-box{
    background-color: #202020;
    padding: 30px;
    color: #fff;
    align-items: center;

    border-radius: 12px;
    display: flex;
}
.contact-icon-section .common-box .contant{
    padding-left: 20px;
}
.contact-icon-section .common-box .contant p{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 16px;
}
.contact-icon-section .common-box .contant a{
    font-size: 32px;
    font-weight: 500;
}

/* map-section */
.map-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.map-section .map-box .common-box{
    position: absolute;
    background-color: #2C2C2C;
    border-radius: 12px;
    padding: 40px;
    top: 50%;
    transform: translateY(-50%);
    left: 180px;
}
.map-section .map-box .common-box img{
    transform: none;
    width: auto;
}
.map-section .map-box .common-box h5{
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    padding: 24px 0px 16px 0px;
}
.map-section .map-box .common-box p{
    width: 411px;
    color: #fff;
    font-size: 24px;
}

/* faq-section */
.faq-section .title-box{
   text-align: center;
}
.faq-section .common-grid{
    gap:  30px;
    align-items: start;
}
.accordion-item {
    border: 1px solid #7B7B7B !important;
    border-radius: 6px;
    background-color: #353535;
}
.accordion-item .accordion-item-title {
    position: relative;
    display: flex;
    width: 100%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 20px 24px;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    color: #fff;
    padding: 10px 20px 20px;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    /* font-size: 20px; */
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    /* font-size: 20px; */
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

/* careers page */
.career-page-section{
    background-image: url('../img/Careers_page.jpg');
}
.our-values-section {  background-color: #2c2c2c !important;background-position: center center !important; background-size: cover !important;  background-repeat: no-repeat !important; }

.our-values-section .title-box h2, .open-position-section .title-box h2, .life-m2k-section .title-box h2 , .gallery-section .title-box h2{
    margin-bottom: 0px !important;
}
.our-values-section .common-grid{
    grid-template-columns: repeat(4,1fr);
    align-items: baseline;
}
.our-values-section .common-box{
    padding: 24px;
    border-radius: 12px;
    background-color: #212121;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}
.our-values-section .common-box:hover{
    background-color: #F48420;
}
.our-values-section .common-box:hover .icon-box{
    background-color: #fff;
    border-color: transparent;
    cursor: default;
}
.our-values-section .common-box:hover .icon-box::after{
    background-color: #fff;
}
.our-values-section .common-box .icon-box{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    background-color: #353535;
    border: 1px solid #7B7B7B;
}
.our-values-section .common-box .icon-box::after{
    position: absolute;
    content: '';
    width: 257px;
    top: 50%;
    transform: translateY(-50%);
   left: 78px;
    height: 1px;
    transition: all 0.5s;
    background-color: #7B7B7B;

}
.our-values-section .common-box .icon-box svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.our-values-section .common-box .box-1{
    padding-top: 93px;
}
.our-values-section .common-box .box-2{
    padding-top: 34px;
}
.our-values-section .common-box h5{
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 8px;
}
.our-values-section .common-box p{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}


/* open-position-section */
.open-position-section .common-grid{
    grid-template-columns: repeat(3,1fr);
}
.open-position-section .common-box{
    border-radius: 12px;
    background-color: #202020;
    padding: 30px;
}
.open-position-section .common-box  h5{
    font-size: 24px;
    color: #fff;
    padding-bottom: 24px;
}
.open-position-section .common-box .inner-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.open-position-section .common-box .inner-box .box{
    display: flex;
    /* align-items: center; */
    gap: 8px;
}
.open-position-section .common-box .inner-box .box p{
    color: #fff;
    font-size: 18px;
}
.open-position-section .common-box a{
    font-size: 18px;
    color: #fff;
    display: flex;
    padding-top: 60px;
    align-items: center;
    transition: all 0.5s;
}
.open-position-section .common-box a .icon-box{
    width: 36px;
    height: 36px;
    margin-left: 10px;
    background-color: #fff;
    border:none;
}

.btn-box span {
    width: 36px;
    height: 36px;
    margin-left: 8px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    transition: all 0.5s;
}
.open-position-section .common-box a:hover .icon-box  , .tab-container .tab-content .inner-box:hover .btn-box  span, .resp-tabs-container .resp-tab-content .common-box:hover .inner-box .btn-box span ,.gallery-section .common-box:hover .inner-box .btn-box span {
    background-color: #F48420 !important;
}
.open-position-section .common-box a:hover{
    color:#F48420 ;
}
.open-position-section .common-box a:hover .icon-box  svg path,.tab-container .tab-content .inner-box:hover .btn-box  span svg path,  .gallery-section .common-box:hover .inner-box .btn-box span svg path{
    stroke: #fff;
}

.icon-box{
    width: 46px;
    height: 46px;
    position: relative;
}
 .btn-box span svg, .icon-box svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.5s;
    transform: translate(-50%,-50%);
}
footer
/* life m2k */
.life-m2k-section .common-grid{
    grid-template-columns: repeat(5,1fr);
    gap: 0px;
    align-items: start;
}
.life-m2k-section .box-1{
    border: 1px solid #7B7B7B;
    overflow: hidden;
}
.life-m2k-section .box-2{
    border: 1px solid #7B7B7B;
    margin-top: 40px;
    overflow: hidden;
}
.life-m2k-section .box-1 .inner-box, .life-m2k-section .box-2 .inner-box{
    border: 30px solid transparent;
    overflow: hidden;
}
.life-m2k-section .box-1 .inner-box img, .life-m2k-section .box-2 .inner-box img{
    border-radius: 0px;
}

/* protfolio_Page */
.protfolio-page-section{
    background-image: url('../img/protfolio-page.png');
}
.tabing-section .tabs{
    background-color: #212121;
    border-radius: 12px;
    margin-bottom: 50px;
}
.tabing-section ul.resp-tabs-list{
    background-color: #212121;
    border-radius: 12px;
    margin-bottom: 50px;
}
.tab-container-1.common-section{
    padding: 40px 0px 100px 0px;
}
.tab-container-1 .common-box .inner-box .btn-box span svg, .gallery-section .common-box .inner-box .btn-box span svg{
    width: 32px;
    height: 32px;
}
.tab-container-1 .common-box .inner-box:hover .btn-box span {
    background-color: #F48420;
}
.tab-container-1 .common-box:hover .inner-box .btn-box span svg path, .gallery-section .common-box:hover .inner-box .btn-box span svg path {
    stroke: #fff;
}
.tabing-one-section, .tab-content-1 .tabing-section{
    /* margin: 0 auto; */
    display: flex;
    justify-content: center;
}

.resp-arrow{
    border: none;
    background-image: url('/wp-content/uploads/2024/06/direction-right-4.svg');
    background-size: 25px;
    width: 30px;
    height: 30px;
    margin-top: -4px;
    background-repeat: no-repeat;
    background-position: center center;
}
h2.resp-tab-active span.resp-arrow{
    background-image: url('/wp-content/uploads/2024/06/direction-right-5.svg');
    border: none;
    margin-top: -4px;
}
.resp-tab-content {
    padding: 0px;
}

.tab-content-1 .resp-tabs-container {
    background-color: #141414;
    border: none;
}
.tab-content-1 .resp-tabs-container .resp-tab-content{
    border: none;
}
#horizontalTab ul.resp-tabs-list,#horizontalTab2 ul.resp-tabs-list{
    width: 1400px;
    display: flex;
    justify-content: space-around;
}
#horizontalTab2 ul.resp-tabs-list{
    width: 900px;
}
.tabing-section .resp-tabs-list li, #horizontalTab2 ul.resp-tabs-list li{
    font-size: 22px;
    font-weight: 400;
    padding: 20px 0px 17px 0px;
}

.tabing-section .tab-container .common-grid{
    gap: 60px;
}
.tab-container .tab-content , .tab-container-1 .tab-content-1 {
    display: none;
}

.tab-container .tab-content.active,  .tab-container-1 .tab-content-1.active {
    display: block;
}

.gallery-section .common-box .img-box, .gallery-section .common-box{
    overflow: hidden;
}
.line{
    margin: 30px 0px;
    border-bottom: 2px solid #7B7B7B;
}
.tab-container .tab-content .inner-box .title-box h2, .resp-tab-content .title-box h2{
    font-size: 32px;
    margin-bottom: 0px !important;
}
.tab-container .tab-content .inner-box, .resp-tabs-container  .inner-box,.gallery-section .common-box .inner-box{
    display: flex   ;
    justify-content: space-between;
    transition: all 0.5s;
    align-items: center;
}
.tab-container .tab-content .inner-box .btn-box  span, .resp-tab-content .inner-box .btn-box span ,.gallery-section .common-box .inner-box .btn-box span{
    display: block;
    width: 48px;
    height: 48px;
}
.tab-container .tab-content .inner-box:hover .title-box span, .resp-tab-content .common-box:hover .inner-box  span ,.gallery-section .common-box:hover .inner-box .title-box span{
    color: #fff 
}
.tab-container .tab-content .inner-box:hover .title-box h2,.resp-tab-content .common-box:hover .inner-box .title-box h2 ,.gallery-section .common-box:hover .inner-box .title-box h2{
    color:#F48420 ;
}
/* services_page */
.service-inner-section .common-grid, .improved-section .common-grid{
    grid-template-columns: auto 610px;
}
.servicses-inner-section{
    background-image: url('../img/services_page.jpg');
}

/* architeche-section */
.architecture-section{
    background-color: #212121;
}
.architecture-section .common-box .left-box .icon-box{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #7b7b7b;
    background-color: #2C2C2C;
    position: relative;
    margin-right: 30px;
    cursor: default;
}
.architecture-section .common-box{
    padding:30px 0px;
    border-bottom: 1px solid #7B7B7B;
    transition: all 0.5s;
}
.architecture-section .common-box:hover .icon-box {
    background-color: #F48420;
    border-color: #fff;
}
.architecture-section .common-box:hover .common-grid .left-box .icon-box svg path{
    fill: #fff;
}

.architecture-section .common-box .left-box{
    display: flex;
    align-items: center;
}
.architecture-section .common-box .left-box h3{
    font-size: 32px;
    color: #fff;
}
.architecture-section .common-box .right-box p{
    color: #fff;
    font-size: 18px;
}
.architecture-section .common-box:last-child{
    padding-bottom: 0px;
    border-bottom: 0px;
}
.architecture-section .common-box:nth-last-child(3){
    padding-top: 0px;
}

/*improved-section  */
.improved-section .right-box {
    background-color: #212121;
    padding: 30px;
}
.improved-section .right-box  .common-grid{
    gap: 30px;
    grid-template-columns: repeat(2,1fr);
}
.improved-section .right-box  .common-grid .common-box{
    padding: 24px;
    background-color: #353535;
    transition: all 0.5s;
}
.improved-section .right-box  .common-grid .common-box:hover{
    background-color: #F48420;
}
.improved-section .right-box  .common-grid .common-box:hover svg path{
    fill: #fff;
}
.improved-section .right-box  .common-grid .common-box h5{
    font-size: 24px;
    color: #fff;
    padding-top: 84px;
    font-weight: 500;
}

/* gallery-section */
.gallery-section.common-section{
    padding-bottom: 0px;
}
.gallery-section .common-grid{
    grid-template-columns: repeat(3,1fr);
}
.gallery-section .common-box  .line{
    margin: 20px 0px 16px;
}
.gallery-section .common-box .img-box{
    border-radius: 12px;
}
.gallery-section .common-box .inner-box .title-box{
    text-align: left;
}
.gallery-section .common-box .inner-box .title-box span{
    font-size: 18px;
}
.gallery-section .common-box .inner-box .title-box h2{
    font-size: 24px;
    margin-bottom: 0px !important;
}
.gallery-section .common-box .inner-box .title-box{
    margin-bottom: 0px;
}

/* protfolio-iner */
.protfolio-inner-section{
    background-image: url('../img/protfolio-inner-page.png');
}




/*our-projects-gallery  */
.our-projects-gallery .outer {
    margin: 0 auto;
  }
  .our-projects-gallery  #big .item {
    border-radius: 12px;
    overflow: hidden;
  }
  .our-projects-gallery #thumbs{
    margin-top: 30px;
  }
  .our-projects-gallery #thumbs .item { 
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    overflow: hidden;
  }
  .our-projects-gallery #thumbs .item img{
    height: 160px;
    object-fit: cover;
  }
  .our-projects-gallery #thumbs .current .item {
    border: 3px solid #F48420;
  }
  .our-projects-gallery .owl-theme .owl-nav [class*="owl-"] {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .our-projects-gallery .owl-theme .owl-nav [class*="owl-"].disabled:hover {
    background-color: #d6d6d6;
  }
  .our-projects-gallery #big.owl-theme {
    position: relative;
  }
  .our-projects-gallery #big.owl-theme .owl-next:hover, .our-projects-gallery #big.owl-theme .owl-prev:hover{
    background-color: #F48420;
  }
  .our-projects-gallery #big.owl-theme .owl-next,
  .our-projects-gallery #big.owl-theme .owl-prev {
    background: #353535;
    width: 56px;
    border-radius: 50%;
    height: 56px;
    /* margin-top: -20px; */
    transform: translateY(-50%);
    position: absolute;
    text-align: center;
    top: 50%;
    transition: all 0.5s;
  }
  .our-projects-gallery #big.owl-theme .owl-prev {
    left: -76px;
  }
  .our-projects-gallery #big.owl-theme .owl-next {
    right: -76px;
  }
  #thumbs.owl-theme .owl-next,
  #thumbs.owl-theme .owl-prev {
    display: none;
  }
  #thumbs.owl-theme .owl-dots{
    display: none;
  }
  
  /* img-section */
  .img-section{
    padding: 0px 20px;
  }
  .img-section .common-grid{
    gap: 20px;
  }
  .img-section .img-box img, .img-section .img-box{
    border-radius: 0px;
  }
  .img-section .common-grid  .last-box{
    width: 100%;
    grid-column: 1 /2 span;
  }

  .thanks-section{
    padding-top: 100px;
    text-align: center;
 }
 .thanks-section h2{
    font-size: 40px;
    color: #F48420;
    padding-bottom: 20px;
 }
 .thanks-section p{
    margin: 0 auto;
    width: 80%;
    font-size: 26px;
    color: #fff;
 }