:root {
    --primaryFontFamily: "Poppins";
    --primaryColor: #4A474D;
    --secondaryColor: #413A4A;
    --primaryBoxShadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
    --boxRadius: 8px;
    --primaryBtnRadius: 6px;
    --isLoadingColor: #e1e1e1;
    scrollbar-color: var(--accentColor) rgb(46, 54, 69) !important;
    scrollbar-width: thin !important;
}

/*
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('woff');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('woff');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('woff');
    font-weight: 700;
    font-display: swap;
} */

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-rendering: optimizeSpeed;

    /* cursor: none; */
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: var(--primaryColor);
    border-radius: 3px;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    height: 100dvh;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    scrollbar-color: var(--accentColor) #f1f1f1;
    color: var(--primaryColor);
    background-color: #FAF8F9;
}

body>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

body>*:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

body>*:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-track:hover {
    background: rgb(46, 54, 69);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--accentColor);

}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
}

p {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400;
    color: var(--primaryColor);
    font-size: 20px;
    line-height: 40px;
}

.container {
    max-width: 1512px;
    margin: 0 auto;
}

section .container {
    max-width: 1312px;
}

/* Header */
.main_header {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    /* padding-block: 23px; */
    background-color: white;
    height: 81px;
    z-index: 500;
}

.fullscreen_menu {
    position: fixed;
    background: #5871B1;
    /*  width: 100%;
    height: 100%; */
    bottom: 0;
    z-index: 10;
    inset: 0;
    margin: auto;
    width: 0;
    height: 0;
    transform: .5s;
    border-radius: 100%;
    overflow: hidden;
}

.fullscreen_menu.full {
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 999;
}

.fullscreen_menu .close_fullscreen__menu {
    position: absolute;
    top: 30px;
    left: 35px;
    z-index: 100;
}

.fullscreen_menu ul {
    width: 100%;
    max-width: 912px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.fullscreen_menu li {
    padding-block: 39px 37px;

    border-bottom: 1px solid rgba(255, 255, 255, .1);
    z-index: 0;
    visibility: hidden;
    opacity: 0;
}

.fullscreen_menu li a {
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    color: #FFFFFF;
}

.fullscreen_menu.full li {
    opacity: 1;
    visibility: visible;
}

.fullscreen_menu .close_fullscreen__menu {
    cursor: pointer;
    opacity: 0;
}

.fullscreen_menu.full .close_fullscreen__menu {
    opacity: 1;
}

.main_header .container {
    height: 100%;
}



.main_header .header_wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.main_header #open_fs__menu {
    padding-inline: 29px;
    cursor: pointer;
    height: 100%;
    display: grid;
    place-content: center;
}

.header_content {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* padding-inline: 40px; */
    height: 100%;
    width: 100%;
}

.logo {
    margin-right: auto;
}

.logo h1 {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: var(--secondaryColor);
    margin-top: 4px;
}

.logo h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondaryColor);
}

.header_content .book_btn {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    position: relative;
    padding: 14px 28px;
    border: 2px solid #000000;
}



.header_wrapper .seperator {
    height: 100%;
    width: 1px;
    background-color: #000;
    opacity: .1;
    margin-right: 24px;
}

/* Menu btn */
/* .menu-btn {
    padding-inline: 29px;
}
 */
.menu-btn__burger {
    width: 40px;
    height: 2px;
    background-color: #000000;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    border-radius: 0;
    padding-right: 29px;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #000000;
    position: relative;
    display: block;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;

}

.menu-btn__burger::before {
    top: -9px;
}

.menu-btn__burger::after {
    top: 7px;
}

/* When the button is clicked, add the "active" class */
.menu-btn.active .menu-btn__burger {
    background-color: transparent;
    height: 2px;
    box-shadow: none;
}

.menu-btn.active .menu-btn__burger::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    height: 3px;
    background-color: #465f7b;
    box-shadow: none;
    /* width: 16.5px; */
}

