/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: 'Mulish';
    src: url('fonts/mulish/Mulish-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    /* Supports weight range if variable font */
    font-style: normal;
}

@font-face {
    font-family: 'Mulish';
    src: url('fonts/mulish/Mulish-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Glory';
    src: url('/fonts/glory/Glory-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Glory';
    src: url('/fonts/glory/Glory-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

:root {
    --body-font-size: 18px;
    --h1-font-size: 36px;
    --h2-font-size: 32px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 16px;
    --p-font-size: 16px;
    --a-font-size: 16px;

    --white-color: #fff;
    --primary-color: #3F9C40;
    --primary-background-color: #61B856;
    --secondary-color: #0071B9;
    --secondary-background-color: #0071B9;
    --gray-color: #667085;
    --light-gray: #d2d3d6;
    --light-gray-background: #f2f4f4;
    --white-background: #fff;
    --light-green-background: #EDFFEB; 
    --light-background: #F4F9F9;

    scroll-behavior: smooth;
}


body {
    font-size: var(--body-font-size);
    font-family: 'Glory', sans-serif;
    background-color: var(--white-background);
    color: #707071;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    font-size: var(--p-font-size);
}

a {
    font-size: var(--a-font-size);
}

.primary-bg {
    background-color: var(--primary-background-color);
}
.light-gray-bg {
    background-color: var(--light-gray-background);
}

.primary-btn {
    color: #fff;
    background-color: var(--primary-background-color);
    border-color: var(--primary-background-color);
}

.primary-btn:hover {
    color: #fff;
    background-color: #488740;
    border-color: #488740;
}

#increaseSize .btn:focus,
#resetSize .btn:focus,
#decreaseSize .btn:focus {
    outline: none !important;
}

.light-gray-bg {
    background-color: var(--light-gray-background);
}

.text-justify {
    text-align: justify;
}

/* ---------------------------------
*  Hero 
------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    background-color: var(--light-green-background);
    overflow: hidden;
}


.banner {
    position: relative;
    width: 100%;
    height: 70vh;
}

.banner img {
    width: 100%;
    object-fit: cover;
}

.banner-fixed-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 40%;
    /* background: green; */
    background-image: linear-gradient(to bottom right, #61B856, #2FC0CC);
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.banner-text {
    width: 70%;
    font-weight: normal;
    color: rgb(255, 255, 255);
}

.banner-title {
    font-family: 'Molish' sans-serif;
    font-weight: 600;
    color: var(--white-color);
    background: linear-gradient(to right bottom, rgb(255, 255, 255), #98FF9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -----------------------------------------
    Latest News
----------------------------------------- */
.latest {
    width: 100%;
    height: 60px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.latest .latest-head {
    width: 170px;
    height: 60px;
    padding: 0 20px 0 20px;
    display: flex;
    align-items: center;
    background-color: var(--secondary-background-color);
    color: white;
}

.latest marquee {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px 0 20px;
}

.latest marquee ul {
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0 10px;
}

.latest marquee ul li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    border-right: 2px solid var(--light-gray);
}


#benefits_of_domestic_png {
    background-color: var(--light-background);
}

@media only screen and (max-width: 600px) {
    .latest {
        height: 50px;
    }

    .latest .latest-head {
        width: 160px;
        height: 50px;
        font-size: var(--p-font-size);
    }

    .latest .latest-head h4{
        height: 50px;
        font-size: var(--p-font-size);
    }
}

@media only screen and (min-width: 768px) {
    .latest {
        height: 50px !important;
    }

    .latest .latest-head {
        height: 50px !important;
        width: 190px !important;
    }
}

@media only screen and (min-width: 992px) {
    .latest {
        height: 60px !important;
    }

    .latest .latest-head {
        height: 60px !important;
        width: 190px !important;
    }
}

/* .section-title {
font-size: 2rem;
font-weight: 600;
color: #72BD6A;
margin: 10px 0px;
} */

.section-title {
    background: linear-gradient(to bottom, var(--primary-background-color), var(--secondary-background-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    /* margin-bottom: 20px; */
    padding-bottom: 0;
    color: #72BD6A;
}

.img-shape {
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.img-shape-md {
    border-top-right-radius: 25%;
    border-bottom-left-radius: 25%;
}


.benefit .card {
    flex-direction: row;
    min-height: 205px;
    background-color: #DCFFD8;
    border: none;
    transition: all 0.3s ease-in-out;
}

.benefit .card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.benefit .card-img-left {
    width: 200px;
    /* background: #2FC0CC; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.benefit .card img {
    height: auto;
    width: 100px;
    max-width: 100%;
}

.benefit .card:hover .card-img-left {
    transform: scale(1.2);
}

.benefit .card-body {
    width: 100%;
    display: flex;
    align-items: center;
}

/* .benefit-card p,
.benefit-card h5 {
    font-size: 1.5rem;
} */






/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    margin-bottom: 30px;
}

.gallery .gallery-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    width: auto;
    max-height: 15rem;
    height: 100%;
    width: 100%;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.gallery .gallery-wrap img {
    transition: 0.3s;
    object-fit: cover;
    height: auto;
    width: 100%;
}



.gallery .gallery-wrap .gallery-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    text-align: center;
    background: rgba(31, 53, 72, 0.6);
    padding-bottom: 30px;
}

.gallery .gallery-wrap .vdo-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    color: #fff;
    background: red;
    border-radius: 5px;
    padding: 0 5px;
}


.gallery .gallery-wrap .gallery-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.gallery .gallery-wrap .gallery-info p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.gallery .gallery-wrap .gallery-info a {
    color: #428bca;
    margin: 0 4px;
    line-height: 0;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery .gallery-wrap .gallery-info a i {
    font-size: 22px;
    line-height: 0;
}

.gallery .gallery-wrap .gallery-info a:hover {
    background: #428bca;
    color: #fff;
}

.gallery .gallery-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.gallery .gallery-wrap:hover .gallery-info {
    opacity: 1;
    padding-bottom: 0;
}

.gallery .gallery-wrap:hover img {
    transform: scale(1.1);
}


@media only screen and (max-width: 600px) {
    .title {
        font-size: 1.5rem !important;
    }
}