@import url('https://fonts.googleapis.com/css2?&family=Aref+Ruqaa+Ink:wght@400&family=Gravitas+One&family=Kumar+One&family=Lemon&family=Marko+One&family=Metamorphous&family=Ultra&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    background-color: #FDF9EC !important;
}

.mf-cursor {
    color: #0B3222;
}

/* =======================Hamburger Menu CSS======================= */

/* Overlay style button */

.fullnavBtn {
    position: relative;
    top: 8%;
    right: 2%;
    height: 15px;
    width: 40px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .45s ease;
}

.fullnavBtn.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #0B3222;
}

.fullnavBtn.active .middle {
    opacity: 0;
    background: #0B3222;
}

.fullnavBtn.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #0B3222;
}

.fullnavBtn span {
    background: #0B3222;
    border: none;
    height: 1.5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.fullnavBtn span:nth-of-type(2) {
    top: 11px;
    height: 1.5px;
}

.fullnavBtn span:nth-of-type(3) {
    top: 22px;
    height: 1.5px;
}

/* Navbar section */

.fullnav {
    position: fixed;
    background-color: #ffead5;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 1;
    overflow-y: hidden;
    z-index: 99;
}

.navbar {
    overflow-y: hidden;
}

.fullnav.open {
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    height: 100%;
    animation: .5s anim;
}

@keyframes anim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

.fullnav.open li {
    animation: fadeInRight .5s 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;
}

.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: #0B3222;
    text-decoration: none;
    overflow: hidden;
    text-align: right;
    font-family: 'Marko One', serif;
}

.fullnav ul li a:hover {
    text-decoration: underline;
    color: #166946;
}

.fullnav nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    font-weight: 400;
    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%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    -webkit-transition: .35s;
    transition: .35s;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

.absolute {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    top: -23%;
    left: -51%;
}

/* Homescreen Logo */

.comp-logo {
    width: 100px;
    height: 100px;
}

.compName {
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    color: #0B3222;
    font-family: 'Marko One', serif;
    margin-top: -22px;
}

@media all and (max-width: 991px) {

    .fullnav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-block;
        position: relative;
        height: 100%;
    }

    .fullnav ul li a {
        display: block;
        padding: 10% 0%;
        position: relative;
        color: #0B3222;
        text-decoration: none;
        overflow: hidden;
        text-align: center;
    }

    .absolute {
        display: none;
    }

    .rightImg {
        width: 100% !important;
        height: auto !important;
        filter: drop-shadow(8px 2px 2px #9d9d9d);
    }

    .expBox {
        grid-template-columns: 1fr !important;
        grid-gap: 1rem !important;
        display: grid;
    }

    .box-icon {
        display: none;
    }

    .projItem {
        grid-template-columns: 1fr !important;
        grid-gap: 0.625rem !important;
        display: grid !important;
    }

    .main {
        width: 100% !important;
        height: auto !important;
    }

    .expHeading {
        font-size: 4em !important;
    }

    .footer-links {
        display: block !important;
    }
}

/* ============Homepage about section================ */