.menu-btn.active .menu-btn__burger::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -3px;
    height: 3px;
    background-color: #465f7b;
    box-shadow: none;
    /* width: 16.5px; */
}

.mobile_main_header.open {
    right: 0;
    width: 100%;
    overflow: hidden;
    padding-inline: 22px;
    opacity: 1;
}

/* Hero */
.hero_section {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    color: var(--primaryColor);
    height: 809px;
}

.hero_section .hero_bg {
    border-radius: 0;
}

.hero_section .hero_content {
    /* display: flex; */
    /* gap: 50px;
    justify-content: space-between;*/
    /* padding-top: 188px;
    padding-left: 100px;
    background-image: url(../img/hero_img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 795px;
    border-radius: 0;
    position: relative; */
    /* height: 77vh; */
    position: relative;
}

.video-js .vjs-big-play-button {
    font-size: unset;
    line-height: unset;
    height: unset;
    width: unset;
    position: unset;
    top: unset;
    left: unset;
    padding: unset;
    margin-top: unset;
    margin-left: unset;
    cursor: unset;
    opacity: unset;
    border: unset;
    background-color: unset;
    background-color: unset;
    border-radius: unset;
    transition: unset;
}

.hero_content .play_video,
.video-js .vjs-big-play-button {
    background-color: #FFFFFF;
    opacity: 0.8;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    border: none;
    height: 144px;
    width: 144px;
    /* display: flex ;
    justify-content: center ;
    align-items: center ; */
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    cursor: pointer;
}

.video-js .vjs-big-play-button.hidden {
    display: none;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
    background-color: white;
}

.video-js .vjs-control-bar {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
}

.hero_content .play_video img {
    margin-left: 8px;
}

.hero_content .play_video:hover {
    opacity: 1;
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.15);
}

.hero_content .mobile_video {
    display: none;
}

.hero_section #hero_img {
    max-width: 868px;
    /* width: 868px; */
    /* max-height: 534px; */
    /* height: 100%; */
    object-fit: cover;
    object-position: bottom;
}

.hero_section .headline_wrapper {
    display: inline-block;
    background: rgba(252, 252, 252, .7);

    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    padding-block: 66px;
    padding-inline: 55px;
    max-width: 424px;
    position: absolute;
    top: 188px;
    left: 100px;
    z-index: 500;
}

#desktop_video_container,
#desktop_video_container iframe,
#mobile_video_container,
#mobile_video_container iframe {
    /*  width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: block; */
    /* display: none; */
}

.hero_section .hero_headline {
    font-size: 50px;
    line-height: 40px;
}

.hero_section .hero_subheadline {
    font-size: 20px;
    line-height: 36px;
    /* width: 313px; */
    margin-top: 28px;
}

/* Services */
.services_section {
    /* margin-top: 100px;
    margin-bottom: 130px; */
    padding-block: 100px 130px;
}

.services_section .main_title {
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 40px;
    font-weight: 400;
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* .services .service {
    cursor: pointer;
} */
.services .service_more__btn{
    cursor: pointer;
}
.services .service-opened .service_title{
    font-weight: 400;
}
.services .service-opened .service_title::after{
    width: 0;
}
.services #service_img {
    /* max-width: 350px;
    max-height: 230px; */
}

.services #service_img img {
    height: 201px;
    width: 313px;
    object-fit: cover;

}

.services .service_title {
    /* font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: var(--primaryColor);
    margin-top: 12px; */
    display: inline-block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--secondaryColor);
    position: relative;
    margin-top: 20px;
    cursor: pointer;
}

.services .service_title::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 90%;
    height: 2px;
    background-color: var(--secondaryColor);
    transition: .3s;
}

.services .service_description {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--primaryColor);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.services .service_description p {
    font-family: 'Inter';
}

.services .service_description ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 10px;
}

.services .service_description.open {
    padding-top: 30px;
    max-height: 1000px;
    overflow: visible;
    opacity: 1;
}

