@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fdf9ec !important
}

#preload {
    position: fixed;
    background-color: #fdf9ec;
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

#logo_preload {
    position: relative;
    width: 300px;
    height: 300px;
    background-image: url(images/pre-image.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

#mask {
    position: absolute;
    background: #fdf9ec;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.back-Top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    visibility: visible;
    opacity: 1
}

#myBtn {
    display: none;
    position: fixed;
    text-align: center;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    font-size: 18px;
    outline: none;
    background-color: #166946;
    box-shadow: 0 8px 12px rgba(3, 4, 28, 0.3);
    border-radius: 50%;
    color: #fdf9ec;
    cursor: pointer;
    width: 44px;
    height: 44px;
    transition: all .3s 0 ease-out
}

#myBtn:hover {
    transform: translateY(-10%)
}

.fullnavBtn {
    position: relative;
    top: 0;
    right: 0;
    height: 25px;
    width: 40px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .45s ease
}

.fullnavBtn.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fdf9ec
}

.fullnavBtn.active .middle {
    opacity: 0;
    background: #fdf9ec
}

.fullnavBtn.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fdf9ec
}

.navbar.scrolled .top {
    background: #fdf9ec
}

.navbar.scrolled .middle {
    background: #fdf9ec
}

.navbar.scrolled .bottom {
    background: #fdf9ec
}

.fullnavBtn span {
    background: #0b3222;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer
}

.fullnavBtn span:nth-of-type(2) {
    top: 11px;
    height: 2px
}

.fullnavBtn span:nth-of-type(3) {
    top: 22px;
    height: 2px
}

.fullnav {
    position: fixed;
    background-color: #0b3222;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    overflow-y: hidden;
    z-index: 99
}

.fullnav.open {
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    width: 100%;
    height: 100%;
    animation: .5s anim
}

@keyframes anim {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0%)
    }
}

.fullnav.open li {
    animation: fadeInRight .25s ease forwards;
    animation-delay: .35s
}

.fullnav.open li:nth-of-type(2) {
    animation-delay: .45s
}

.fullnav.open li:nth-of-type(3) {
    animation-delay: .55s
}

.fullnav.open li:nth-of-type(4) {
    animation-delay: .65s
}

.fullnav.open li:nth-of-type(5) {
    animation-delay: .75s
}

.fullnav.open li:nth-of-type(6) {
    animation-delay: .85s
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%
    }

    100% {
        opacity: 1;
        left: 0
    }
}

.fullnav ul {
    list-style: none;
    padding: 0;
    margin: 3% 0 4% 68%;
    display: inline-block;
    position: relative;
    height: 100%
}

.fullnav ul li a {
    display: block;
    position: relative;
    color: #fdf9ec;
    text-decoration: none;
    opacity: .6;
    overflow: hidden;
    font-size: 2rem;
    font-weight: 500;
    text-align: right;
    font-family: "Playfair Display", serif
}

.fullnav ul li a:hover {
    opacity: 1;
    color: #fdf9ec
}

.fullnav nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center
}

.fullnav ul li {
    display: block;
    height: 15%;
    position: relative;
    opacity: 0
}

.fullnav ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    height: 3px;
    background: #fdf9ec;
    transition: .35s
}

.absolute {
    position: absolute;
    top: 16%;
    left: 38%;
    width: 300px;
    height: 300px;
    opacity: 0.1
}

.logo-img {
    width: 350px;
    height: 100px
}

.navbar.scrolled {
    background: #0b3222 !important;
    box-shadow: 0 2px 5px #355e3b;
    animation: slideDown .8s ease;

    .main-cont {
        height: 100px;
    }
}

