:root{
    --first-txt-color: #0e1a23;
    --second-txt-color: #fff;
    --third-txt-color: #dfff4f;
    --first-back-color: #fff;
    --second-back-color: #0e1a23;
    --third-back-color: #dfff4f;
    --fourth-back-color: #f5f5f5;
    --gold-color: #EFBF04;
    --dark-gray-txt: #656565;
    --light-gray-txt: #c5c5c5;
    --transparent-back-color: transparent;
    --error-color: #ff2727;
    --main-fs: 17px;
}

@font-face{
    font-family: "nunito-light";
    src: url(../font/Nunito-Light.ttf);
    font-display: swap;
}

@font-face{
    font-family: "nunito-regular";
    src: url(../font/Nunito-Regular.ttf);
    font-display: swap;
}

@font-face{
    font-family: "nunito-medium";
    src: url(../font/Nunito-Medium.ttf);
    font-display: swap;
}

@font-face{
    font-family: "nunito-semibold";
    src: url(../font/Nunito-SemiBold.ttf);
    font-display: swap;
}

@font-face{
    font-family: "nunito-bold";
    src: url(../font/Nunito-Bold.ttf);
    font-display: swap;
}

/* @font-face{
    font-family: "poppins-black";
    src: url(../font/Poppins-Black.ttf);
    font-display: swap;
} */

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

*{
    font-family: "nunito-regular", sans-serif;
}

html{
    font-size: var(--main-fs);
    overflow-x: hidden;
}