.more_btn {
    display: inline-block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--secondaryColor);
    position: relative;
    margin-top: 20px;
    cursor: pointer;
}

.more_btn img {
    width: unset;
    margin-bottom: 2px;
    margin-right: 10px;
}

.more_btn::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
}

.services .service_consultation__infos {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
}

.services .service_consultation__infos ul {
    list-style: disc;
    list-style-position: inside;
    display: grid;
    gap: 9px;
}

/* About me  */
.about_me {
    background-color: #fff;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.about_me .container {
    padding-top: 130px;
}

.about_me .about_me__content {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400;
    color: var(--primaryColor);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about_me .main_title {
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 40px;
    font-weight: 400;
}

.about_me .tabs_nav ul {
    display: flex;
    gap: 50px;
    margin-bottom: 78px;
}

.about_me .tab_btn {
    cursor: pointer;
    position: relative;
    display: block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--secondaryColor);
    transition: .3s;
}

.about_me .tab_btn::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: .3s;
}

.about_me .tab_btn.active {
    font-weight: 400;
}

.about_me .tab_btn.active::before {
    width: 0;
}

.about_me__content .tabs_content .main_title {
    margin-bottom: 30px;
    padding-top: 4px;
}

.about_me__content .tabs_content p {
    margin-bottom: 30px;
}



.about_me__content .tabs_content {
    position: relative;
    overflow: hidden;
}

/* .about_me__content .tab_content {
    transform: translateX(100%);
    transition: .2s;
    position: absolute;
    opacity: 0;
    right: 0;
} */
.about_me__content .tab_content {

    transition: .2s;
    position: absolute;
    opacity: 0;
    padding-bottom: 120px;
}

.about_me__content .tab_content ul {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 20px;
    line-height: 40px;
}

.about_me__content .tab_content ul li {
    margin-bottom: 15px;
}

/* .about_me__content .tab_content.active {
    transform: unset;
    opacity: 1;
    left: 0;
} */
.about_me__content .tab_content.active {
    opacity: 1;
    position: relative;
}

.about_me #about_me__img {
    mix-blend-mode: multiply;
    max-width: 586px;
    width: 100%;
    margin-left: auto;
    margin-top: 30px;
    align-self: end;
    /* position: sticky;
    bottom: 0;
    right: 0; */
}

.about_me .certifications {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.about_me .certificat {
    min-width: 142px;
    min-height: 142px;
    max-width: 142px;
    max-height: 142px;
    border: 2px solid #413A4A;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Inter';
    text-align: center;
}

.about_me .certificat::after {
    content: "";
    height: 128px;
    width: 128px;
    position: absolute;
    border: 2px dashed #413A4A;
    border-radius: 100px;
}

.about_me .certificat h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: var(--secondaryColor);
    z-index: 2;
}

.about_me .certificat span {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    color: var(--secondaryColor);
}

/* Consultation registration */
.consultation_reg__section {
    background: #F5F8FE;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
    color: var(--primaryColor);
}

.consultation_reg__section .reg_content {
    padding-block: 130px;
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400;
    position: relative;
    display: grid;
    grid-template-columns: 60% 40%;
}

.consultation_reg__section .reg_content .left {
    padding-right: 145px;
}

.consultation_reg__section .main_title {
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 40px;
    font-weight: 400;
}

.reg_content .container {

    color: black;
    -webkit-box-shadow: var(--primaryBoxShadow);
    box-shadow: var(--primaryBoxShadow);
    margin: 15px 0;
    padding-bottom: 22px;
}

.reg_content .question {

    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* cursor: pointer; */
    padding-left: 24px;
    padding-block: 7px;
    /* border-bottom: 1px solid rgba(255, 255, 255, .2);
    border-radius: 0; */

    /* display: inline-block; */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    /* line-height: 30px; */
    color: var(--secondaryColor);
    position: relative;
    margin-top: 20px;
    cursor: pointer;
}

.reg_content .question.active {
    font-weight: 400;
}

