* {
    margin: 0;
    padding: 0;
}
body {
    color: var(--body-color);
    font-size: var(--font16);
    font-family: var(--font_inter);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 140%;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
::-moz-selection {
    color: var(--white);
    background: var(--primary);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #d6d6d6;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 0;
}
a {
    color: var(--body-color);
}
a:hover {
    color: var(--secondary);
}
a,
a:hover,
a:focus,
a:visited {
    outline: 0;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
button::-moz-focus-inner {
    outline: 0;
}
h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font_inter);
    color: var(--primary);
}
h1{
    font-size: var(--font48);
    line-height: normal;
    font-weight: 800;
    letter-spacing: -1.44px;
}
h2{
    font-size: var(--font42);
    line-height: 110%;
    letter-spacing: -1.26px;
    font-weight: 600;
    color: var(--primary);
}
h3{
    font-size: var(--font32);
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.96px;
    color: var(--darkGrey);
}
h4{
    font-size: var(--font28);
    font-weight: 700;
    line-height: 115%;
}
h5{
    font-size: var(--font26);
}
p {
    margin-bottom: 0;
}
.scroll-margin-top {
    scroll-margin-top: 7rem;
}
.container {
    max-width: 86%;
    width: 100%;
    margin: 0 auto;
}
.container-fluid {
    padding: 0 2.1875rem;
    max-width: 98%;
}
.contentwrap {
    margin-top: 6.4rem;
}
.section-pt {
    padding-top: var(--space100);
}
.section-pb {
    padding-bottom: var(--space100);
}
.section-pb-50{
    padding-bottom: var(--space50);
}
.section-pt-50{
    padding-top: var(--space50);
}
.section-pb-60{
    padding-bottom: var(--space60);
}
.section-pt-60{
    padding-top: var(--space60);
}
.section-pb-80{
    padding-bottom: var(--space80);
}
.section-pt-80{
    padding-top: var(--space80);
}
.img-contain, .img-cover {
    width: 100%;
    height: 100%;
    display: block;
}
.img-cover {
    object-fit: cover;
}
.img-contain {
    object-fit: contain;
}
.img-radius{
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    overflow: hidden;
}
.text-primary {
    color: var(--primary) !important;
}
.text-red {
    color: var(--secondary);
}
.sec-head-bold-text{
    font-weight: 700;
    color: var(--body-color);
}
.btn-warp {
    display: flex;
    gap: 15px;
    align-items: center;
}
.btn{
    font-family: var(--font_inter);
    font-size: var(--font14);
    color: var(--primaryWhite);
    font-weight: 600;
    padding: 10px 15px;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn.btn-gradient{
    background: linear-gradient(90deg, var(--primary), var(--red), var(--primary));
    background-size: 200% 100%;
    background-position: left center;
    color: var(--snowWhite);
    text-transform: uppercase;
    transition: background-position 0.4s ease-in-out;
}
.btn.btn-red{
    background: var(--secondary);
    color: var(--snowWhite);
    text-transform: uppercase;
    border: 1px solid var(--secondary);
}
.btn.btn-blue-outline{
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn.btn-red:hover{
    background: transparent;
    border: 1px solid var(--snowWhite);
}
.btn.btn-red.border-blue:hover{
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn.btn-gradient:hover{
    /* background: var(--rb-gradient-reverse); */
    background-position: right center;
}
.btn.btn-solid {
    background: var(--secondary);
    color: var(--snowWhite);
    text-transform: uppercase;
}
.btn.btn-solid:hover {
    border: 1px solid var(--secondary);
    color: var(--snowWhite);
}
.btn.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    text-transform: uppercase;
}
.btn.btn-black-outline{
    border-color: var(--body-color);
    background: transparent;
}
.btn.btn-outline-black{
    background: transparent;
    border: 1px solid var(--body-color);
    color: var(--body-color);
    text-transform: uppercase;
}

.btn.btn-outline-black:hover{
    background: var(--rb-gradient);
    border: 1px solid transparent;
    color: var(--snowWhite);
}

.btn.btn-outline:hover {
    background: var(--rb-gradient);
    border: 1px solid transparent;
    color: var(--snowWhite);
}
.btn:first-child:active{
    border-color: var(--primary);
    color: var(--snowWhite);
}
.btn.btn-rectangle,
.btn.btn-rounded{
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    background: var(--secondary);
    margin: 0;
    padding: 12px;
    color: var(--white);
    font-size: var(--font16);
}
.btn.btn-rounded{
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.btn.btn-rounded:active{
    background: var(--primary);
}
.btn.download-btn{
    width: fit-content;
    padding: 10px 20px;
    font-size: var(--font15);
}
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.btn.btn-primary{
    background: var(--primary);
    width: fit-content;
    padding: 8px 16px;
    font-size: var(--font15);
}


/* ------------------ dark and light mode-------------------------------- */
.textcontrols {
    position: absolute;
    z-index: 2;
}
.light body {
    background: var(--white);
    color: var(--body-color);
}
.dark body {
    background: var(--black);
    color: var(--white);
}


/* -------------------- backgrounds -------------------- */

.bg-light-blue{
    background: var(--blueE7);
}

.bg-vertical-sky-blue-gradient {
    background: var(--light-vertial-sky-blue-gradient);
}

.bg-dark-blue{
    background: var(--dark-blue);
}

/* --------------------- grids ----------------------- */

.four-col-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.five-col-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.two-col-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* --------------------- flex ----------------------- */
.two-col-flex{
    display: flex;
    gap: 10px;
}
/* -------------------- link blue ----------------------- */

.blue-link{
    color: var(--dodgerBlue);
}

/* ---------------------- para margin -------------------- */

.para-spacing p{
    margin-bottom: 1rem;
}

/* -------------------- tag ----------------------------- */

.red-tag{
    background: var(--secondary);
    font-size: var(--font14);
    font-weight: 400;
    line-height: 120%;
    color: var(--white);
    padding: 4px 13px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    width: fit-content;
}