@keyframes slideDown {
    0% {
        transform: translate3d(0, -100%, 0)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@media (min-width: 300px) and (max-width: 768px) {
    .fullnav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-block;
        position: relative;
        height: 100%
    }

    .fullnav ul li a {
        display: block;
        padding: 12% 0;
        font-size: 2rem;
        position: relative;
        color: #fdf9ec;
        text-decoration: none;
        overflow: hidden;
        text-align: center
    }

    .fullnav nav {
        height: 60%
    }

    .fullnavBtn {
        height: 12px !important;
        width: 25px !important
    }

    .fullnavBtn span:nth-of-type(2) {
        top: 8px !important
    }

    .fullnavBtn span:nth-of-type(3) {
        top: 16px !important
    }

    .fullnavBtn.active .top {
        transform: translateY(8px) translateX(0) rotate(45deg) !important;
        background: #fdf9ec
    }

    .fullnavBtn.active .bottom {
        transform: translateY(-8px) translateX(0) rotate(-45deg) !important;
        background: #fdf9ec
    }

    #logo_preload {
        width: 200px !important;
        height: 200px !important
    }

    .logo-img {
        width: 220px !important;
        height: auto !important;
        margin-top: 10px
    }

    .absolute {
        inset: 0;
        width: 100%;
        height: auto;
        opacity: .05
    }

    .image-row {
        padding: 0 !important
    }

    .expPara {
        font-size: 14px !important;
        line-height: 1.4 !important
    }

    .expHeading {
        font-size: 2rem !important
    }

    .expHg {
        font-size: 1.4rem !important
    }

    .master-section p {
        font-size: 16px !important;
        font-weight: 400 !important
    }

    .expBox {
        grid-template-columns: 1fr !important;
        grid-gap: 1.5rem !important;
        opacity: 1 !important
    }

    .box-icon {
        display: none
    }

    .main {
        background-image: url(images/mobile-banner.webp) !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        height: 100vh !important
    }

    .imagesContainer {
        width: 270px !important;
        height: 380px !important
    }

    .afft-heading {
        font-size: 2rem !important
    }

    .aff-col {
        border-bottom: 1px solid #0b3222 !important;
        border-right: none !important
    }

    .innerAff {
        margin-top: 25px !important;
        flex-direction: row !important;
        justify-content: center !important
    }

    .logo-slider {
        margin: 40px !important
    }

    .logo-wrapper img {
        width: 100px !important;
        height: 100px !important
    }

    .aff1 {
        padding: 10px
    }

    .footer-links {
        display: block !important
    }

    .aboutSection {
        margin-top: 34% !important
    }

    .expertSection {
        padding: 0 0 2rem 0 !important
    }

    .content {
        max-width: 100% !important
    }

    .projHeadings {
        font-size: 2rem !important
    }

    .projBtn {
        padding: 8px 20px !important;
        font-size: 15px !important
    }

    .imgtext {
        opacity: 1 !important;
        bottom: 0 !important
    }

    .imgtext h3 {
        font-size: 16px;
        margin: 0 !important
    }

    .imgtext p {
        font-size: 12px
    }

    .content .overlay {
        opacity: 1 !important
    }

    .protBtn-section {
        padding-top: 3rem
    }

    .owl-carousel .item .rightImg {
        width: 100% !important;
        height: auto !important
    }

    .owl-loaded {
        padding: 0 !important
    }

    .client-heading {
        font-size: 2rem !important;
        margin-top: 10px
    }

    .navbar.scrolled {
        .main-cont {
            height: 75px !important;
        }
    }

    .logo-img {
        margin-top: 0 !important
    }

    .fullnavBtn {
        height: 22px !important;
        width: 25px !important;
        margin-top: 0 !important
    }

}