.main {
    background-image: url(images/gridcloud.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 105vh;
    width: 100%;
}

.main-cont {
    border-bottom: 2px solid black;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.headingTag {
    font-size: 4em;
    font-weight: 400;
    font-family: 'Marko One', serif;
    color: #0B3222;
    margin-top: 60px;
}

.headingTag2 {
    font-size: 4em;
    font-weight: 400;
    font-family: 'Marko One', serif;
    color: #0B3222;
    text-indent: 4px;
}

.hd-content p {
    color: #0B3222;
    font-size: 1em;
    font-family: 'Aref Ruqaa Ink', serif;
    font-weight: 500;
}

.rightImg {
    width: 400px !important;
    height: 400px !important;
}

.building-sketch {
    width: 100% !important;
    height: 300px !important;
}

/* =================Scroll Down Css==============  */

.scrollBtnDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-down {
    opacity: 1;
    transition: all .5s ease-in 3s;
}

.scroll-down {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid #0B3222;
    border-radius: 50px;
    z-index: 2;
    box-sizing: border-box;
    animation: bounce 2s infinite 2s;
    transition: all .2s ease-in;
}

.scroll-down::before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    content: '';
    width: 6px;
    height: 6px;
    margin-left: 3px;
    background-color: #0B3222;
    border-radius: 100%;
    box-sizing: border-box;
}

.scroll-down::after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 18px;
    height: 18px;
    content: '';
    margin-left: -9px;
    border-left: 2px solid #0B3222;
    border-bottom: 2px solid #0B3222;
    transform: rotate(-45deg);
    box-sizing: border-box;
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ==================Expertise CSS===================== */

.expHeading {
    font-size: 5em;
    font-weight: 500;
    line-height: 1.04;
    color: #0B3222;
    font-family: 'Marko One', serif;
}

.expertSection {
    padding: 8% 0 6% 0;
    background-color: #FFF;
}

.expPara {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #0B3222;
    font-family: 'Aref Ruqaa', serif;
}

.viewBtn {
    padding: 15px 30px;
    background-color: #0B3222;
    color: #D8B25F;
    text-decoration: none;
    font-family: 'Marko One', serif;
}

.expBox {
    display: grid;
    position: relative;
    padding: 2.75rem;
    border-top: 2px solid #0B3222;
    align-items: center;
    grid-template-columns: 6.25rem 12.65rem 1fr 6.75rem;
}

.expBox:hover {
    background-color: #F8E3A8;
}

.serviceBox {
    font-size: 3.75rem;
    line-height: 1.1;
    color: #0B3222;
}

.serviceBox img {
    width: 75px;
    height: 75px;
}

.box-link {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.expHg {
    color: #0B3222;
}

.master-section {
    color: #0B3222;
    font-family: 'Aref Ruqaa', serif;
}

.box-icon {
    font-size: 3rem;
    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;
}

/* ======================Projects Section CSS===================== */

.projectSection {
    padding-top: 4%;
    padding-bottom: 4%;
}

.projHeadings {
    font-size: 4em;
    font-weight: 500;
    color: #0B3222;
    font-family: 'Marko One', serif;
}

.projItem {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 2.45rem;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #0B3222;
}

.projItem {
    transform: translateY(50px);
    opacity: 0;
    transition: all 2s ease;
}

.projItem.active1 {
    transform: translateY(0px);
    opacity: 1;
}

.proj-link {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.projItem:hover {
    background-color: #F8E3A8;
}

.proj-hg {
    font-size: 1.1rem;
    font-family: 'Marko One', serif;
}

.projInfo {
    font-size: 2.25rem;
    font-family: 'Marko One', serif;
}

.yearDiv {
    font-size: 1rem;
    font-family: 'Marko One', serif;
}

.hover-reveal {
    position: absolute;
    width: 300px;
    height: 400px;
    top: 50%;
    left: 50%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    z-index: 100;
}

.hover-reveal img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform .4s ease-out;
}

/* ==================Clients Section====================== */

.afft-heading {
    color: #0B3222;
    font-size: 2.5rem;
    font-family: 'Marko One', serif;
}

.client-heading {
    color: #0B3222;
    font-size: 2.5rem;
    font-family: 'Marko One', serif;
    text-align: center;
}

.affImage {
    border-right: 2px solid #0B3222;
}

.aff1 img {
    width: 100px;
    height: 100px;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    margin: 6% 0;
    background: #FFF;
    white-space: nowrap;
}

.logo-wrapper {
    display: inline-block;
    animation: 40s slide infinite linear;
}

.logo-wrapper img {
    margin: 0 20px;
    cursor: pointer;
    width: 140px;
    height: 140px;
}

.logo-slider:hover .logo-wrapper {
    animation-play-state: paused;
}

.logo-slider:before,
.logo-slider:after {
    position: absolute;
    top: 0;
    width: 300px;
    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%);
    }
}

/* ==============Footer Section================ */

.footer {
    background-color: #D8B25F;
    color: #0B3222;
    position: relative;
}

.footer-links {
    display: flex;
    list-style: none;
}