body{
    background-color: var(--first-back-color);
    color: var(--first-txt-color);
    font-size: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, label, input, a, 
button, figure, strong, b, textarea, ul, th, td, select{
	margin: 0;
	padding: 0;
    font-weight: 400;
}

input, textarea, button, select, a, i, svg{
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
}

a, button{
    word-spacing: 0.05em;
}

a{
	text-decoration: none;
	color: inherit;
}

button{
	border: 0;
	cursor: pointer;
}

ul, ol{
	list-style-type: none;
}

input, textarea{
	outline: 0;
}

input, textarea, select, option{
    font-size: 1.1em;
}

textarea{
    resize: vertical;
}

input::-webkit-input-placeholder,
input::placeholder,
textarea::placeholder{
	color: grey;
    font-size: 0.9em;
}

.pointer{
    cursor: pointer;
}

hr{
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    position: relative;
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.2rem;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, 
.col-xs-11, .col-xs-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, .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-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-xl-1, .col-xl-2, 
.col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, 
.col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, 
.col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, 
.col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12{
    position: relative;
    min-height: 1px;
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

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

.direction-row-reverse{
    flex-direction: row-reverse;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.fixed{
    position: fixed;
}

.display-none{
    display: none;
}

.block{
    display: block;
}

.flex{
    display: flex;
}

.inline-flex{
    display: inline-flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.white-text{
    color: var(--second-txt-color);
}

.black-text{
    color: var(--first-txt-color);
}

.yellow-text{
    color: var(--third-txt-color);
}

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

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

.dark-gray-text{
    color: var(--dark-gray-txt);
}

.light-gray-text{
    color: var(--light-gray-txt);
}

.important-color{
    color: red;
}

.white-back{
    background-color: var(--first-back-color);
}

.black-back{
    background-color: var(--second-back-color);
}

.yellow-transparent-border{
    border-color: hsla(71, 100%, 65%, 30%);
}

.black-transparent-back{
    background-color: hsl(210deg 91% 4% / 20%);
}

.yellow-back{
    background-color: var(--third-back-color);
}

.transparent-back{
    background-color: transparent;
}

.border-solid-btn{
    border-width: 0.015em;
    border-style: solid;
}

.yellow-border{
    border-color: var(--third-back-color);
}

.black-border{
    border-color: var(--second-back-color);
}

.gray-border{
    border-color: var(--gray-color);
}

/* .light-orange-text{
    color: var(--third-back-color);
} */

/* h1.before, h2.before, h3.before{
    padding-top: 0.5em;
}

h1.after, h2.after, h3.after{
    padding-bottom: 0.5em;
}

h1.before::before, h2.before::before, h3.before::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0.1em;
    width: 2em;
    background-color: var(--third-back-color);
}

h1.after::after, h2.after::after, h3.after::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.06em;
    width: 2em;
    background-color: var(--third-back-color);
}

h1.before-center::before, h2.before-center::before, h3.before-center::before{
    left: 50%;
    transform: translateX(-50%)
}

h1.after-center::after, h2.after-center::after, h3.after-center::after{
    left: 50%;
    transform: translateX(-50%)
} */

.wrapper-title h1{
    font-size: 3.2em;
    line-height: 1.2;
    font-family: "nunito-bold", sans-serif;
}

.wrapper-title h2{
    font-size: 2.8em;
    line-height: 1.2;
    font-family: "nunito-bold", sans-serif;
}

.wrapper-title h3{
    font-size: 2em;
    line-height: 1.3;
    font-family: "nunito-bold", sans-serif;
}

.wrapper-text{
    margin-top: 1em;
}

.wrapper-text p{
    font-size: 1.3em;
    margin-bottom: 1em;
    line-height: 1.5;
}

.wrapper-text p:last-child{
    margin-bottom: 0;
}

.show-br{
    display: none;
}

.wrapper-img img{
    object-fit: cover;
    width: 100%;
    display: block;
}

.height-100{
    height: 100%;
}

.wrapper-btn{
    margin-top: 1.5em;
}

.wrapper-btn a, .wrapper-btn button{
    margin-right: 0.7em;
}

.wrapper-btn a:last-of-type, .wrapper-btn button:last-of-type{
    margin-right: 0;
}

.wrapper-btn img{
    display: none;
}

.btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.btn a, .btn button{
	display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.6em 1.8em;
    font-family: "nunito-medium", sans-serif;
    line-height: 1.5;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

/* .btn a img, .btn button img{
    margin-left: 1.1em;
} */

.btn a:last-child, .btn button:last-child{
    margin-right: 0;
}

.btn a::before, .btn button::before{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--third-back-color);
    box-shadow: 0 0 9px 1px hsl(60deg 100% 50% / 85%);
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    animation-name: run_ball;
    animation-duration: 3s;
    animation-delay: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    transition: all 0.3s linear;
}

@keyframes run_ball{
    0%{
        left: 0;
        top: 0;
        
    }
    25%{
        left: 100%;
        top: 0;
        
    }
    50%{
        left: 100%;
        top: 100%;
        
    }
    75%{
        left: 0%;
        top: 100%;
        
    }
    100%{
        left: 0%;
        top: 0%;
        
    }
}

.btn a:hover::before, .btn button:hover::before{
    animation-play-state: running;
}

#info-message{
    display: none;
    padding: 1em;
    background-color: #e1e1e1;
    color: var(--error-color);
    font-size: 1em;
    font-family: "nunito-semibold", sans-serif;
}

#loader{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* .btn .primary-btn::before{
    background-color: var(--third-back-color);
    opacity: 0.5;
    z-index: -1;
}

.btn .primary-white-btn::before{
    background-color: var(--secondary-back-color);
    color: var(--primary-txt-color);
    opacity: 1;
    z-index: -1;
}

.btn .primary-inverted-btn::before{
    background-color: var(--secondary-back-color);
    mix-blend-mode: difference;
    z-index: 1;
}

.btn .primary-btn:hover::before{
    opacity: 1;
}

.btn .primary-btn::after{
    color: var(--primary-txt-color);
    opacity: 0;
}

.btn .primary-inverted-btn::after{
    z-index: -1;
    mix-blend-mode: difference;
    background-color: #104d66;
}

.btn a:hover::before, .btn button:hover::before,
.btn a:hover::after, .btn button:hover::after{
    width: 100%;
}

.btn-white{
	color: var(--secondary-txt-color);
}

.btn-black{
    color: var(--primary-txt-color);
}

.btn  .btn-transparent-back-color{
    background-color: transparent;
}

.btn .btn-dark-back-color{
    background-color: var(--primary-back-color);
}

.btn .btn-pink-back-color{
    background-color: var(--third-back-color);
} */

.nav .wrapper-list li a, .right-header .user-icon svg{
    transition: all 0.3s linear;

}

.header{
    background-color: var(--transparent-back-color);
    left: 0;
    top: 0;
    right: 0;
    z-index: 99999;
    border-bottom: 0.07em solid hsl(0deg 0% 100% / 15%);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.wrapper-logo img{
    width: 4.5em;
}

.nav{
    margin-right: 3.5em;
}

.nav .wrapper-list{
    margin-top: 0;
}

.nav .wrapper-list li{
    margin-left: 2em;
}

.nav .wrapper-list li > a{
    display: block;
}

.nav .wrapper-list li > a, .nav .wrapper-list li span{
    padding: 1.7em 0;
    position: relative;
    font-size: 1.2em;
    color: var(--second-txt-color);
}

.nav .wrapper-list li > a::after, .nav .wrapper-list li span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    right: 0;
    height: 0.1em;
    background-color: var(--third-txt-color);
    opacity: 0;
    transition: all 0.5s ease;
}

.nav .wrapper-list li > a:hover::after, .nav .wrapper-list li span:hover::after{
    transform: translateY(0);
    opacity: 1;
}

.nav .wrapper-list li span svg{
    font-size: 0.75em;
    margin-left: 0.7em;
}

.nav .wrapper-list li > a#active-header-link::after{
    color: var(--third-txt-color);
    opacity: 1;
    transform: translateY(0);
}

.right-header .wrapper-btn{
    margin-top: 0;
}

.right-header .btn a{
    padding: 0.5em 1.3em;
    font-size: 1.1em;
}

.right-header .btn a::before{
    content: unset;
}

.right-header .profil-dropdown{
    width: 13em;
}

.right-header .courses-dropdown{
    width: 15em;
}

.right-header .profil-dropdown{
    right: 0;
}

.right-header .courses-dropdown{
    left: 0;
}

.right-header .profil-dropdown, .right-header .courses-dropdown{
    top: 100%;
    padding: 0.5em 0;
    border-bottom-left-radius: 0.3em;
    border-bottom-right-radius: 0.3em;
    display: none;
}

.right-header .profil-dropdown a, .right-header .courses-dropdown a{
    color: var(--first-txt-color);
    display: block;
    padding: 0.5em 1em;
    font-size: 1.1em;
}

/* content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--third-back-color);
    box-shadow: 0 0 9px 1px hsl(60deg 100% 50% / 85%);
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    animation-name: run_ball;
    animation-duration: 3s;
    animation-delay: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
    transition: all 0.3s linear; */

.right-header .user-icon #login-user{
    width: 4em;
    height: 3em;
}

.right-header .user-icon svg{
    font-size: 1.5em;
}

.main-section{
    background-image: url("../images/Tennique.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.main-section::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsla(0, 0%, 8%, 0.6);
}

.main-section .wrapper-content{
    min-height: 68vh;
    z-index: 10;
}

.main-section .wrapper-content .wrapper-text{
    margin-top: 2em;
}

.main-section .wrapper-content .wrapper-text p{
    font-size: 1.4em;
}

.main-section .wrapper-content .wrapper-btn{
    margin-top: 2.5em;
}

.main-section #main-title, .main-section #main-text, .main-section #main-btn{
    opacity: 0;
}

.main-section #main-title{
    transform: translateX(-30%);
    transition: all 1.2s ease 0.5s;
}

