*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}
html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
html {
    scroll-behavior: smooth;
  }
ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
input,
button,
textarea,
select {
    font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}
button{
    cursor: pointer;
}
.cur-poi{
    cursor: pointer;
}
.container{
    width: 100%;
    max-width: var(--container-max-size);
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
    padding-block: var(--container-padding-block);
}
.padding-inliine{
    padding-inline: var(--container-padding-inline);
}
.padding-block{
    padding-block-start: 25px;
}

.h1-style-1{
    font-family: var(--ff-brand);
    font-weight: var(--fw-light);
    font-size: clamp(25px, 4.3vw, 42px);
    line-height: 1.3;
}

@media(max-width:1024px) {
    .h1-style-1{
        font-family: var(--ff-brand);
        font-weight: var(--fw-light);
        font-size: clamp(25px, 4.3vw, 38px);
        line-height: 1.3;
    }
}
.h1-style{
    font-family: var(--ff-brand);
    font-weight: var(--fw-light);
    font-size: clamp(35px, 4.3vw, 50px);
    line-height: 1.3;
}
.h2-style{
    font-family: var(--ff-brand);
    font-weight: var(--fw-regular);
    font-size: clamp(25px, 3.1vw, 40px);
    line-height: 1.4;
    color: #000;
}
.h3-style{
    font-family: var(--ff-brand);
    font-weight: var(--fw-regular);
    font-size: clamp(18px, 3vw, 40px);
    line-height: 1.4;
    color: #000;
}
.para-style{
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
}
.para-style-1{
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: clamp(16px, 2vw, 25px);
    line-height: 1.5;
    color: var(--clr-black);
}

.para-style-2{
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.5;
    color: var(--clr-black);
}
.c-w{
    color: #fff;
}

.c-y{
    color: #EB7B37;
}

.txt-up{
    text-transform: uppercase;
}
.li-ht{
    line-height: 1.3;
}
.clr-yellow{
    color: #F6D067;
}
.clr-dk-red{
    color: #AD262D;
}
.clr-grn{
    color: #268080;
}
.bg-black{
    background-color: var(--clr-black);
}

.bg-blue{
    background-color: #86BDDB;
}

.bg-org{
    background-color: var(--clr-orange);
}
.clr-orange{
    color: #E0653E;
}
.clr-org{
    color: var(--clr-orange);
}
.clr-blue{
    color: var(--clr-blue);
}
.clr-whi{
    color: var(--clr-white);
}
.clr-grey{
    color: #97A9BB !important;
}
.txt-upper-case{
    text-transform: uppercase;
}
.pos-rel{
    position: relative;
}
.pos-abs{
    position: absolute;
}
.bg-yellow{
    background-color: var(--bg-yellow);
}
.d-flex{
    display: flex;
}
.al-cn{
    align-items: center;
}
.al-bl{
    align-items: baseline;
}
.al-st{
    align-items: flex-start;
}
.al-end{
    align-items: end;
}
.fw-lt{
    font-weight: 300;
}
.fw-md{
    font-weight: 500;
}
.ft-it{
    font-style: italic;
}
.tx-st{
    text-align: start;
}

.ft-si80{
    font-size: clamp(35px, 5vw, 80px);
}
.tx-cn{
    text-align: center;
}
.js-cn{
    justify-content: center;
}
.js-sb{
    justify-content: space-between;
}
.js-end{
    justify-content: end;
}
.fl-dir{
    flex-direction: column;
}
.mg-tp-0{
    margin-top: 0px !important;
}
.fl-col{
    flex-direction: column;
}
.fl-row{
    flex-direction: row;
}
.gap-10{
    gap: 10px;
}
.gap-20{
    gap: 20px !important;
}
.gap-30{
    gap: 30px !important;
}
.gap{
    gap: 10px;
}

.gap01{
    gap: 5px;
}

.gap-1{
    gap: 20px;
}

.gap-2{
    gap: 30px;
}

.gap-3{
    gap: 100px;
}
.gap-4{
    gap: 60px;
}
.txt-cn{
    text-align: center;
}
.ft-si40{
    font-size: clamp(14px, 2vw, 18px);
}
.ft-si60{
    font-size: clamp(30px, 3vw, 50px);
}
.fw-bold{
    font-weight: 700;
}
.fw-re{
    font-weight: 400 !important;
}
.ft-stroke{
    -webkit-text-stroke-width: 3px;
    color: #7EBDCD;
}
.flex-col{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.pad-top-1{
    padding-top: 30px;
}
.pad-btm-100{
    padding-bottom: 100px;
}
.pad-top30{
    padding-top: 70px;
}
.mg-0-auto{
    margin: 0 auto;
}
.mx-wid-4{
    max-width: 86%
}
.mx-wid-5{
    max-width: 38%;
}
.max-wid-2{
    max-width: 1000px;
}
.max-wid{
    max-width: 76%;
}
.max-wid-1{
    width: 55%;
}
.max-wid-3{
    width: 45%;
}
.mx-wid{
    max-width: 60%;
}
.mx-wid-1{
    max-width: 65%;
}
.mx-wid-2{
    max-width: 500px;
}
.mx-wid-3{
    max-width: 76%;
}
.plane-img{
    position: relative;
}
.plane-img-1{
    position: absolute;
    top: 35%;
    left: 27%;
}

.fl-wrap{
    flex-wrap: wrap;
}
.bg-y1{
    background-color: #FFFCF5;
}

.bg-beige{
    background-color: #F4EDDC;
}

.bg-w{
    background-color: #fff;
}

.tx-cn{
    text-align: center;
}

.fn-wt{
    font-weight: 600;
}

.fn-med{
    font-weight: 500;
}

.fn-bold{
    font-weight: 600;
}

.fn-lt{
    font-weight: 300;
}

.ov-hd{
    overflow: hidden;
}

.ft-italic{
    font-style: italic;
}

.mar-top{
    margin-top: 20px;
}

.z-2{
    z-index: 2;
}

.tx-end {
    text-align: end;
}

.c-b{
    color: #000;
}
.bg-dark-black{
    background-color: #2f293c;
}
.c-blue{
    color: #7EBDCD;
}