/* Variables */

:root {
    --main-bg-color: rgba(111, 142, 32, 0.1);
    --primary-color: #373F36;
    --secondary-color: #6F8E20;
    --accent-color: #FFF3E5;
    --footer-text: #fff;
    --button-text: #fff;
    --gradient-button: linear-gradient(180deg, #FCE586 0%, #E98B23 100%);
    /* white icon filter */
    --icon-filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(5%) hue-rotate(168deg) brightness(101%) contrast(103%);
    --icon-filter-hover: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(5%) hue-rotate(168deg) brightness(101%) contrast(103%);
    --services-text-hover: #fff;
}

* {
    outline: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
}

ul li,
ol li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

a,
a:hover,
a:focus,
a:active {
    outline: none !important;
    text-decoration: none;
    color: var(--secondary-color);
}

body {
    font-size: 14px;
    overflow-x: auto;
}

body,
html {
    height: inherit !important;
}

img {
    max-width: 100%;
    display: block;
}

.dropdown-container {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    column-count: 2;
}

.dropdown-menu>li>a {
    padding: 8px;
}

.dropdown-container:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
    top: 40px;
}

.close {
    opacity: 1 !important;
}


/* Common css */

#about {
    float: left;
    width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-main {
    float: left;
    width: 100%;
}

.page-dark-btn {
    padding: 15px 50px;
    font-weight: 700;
    font-size: 28px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    transition: all .5s;
    color: #fff;
    line-height: inherit !important;
}

.page-dark-btn:hover {
    background-color: #fff;
    transition: all .5s;
    color: var(--secondary-color);
}

.header-btn.page-dark-btn {
    padding: 15px 20px;
    color: #fff;
    font-size: 24px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    line-height: inherit !important;
}

.header-btn.page-dark-btn:hover svg path {
    fill: var(--secondary-color);
    transition: all .5s;
}

.header-btn.page-dark-btn:hover svg rect {
    fill: var(--secondary-color);
    transition: all .5s;
}

.header-btn.page-dark-btn:hover {
    background-color: #fff;
    transition: all .5s;
    color: var(--secondary-color);
}

.header-btn.page-dark-btn:hover img {
    filter: brightness(0) saturate(100%) invert(62%) sepia(11%) saturate(3483%) hue-rotate(36deg) brightness(78%) contrast(75%);
}

.fw-medium {
    font-weight: 500;
}


/* keyframe */


/* Border hover */

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}


/* Header fixed */

