*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
}

.row{
    margin:0;
    padding:0;
}

html{
    margin-top:0;
    margin-bottom: 0;
    margin-left:0;
    margin-right:0;
}

section{
    width:100%;
    float:left;
}

.fixed-container {
    max-width: 1250px;
    margin: 0 auto;
    width: 93%;
}

/* Colors */
:root {
    /* --dark1: #6B240C;
    --dark2: #994D1C;
    --light2: #E48F45;
    --light1: #F5CCA0; */

    --dark1: #004225;
    --dark2: #994D1C;
    --light2: #EDB73D; 
    --light1: #F5CCA0;
}

/* Fonts */
@font-face{
    font-family: "Montserrat-Regular";
    src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face{
    font-family: "Montserrat-Medium";
    src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face{
    font-family: "Montserrat-Bold";
    src: url("../fonts/Montserrat-Bold.ttf");
}


/* Fontawesome */
@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.eot");
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont");
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.woff");
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/FontAwesome.otf");
    font-display: swap;
}


/* Header */
section#header-sec {
    background: var(--dark1);
    position: fixed;
    z-index: 999;
}

section#empty-sec {
    padding-top: 70px;
}

.pre-header {
    background: var(--dark2);
    padding: 10px 0;
}

.pre-header p {
    font-size: 14px;
    font-family: "Montserrat-Regular";
    font-display: swap;
    color: white;
    margin-bottom: unset;
}

.pre-head-left {
    display: flex;
}

.pre-content {
    display: flex;
    padding-right: 15px;
    align-items: center;
}

.pre-content a {
    text-decoration: none;
    color: white;
}

.pre-content img {
    padding-right: 12px;
}

.pre-head-right {
    display: flex;
    justify-content: end;
    color: white;
}

.pre-head-right p:not(:last-child) {
    padding-right: 16px;
}

.main-header {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

ul.menu a {
    font-size: 16px;
    font-family: "Montserrat-Bold";
    font-display: swap;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.side-menu {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-family: "Montserrat-Bold";
    font-display: swap;
}

.menu {
    gap: 17px;
    list-style: none;
    display: flex;
}

ul.menu {
    padding: 0;
    margin-bottom: 0 !important;
}

.nav-links {
    text-decoration: none;
    color: white;
}

.nav-links:hover {
    color: var(--light1);
}

.menu-icon {
    display: none;
}

span.menu-icon.menu-tab {
    position: relative;
    z-index: 10;
    top: 0;
}

ul.menu li {
    position: relative;
    display: inline-block;
}


ul.sidemenu li ul li {
    width: 100%;
    padding: 7px 0;
    text-align: left;
}

.navbar-left img {
    width: 90px;
}

@media(max-width: 991px) {
    .wcu-card h4 {
        font-size: 18px !important;
    }

    section#empty-sec {
        padding-top: 65px;
    }

    .hide-menu {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 9;
        background-color: var(--dark1);
        right: -100%;
        transition: all 0.6s ease-in-out;
    }

    .menu li {
        border-bottom: 1px solid #ffffff69;
        width: 100%;
        padding-left: 10px;
    }

    .nav-links {
        color: white;
    }

    .nav-links:hover {
        color: white;
    }

    .nav-bar {
        justify-content: space-between;
    }

    .menu-icon {
        display: block;
    }

    .menu-icon img {
        width: 25px;
        height: 25px;
        display: inline-block;
        margin-right: 15px;
    }

    .show {
        display: block;
        right: 0 !important;
        transition: all 0.6s ease-in-out;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        margin-top: 130px;
    }

    .nav-btn,
    .pre-header {
        display: none !important;
    }


    .pre-header p {
        font-size: 12px;
    }

    ul.menu a {
        font-size: 14px;
    }


    .side-menu {
        font-size: 14px;
    }

    /* banner */
    .dt-banner {
        display: none !important;
    }

    .mob-banner {
        display: block !important;
    }
}

@media(max-width: 998px) {
    .pre-header p {
        font-size: 12px;
    }
}

@media(min-width: 1600px) {
     .pre-header p {
        font-size: 18px;
    }

    ul.menu a {
        font-size: 20px;
    }
}

/* banner */

.banner img {
    width: 100%;
    max-width: 100%;
}

.mob-banner {
    display: none;
}

.banner {
    position: relative;
}

.contact-btn a {
    text-decoration: none;
    color: white;
}

.contact-btn {
    position: absolute;
    bottom: 85px;
    left: 49px;
    background: var(--light2);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Montserrat-Bold';
}

/* Why Choose Us */
section#wcu-sec {
    padding: 50px 0;
    background: var(--light2);
}

