:root {
    --primary-color: #12AE4D;
    --dark-green: #01322C;
    --text-color: #F6FEF9;
    --black: #313132;
    --card-title-color: #DFFBEA;
    --gradient-color: #E8FCF0;
}

body {
    font-family: "Lato";
}

li {
    list-style-type: none;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color) !important;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--black) !important;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px;
}

a {
    text-decoration: none !important;
}

/* header================================================================== */

.header-top {
    background-color: var(--dark-green);
    padding: 12px 0px;
}

.header-top-div {
    display: none;
}

.header-top-social img {
    width: 18px;
}

.hedaer-top-left {
    gap: 32px;
}

.nav-web .logo,
footer .logo {
    width: 137px;
}

.header-top a {
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Arial';
}

.header-top-right {
    gap: 12px;
}

/* Nav Mobile=============================================== */
.side-bar {
    background: white;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -1000px;
    transition: 0.8s ease ease-in-out;
    transition-property: right;
    z-index: 20000;
    padding: 10px 0px;
}

.side-bar.active {
    right: 0;
}

.side-bar .menu {
    width: 100%;
    margin-top: 30px;
}

.side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .item a {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
}

.side-bar .menu .item a:hover {
    background: var(--primary-color);
    transition: 0.8s ease;
    color: var(--white);
}

.side-bar .menu .item i {
    margin-right: 15px;
}

.side-bar .menu .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.8s ease;
}

.side-bar .menu .item .sub-menu {
    background: white;
    display: none;
}

.side-bar .menu .item .sub-menu a {
    padding: 10px 0px 10px 80px;
    line-height: 30px;
}

.menu-btn {
    color: rgb(0, 0, 0);
    font-size: 22px;
    cursor: pointer;
}

.main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.side-bar header {
    background: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}

.menu .active {
    background-color: var(--primary-color);
}

.menu .active a {
    color: white !important;
}

/* ============================================================ */
.header-main {
    padding: 15px 0px;
}

.nav-web {
    display: none !important;
}

.navbar-nav {
    gap: 30px;
    display: flex;
    align-items: center;
}

.nav-web a {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--black);
    transition: color .5s ease;
}

.nav-item:hover a {
    color: var(--primary-color);
}

.nav-web .active a {
    color: var(--primary-color);
}

.inquiry-btn{
    display: flex;
}

.inquiry-btn{
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 18px 42px;
    transition: background-color .5s ease;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.nav-web .inquiry-btn a {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 18px 42px;
    transition: background-color .5s ease;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.nav-web .inquiry-btn {
    color: var(--primary-color) !important;
    border: none;
    border-radius: 0;
    padding: 0px;
    transition: none;
}

.inquiry-btn a:hover {
    color: var(--text-color) !important;
    background-color: var(--primary-color);
}

/* Background Video======================= */
.banner {
    position: relative;
    height: calc(100vh - 104px);
    overflow: hidden;
}

.videoembed {
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
}

.main-banner-title {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 0px 12px;
    text-align: center;
}

.main-banner-title h1 {
    font-size: 46px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Alatsi";
    margin-bottom: 8px;
}

.main-banner-title p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 40px;
}

.main-banner-title .inquiry-btn {
    color: var(--text-color) !important;
    background-color: var(--primary-color);
    transition: all .3s ease;
}

.main-banner-title .inquiry-btn:hover {
    background-color: var(--text-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
}

/* ============================================ */

.about-us-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-us-section .first-overlay img {
    width: 650px;
}

.about-us-section .second-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0px 12px;
}

.accent-header {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: "Alatsi";
    margin-bottom: 5px;
}

.section-header {
    font-size: 30px;
    line-height: 35px;
    font-weight: 400;
    color: var(--black);
    font-family: "Alatsi";
    margin-bottom: 30px;
}

.about-us-section .section-header {
    /* width: 60%; */
}

.description {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--black);
}

i {
    font-size: 24px;
}

.about-us-content-div {
    background-color: var(--text-color);
    text-align: center;
    /* margin: 0px 470px; */
    padding: 50px 10px;
    border-radius: 8px;
}

.read-more-btn {
    margin-top: 30px;
}

.read-more-btn a {
    background-color: var(--primary-color);
    color: var(--text-color) !important;
}

.section-space {
    margin-top: 100px;
}

.products-section {
    text-align: center;
}

.products-section .section-header {
    /* width: 50%; */
    margin-bottom: 5px;
}

.products-section .description {
    /* width: 45%; */
}

.products-slider-item img,
.blogs-slider-item img {
    border-radius: 4px;
    width: 100%;
}

.products-slider-item,
.blogs-slider-item {
    position: relative;
    /* margin: 0px 24px; */
}

.products-slider .slick-slide,
.blogs-slider .slick-slide {
    /* width: 510px !important; */
}

.card-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: var(--card-title-color);
    margin-bottom: 2px;
}

.card-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--gradient-color);
}

.products-slider-item .overlay,
.blogs-slider-item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 12px 12px 20px 12px;
}

.products-slider-div {
    margin-top: 50px;
    /* background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 25%, var(--gradient-color) 25%, var(--gradient-color) 100%); */
    padding-bottom: 100px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 25%, var(--gradient-color) 25%, var(--gradient-color) 75%, #FFFFFF 100%);
}

.products-section .read-more-btn,
.blogs-section .read-more-btn {
    margin-top: 60px;
}

.products-slider .slick-list,
.blogs-slider .slick-list {
    /* height: 395px; */
}

.why-choose-div {
    padding: 25px 15px;
}

.why-choose-section {
    background-repeat: no-repeat;
}

.why-choose-content,
.why-choose-right-inner,
.why-choose-left-inner {
    /* height: 50%; */
}