@media (min-width: 1360px) and (max-width: 1540px) {
    .main {
        min-height: 100vh !important
    }

    .navbar.scrolled {
        .main-cont {
            height: 100px !important
        }

        .logo-img {
            height: auto !important
        }
    }

    .aboutSection {
        margin-top: 14% !important
    }

    .expBox {
        grid-template-columns: 6.85rem 13.75rem 1fr 7.25rem !important
    }

    .hd-content p {
        margin-right: 50px
    }

    .fullnavBtn {
        height: 22px !important
    }

    .fullnavBtn span {
        height: 2px
    }

    .fullnavBtn span:nth-of-type(2) {
        height: 2px
    }

    .fullnavBtn span:nth-of-type(3) {
        height: 2px
    }

    .owl-carousel .item .rightImg {
        width: auto !important;
        height: 525px !important
    }

    .owl-nav .owl-prev {
        left: -4% !important;
        opacity: 1
    }

    .owl-nav .owl-next {
        right: -2% !important;
        opacity: 1
    }

    .imagesContainer {
        width: 400px !important;
        height: 550px !important
    }

    #logo_preload {
        width: 350px !important;
        height: 350px !important
    }

    .logo-wrapper img {
        margin: 0 20px;
        width: 120px;
        height: 120px
    }

    .absolute {
        position: absolute;
        width: 350px !important;
        height: 350px !important;
        top: 20% !important;
        left: 35% !important
    }
}

@media (min-width: 1560px) and (max-width: 1920px) {
    .aboutSection {
        margin-top: 14% !important
    }

    .fullnav ul {
        margin: 3% 0 4% 54% !important
    }

    .fullnavBtn {
        right: 1.5%;
        height: 22px !important
    }

    .fullnav ul li a {
        font-size: 2.5rem !important
    }

    .logo-img {
        width: auto !important
    }

    .navbar.scrolled {
        .main-cont {
            height: 120px !important
        }

        .logo-img {
            width: auto !important
        }
    }

    .expBox {
        grid-template-columns: 7.25rem 14rem 1fr 7.25rem !important
    }

    .master-section p {
        font-size: 16px;
        font-weight: 500
    }

    .logo {
        margin-top: 2%;
        margin-bottom: 2%;
        margin-left: 4px
    }

    .imagesContainer {
        width: 440px !important;
        height: 620px !important
    }

    #logo_preload {
        width: 400px !important;
        height: 400px !important
    }

    .absolute {
        position: absolute;
        width: 400px !important;
        height: 400px !important;
        top: 20% !important;
        left: 35% !important
    }

    .hd-content {
        font-size: 18px !important
    }

    .owl-carousel .item .rightImg {
        width: 100% !important;
        height: 100% !important;
        object-fit: fill
    }

    .owl-nav .owl-prev {
        position: relative;
        left: 0;
        opacity: 1
    }

    .owl-nav .owl-next {
        position: relative;
        right: 0;
        opacity: 1
    }

    .logo-wrapper img {
        width: 125px !important;
        height: 125px !important
    }

    .aff1 img {
        width: 100px !important;
        height: 100px !important
    }

    .fullnavBtn span {
        height: 2.5px
    }

    .fullnavBtn span:nth-of-type(2) {
        height: 2.5px
    }

    .fullnavBtn span:nth-of-type(3) {
        height: 2.5px
    }

    .footerLogo {
        width: 175px !important;
        height: 175px !important
    }
}

.main {
    background-image: url(images/jk-banner.webp);
    background-size: 100% 100%;
    height: 104vh;
    overflow: hidden;
    background-repeat: no-repeat
}

.aboutSection {
    margin-top: 10%
}

.imagesContainer {
    width: 300px;
    height: 420px;
    background: url(images/sketch2.webp);
    background-size: contain;
    animation: img 20s linear infinite
}

@keyframes img {
    25% {
        background: url(images/sketch3.webp);
        background-size: contain
    }

    50% {
        background: url(images/sketch6.webp);
        background-size: contain
    }

    75% {
        background: url(images/sketch5.webp);
        background-size: contain
    }

    100% {
        background: url(images/sketch4.webp);
        background-size: contain
    }
}

.owl-theme .item {
    display: flex;
    align-items: center;
    justify-content: center
}

.owl-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #0b3222 !important;
    border-radius: 50% !important
}

.owl-nav button:hover {
    background: transparent !important
}

.owl-nav .owl-prev {
    position: absolute;
    bottom: 42%;
    left: -6%;
    opacity: 1
}

.owl-nav .owl-next {
    position: absolute;
    bottom: 40%;
    right: -6%;
    opacity: 1
}