.reg_content .question p {
    font-family: 'Inter';
    font-size: 24px;
    color: var(--secondaryColor);
}

.reg_content .question::before {
    content: "";
    font-size: 2.2rem;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: url('../img/plus_w.svg');
    width: 10px;
    height: 10px;
}


.reg_content .question.active::before {
    background: url('../img/minus_w.svg');
    height: 2px;
}

.reg_content .answercont {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}

.reg_content .answer {
    margin-top: 18px;
}

.reg_content .answer p {
    font-family: 'Libre Baskerville';
    font-size: 20px;
}

.reg_content .answer ul,
.reg_content .answer ol {
    font-family: 'Libre Baskerville';
    font-size: 20px;
    line-height: 40px;
    list-style: disc;
    padding-left: 18px;
}

.form {
    /* display: flex;
    flex-direction: column;
    gap: 25px; */
    background: #FCFCFC;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    padding: 137px 69px 70px 69px;
    max-height: 576px;
    min-height: 576px;
    max-width: 494px;
    min-width: 494px;

    position: relative;
    overflow-y: scroll;
}

.form .form_wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.deco_wrapper {
    filter: drop-shadow(0px 5px 25px rgba(0, 0, 0, 0.1));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125px;
    overflow: hidden;
    z-index: 5555;
}

.deco {
    width: 100%;
    height: 95px;
    background: #FCFCFC;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.form img {
    position: absolute;
    top: -20px;
    left: -25px;
    width: auto;
}

.form-control {
    position: relative;
    width: 100%;
    height: 3rem;
    margin: 0 auto;
}

.form-control.message_container {
    height: unset;
}

.form-label {
    position: absolute;
    font-family: inherit;
    font-size: 20px;
    font-weight: 400;
    left: 0;
    top: 0.75rem;
    font-family: 'Libre Baskerville';
    color: var(--primaryColor);
    background: var(--color-white);
    transition: all 0.35s ease;
}

.form-input,
textarea {
    /*  position: absolute; */
    display: block;
    font-size: 20px;
    font-weight: 400;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;

    padding-block: 11px;
    z-index: 1;
    outline: none;
    font-family: 'Libre Baskerville';
    background-clip: padding-box;
    background-color: transparent;
    transition: all 0.35s ease-in-out;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
}

textarea#message {
    min-height: 110px;
    max-width: 356px;
    min-width: 100%;
}

.form-input::-moz-placeholder {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.form-input:-ms-input-placeholder {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.form-input::placeholder {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.form-input:focus+.form-label {
    font-size: 14px;
    color: #000;
    top: -0.65rem;
    z-index: 5;
}

.form-input:not(:-moz-placeholder-shown).form-input:not(:focus)+.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    top: -0.65rem;

    z-index: 5;
}

.form-input:not(:-ms-input-placeholder).form-input:not(:focus)+.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    top: -0.65rem;

    z-index: 5;
}

.form-input:not(:placeholder-shown).form-input:not(:focus)+.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    top: -0.65rem;

    z-index: 5;
}

.form .submit_form {
    padding-block: 22px;
    appearance: none;
    border: none;
    background: none;
    background: #5871B1;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: white;
    text-align: center;
    margin-top: 15px;
}

/* FOOTER */
#footer {
    padding-block: 18px;
    background-color: white;
    font-size: 18px;
    font-family: 'Inter';
}

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