/* .why-choose-left .why-choose-div {
    height: 50%;
} */

.why-choose-content {
    padding: 20px 0px;
}

.why-choose-content div {
    padding: 0px 12px;
}

.why-choose-content {
    text-align: right;
}

.why-choose-mid img {
    height: 100%;
}

.why-choose-div h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.light-green-div {
    background-color: var(--gradient-color);
}

.mid-green-div {
    background-color: #A5F3C4;
}

.dark-green-div {
    background-color: #052E14;
}

.dark-green-div h4 {
    color: var(--gradient-color);
}

.dark-green-div .description {
    color: var(--gradient-color);
}

.why-choose-div img {
    margin-bottom: 10px;
    width: 75px;
}

.why-choose-left,
.why-choose-mid,
.why-choose-right {
    padding: 0px;
}

.why-choose-mid {
    overflow: hidden;
}

.blogs-section {
    background: linear-gradient(to bottom, var(--gradient-color) 0%, var(--gradient-color) 10%, #FFFFFF 45%, #FFFFFF 100%);
    padding-top: 100px;
}

.blogs-slider {
    margin-top: 50px;
}

.blogs-section .description {
    /* width: 45%; */
}

.blogs-section .section-header,
.contact-us-section .section-header {
    margin-bottom: 5px;
}

.contact-us-section .container {
    border-radius: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
}

.contact-us-section .section-header,
.contact-us-section .description {
    color: var(--gradient-color);
}

form {
    background-color: var(--gradient-color);
    border-radius: 12px;
    padding: 40px 20px;
}

form input,
form textarea {
    width: 100%;
    border-radius: 8px;
    padding: 15px;
    border: none;
}

form input {
    margin-bottom: 10px;
}

input:focus,
textarea:focus{
    outline: none;
}

form .description{
    margin: 20px 0px;
    color: #949494;
    font-size: 15px;
    width: 80%;
    font-weight: 400;
}

form input::placeholder,
form textarea::placeholder {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #949494;
}

.font-32-52-700 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

form p{
    width: 100%;
}

form .wpcf7-submit {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 18px 42px;
    border-radius: 4px;
}

.contact-us-right {
    /* padding-left: 70px; */
    margin-top: 30px;
}

/* Footer=================================================================== */
.footer-bottom {
    padding: 15px 0px;
    background: linear-gradient(90deg, #000000 0%, #006457 50.5%, #000000 100%);
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.footer-bottom a {
    color: #0CB7A0;
}

footer {
    padding: 100px 0px 65px 0px;
}

footer .footer-description-div .card-description {
    color: #AFAFB1;
    width: 75%;
}

footer .logo {
    margin-bottom: 20px;
}

.footer-social {
    gap: 12px;
    margin-top: 10px;
}

.footer-div {
    margin-top: 40px;
    text-align: center;
}

.footer-div h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 5px;
    font-family: "Alatsi";
    text-transform: uppercase;
}

.footer-div a,
.footer-div .card-description {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--black);
    margin-top: 3px;
}

/* Image Zooming Animation====================================== */

.image-section {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.zoom-image {
    width: 100%;
    transition: transform 10s ease;
}

.zoom-image.zoomed {
    transform: scale(1.5);
}

/* ================================================================== */
.products-slider .slick-next,
.blogs-slider .slick-next {
    /* background-color: rgba(0, 0, 0, 0.2); */
    width: 50px;
    height: 100%;
    z-index: 9;
    right: 0;
}

.products-slider .slick-prev,
.blogs-slider .slick-prev {
    /* background-color: rgba(0, 0, 0, 0.2); */
    width: 50px;
    height: 100%;
    z-index: 9;
    left: 0;
}

/* Image Swapping Animation====================================== */
.animation-img-div {
    width: 650px;
}

.image-section-2 {
    overflow: hidden;
    height: 100vh;
}

.image {
    width: 650px;
    transition: transform 3s ease, opacity 3s ease;
}

.first-image {
    /* display: block; */
    opacity: 1;
    transform: translateY(0);
}

.second-image {
    /* display: none; */
    opacity: 0;
    transform: translateY(1000px);
}

.image-section-2.in-view .first-image {
    /* display: none; */
    opacity: 0;
    transform: translateY(-1000px);
}

.image-section-2.in-view .second-image {
    /* display: block; */
    opacity: 1;
    transform: translateY(-1000px);
}

/* ================================================================== */

.footer-logo-div {
    text-align: center;
}

.nav-mobile .logo {
    width: 110px;
}

.main-banner-img {
    height: 100%;
}

.footer-description-div {
    justify-content: center;
}

/* Scroll Up Show Header=============================================================== */

.main-banner-section {
    margin-top: 104px;
}

.header {
    position: fixed;
    width: 100%;
    height: 104px;
    top: 0px;
    transition: all .5s ease-in-out;
    z-index: 99;
    background-color: white;

    &.scroll-up {
        top: -104px;
    }

    &.scroll-down {
        top: 0px;
    }
}

.why-choose-content-web {
    display: none !important;
}

.why-choose-content-mobile {
    display: block !important;
    text-align: left;
    padding: 30px 12px;
}

/* Search Modal============================================= */
#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 999999;
    display: block;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: white;
    background: transparent;
    border-top: none;
    border-bottom: 1px solid var(--primary-color);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    outline: none;
    padding: 10px;
}

#search .close {
    position: fixed;
    top: 30px;
    right: 30px;
    opacity: 1;
    font-size: 27px;
    color: var(--primary-color);
}

#search .close:hover {
    color: var(--primary-color);
    cursor: pointer;
}

/* ========================================================================================= */


.search {
    margin-right: 30px;
    display: flex;
    align-items: center;
}