@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;
}

.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: 0px 8px 12px rgba(3, 4, 28, 0.3);
    border-radius: 50%;
    color: #fdf9ec;
    cursor: pointer;
    width: 44px;
    height: 44px;
    transition: all 0.3s 0s ease-out;
}

#myBtn:hover {
    transform: translateY(-10%);
}

/* =======================Hamburger Menu CSS======================= */

/* Overlay style button */

.fullnavBtn {
    position: relative;
    top: 0;
    right: 0;
    height: 25px;
    width: 40px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.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 0.35s ease;
    cursor: pointer;
}

.fullnavBtn span:nth-of-type(2) {
    top: 11px;
    height: 2px;
}

.fullnavBtn span:nth-of-type(3) {
    top: 22px;
    height: 2px;
}

/* Navbar section */

.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: 0.5s anim;
}

@keyframes anim {
    0% {
        transform: translateY(-100%);
    }

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

.fullnav.open li {
    animation: fadeInRight 0.25s ease forwards;
    animation-delay: 0.35s;
}

.fullnav.open li:nth-of-type(2) {
    animation-delay: 0.45s;
}

.fullnav.open li:nth-of-type(3) {
    animation-delay: 0.55s;
}

.fullnav.open li:nth-of-type(4) {
    animation-delay: 0.65s;
}

.fullnav.open li:nth-of-type(5) {
    animation-delay: 0.75s;
}

.fullnav.open li:nth-of-type(6) {
    animation-delay: 0.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: 0.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: 0.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: 0px 2px 5px #355e3b;
    animation: slideDown 0.8s ease;

    .main-cont {
        height: 100px;
    }
}

@keyframes slideDown {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Homescreen Logo */

@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: 0.05;
    }

    .image-row {
        padding: 0 !important;
    }

    .master-section p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .box-icon {
        display: none;
    }

    .aboutSection {
        margin-top: 34% !important;
    }

    .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;
    }

    .fullnavBtn {
        height: 22px !important;
    }

    .fullnavBtn span {
        height: 2px;
    }

    .fullnavBtn span:nth-of-type(2) {
        height: 2px;
    }

    .fullnavBtn span:nth-of-type(3) {
        height: 2px;
    }

    .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;
        }
    }

    .logo {
        margin-top: 2%;
        margin-bottom: 2%;
        margin-left: 4px;
    }

    .imagesContainer {
        width: 440px !important;
        height: 620px !important;
    }

    .absolute {
        position: absolute;
        width: 400px !important;
        height: 400px !important;
        top: 20% !important;
        left: 35% !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;
    }
}

/* ====================CTA Section Css================= */

.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 Section================ */

.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: 0.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: 0.8;
}

.copyright-sect {
    border-top: 1px solid #fdf9ec;
    padding: 20px 0 10px 0;
}

.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;
    }
}

/* ==============Contactus and Careers Page CSS=================== */

.contacthd {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    letter-spacing: 1.2px;
    color: #0b3222;
}

.get {
    margin-top: 2rem;
}

.social-icon {
    font-size: 1rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    color: #0b3222;
    border-radius: 50%;
    border: 1px solid #0b3222;
    box-shadow: inset 0 0 1px #0b3222;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-icon:hover {
    background-color: #0b3222;
    color: #fdf9ec;
}

.ct-logo {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
}

.contact-ul {
    list-style: none;
    margin-top: 30px;
}

.contactSection {
    padding-top: 4rem;
}

.contact-icon span {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    line-height: 46px;
    text-align: center;
    border: 1px solid #0b3222;
    color: #0b3222;
    display: inline-block;
    margin-right: 20px;
}

.formSection {
    background-color: #fdf9ec;
    padding: 5rem 5rem;
}

.input-box {
    border: none !important;
    border-bottom: 1px solid #848484 !important;
    border-radius: 0 !important;
    padding: 10px !important;
    font-size: 1rem;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    width: 100%;
    background: transparent !important;
    font-family: "Playfair Display", serif;
    box-shadow: none !important;
}

.input-file {
    border: 1px solid #848484 !important;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    width: 100%;
    border-radius: 0 !important;
    background: transparent !important;
    font-family: "Playfair Display", serif;
    box-shadow: none !important;
}

input::file-selector-button {
    background: #0b3222 !important;
    color: #fdf9ec !important;
}

.form-control:focus {
    border-color: #000 !important;
}

