
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
:root {
    --color-primary: #4AAB3D;
    --color-secondary: #1F1F25;
    --color-body: #6E777D;
    --color-heading-1: #1f1f25;
    --color-white: #fff;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-facebook: #3B5997;
    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    --color-linkedin: #0077B5;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
   --sun: #FF9500;
  --amber: #FFB800;
  --glow: #FF6B00;
  --cream: #FFF8EC;
  --dark: #0A0800;
  --mid: #1A1200;
  --text-muted: rgba(255, 248, 236, 0.45);
  --bg: #F7F7F7;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --solar: #F59E0B;
  --solar-light: #FEF3C7;
  --solar-dark: #D97706;
  --green: #16A34A;
  --green-light: #DCFCE7;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --soft: #9A9A9A;
  --white: #FFFFFF;
  --border: #E2E2E2;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;
    --transition: 0.3s;
    --font-primary: "Exo", sans-serif;
    --font-secondary: "Albert Sans", sans-serif;
    --font-size-b1: 16px;
    --font-size-b2: 16px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 48px;
    --h3: 30px;
    --h4: 26px;
    --h5: 24px;
    --h6: 18px;
}



html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
  margin: 0; /* 🔥 sabse important */
  padding: 0;

  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  font-family: "Albert Sans", sans-serif;

  color: var(--color-body);
  font-weight: var(--p-regular);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #F6F7F9;

  /* overflow-x: hidden; 🔥 scroll fix */
}
/* body {
        font-family: 'Exo 2', sans-serif;
        background: linear-gradient(135deg, #0a1628 0%, #0d2137 40%, #0a1f0a 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
}*/
/* @media only screen and (min-width: 992px) and (max-width: 1199px) {
    body {
        overflow: hidden;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow: hidden;
    }
}

@media only screen and (max-width: 767px) {
    body {
        overflow: hidden;
    }
} */

/* body::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.05;
} */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
    margin: 0;
    /* margin-bottom: 20px; */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    word-break: break-word;
    font-family: "Exo", sans-serif;
    line-height: 1.4074;
    color: var(--color-heading-1);
}

h1,
.h1 {
    font-size: var(--h1);
    line-height: 91px;
    font-weight: 700;
}

h2,
.h2 {
    font-size: var(--h2);
    line-height: 1.23;
}

h3,
.h3 {
    font-size: var(--h3);
    line-height: 54px;
}

h4,
.h4 {
    font-size: var(--h4);
    line-height: 1.25;
}

h5,
.h5 {
    font-size: var(--h5);
    line-height: 1.24;
}

h6,
.h6 {
    font-size: var(--h6);
    line-height: 1.25;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a,
    .h1 a,
    .h2 a,
    .h3 a,
    .h4 a,
    .h5 a,
    .h6 a {
        color: inherit;
    }

.bg-color-tertiary h1,
.bg-color-tertiary h2,
.bg-color-tertiary h3,
.bg-color-tertiary h4,
.bg-color-tertiary h5,
.bg-color-tertiary h6,
.bg-color-tertiary .h1,
.bg-color-tertiary .h2,
.bg-color-tertiary .h3,
.bg-color-tertiary .h4,
.bg-color-tertiary .h5,
.bg-color-tertiary .h6 {
    color: #fff;
}

.bg-color-tertiary p {
    color: #6c7279;
}

.bg-color-tertiary a {
    color: #6c7279;
}
p {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #74787C;
}
/* ✅ 1. Container Classes */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    margin-right: auto;
    margin-left: auto;
    /* padding-right: 1rem; */
    /* padding-left: 1rem; */
}

.container {
    max-width: 1140px;
}
.container-sm {
    max-width: 540px;
}
.container-md {
    max-width: 720px;
}
.container-lg {
    max-width: 960px;
}
.container-xl {
    max-width: 1250px;
}
.container-xxl {
    max-width: 1300px;
}

