:root {
    /* transition */
    --transition-3: all 0.3s ease-in-out;
    --gableGreen: #5E7058;
    --appleGreen: #4DAF46;
    --apple: #51B748;
    --white: #FFF;
    --blackBean: #0A211C;
    --nepal: #959ABE;
    --cool-gray: #444;
    --light-black:#090909;
    --light-grey:#F8F8F8;
    --vlight-grey:#E3E3E3;
    --gray: #838383;
    --gray-1: #939393;
    --black: #000;
    --feta: #F2FDEF;
    --articulatCF: 'articulatCF', sans-serif;
    --times :'times new roman',sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: inherit;
    line-height: inherit;
}
h1{
    font-family: var(--times);
}
html {
    scroll-behavior: smooth;
    line-height: 1;
    
}
body {
    font-family: var(--articulatCF);
    overflow-x: hidden
}
/* scrollbar none */
.scrollbar-none,
.scrollbar-none * {
    scrollbar-width: none;
}

.scrollbar-none::-webkit-scrollbar,
.scrollbar-none *::-webkit-scrollbar {
    display: none;
}

/* img, svg, video */
img,
svg,
video {
    vertical-align: middle;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-position: center;
    object-fit: contain;
}


.video {
    position: relative;
    width: 100%;
    height: auto;
}

.video::after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
}

.video video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ul ol */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.show-list ul {
    list-style: disc;
    padding-left: 20px;
}

.show-list ol {
    list-style-type: decimal;
    padding-left: 20px;
}

/* anchor tag */
a {
    text-decoration: unset;
    color: inherit;
}

a:hover {
    color: inherit;
}

/* button */
.button,
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

/* swiper slide */
.swiper-slide {
    height: auto !important;
}

/* typography */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.text-mb h1,
.text-mb h2,
.text-mb h3,
.text-mb h4,
.text-mb h5,
.text-mb h6,
.text-mb p {
    margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-weight: 700;
}
h2{
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: 113%;
    color:var(--gableGreen);
    font-family: var(--times);
}
h2 span{
    font-style: italic
}

.btn-green{
    background: var(--gableGreen);
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--white);
}
.btn-green:hover{
    color: var(--white);
}
header .container-fluid{
    padding: 0;
}
@media (min-width: 1600px) {
    header ,
    section{
        padding: 0px 50px;
        max-width: 1920px;
        margin: auto;
    } 
}
@media (max-width: 1599px) {
    header ,
    section{
        padding: 0px 30px;
    } 
}
@media (max-width: 991.98px) {
    header ,
    section{
        padding: 0px 20px;
    } 
    h2{
        font-size: 42px;
        font-style: normal;
        font-weight: 400;
        line-height: 103%; 
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1440px;
    }
    
}

