/* ============== *** CSS Variables start Here *** ============== */
/* === >> BG Color << === */
:root {
    --black: #000000;
    --primary: #061812;
    --secondary: #28A376;
    --white: #fff;
    --bg-gradint: linear-gradient(180deg, #28A376 0%, #106C5F 100%);
    /* === >> Text Color << === */
    --text-white: #FFFFFF;
    --text-primary: #28A376;
    --text-secondery: #D2D2D2;
    --text-gradint: linear-gradient(90.02deg, #28A376 0.69%, #1E8B6C 80.42%, #106C5F 100%);
    /* === >> Font-family << === */
    --primary-font: 'Montserrat';
    /* === >> Font-size << === */
    --fs-77: 77px;
    --fs-74: 74px;
    --fs-60: 60px;
    --fs-44: 44px;
    --fs-38: 38px;
    --fs-34: 34px;
    --fs-28: 28px;
    --fs-26: 26px;
    --fs-22: 22px;
    --fs-20: 20px;
    --fs-18: 18px;
    --fs-17: 17px;
    --fs-16: 16px;
    --fs-14: 14px;
    --fs-12: 12px;
    /* === >> Space variables << === */
    --space-150: clamp(60px, 10vw, 150px);
    --space-120: clamp(50px, 8vw, 120px);
    --space-110: clamp(50px, 8vw, 110px);
    --space-100: clamp(50px, 7vw, 100px);
    --space-80: clamp(40px, 6vw, 80px);
    --space-68: 68px;
    --space-60: clamp(30px, 3.2vw, 60px);
    --space-50: 50px;
    --space-40: 40px;
    --space-32: 32px;
    --space-30: 30px;
    --space-28: 28px;
    --space-20: 20px;
    --space-18: 18px;
    --space-16: 16px;
    --space-14: 14px;
    --space-10: 10px;
    --space-7: 7px;

}

/* ============== *** Custom Class *** ============== */
/* === >> font-size << === */
.fs-77 {
    font-size: clamp(32px, 5vw, var(--fs-77));
}

.fs-74 {
    font-size: clamp(30px, 5vw, var(--fs-74));
}

.fs-60 {
    font-size: clamp(28px, 4vw, var(--fs-60));
}

.fs-44 {
    font-size: clamp(24px, 3vw, var(--fs-44));
}

.fs-38 {
    font-size: clamp(22px, 2.8vw, var(--fs-38));
}

.fs-34 {
    font-size: clamp(20px, 4vw, var(--fs-34));
}

.fs-28 {
    font-size: var(--fs-28);
}

.fs-26 {
    font-size: clamp(18px, 3vw, var(--fs-26));
}

.fs-22 {
    font-size: clamp(18px, 1.6vw, var(--fs-22));
}

.fs-20 {
    font-size: clamp(17px, 1.9vw, var(--fs-20));
}

.fs-18 {
    font-size: clamp(16px, 4vw, var(--fs-18));
}

.fs-17 {
    font-size: var(--fs-17);
}

.fs-16 {
    font-size: var(--fs-16);
}

.fs-14 {
    font-size: var(--fs-14);
}

.fs-12 {
    font-size: var(--fs-12);
}

/* === >> bg colur << === */
.bg-body {
    background-color: var(--bg-body);
}

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

.bg-secondary {
    background-color: var(--secondary);
}

.bg-gradient {
    background: var(--bg-gradint);
}

/* === >> text color << === */
.text-white {
    color: var(--text-white);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondery);
}

.text-gradient {
    background: var(--text-gradint);
    --webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === >> text-align << === */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* === >> flex Class << === */
.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

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

.justify-evenly {
    justify-content: space-evenly;
}

/* === >> Diplay property << === */
.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}

.cst-button,
.form-wrap .submit-btn input {
    font-size: clamp(15px, 2vw, var(--fs-17));
    font-weight: 500;
    border-radius: 40px;
    line-height: 1.3;
    cursor: pointer;
    background: var(--bg-gradint);
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.6px;
    transition: all 0.3s ease-in-out;
    padding: 15px 29px;
    text-transform: capitalize;
}

.cst-button:hover,
.form-wrap .submit-btn input:hover {
    background: var(--secondary);
    transform: translateY(-1px);
}

@media(max-width: 991px) {

    .cst-button,
    .form-wrap .submit-btn input {
        padding: 12px 25px;
    }
}

@media(max-width: 575px) {

    .cst-button,
    .form-wrap .submit-btn input {
        padding: 10px 22px;
    }
}

.border-text span {
    color: #000;
    text-shadow: -1px -1px 0 #28A376, 1px -1px 0 #28A376, -1px 1px 0 #28A376, 1px 1px 0 #28A376;
}

/* title */
.site-title {
    font-size: var(--fs-16);
    font-weight: 500;
    letter-spacing: 2.52px;
    display: inline-block;
    color: var(--text-primary);
    padding-bottom: 7px;
    text-transform: uppercase;
}

.section-heading {
    line-height: 1.3;
    padding-bottom: clamp(14px, 2vw, var(--space-32));
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ============== *** Global CSS *** ============== */
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
section,
header,
footer,
table * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a:hover {
    color: var(--white);
}

a:focus {
    outline: none;
}

body {
    font-family: var(--primary-font);
    color: var(--text-white);
    font-size: var(--fs-16);
    background-color: var(--black);
    font-weight: 400;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: -45px;
    left: -135px;
    width: 433px;
    height: 250px;
    filter: blur(174px);
    background-position: left;
    background-color: var(--secondary);
    z-index: -1;
}

body.page {
    margin: 0;
}

@media(max-width: 991px) {
    body::before {
        width: 300px;
        height: 300px;
    }

}

@media(max-width: 767px) {
    body::before {
        width: 200px;
        height: 200px;
    }

}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

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


/* ============== *** Custom-container *** ============== */
.container,
.single.single-post .navigation.post-navigation {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 15px;
}

@media (min-width: 576px) {

    .container,
    .single.single-post .navigation.post-navigation {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .single.single-post .navigation.post-navigation {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .single.single-post .navigation.post-navigation {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .single.single-post .navigation.post-navigation {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .single.single-post .navigation.post-navigation {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {

    .container,
    .single.single-post .navigation.post-navigation {
        max-width: 1500px;
    }
}