.first h4 {
    font-family: 'Aref Ruqaa Ink', serif;
}

.footer-links li {
    font-size: 16px;
    font-family: 'Marko One', serif;
}

.footer-links li a {
    text-decoration: none;
    color: #0B3222;
}

.footer-links li a:hover {
    text-decoration: underline;
}

.second {
    display: flex;
    flex-direction: column;
}

.second h4 {
    font-family: 'Aref Ruqaa Ink', serif;
}

.second h5 {
    font-family: 'Marko One', serif;
    margin-top: 10px;
    margin-bottom: 0;
}

.second p {
    font-size: 12px;
}

.footerDown img {
    width: 100%;
    height: auto;
    filter: sepia(100%);
    -webkit-filter: sepia(100%);
}

.copyright {
    font-size: 14px;
}

.social-links {
    display: flex;
    list-style: none;
    padding: 0;
}

.footerlogo {
    color: #D8B25F;
    text-decoration: none;
    font-size: 18px;
}

.footerlogo:hover {
    opacity: 0.6;
}

/* ==============Conatactus and Careers Page CSS=================== */

.contactSection {
    margin-top: 40px;
}

.contacthd {
    font-size: 5em;
    line-height: 1.4;
    font-family: 'Marko One', serif;
    color: #0B3222;
}

.pinDiv {
    padding: 4rem 5rem;
}

.socialContact {
    margin-top: 80px;
}

.social-icon {
    font-size: 1rem;
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    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: #FFF;
}

.ct-logo {
    display: inline-block;
    line-height: 1;
}

.pinDiv2 {
    padding: 4rem 5rem;
}

.input-box {
    border: none !important;
    border-bottom: 1px solid #000 !important;
    padding: 10px;
    margin-bottom: 30px;
    height: 40px;
    width: 100%;
    border-radius: 0;
    background: transparent !important;
    font-family: 'Aref Ruqaa Ink', serif;
    box-shadow: none !important;
}

.nextInput {
    border: none !important;
    border-bottom: 1px solid #000 !important;
    height: 40px;
    width: 100%;
    border-radius: 0;
    background: transparent !important;
    font-family: 'Aref Ruqaa Ink', serif;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #848484 !important;
}

.form-control {
    line-height: 2;
}

.text-message {
    font-size: 14px;
    box-shadow: none !important;
    border-color: #000 !important;
    font-family: 'Aref Ruqaa Ink', serif;
    background: transparent !important;
}

.submit-btn {
    border: none;
    background: transparent;
    font-size: 3.5rem;
    color: #0B3222;
    font-weight: 700;
    vertical-align: middle;
    transition: all 300ms ease-in-out;
}

.submit-btn:hover {
    color: #D8B25F;
    transform: translateY(-5px);
}

.submit-btn i {
    font-size: 2.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapSection {
    border-right: 2px solid #0B3222;
}

.zoom-image {
    width: 400px;
    height: 200px;
    overflow: hidden;
}

.map-image {
    transition: 0.3s;
}

.map-image:hover {
    transform: scale(1.1);
}

.footer-ul li {
    color: #0B3222;
    font-size: 14px;
    line-height: 1.1;
    font-size: 800;
    font-family: 'Marko One', serif;
    list-style: none;
    padding: 10px 0;
}

.footer-li {
    display: flex;
    align-items: center;
}

.footer-ul li i {
    font-size: 1.2rem;
    fill: #0B3222;
}

.mapsHdg {
    color: #0B3222;
    font-size: 2.4rem;
    line-height: 1.1;
    font-size: 800;
    font-family: 'Marko One', serif;
}

.careershd {
    font-size: 5rem;
    line-height: 1.4;
    font-family: 'Marko One', serif;
    color: #0B3222;
}

.banner-img {
    position: absolute;
    width: 100%;
    height: auto;
    float: right;
}

@media all and (max-width: 991px) {

    .contacthd {
        font-size: 2.5rem;
    }

    .careershd {
        font-size: 2.5rem;
    }

    .mapSection {
        border: none;
    }

    .zoom-image {
        width: 100% !important;
        height: auto !important;
    }
}