@-webkit-keyframes slide-in {
    from {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-in {
    from {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/* Header startv */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header .header-inner {
    padding: 14px 0;
    position: relative;
}

.header.fixed-top .header-inner {
    padding: 10px 0;
    -webkit-animation: slide-in 400ms ease-out;
    animation: slide-in 400ms ease-out;
    background-color: #373F36;
}

#navbarSupportedContent {
    background: #fff;
    border-radius: 10px;
    flex: unset;
}

.navbar-nav .nav-item {
    padding: 10px 20px !important;
}

.nav-item .nav-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    position: relative;
    color: #222;
}

.nav-item .nav-link:after {
    content: "";
    height: 2px;
    width: 0;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    transition: all ease-in-out 300ms;
    background: var(--secondary-color);
    margin: auto;
}

.nav-item:hover .nav-link {
    color: var(--secondary-color);
}

.nav-item:hover .nav-link:after {
    width: 100%;
    -webkit-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    transition: all ease-in-out 300ms;
}

.header-mobile-number {
    background: #fff;
    margin-top: 1px;
    padding: 10px 20px;
}

.logo {
    margin: 0;
    position: relative;
    max-width: 192px;
}

.logo img {
    height: 64px;
    object-fit: contain;
}

.header-mobile-number a {
    font-size: 20px;
    font-weight: 800;
    color: #0BADDD;
}

.mobile-bottom-btn {
    position: fixed;
    width: 100%;
    bottom: 0;
}

.mobile-btn-left {
    background-color: #222;
}

.mobile-btn-right {
    background-color: var(--secondary-color);
}

.mobile-btn {
    padding: 17px 22px;
    font-size: 24px;
    width: 50%;
    display: block;
    color: #fff;
    font-weight: 700;
}


/* Home Page */


/* Hero section */

.hero-section {
    height: 100vh;
    background-image: url(../images/header1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 70px 0;
}

.hero-section:after {
    content: '';
    bottom: 0;
    top: 0;
    left: 0;
    position: absolute;
    background-image: url(../images/header-overlay-desktop.webp);
    height: 100vh;
    background-size: cover;
    width: 60%;
    background-position: bottom;
}

.hero-inner {
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 550px;
    padding-top: 101px;
}

.hero-inner h1 {
    color: #fff;
    font-weight: 700;
    line-height: 56px;
    padding-bottom: 20px;
    font-size: 48px;
}

.hero-inner p {
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 32px;
}

.hero-inner a {
    color: #fff;
    padding: 18px 35px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    transition: all .5s;
    line-height: inherit !important;
}

.hero-inner a:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--secondary-color);
    transition: all .5s;
}

.page-dark-submin-btn {
    color: #fff;
    padding: 9px 27px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    transition: all .5s;
}

.page-dark-submin-btn:hover {
    background-color: var(--secondary-color);
    color: #222;
    transition: all .5s;
}


/* contact-section */

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-us {
    background: var(--main-bg-color);
    border-radius: 40px;
    padding: 10px;
}

.contact-us-left {
    padding: 70px;
    width: 48%;
}

.contact-us-left h2 {
    color: #222222;
    font-weight: 700;
    line-height: 82px;
    padding-bottom: 38px;
    font-size: 70px;
}

.contact-us-left p {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: rgba(34, 34, 34, 0.6);
}

.contact-us-right {
    background-color: #fff;
    border-radius: 30px;
    padding: 42px;
    width: 52%;
}

.text-red {
    color: rgba(235, 31, 31, 1);
}

.page-field .form-control {
    font-size: 15px;
    font-weight: 500;
    color: rgba(34, 34, 34, 1);
    padding: 16px;
    line-height: 22px;
    background-color: rgba(245, 245, 245, 1);
    border-radius: 10px;
}

.page-field .iti__selected-flag {
    border-radius: 10px 0 0 10px;
    padding: 0 14px;
    background-color: transparent;
}

.page-field .intl-tel-input,
.page-field .iti {
    width: 100%;
}

.form_button {
    min-width: 150px;
    height: 60px;
}

.parsley-required,
.parsley-type {
    color: red;
    font-weight: 500;
}


/* Footer Start */

.footer {
    background: var(--primary-color);
    padding: 60px 0;
}

.footer-description {
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    word-break: break-word;
}

.footer-contact-detail svg {
    min-width: 21px;
}

.footer-list ul li a:hover,
.footer-contact-detail a:hover {
    color: #303030;
}

.footer-list h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}

.footer-list ul li {
    padding-top: 24px;
}


/* Footer End */


/* Header end */

@media(max-width:1175px) {
    .logo {
        max-width: 180px;
    }
    .navbar-nav .nav-item {
        padding: 0 15px !important;
    }
}

@media(max-width:1055px) {
    .logo {
        max-width: 180px;
    }
    .nav-item .nav-link {
        font-size: 16px;
    }
    .header-btn.page-dark-btn {
        font-size: 20px;
    }
}