.owl-nav .owl-prev span {
    position: relative;
    bottom: 3px;
    color: #0b3222 !important;
    font-size: 24px !important;
    font-weight: 400 !important
}

.owl-nav .owl-next span {
    position: relative;
    bottom: 3px;
    color: #0b3222 !important;
    font-size: 24px !important;
    font-weight: 400 !important
}

.expHeading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.04;
    color: #0b3222;
    font-family: "Playfair Display", serif
}

.expertSection {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.expPara {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #0b3222;
    font-family: "Playfair Display", serif
}

.expBox {
    display: grid;
    position: relative;
    padding: 2.5rem 2rem;
    border-top: 2px solid #0b3222;
    align-items: center;
    color: #0b3222;
    font-family: "Playfair Display", serif;
    grid-template-columns: 6rem 12.65rem 1fr 5.25rem
}

.expBox:hover {
    background-image: url(images/gridBox.png);
    background-size: 28px
}

.expHg {
    font-family: "Playfair Display", serif;
    font-weight: 600
}

.serviceBox {
    font-size: 3.75rem;
    line-height: 1.1;
    color: #0b3222
}

.master-section p {
    font-size: 15.25px;
    font-weight: 500
}

.box-link {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.box-icon {
    font-size: 2.5rem;
    text-align: right;
    color: #0b3222
}

.bi::before,
[class*=" bi-"]::before {
    vertical-align: 0 !important
}

.expBox {
    transform: translateY(50px);
    opacity: 0;
    transition: all 2s ease
}

.expBox.active {
    transform: translateY(0px);
    opacity: 1
}

.projectSection {
    padding-top: 3rem;
    padding-bottom: 4rem
}

.projHeadings {
    font-size: 3.5rem;
    font-weight: 600;
    color: #0b3222;
    font-family: "Playfair Display", serif;
    line-height: 48px;
    text-align: center
}

.projBtn {
    color: #0b3222;
    padding: 12px 34px;
    border-radius: 50px;
    border: 1px solid #0b3222;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block
}

.projBtn:hover {
    background-color: #0b3222;
    color: #fdf9ec
}

.protBtn-section {
    text-align: center
}

.owl-carousel .item .rightImg {
    display: block;
    width: 260px;
    height: 420px;
    object-fit: fill
}

.content {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden
}

.content img {
    transition: .4s ease
}

.content:hover img {
    transform: scale(1.05)
}

.content .overlay {
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .4s ease
}

.content:hover .overlay {
    opacity: 1
}

.imgtext {
    position: absolute;
    padding-left: 50px;
    width: 100%;
    bottom: -40%;
    left: 45%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all .3s ease-in-out 0
}

.imgtext h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    color: #fdf9ec;
    font-family: "Playfair Display", serif
}

.imgtext p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fdf9ec;
    font-family: "Playfair Display", serif
}

.content:hover .imgtext {
    bottom: 0;
    right: 0;
    opacity: 1
}

.clientSection {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.afft-heading {
    color: #0b3222;
    font-size: 3.5rem;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    text-align: center
}

.client-heading {
    color: #0b3222;
    font-size: 3.5rem;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    text-align: center
}

.aff-col {
    border-right: 1px solid #0b3222
}

.innerAff {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 65px
}

.logo-slider {
    overflow: hidden;
    margin: 50px 75px;
    background: #fdf9ec;
    white-space: nowrap
}

.logo-wrapper {
    display: inline-block;
    animation: 25s slide infinite linear
}

.logo-wrapper img {
    margin: 0 20px;
    width: 100px;
    height: 100px
}

.logo-slider:hover .logo-wrapper {
    animation-play-state: paused
}

.logo-slider:before,
.logo-slider:after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2
}

.logo-slider:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #fdf9ec)
}

.logo-slider:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fdf9ec)
}