.form-control {
    line-height: 2;
}

.text-message {
    font-size: 1rem !important;
    margin-top: 30px;
    box-shadow: none !important;
    font-weight: 600 !important;
    border-color: #848484 !important;
    font-family: "Playfair Display", serif;
    background: transparent !important;
}

.next-box {
    border: none !important;
    border-bottom: 1px solid #848484 !important;
    border-radius: 0 !important;
    padding: 10px !important;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    width: 100%;
    background: transparent !important;
    font-family: "Playfair Display", serif;
    box-shadow: none !important;
}

.submit-btn {
    color: #0b3222;
    display: inline-block;
    background-color: #fdf9ec;
    padding: 12px 34px;
    border-radius: 50px;
    border: 1px solid #0b3222;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
}

.submit-btn:hover {
    color: #fdf9ec;
    background-color: #0b3222;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content h4 {
    font-weight: 700;
    color: #0b3222;
    font-size: 1.2rem;
    font-family: "Playfair Display", serif;
}

.contact-content p {
    font-size: 1rem;
    font-family: "Playfair Display", serif;
    margin: 0;
}

.nextcareer {
    text-align: center;
}

.careerSection {
    padding-top: 4rem;
}

.careerHeading h3 {
    font-size: 3.5rem;
    color: #0b3222;
    text-align: center;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

@media (min-width: 300px) and (max-width: 768px) {
    .contacthd {
        font-size: 1.25rem;
        text-align: center;
    }

    .careershd {
        font-size: 2.5rem;
    }

    .contact-content h4 {
        font-size: 1.15rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .form-cont {
        margin-top: 50px !important;
    }

    .formSection {
        padding: 0;
    }

    .submit-btn {
        padding: 8px 20px !important;
        font-size: 15px !important;
    }

    .careers {
        height: auto;
    }

    .input-box {
        margin-top: 25px;
    }

    .next-box {
        margin-top: 25px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .ct-logo {
        font-size: 16px;
    }

    .careerHeading h3 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1400px) and (max-width: 1540px) {
    .careerSection {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 1560px) and (max-width: 1920px) {
    .Careers {
        padding-top: 6rem;
    }

    .careerHeading h3 {
        font-size: 3.5rem;
    }

    .contacthd {
        font-size: 3rem;
    }

    .input-box {
        font-size: 1.5rem !important;
    }

    .next-box {
        font-size: 1.5rem !important;
    }

    .text-message {
        font-size: 1.5rem !important;
    }

    .services {
        padding-top: 6rem;
    }

    .contact-content h4 {
        font-size: 24px;
    }

    .contact-content p {
        font-size: 20px;
    }

    .submit-btn {
        font-size: 1.5rem;
    }
}

/* ====================Project Page CSS=================== */

.project-Section {
    padding: 5rem 0 3rem;
}

.gallery-section {
    padding-bottom: 4rem;
}

.pImage {
    margin-top: 25px !important;
}

.heading {
    font-size: 3rem;
    line-height: 0.75;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #0b3222;
    text-align: center;
}

.proj-pg p {
    font-size: 1.5rem;
    text-align: center;
    color: #0b3222;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    font-style: italic;
    font-family: "Playfair Display", serif;
}

.nav-item {
    width: 50%;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    padding: 10px !important;
    border-radius: 0.375rem !important;
    font-size: 1.25rem !important;
    border: 1px solid #0b3222 !important;
    color: #0b3222 !important;
    font-family: "Playfair Display", serif;
    font-weight: 700 !important;
}

.nav-pills .nav-link.active {
    background-color: #0b3222 !important;
    color: #fdf9ec !important;
}

.proj-section {
    padding: 5rem 0;
    background-color: #125439;
}

.building-img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: fill;
}

.building-img1 {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.building-img-old {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: fill;
}

.building-img-old-1 {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Projects Gallery */

.galleryImg {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.galleryImg img {
    transition: transform 0.5s ease;
}

.galleryImg:hover img {
    transform: scale(1.05);
}

/* overlay code */

.galleryImg .overlay {
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.4s ease;
}

.galleryImg:hover .overlay {
    opacity: 1;
}

.text {
    position: absolute;
    padding-left: 50px;
    width: 100%;
    bottom: -40%;
    left: 44%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out 0s;
}

.text span {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #fdf9ec;
    font-family: "Playfair Display", serif;
}

.text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fdf9ec;
    font-family: "Playfair Display", serif;
}

.galleryImg:hover .text {
    bottom: 0;
    right: 0;
    opacity: 1;
}

@media (min-width: 991px) and (max-width: 1360px) {
    .heading {
        font-size: 2.5rem;
        color: #0b3222;
        font-family: "Playfair Display", serif;
    }

    .proj-pg p {
        margin: 0;
        font-size: 1.2rem;
        line-height: 25px;
    }

    .nav-link {
        font-size: 18px !important;
    }
}

@media (min-width: 300px) and (max-width: 768px) {
    .heading {
        font-size: 2.5rem;
    }

    .nav-link {
        font-size: 15px !important;
    }

    .proj-pg p {
        margin: 0;
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .building-img {
        height: auto;
        width: 100%;
    }

    .building-img-old {
        height: auto;
        width: 100%;
    }

    .building-img-old-1 {
        height: auto;
        width: 100%;
    }

    .galleryImg {
        margin-top: 10px;
    }

    .text {
        bottom: 0;
        padding-left: 25px;
        opacity: 1;
    }

    .text span {
        font-size: 12px;
        margin: 0 !important;
    }

    .text p {
        font-size: 10px;
        margin: 0 !important;
    }

    .galleryImg .overlay {
        opacity: 1;
    }
}

@media (min-width: 1400px) and (max-width: 1540px) {
    .building-img {
        height: 580px !important;
    }

    .building-img-old {
        height: 580px !important;
    }
}

@media (min-width: 1560px) and (max-width: 1920px) {
    .projSect {
        padding: 8rem 0;
    }

    .heading {
        font-size: 4rem;
    }

    .proj-pg p {
        font-size: 2rem;
        line-height: 40px;
    }

    .building-img {
        height: 100% !important;
    }

    .building-img-old {
        height: 100% !important;
    }

    .text span {
        font-size: 24px;
    }

    .text p {
        font-size: 18px;
    }
}

/* ==================Services Page CSS================== */

.serviceHeading h4 {
    font-size: 3.5rem;
    line-height: 0.75;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #0b3222;
    text-align: center;
}

.serviceInfo {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.faq-drawer {
    border-bottom: #0b3222 1px solid;
    transition: 0.2s;
}

.faq-drawer__content {
    padding: 30px 25px 30px 25px;
}

.faq-drawer__title:hover {
    background-image: url(images/gridbox2.png);
    background-size: 28px;
    background-color: #0b3222;
    color: #fdf9ec;
    border-bottom: none;
    transition: all 0.4s ease-in-out;
}

.faq-drawer__content-wrapper {
    display: block;
    font-size: 1.65rem;
    line-height: 1.25;
    max-height: 0px;
    color: #0b3222;
    font-family: "Playfair Display", serif;
    overflow: hidden;
    transition: 0.25s ease-in-out;
}

.faq-drawer__title {
    cursor: pointer;
    display: block;
    font-size: 3rem;
    font-weight: 700;
    padding: 30px 0 30px 20px;
    position: relative;
    color: #0b3222;
    font-family: "Playfair Display", serif;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.faq-drawer__title::after {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: " ";
    float: right;
    width: 16px;
    height: 16px;
    position: relative;
    left: -40px;
    top: 30px;
    transform: rotate(45deg);
    transition: 0.35s ease-in-out;
    vertical-align: middle;
}

.faq-drawer__title img {
    width: 60px;
    height: 60px;
}

/* OPTIONAL HOVER STATE */

.faq-drawer__trigger:checked+.faq-drawer__title+.faq-drawer__content-wrapper {
    max-height: 380px;
    background-image: url(images/gridbox2.png);
    background-size: 28px;
    background-color: #0b3222;
    color: #fdf9ec;
    border-bottom: none;
}

.faq-drawer__trigger:checked+.faq-drawer__title::after {
    transform: rotate(135deg);
    transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
    display: none;
}

@media (min-width: 300px) and (max-width: 768px) {
    .serviceHeading h4 {
        font-size: 2.5rem;
    }

    .faq-drawer__content-wrapper {
        font-size: 1rem;
    }

    .faq-drawer__title img {
        width: 30px !important;
        height: 30px !important;
    }

    .faq-drawer__title {
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    .faq-drawer__title::after {
        top: 8px !important;
        left: -12px !important;
        width: 10px !important;
        height: 10px !important;
    }

    .serc-title {
        font-size: 2rem;
    }
}

@media (min-width: 1400px) and (max-width: 1540px) {
    .faq-drawer__title:hover {
        background-size: 40px !important;
    }

    .faq-drawer__trigger:checked+.faq-drawer__title+.faq-drawer__content-wrapper {
        background-size: 40px !important;
    }
}

@media (min-width: 1560px) and (max-width: 1920px) {
    .Services {
        padding-top: 10rem;
    }

    .serviceHeading h4 {
        font-size: 4rem;
    }

    .faq-drawer__title {
        font-size: 4rem;
    }

    .faq-drawer__title::after {
        width: 20px;
        height: 20px;
        top: 40px;
    }

    .faq-drawer__title:hover {
        background-size: 50px !important;
    }

    .faq-drawer__trigger:checked+.faq-drawer__title+.faq-drawer__content-wrapper {
        background-size: 50px !important;
    }

    .faq-drawer__content-wrapper {
        font-size: 2rem;
    }

    .serc-title {
        font-size: 4rem;
    }
}

/* ====================About us CSS================== */

.about-sect {
    padding: 5rem 0 4rem 0;
}

.aboutDiv {
    padding-top: 12rem;
}

.aboutHeading h1 {
    font-size: 3.5rem;
    line-height: 0.75;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #0b3222;
    text-align: center;
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b3222;
}

ul.breadcrumb {
    list-style: none;
}

ul.breadcrumb li {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}

ul.breadcrumb li+li:before {
    padding: 5px;
    color: #0b3222;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: #0b3222;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    text-decoration: underline;
}

.about-text h2 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #0b3222;
    font-family: "Playfair Display", serif;
}

.about-pg p {
    font-size: 1.5rem;
    text-align: center;
    color: #0b3222;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    font-style: italic;
    font-family: "Playfair Display", serif;
}

.content-box {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-box span {
    font-size: 20px;
    color: #d8b25f;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.aboutSect-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.about-info {
    margin-bottom: 25px;
}

.about-info p {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    color: #000;
}

.info-list {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: "Playfair Display", serif;
    color: #000;
    padding-left: 1.5rem !important;
}

.card {
    transition: 0.3s ease;
    border: 1px solid #0b3222 !important;
    background-color: #fdf9ec !important;
    text-align: center;
}

.card:hover {
    transform: scale(1.02);
}

.cardSection {
    padding: 2rem 0rem;
}

.member-hdg h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    color: #0b3222;
    text-align: center;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.card-info h3 {
    color: #0b3222;
    font-family: "Playfair Display", serif;
}

.card-info p {
    color: #0b3222;
    font-weight: 500;
    font-size: 1.05rem;
    font-family: "Playfair Display", serif;
}

@media (min-width: 300px) and (max-width: 768px) {
    .aboutDiv {
        padding-top: 10rem;
    }

    .aboutHeading h1 {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
        margin-top: 40px;
    }

    ul.breadcrumb li {
        font-size: 15px;
    }

    .aboutSect-title {
        font-size: 1.08rem;
        line-height: 1.4;
    }

    .card {
        width: 100% !important;
        padding: 0 20px !important;
    }

    .card-img {
        height: 100% !important;
    }

    .about-info p {
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .about-pg p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .info-list {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .member-hdg h2 {
        font-size: 1.4rem;
    }

    .card-info p {
        font-size: 15px;
        line-height: 1.2 !important;
    }
}

@media (min-width: 1400px) and (max-width: 1540px) {
    .about-text h2 {
        font-size: 3.5rem;
    }

    .about-info p {
        font-size: 1.75rem;
    }

    .aboutSect-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1560px) and (max-width: 1920px) {
    .aboutUsSect {
        padding: 8rem 0;
    }

    ul.breadcrumb li {
        font-size: 20px;
    }

    .aboutHeading h1 {
        font-size: 4rem;
    }

    .about-pg p {
        font-size: 2rem;
        line-height: 40px;
    }

    .about-text h2 {
        font-size: 4rem;
    }

    .aboutSect-title {
        font-size: 2rem;
    }

    .about-info p {
        font-size: 1.5rem;
    }

    .about-btn {
        font-size: 2rem;
    }

    .info-list {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .card-info h3 {
        font-size: 2rem;
    }
}