.wcu-card img, .wcu-card h4 {
    text-align: center;
    display: block;
    margin: auto;
}

.wcu-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: white;
}

.wcu-card h4 {
    padding-bottom: 10px;
    font-family: 'Montserrat-Bold';
    font-size: 22px;
}

.wcu-card p {
    font-family: 'Montserrat-Medium';
    font-size: 16px;
}

/* About */
section#about-sec {
    padding: 50px 0;
}

.about-left img {
    width: 100%;
    max-width: 100%;
}

.about-right h4 {
    font-family: 'Montserrat-Bold';
    font-size: 46px;
}

.green-color {
    color: var(--dark1);
}

.yellow-color {
    color: var(--light2);
    font-family: 'Montserrat-Bold';
}

.about-right-content {
    padding-top: 25px;
    font-size: 16px;
    font-family: "Montserrat-Medium";
}

/* Serivces */
section#services-sec {
    padding: 50px 0;
}

h4.services-head {
    padding-bottom: 15px;
    font-family: 'Montserrat-Bold';
    font-size: 22px;
}

.services-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.services-card img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;

}

.services-text {
    position: absolute;
    bottom: -12px;
    /* background-color: rgba(255, 255, 255, 0.7); */
    font-family: 'Montserrat-Bold';
    color: white;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-card:hover .services-text {
    opacity: 1;
}

/* Contact */
section#contact-sec {
    padding: 50px 0;
    background: #f9edd1;
    /* background: var(--light1); */
}

.contact-left iframe {
    width: 100% !important;
    max-width: 100%;
}

/* Footer */
section#footer-sec {
    padding: 50px 0;
    background: #ebebeb;
}

section#footer-sec img {
    width: 90px;
}

section#footer-sec p {
    font-size: 12px;
    font-family: 'Montserrat-Medium';
    cursor: pointer;
}

p.footer-head {
    font-size: 14px !important;
    font-family: 'Montserrat-Bold' !important;
}

.footer-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.contact-right h4 {
    font-family: 'Montserrat-Bold';
    font-size: 24px;
}

.contact-right p {
    font-family: 'Montserrat-Medium';
    font-size: 16px;
}

.contact-left {
    margin-bottom: 10px;
}

/* Reviews */
section#reviews-sec {
    padding: 50px 0;
    background: beige;
}

.review-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 15px;
}

.client-name {
    font-family: 'Montserrat-Bold';
    font-size: 20px;
    text-align: center;
}

.review {
    font-family: 'Montserrat-Medium';
    font-size: 15px;
}

.review {
    padding: 5px 20px 0;
}

h3.review-head {
    text-align: center;
    padding-bottom: 10px;
    font-family: 'Montserrat-Bold';
    font-size: 24px;
    color: var(--dark1);
    text-decoration: underline var(--light2) 3px;
}

@media(min-width: 768px) {
    .review-card {
       min-height: 434px;
    }
}

@media(min-width: 860px) {
    .review-card {
       min-height: 367px;
    }
}

@media(min-width: 1100px) {
    .review-card {
       min-height: 275px;
    }
}

@media(max-width: 1173px) {
    .about-right h4 {
        font-size: 28px;
    }

    .about-right-content {
        padding-top: unset !important;
    }
}

@media(min-width: 768px) and (max-width: 996px) {
    .wcu-card {
        min-height: 430px;
    }
}

@media(min-width: 996px) and (max-width: 1237px) {
    .wcu-card {
        min-height: 335px;
    }
}

@media(max-width: 767px) {
    h4.services-head {
        font-size: 18px !important;
    }

    .about-right h4 {
        font-size: 22px;
        padding-top: 15px;
    }

    .footer-main {
        text-align: center;
        padding-bottom: 20px;
    }

    .wcu-card h4 {
        font-size: 18px !important;
    }

    .wcu-card p {
        font-size: 14px !important;
    }

    .contact-right p {
        font-size: 14px !important;
    }

    .contact-right h4 {
        font-size: 20px !important;
    }

    .client-name {
        font-size: 18px !important;
    }

    .review {
        font-size: 13px !important;
    }

    h3.review-head {
        font-size: 20px;
    }

    section#services-sec {
        padding: 50px 0 0 !important;
    }
    
}