.main-section #main-text{
    transform: translateX(30%);
    transition: all 1.2s ease 0.5s;
}

.main-section #main-btn{
    transform: translateY(30%);
    transition: all 1.2s ease 0.8s;
}

.programs-section, .courses-section{
    padding: 7em 0;
}

.programs-section{
    background-color: var(--first-back-color);
}

.programs-section #program-card-1, .programs-section #program-card-2, .programs-section #program-card-3{
    transform: scale(0.8);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.programs-section .wrapper-content{
    margin-top: 3em;
    padding: 3em 1.5em;
    border: 0.07em solid #6b6b6b;
    background-color: hsl(206deg 43% 10% / 95%);
    border-radius: 0.5em;
    transform: scale(1);
    transition: all 0.5s ease;
}

.programs-section .wrapper-content:hover{
    transform: scale(1.05);
}

.programs-section .wrapper-content .wrapper-title h3{
    font-family: "nunito-semibold", sans-serif;
    color: var(--second-txt-color);
}

.programs-section .wrapper-content .wrapper-text p{
    color: var(--light-gray-txt);
    font-size: 1.2em;
}

.programs-section .wrapper-content .wrapper-img{
    margin-bottom: 1.5em;
}

.programs-section .wrapper-content .wrapper-img img{
    width: 5.5em;
}

/* .programs-section .wrapper-content .wrapper-btn a{
    font-size: 1.1em;
} */

.courses-section{
    background-color: var(--fourth-back-color);
}

.courses-section .courses-col-1{
    margin-bottom: 3em;
}

.courses-section .column-course .wrapper-content{
    background-color: var(--first-back-color);
    border-radius: 0.5em;
    overflow: hidden;
}

.courses-section .column-course .about-course{
    padding: 1.6em;
    background-color: var(--first-back-color);
    border-bottom-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
}

.courses-section .column-course .wrapper-img{
    overflow: hidden;
}

.courses-section .column-course .wrapper-img img{
    height: 100%;
}

.courses-section .column-course .wrapper-img::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(206deg 43% 10% / 80%);
    opacity: 0;
}

.courses-section .column-course .wrapper-img .wrapper-btn{
    margin-top: 0;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    opacity: 0;
}

.courses-section .column-course .wrapper-img::before, .courses-section .column-course .wrapper-img .wrapper-btn{
    transition: all 0.5s ease;
}

.courses-section .column-course:hover .wrapper-img::before{
    opacity: 1;
}