@media(max-width:991px) {
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        column-count: 1;
        background-color: transparent;
    }
    .dropdown-menu>li>a {
        color: #222;
    }
    .dropdown-menu.show {
        display: block;
    }
    .dropdown-container:hover .dropdown-menu {
        border: 0;
    }
    .navbar-nav .nav-item {
        padding: 10px 20px !important;
    }
    .header.fixed-top .header-inner {
        background-color: #fff;
    }
    /* Header */
    .header .header-inner {
        padding: 10px 0;
        background-color: #fff;
    }
    .logo:after {
        content: unset;
    }
    .logo {
        content: unset;
        padding: 0;
        max-width: 190px;
        padding: 0 !important;
        background-color: transparent;
        margin-left: auto;
        border-radius: 0;
    }
    #navbarSupportedContent {
        border-radius: 0;
    }
    .nav-item .nav-link {
        color: #222;
        font-size: 18px;
    }
    .nav-item .nav-link:after {
        color: #222;
    }
    .logo-close-sidebar-top {
        padding: 20px;
    }
    .navbar-toggler-icon.close {
        background-image: none;
    }
    .navbar-toggler-icon {
        background-image: none;
    }
    .header-mobile-number {
        display: none !important;
    }
    .header.fixed-top .header-mobile-number {
        display: block !important;
    }
    .mobile-bottom-btn {
        display: none !important;
    }
    .header.fixed-top .mobile-bottom-btn {
        display: flex !important;
    }
    /* sidebar */
    .header .header-inner .navbar-collapse {
        display: block !important;
        position: fixed;
        top: 0;
        bottom: 0;
        left: -350px;
        background-color: #fff;
        width: 100%;
        max-width: 350px;
        z-index: 33;
        height: auto !important;
        overflow-y: auto;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .header .header-inner .navbar-collapse.show {
        left: 0;
    }
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.5);
        -webkit-filter: blur(1px);
        filter: blur(1px);
        filter: invert(100%);
        -webkit-filter: invert(100%);
        -webkit-animation: fadeIn ease .3s;
        animation: fadeIn ease .3s;
        z-index: 3;
    }
    /* sidebar end */
    /* Home */
    .hero-section {
        margin-top: 84px;
        height: calc(100vh - 84px);
    }
    .hero-section:after {
        background-image: url(../images/header-overlay-mobile.webp);
        height: 50vh;
        background-size: cover;
        width: 100%;
        background-position: bottom;
    }
    .hero-inner {
        padding-top: 0;
    }
    .hero-inner p {
        padding-bottom: 30px;
    }
    .contact-us-left {
        padding: 27px;
        width: 100%;
    }
    .contact-us-right {
        padding: 32px;
        width: 100%;
    }
    /* Footer */
    .copyright-text {
        margin-top: 20px;
        text-align: center;
    }
    .footer {
        margin-bottom: 70px;
    }
    /* Footer end */
}

@media(max-width:767px) {
    /* Footer */
    .footer {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .footer-logo-text {
        padding-bottom: 20px;
    }
    .footer-list {
        padding: 20px 0;
    }
    .footer-list ul li {
        flex-basis: 50%;
        padding: 24px 0 0 0;
    }
    .copyright-text {
        text-align: left;
    }
}

@media(max-width:576px) {
    /* Hero */
    .hero-section {
        padding: 44px 0;
    }
    .hero-inner h1 {
        line-height: 43px;
        font-size: 36px;
    }
    .hero-inner p {
        font-size: 18px;
        line-height: 21px;
    }
    .hero-inner a {
        padding: 9px 20px;
        font-size: 18px;
    }
    .mobile-btn {
        padding: 25px 22px;
        font-size: 20px;
    }
    /* Home */
    .contact-section {
        padding: 50px 0;
    }
    .contact-us {
        border-radius: 24px;
        padding: 5px;
    }
    .contact-us-left h2 {
        font-size: 42px;
        line-height: 48px;
        padding-bottom: 24px;
    }
    .contact-us-left p {
        font-size: 16px;
        line-height: 20px;
    }
    .contact-us-right {
        padding: 16px;
        border-radius: 20px;
    }
    .form_button {
        height: 58px;
    }
    /* Footer */
    .footer {
        margin-bottom: 80px;
    }
    .environment-agency {
        max-width: 95px;
    }
    .stripe {
        max-width: 206px;
    }
}