:root {
    --header-z: 199;
    --mob-nav-z: 500;
    --primary: linear-gradient(225deg, #fb4f1a 0%, #f1a11b 100%);
    --secondary: #2a3141;
}

/*======================================================================== RESET =========*/
/*======================================================================== RESET =========*/
html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

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

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/*======================================================================== BASIC =========*/
/*======================================================================== BASIC =========*/

body {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 16px;
}


.container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width:768px) {
    .container {
        max-width: 660px;
    }
}


@media screen and (min-width:992px) {
    .container {
        max-width: 880px;
    }
}

@media screen and (min-width:1200px) {
    .container {
     max-width: 1020px;

    }
}

@media screen and (min-width:1400px) {
    .container {
     max-width: 1200px;

    }
}



/*======================================================================== SHORT =========*/

/* Breakpoint: None */
.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12,
.col13,
.col14,
.col15,
.col16,
.col17,
.col18,
.col19,
.col20,
.col21,
.col22,
.col23,
.col24 {
    width: 100%
}

/* Breakpoint: --md */
.col1--md,
.col2--md,
.col3--md,
.col4--md,
.col5--md,
.col6--md,
.col7--md,
.col8--md,
.col9--md,
.col10--md,
.col11--md,
.col12--md,
.col13--md,
.col14--md,
.col15--md,
.col16--md,
.col17--md,
.col18--md,
.col19--md,
.col20--md,
.col21--md,
.col22--md,
.col23--md,
.col24--md {
    width: 100%
}

/* Breakpoint: --lg */
.col1--lg,
.col2--lg,
.col3--lg,
.col4--lg,
.col5--lg,
.col6--lg,
.col7--lg,
.col8--lg,
.col9--lg,
.col10--lg,
.col11--lg,
.col12--lg,
.col13--lg,
.col14--lg,
.col15--lg,
.col16--lg,
.col17--lg,
.col18--lg,
.col19--lg,
.col20--lg,
.col21--lg,
.col22--lg,
.col23--lg,
.col24--lg {
    width: 100%
}

/* Breakpoint: --xl */
.col1--xl,
.col2--xl,
.col3--xl,
.col4--xl,
.col5--xl,
.col6--xl,
.col7--xl,
.col8--xl,
.col9--xl,
.col10--xl,
.col11--xl,
.col12--xl,
.col13--xl,
.col14--xl,
.col15--xl,
.col16--xl,
.col17--xl,
.col18--xl,
.col19--xl,
.col20--xl,
.col21--xl,
.col22--xl,
.col23--xl,
.col24--xl {
    width: 100%
}





/* ========================================================================================= */


.mla {
    margin-left: auto;
}

.mra {
    margin-right: auto;
}

.ma {
    margin: auto;
}

.mta {
    margin-top: auto;
}

.mxa {
    margin-right: auto;
    margin-left: auto;
}

.jcc {
    display: flex;
    justify-content: center;
}

.jca {
    display: flex;
    justify-content: space-around;
}

.jcb {
    display: flex;
    justify-content: space-between;
}

.fs {
    flex-shrink: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.re-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.nowrap {
    white-space: nowrap;
}
.ais {
    display: flex;
    align-items: start;
}

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

.relative {
    position: relative;
}

.hidden-x {
    overflow-x: hidden;
}

.hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.tal {
    text-align: left;
}


@media screen and (min-width:992px) {

    .re-row--lg {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
    }

    .re-col--lg {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .jcc--lg {
        display: flex;
        justify-content: center;
    }


    .mxa--lg {
        margin-right: auto;
        margin-left: auto;
    }

    .jcb--lg {
        display: flex;
        justify-content: space-between;
    }
    .db--lg {
        display: block;
    }

}


/* ========================================================================================= */
.fw3 {
    font-weight: 300;
}

.fw4 {
    font-weight: 400;
}

.fw5 {
    font-weight: 500;
}

.fw6 {
    font-weight: 600;
}

.fw7 {
    font-weight: 700;
}

.fw8 {
    font-weight: 800;
}

.fw9 {
    font-weight: 900;
}

.uppercase {
    text-transform: uppercase;
}



@media screen and (max-width: 768px) {
    .dn---md {
        display: none;
    }
    .jcc---md {
        display: flex;
        justify-content: center;
    }
    .tac---md {
        text-align: center;
    }

    .mxa---md {
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (max-width: 992px) {
    .dn---lg {
        display: none;
    }
    .jcc---lg {
        display: flex;
        justify-content: center;
    }
    .tac---lg {
        text-align: center;
    }

    .mxa---lg {
        margin-left: auto;
        margin-right: auto;
    }

}






/*======================================================================== color =========*/
/*======================================================================== color =========*/
.white {
    color: #fff;
}

.black {
    color: #000;
}

.grey {
    color: #98a2b3;
}

.gray {
    color: #E4E7EC;
}
.green {
    color: #30DB5B;
}

.blue {
    color: #0059FF;
}


.beige {
    color: #CFB37B;
}

.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #1C1C1E;
}

.bg-grey {
    background-color: #98a2b3;
}

.bg-gray {
    background-color: #E4E7EC;
}
.bg-blue {
    background-color: #0059FF;
}

.bg-beige {
    background-color: #CFB37B;
}

.bg-sky {
    background: #249AD7;
}

.bg-primary-linear {
    background: linear-gradient(126deg, #5943ff 0%, #b192f2 50%, #d994ff 100%);
}

.box-shadow {
    box-shadow: 0 0 3px -1px rgba(16, 25, 40, 0.04), 0 12px 19px -8px rgba(16, 25, 40, 0.14);
}

.op6 {
    opacity: .6;
}

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.linear-text {
    color: #5943ff;
    background: linear-gradient(126deg, #5943ff 0%, #7983ff 50%, #d27dff 100%, #c47eff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.bg-primary {
    background-color: #0059FF;
  }