.container-fluid {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}
.container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}
.container-flude {
  max-width: 1200px !important ;
  margin: 0px auto;
  /* padding: 0px 15px; */
}
.row{
    display: flex;
    flex-wrap:nowrap;
}
a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.mx-auto {
  margin: auto;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

button {
  padding: 0;
  cursor: pointer;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
  gap: 1rem;
}
.padding{
    padding: 15px;
}
.p-bold{
  font-weight: 500;
}
.pb-20 {
  padding-bottom: 20px;
}

.flex-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.justify-content-evenly {
  justify-content: space-evenly;
}
.btn {
    display: inline-block;
    border: none;
    outline: none;
    /* border-radius: 5px; */
    /* background-color: #f5435f; */
    cursor: pointer;
    /* border-radius: 30px; */
    padding: 5px 18px;
    font-weight: 600;
    /* width: 226px; */
    font-size: 15px;
    text-align: center;
}
.btn-primary{
    color: white;
    background-color: #4AAB3D;
}
.btn-primary:hover{
    color: #fff;
     background-color: #1F1F25;
    /* border: 1px solid #2d4bba; */

}
.btn-thirdry{
    color: white;
    background-color: #4AAB3D;
}
.btn-thirdry:hover{
    color: #fff;
     background-color: #1F1F25;
    /* border: 1px solid #2d4bba; */

}

.btn-secondry{
    color: white;
    background-color:#2d4bba;
}
.btn-secondry :hover{
    color: #fff;
     background-color:#4AAB3D;
    /* border: 1px solid #2d4bba; */

}
    
/* ✅ 2. Row Class */
.flex {
    display: flex;
}
.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-start {
    justify-content: flex-start;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
    align-items: center;
}
.justify-content-around {
    justify-content: space-around;
}
.justify-content-space-evenly {
    justify-content: space-evenly;
}
.align-items-start {
    align-items: flex-start;
}
.align-items-end {
    align-items: flex-end;
}
.align-items-center {
    align-items: center;
}
.align-self-start {
    align-self: flex-start;
}
.align-self-end {
    align-self: flex-end;
}
.align-self-center {
    align-self: center;
}
.flex-direction-column{
    flex-direction: column;
}

.col-lg-20,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12{
    padding: 0px 10px;
}
@media (min-width: 1024px) {
    .col-lg-1 {
        width: 8.333333%;
    }
    .col-lg-2 {
        width: 16.666667%;
    }
    .col-lg-20{
        width: 20%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.333333%;
    }
    .col-lg-5 {
        width: 41.666667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.333333%;
    }
    .col-lg-8 {
        width: 66.666667%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.333333%;
    }
    .col-lg-11 {
        width: 91.666667%;
    }
    .col-lg-12 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .col-md-1 {
        width: 8.333333%;
    }
    .col-md-2 {
        width: 16.666667%;
    }
    .col-md-20{
        width: 20%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.333333%;
    }
    .col-md-5 {
        width: 41.666667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.333333%;
    }
    .col-md-8 {
        width: 66.666667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.333333%;
    }
    .col-md-11 {
        width: 91.666667%;
    }
    .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .col-sm-1 {
        width: 8.333333%;
    }
    .col-sm-2 {
        width: 16.666667%;
    }
    .col-sm-20{
        width: 20%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.333333%;
    }
    .col-sm-5 {
        width: 41.666667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.333333%;
    }
    .col-sm-8 {
        width: 66.666667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.333333%;
    }
    .col-sm-11 {
        width: 91.666667%;
    }
    .col-sm-12 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}
@media (max-width: 566) {
    .col-xs-1 {
        width: 8.333333%;
    }
    .col-xs-2 {
        width: 16.666667%;
    }
    .col-xs-20{
        width: 20%;
    }
    .col-xs-3 {
        width: 25%;
    }
    .col-xs-4 {
        width: 33.333333%;
    }
    .col-xs-5 {
        width: 41.666667%;
    }
    .col-xs-6 {
        width: 50%;
    }
    .col-xs-7 {
        width: 58.333333%;
    }
    .col-xs-8 {
        width: 66.666667%;
    }
    .col-xs-9 {
        width: 75%;
    }
    .col-xs-10 {
        width: 83.333333%;
    }
    .col-xs-11 {
        width: 91.666667%;
    }
    .col-xs-12 {
        width: 100%;
    }
}

.block{
  display: block;
}
.mr-10{
  margin-right: 10px;
}
.mr-15{
  margin-right: 15px;
}
.mr-20{
  margin-right: 20px;
}
.mr-20{
  margin-right: 25px;
}
.ml-20{
margin-left: 20px;
}
.ml-20{
margin-left: 25px;
}
.mt10{
  margin-top: 10px;
}
.mt15{
  margin-top: 15px;
}
.mt20{
  margin-top: 20px;
}

.mt25{
  margin-top: 25px;
}
.mt30{
  margin-top: 30px;
}
.mt35{
  margin-top: 35px;
}
.mt40{
  margin-top: 40px;
}
.mt50{
  margin-top: 50px;
}
.mt100{
  margin-top: 100px;
}
.mb10{
  margin-bottom: 10px;
}
.mb15{
  margin-bottom: 15px;
}
.mb20{
  margin-bottom: 20px;
}
.mb25{
  margin-bottom: 25px;
}
.mb30{
  margin-bottom: 30px;
}
.mb35{
  margin-bottom: 35px;
}
.mb40{
  margin-bottom: 40px;
}
.mt70{
  margin-top: 70px;}
.f10{
  font-size: 10px;
}
.f12{
  font-size: 12px;
}
.f14{
  font-size: 14px;
}
.f16{
  font-size: 16px;
}
.f18{
  font-size: 18px;
}
.f20{
  font-size: 20px;
}
.f30{
  font-size: 30px;
}
.pl-10{
    padding-left: 10px;
}
.pl-15{
    padding-left: 15px;
}
.pl-20{
    padding-left: 20px;
}

.pr-10{
    padding-right: 10px;
}
.pr-15{
    padding-right: 15px;
}
.pr-20{
    padding-right: 20px;
}
.pd-t-10{
    padding-top: 10px;
}
.pt-15{
    padding-top: 15px;
}
.pt-20{
    padding-top: 20px;
}

.pb-10{
    padding-bottom: 10px;
}
.pb-15{
    padding-bottom: 15px;
}
.pb-20{
    padding-bottom: 20px;
}