@media only screen and (max-width: 768px) {
    .main_title {
        font-size: 40px !important;
        line-height: 45px !important;
    }

    .main_header {
        height: 65px;
    }

    .menu-btn {
        padding: 0;
        padding-right: 15px;
    }

    .main_header #open_fs__menu {
        padding: 0;
    }

    .menu-btn__burger {
        width: 25px;
        padding-right: 0;
    }

    .menu-btn__burger::before,
    .menu-btn__burger::after {
        width: 25px;
    }

    .menu-btn__burger::before {
        top: -8px;
    }

    .menu-btn__burger::after {
        top: 6px;
    }

    .header_wrapper .seperator {
        margin-right: 15px;
    }

    .header_content {
        padding-inline: 0;
    }

    .fullscreen_menu li {
        text-align: center;
    }

    .fullscreen_menu li a {
        font-size: 30px;
        line-height: 20px;
    }

    .logo h2 {
        font-size: 7.5px;
    }

    .logo h1 {
        font-size: 16px;
        line-height: unset;
        margin-top: 0;
    }

    .header_content .book_btn {
        font-size: 12px;
        padding: 6px 12px;
    }


    .container {
        padding-inline: 15px;
    }

    p,
    li {
        font-size: 16px;
        line-height: 32px;
    }

    .hero_section {
        height: auto;
    }

    .hero_section .hero_content {
        padding: 0;
        gap: 0;
        flex-direction: column;
    }

    .hero_section #arrow {
        display: none;
    }

    .hero_content #dekstop_video__img,
    .hero_content .play_video.desktop {
        display: none;
    }

    .hero_content .mobile_video {
        display: block;
        position: relative;
        /* height: 220px; */
    }

    .hero_content .mobile_video .play_video {
        height: 60px;
        width: 60px;
        top: 50%;
    }

    .hero_content .mobile_video .play_video img {
        width: 20px;
        margin-left: 5px;
    }

    .hero_section .headline_wrapper {
        padding: 0;
        position: relative;
        top: 0;
        left: 0;
        background: unset;
        box-shadow: unset;
        margin-block: 80px 40px;
    }

    .more_btn {
        font-size: 16px;
        margin-top: 10px;
    }

    .hero_content .play_video,
    .video-js .vjs-big-play-button {
        height: 60px !important;
        width: 60px !important;
    }

    .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
        background-size: 25px !important;
        margin-left: 3px !important;
    }

    /* Services section */
    .services_section {
        /* margin-block: 80px; */
        padding-bottom: 100px;
    }

    .services {
        grid-template-columns: 1fr;
        padding-inline: 0;
        gap: 50px;
    }

    .services .service_consultation__infos {
        font-size: 16px;
    }

    .services #service_img {
        max-width: 100%;
        max-height: 100%;
    }

    .services #service_img img {
        width: 100%;
    }

    .services .service_title {
        font-size: 18px;
        line-height: 32px;
    }

    .services .service_description {
        font-size: 16px;
    }

    /* About me */
    .about_me .container {
        padding-top: 80px;
    }

    .about_me .about_me__content {
        display: flex;
        flex-direction: column;
    }

    .about_me .tabs_nav ul {
        gap: 5px;
        margin-bottom: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .about_me .tab_btn::before {
        display: none;
    }

    .about_me .tab_btn {
        border: 1px solid #e5e5e5;
        padding-block: 17px;
        text-align: center;
    }

    .about_me .tab_btn.active {
        border-color: var(--secondaryColor);
    }

    .about_me__content .tab_content {
        padding-bottom: 20px;
    }

    .about_me #about_me__img {
        margin-top: 50px;
        position: relative;
        width: 90%;
        margin-inline: auto;
        padding-left: 20px;
    }

    .about_me .certifications {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Registration */
    .consultation_reg__section .reg_content {
        padding-block: 80px;
        display: flex;
        flex-direction: column;
    }

    .reg_content .question p {
        font-size: 20px;
    }

    .reg_content .answer {
        margin-top: 5px;
    }

    .consultation_reg__section .reg_content .left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .consultation_reg__section .main_title {
        font-size: 40px;
        line-height: 45px;
    }

    .form {
        min-width: 100%;
        padding: 110px 30px 40px 30px;
        min-height: unset;
    }

    .deco_wrapper,
    .deco {
        height: 65px;
    }

    .copyright {
        flex-direction: column-reverse;
        text-align: center;
        gap: 10px;
    }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder::before {
    content: "" !important;
    background: url(../img/Play.svg) no-repeat center center;
    margin-left: 5px;
}