.courses-section .column-course:hover .wrapper-img .wrapper-btn{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* .courses-section .column-course .wrapper-img .btn a::before{
    content: unset;
} */

.courses-section .column-course .about-course .wrapper-title h3{
    font-size: 1.8em;
}

.courses-section .column-course .about-course .wrapper-text p{
    font-size: 1.2em;
    color: var(--dark-gray-txt);
}

.courses-section .column-course .about-course .wrapper-level{
    margin-top: 1.5em;
}

.courses-section .column-course .about-course .wrapper-level .level-stars svg{
    margin-right: 0.1em;
}

.courses-section .column-course .about-course .wrapper-level .fa-lock{
    font-size: 1.2em;
}

.courses-section .btn-all-courses{
    margin-top: 3em;
}







.footer{
    background-color: var(--second-back-color);
    padding: 1.5em 0;
}

.footer .footer-copyright .wrapper-text{
    margin-top: 0;
}

.footer .footer-copyright .wrapper-text p{
    font-size: 1em;
}

.footer .footer-social-media a, .footer .footer-social-media a svg{
    transition: all 0.5s ease;
}

.footer .footer-social-media a{
    width: 2.2em;
    height: 2.2em;
    margin-left: 0.5em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--third-back-color);
    border-radius: 50%;
    border: 0.07em solid var(--third-back-color);
}

.footer .footer-social-media a:hover{
    background-color: var(--transparent-back-color);
}

.footer .footer-social-media a svg{
    font-size: 0.95em;
}

.footer .footer-social-media a:hover svg{
    color: var(--third-txt-color);
}

@media screen and (min-width: 100px){
    html{
        font-size: calc(var(--main-fs) - 6px);
    }
    .col-xs-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xs-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xs-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xs-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xs-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xs-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xs-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xs-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xs-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xs-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xs-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xs-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 576px){
    html{
        font-size: calc(var(--main-fs) - 5.5px);
    }
    .container{
        max-width: 560px;
    }
    .col-sm-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-sm-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-sm-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-sm-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-sm-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-sm-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-sm-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-sm-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-sm-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-sm-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-sm-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-sm-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 768px){
    html{
        font-size: calc(var(--main-fs) - 5px);
    }
    .container{
        max-width: 740px;
    }
    .col-md-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-md-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-md-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-md-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-md-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-md-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-md-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-md-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-md-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-md-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-md-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-md-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 992px){
    html{
        font-size: calc(var(--main-fs) - 4.5px);
    }
    .container{
        max-width: 920px;
    }
    .col-lg-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-lg-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-lg-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-lg-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-lg-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-lg-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-lg-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-lg-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-lg-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-lg-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-lg-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-lg-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 1200px){
    html{
        font-size: calc(var(--main-fs) - 3.5px);
    }
    .container{
        max-width: 1050px;
    }
    .col-xl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 1440px){
    html{
        font-size: calc(var(--main-fs) - 1.8px);
    }
    .container{
        max-width: 1300px;
    }
    .col-xxl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xxl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xxl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xxl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xxl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xxl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xxl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xxl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xxl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xxl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xxl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xxl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 1920px){
    html{
        font-size: var(--main-fs);
    }
    .container{
        max-width: 1330px;
    }
    .col-xxxl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xxxl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xxxl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xxxl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xxxl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xxxl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xxxl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xxxl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xxxl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xxxl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xxxl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xxxl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 2300px){
	html{
        font-size: calc(var(--main-fs) + 5px);
    }
	.container{
		max-width: 1750px;
	}
}

@media screen and (min-width: 2560px){
	html{
        font-size: calc(var(--main-fs) + 6px);
    }
	.container{
		max-width: 1900px;
	}
}

@media screen and (min-width: 2800px){
	html{
        font-size: calc(var(--main-fs) + 9px);
    }
	.container{
		max-width: 2200px;
	}
}

@media screen and (min-width: 3440px){
	html{
        font-size: calc(var(--main-fs) + 10px);
    }
	.container{
		max-width: 2350px;
	}
}

@media screen and (min-width: 3840px){
	html{
        font-size: calc(var(--main-fs) + 13px);
    }
	.container{
		max-width: 2600px;
	}
}

@media screen and (max-width: 767px){
    .header{
        padding: 0.8em 0;
    }
    .header .nav{
        display: none;
    }
    .right-header .user-icon svg{
        font-size: 1.8em;
    }
}

@media screen and (max-width: 575px){
    .show-br{
        display: block;
    }
    .footer .footer-social-media{
        margin-top: 1.5em;
        justify-content: flex-start;
    }
    .footer .footer-social-media a{
        margin-right: 0.5em;
        margin-left: 0;
    }
}

@media screen and (max-width: 450px){
    html{
        font-size: calc(var(--main-fs) - 5px);
    }
}

@media screen and (max-width: 380px){
    html{
        font-size: calc(var(--main-fs) - 6px);
    }
}

@media screen and (max-width: 350px){
    html{
        font-size: calc(var(--main-fs) - 6.5px);
    }
}