@keyframes slide {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.ctaSection {
    padding-top: 4rem
}

.cta-inner {
    text-align: center;
    margin-block-end: 0
}

.cta-container {
    max-width: 100%
}

.cta-heading {
    color: #0b3222;
    font-size: 3rem;
    font-weight: 600;
    line-height: 48px;
    font-family: "Playfair Display", serif
}

.cta-btn {
    text-align: center;
    margin-block-end: 0
}

.built-in {
    display: inline-block;
    color: #0b3222;
    margin-top: 20px;
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid #0b3222;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none
}

.built-in:hover {
    color: #fdf9ec;
    background-color: #0b3222
}

@media (min-width: 300px) and (max-width: 768px) {
    .cta-heading {
        font-size: 1.5rem
    }

    .ctaSection {
        padding-top: 2rem
    }

    .built-in {
        position: relative;
        left: 0 !important;
        padding: 8px 20px !important;
        margin-top: 4px !important;
        font-size: 15px !important
    }

    .clientSection {
        padding-top: 3rem;
        padding-bottom: 3rem
    }

    .image-slider {
        z-index: 0 !important
    }
}

.image-slider {
    position: relative;
    overflow: hidden;
    background: transparent;
    white-space: nowrap
}

.image-wrapper {
    display: inline-block;
    animation: 45s slideImg infinite ease-in-out
}

@keyframes slideImg {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-100%)
    }
}

.footer {
    background-color: #0b3222;
    color: #fdf9ec;
    position: relative
}

.footer-links {
    display: flex;
    flex-direction: column;
    list-style: none
}

.first h5 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600
}

.footer-links li {
    font-size: 18px;
    padding: 5px 0;
    font-family: "Playfair Display", serif
}

.footer-links li a {
    text-decoration: none;
    color: #fdf9ec
}

.footer-links li a:hover {
    text-decoration: underline
}

.second h5 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600
}

.footerImg {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 -4px
}

.copyright {
    font-size: 14px;
    letter-spacing: .4px;
    font-weight: 400;
    font-family: "Playfair Display", serif
}

.cp_right {
    text-decoration: none;
    color: #fdf9ec
}

.cp_right:hover {
    text-decoration: underline
}

.social-links {
    display: flex;
    list-style: none;
    padding: 0
}

.footerLogo {
    width: 125px;
    height: 125px
}

.footerlogo {
    color: #fdf9ec;
    text-decoration: none;
    font-size: 20px
}

.footerlogo:hover {
    opacity: .8
}

.copyright-sect {
    border-top: 1px solid #fdf9ec;
    padding: 20px 0 10px
}

.cpy {
    text-align: left
}

.inner-footer {
    display: flex;
    align-items: center;
    justify-content: right
}

.insideFooter {
    padding-block-end: 30px;
    padding-block-start: 30px
}

.footer-ul li {
    color: #fdf9ec;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    list-style: none;
    padding: 10px 0
}

.footer-li {
    display: flex;
    align-items: center
}

.footer-ul li i {
    font-size: 18px;
    fill: #fdf9ec
}

@media (min-width: 300px) and (max-width: 768px) {
    .second h5 {
        font-size: 1.5rem
    }

    .second a {
        display: flex
    }

    .first h5 {
        font-size: 1.5rem
    }

    .footer-links li {
        font-size: 1rem
    }

    .footer-ul li {
        font-size: 15px
    }

    .footer-ul li i {
        font-size: 15px;
        fill: #fdf9ec
    }

    .copyright {
        font-size: 14px;
        text-align: center
    }

    .inner-footer {
        justify-content: center
    }

    .footerLogo {
        width: 200px;
        height: 200px
    }

    .footerlogo {
        font-size: 20px
    }
}

@media (min-width: 1560px) and (max-width: 1920px) {
    .first h5 {
        font-size: 3rem
    }

    .second h5 {
        font-size: 3rem
    }

    .footer-links li {
        font-size: 1.4rem
    }

    .footer-ul li {
        font-size: 1.4rem
    }

    .footer-ul li i {
        font-size: 1.4rem
    }

    .copyright {
        font-size: 1rem
    }
}