/* -Шалом- */
*{
    margin: 0;
    padding: 0;
    border: 0;
}


:focus, :active{outline: none;}
a:focus, a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webcit-text-size-adjust: 100%;
}

input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none; color: #c7c7c7;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0; border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

textarea {
resize: none;
}

/* - Шрифты - */


@font-face {
    font-family: 'Factor A';
    src: url('../fonts/FactorA-Regular.woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Factor A';
    src: url('../fonts/FactorAMedium-Regular.woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Factor A';
    src: url('../fonts/FactorA-Bold.woff');
    font-weight: 600;
    font-style: normal;
}

/* - end Шрифты - */


body{
font-family: 'Factor A';
background: #FFF;
color: #2B4B54;
}


a{
    color: #1A73E8;
    transform: all 1s;
}

a:hover{
    color: #2B4B54;
    transition: 1s ease;
}

h1, h2, h3, h4, h5, p{
font-weight: 400;
color: #2B4B54;
font-family: 'Factor A';
}

h1{
font-size: 48px;
font-weight: 500;
line-height: 120%;
}

h2{
font-size: 36px;
font-weight: 500;
line-height: 120%;
margin-bottom: 20px;
}

h3{
font-size: 24px;
line-height: 120%;
}


h4{
font-size: 20px;
line-height: 120%;
}

h5{
font-size: 14px;
line-height: 120%;   
}

p{
font-size: 16px;
line-height: 120%;   
}



::-webkit-scrollbar{
    height: 4px;
    width: 9px;
}

::-webkit-scrollbar-track{
background: #f0f0f0;
border-radius: 0px;
}
::-webkit-scrollbar-track piece{
    background: #e3e3e3;
}

::-webkit-scrollbar-thumb{
    background: #1A73E8;
    border-radius: 0px;
}

.container {
    width: 1170px;
    margin: 0px auto;
    padding: 0px 15px;
    box-sizing: border-box;
    position: relative;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(244 244 244 / 90%);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}


.popup.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.popup_body {
    display: flex;
    max-width: 600px;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 30px;
    transition: all 0.8s ease 0s;
    background: #fff;
    border-radius: 20px;
    min-height: 450px;
    box-sizing: border-box;
}

.radio-container {
    padding: 20px 20px;
    border: 1px solid #f3f5fa;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.8s;
    margin-bottom: 25px;
    max-width: 260px;
}

.radio-container:hover {
    background-color: #f3f5fa;
}

input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.5);  /* Увеличение размера radio-кнопок */
}

#optionsContainer{
    display: flex;
    flex-direction: column;
}

#testSection h2{
    font-size: 28px;
    margin-bottom: 5px;
}

#testSection h3{
    font-size: 20px;
    margin-bottom: 20px;
}

#testSection h5{
    font-size: 14px;
    margin-bottom: 20px;
}

#testSection p{
    font-size: 18px;
    margin-bottom: 20px;
    color: #838DA0;
}

#testSection span{
    color: #2B4B54;
}

#questionContainer{
    font-size: 18px;
}

#prevButton {
    width: 250px;
    height: 45px;
    border-radius: 6px;
    color: #42444b;
    font-size: 18px;
}

.check_ok {
    width: 30px;
    height: 14px;
    cursor: pointer;
}

.check_ok:hover{
    background: #000;
}

.check_ok:checked{

}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
.fade-in.show {
    opacity: 1;
}
/* Для удаления вариантов ответа */
.fade-out {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}
.fade-out.hide {
    opacity: 0;
}


.btn {
    width: 300px;
    height: 60px;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    display: flex;
    background: #1A73E8;
    justify-content: center;
    align-items: center;
    transition:background 1s;
    cursor: pointer;
}

.btn:hover{
    background: #000;
}

.header {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo img {
    width: 35px;
    height: 35px;
    margin-right: 5px;
    cursor: pointer;
}

.logo_disc{
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 500;
    margin-right: 65px;
    cursor: pointer;
}


.logo_text{
    display: flex;
    flex-direction: row;
}

.logo_text h4{
    font-size: 16px;
    font-weight: 400;
    margin-right: 35px;
    cursor: pointer;
    transition: color 1s;
}

.logo_text h4:hover {
    color: #1A73E8;
    border-bottom: 1px solid #1A73E8;
    padding-bottom: 5px;
}

.active_head{
    border-bottom: 1px solid #1A73E8;
    padding-bottom: 5px;
    color: #1A73E8;
}

.logo_text h5{
    font-size: 14px;
    font-weight: 400;
    width: 160px;
    color: #838DA0;
}

.btn {
    width: 250px;
    height: 60px;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    display: flex;
    background: #1A73E8;
    justify-content: center;
    align-items: center;
    transition: background 1s;
    margin-bottom: 10px;
}

.btn:hover{
    background: #000;
    transition:background 1s;
}

.head_btn {
    display: flex;
    width: 180px;
    font-size: 14px;
    height: 45px;
    background-color: #fff;
    color: #838DA0;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.head_btn img{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.head_btn:hover{
    background-color: #fff;
    color: #1A73E8;
}

.main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0px;
    align-items: center;
}

.main img{
    width: 100%;
    height: auto;
}

.main video{
    width: 100%;
    height: auto;
}

.main h2{
    font-size: 240px;
    text-align: center;
    margin-bottom: -30px;
    margin-top: 30px;
}

.main_text{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_text h1{
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}



.main_text h4 {
    font-size: 20px;
    text-align: center;
    color: #838DA0;
    margin-bottom: 20px;
    max-width: 800px;
}

.main_text h5 {
    margin-top: 5px;
    color: #838DA0;
}

.bg_hd{
    width: 100%;
    max-width: 1350px;
    background: #f2f5fa;
    border-radius: 50px;
    height: auto;
    margin: 0px auto;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.td {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 30px;
    box-sizing: border-box;
}

.td h2{
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center; 
}

.td h4 {
    font-size: 18px;
    color: #838DA0;
    max-width: 740px;
    text-align: center;
    margin-bottom: 30px;
}

.td_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.td_block{
    width: 48%;
    height: 125px;
    background: #fff;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    padding: 25px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.5s;
    margin-bottom: 30px;
    position: relative;
}

.td_block img {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.1;
}

@-webkit-keyframes td_bloc {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes td_bloc {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.td_block:hover {
    transform: scale3d(1.04, 1.04, 1.04);
}

.td_block:hover.td_block h2{
    -webkit-animation: td_bloc 1.5s ease;
    animation: td_bloc 1.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

}

.td_block:hover.td_block img{
    opacity: 1;

}

.td_block h2{
    font-size: 60px;
    margin-bottom: 25px;
    text-align: left;
    margin-right: 10px;
}




.td_block h3{
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}    

.td_block h4{
    font-size: 16px;
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
    
}

.td_block a{
    text-align: left;
    
}

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

.mission_row {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.mission_row img{
    width: 600px;
    height: auto;
}

.mission_row p{
    max-width: 700px;
    text-align: center;
    color: #838da0;
    margin-bottom: 20px;
}

.traning_row{
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    height: auto;
    box-sizing: border-box;
    padding: 30px 20px;
}

.traning_row h2{
    font-size: 20px;
    color: #838da0;
    font-weight: 400;
}

.traning_row h4{
    font-size: 16px;
    color: #2B4B54;
    font-weight: 400;
    max-width: 100%;
    margin-bottom: 20px;
}

.traning_row h5 {
    font-size: 14px;
    margin-bottom: 25px;
}

.traning_row span{
    font-size: 24px;
    color: #2B4B54;
}

#artzag {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.test_res {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: linear-gradient(13deg, #f2fbff 0%, #f1f6fb 50%, #d0e5ff 100%);
    box-sizing: border-box;
    padding: 50px 30px;
    align-items: center;
    margin-bottom: 30px;
}

.intensiv_offer {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 20px;
    background: linear-gradient(13deg, #f2fbff 0%, #f1f6fb 50%, #d0e5ff 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.row_class{
    display: flex;
    flex-direction: row;
}

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

.test_res img{
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.test_res h2{
    font-size: 120px;
    margin-bottom: 0px;
}

.test_res h3 {
    font-size: 18px;
    color: #838da0;
    background: #fff;
    padding: 10px 25px;
    border-radius: 9px;
}

.test_res h4 {
    font-size: 50px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.test_res h5{
    margin-bottom: 0px;
    font-weight: 500;
}

.test_res p{
    font-size: 20px;
    margin-bottom: 20px;
}

.avatar_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.avatar_row img{
    width: 45px;
    height: 45px;
    margin-right: 5px;
}

.intensiv_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.test_res span{
    font-size: 18px;
    color: #2B4B54;
}

.offer_ok {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    height: auto;
    background: #F8FAFE;
    box-sizing: border-box;
    padding: 25px;
    position: relative;
    margin-bottom: 30px;
}

.offer_ok h2 {
    position: absolute;
    right: 40px;
    bottom: 0px;
    font-size: 90px;
    opacity: 0.7;
    margin-bottom: 0px;
}


.traning_link {
    width: 100%;
    border-bottom: 1px solid #F3F5FA;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    align-items: flex-start;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 40px;
    transition: transform 0.3s;
}

.traning_link h2 {
    font-size: 40px;
    margin-bottom: 0px;
    margin-right: 10px;
}


.traning_info h3{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.traning_info p{
    font-size: 14px;
    color: #838DA0;
}

.traning_rating {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 10px;
    left: 50px;
}

.traning_rating img{
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.tr_rat {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-weight: 500;
    font-size: 16px;
}

.tr_rew {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
}

#arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 25px;
    height: 25px;
    opacity: 0.1;
}

.traning_link:hover {
    transform: scale3d(1.01, 1.01, 1.01);
}

.traning_link:hover.traning_link h2{
    -webkit-animation: td_bloc 1.5s ease;
    animation: td_bloc 1.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

}

.traning_link:hover #arrow{
    opacity: 1;

}

.session_col {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 20px 40px;
    box-sizing: border-box;
}

.session_col h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
}

.session_col h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 25px;
}

.session_col h4 {
    font-size: 18px;
    color: #2b4b54;
    max-width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 500;
}

.session_col h5 {
    margin-bottom: 10px;
}

.session_col p{
    font-size: 14px;
    font-weight: 400;
    color: #838DA0;
    margin-bottom: 25px;
}

.session_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 5px;
    border-bottom: 1px solid #f2f5fa;
}
.ses_row_all {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.ses_row {
    display: flex;
    flex-direction: row;
    width: 300px;
    margin-right: 40px;
}

.ses_row h2{
    font-size: 40px;
    margin-right: 10px;
}

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

.ses_col h4{
    font-size: 16px;
    margin-bottom: 5px;
}

#openDiv {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    color: #1a73e8;
    font-size: 16px;
    cursor: pointer;
}


.thd {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}

.thd h2{
    text-align: center;
}

.thd h4 {
    text-align: center;
    color: #838DA0;
    width: 100%;
    max-width: 750px;
    margin-bottom: 35px;
    font-size: 18px;
}

.thd_row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thd_block{
    width: 320px;
    height: 200px;
    background: #f2f5fa;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.5s;
}

.thd_block h2 {
    font-size: 46px;
}

.thd_block h4 {
    font-size: 16px;
    color: #838DA0;
}

@-webkit-keyframes td_bloc {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes td_bloc {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.thd_block:hover {
    transform: scale3d(1.04, 1.04, 1.04);
}

.thd_block:hover.thd_block h2{
    -webkit-animation: td_bloc 1.5s ease;
    animation: td_bloc 1.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.thd_block:hover.thd_block h4{
   color: #2b4b54;
}

.entry_row{
    width: 100%;
    display: flex;
    flex-direction: row;
    background: #151d2a;
    height: 550px;
    border-radius: 30px;
    padding: 50px;
    box-sizing: border-box;
    margin-bottom: 70px;
    margin-top: 50px;
}

.entry_col{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.entry_col h2{
    color: #fff;
    margin-bottom: 15px;
}

.entry_col h4 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #f2f5fa;
    width: 190px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}

.entry_col h5{
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.entry_col p{
    color: #fff;
    margin-bottom: 10px;
}

.entry_col span{
    font-size: 16px;
}



.black{
    transition: all 1s;
    font-size: 18px;
}

.black img{
    height: 30px;
    width: 30px;
    margin-right: 5px;
}

.black:hover{
    background: #1A73E8;
    opacity: 0.8;
    transition: all 1s;
}

.black:hover.black img {
    -webkit-animation: td_bloc 1.5s ease;
    animation: td_bloc 1.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.emogzi_col {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg_smail.png);
    background-repeat: no-repeat;
    background-position: top;
}

.emogzi_col h2{
    font-size: 360px;
    transform: rotate(322deg);
    margin-top: 60px;
}

#emoji {
   transition: opacity 1s ease-in-out;
}

.accordion{
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.question {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #f2f5fa;
  padding-bottom: 10px;
  cursor: pointer;
  justify-content: space-between;
}

.question h3 {
    font-size: 20px;
    line-height: 120%;
    z-index: -1;
    font-weight: 500;
}

.question_svg{
  width: 24px;
  height: 24px;
  z-index: -1;
}

.question svg{
    z-index: -1;
    transition: 0.5s ease-out;
    width: 24px;
    height: 24px;
}

.answer {
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  display: flex;
  padding: 0px;
  box-sizing: border-box;
  transition: 0.8s ease-out;
  border-bottom: 0px solid #f2f5fa;
}

.answer p {
    font-size: 16px;
    line-height: 130%;
    padding: 20px 10px;
    color: #838da0;
}

.accordion.active .answer{
   border-bottom: 1px solid #f2f5fa;
   overflow: hidden;
   margin-bottom: 10px;
}

.accordion.active .question svg{
    transform: rotate(180deg);
}

.mb_50{
    margin-bottom: 50px;
}

.reviews_row{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 50px 0px;
}

.reviews_row h2{
    text-align: center;
}

.reviews_row h4{
    text-align: center;
}

.rev_col {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.rev_col img{
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

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

.rev_col_2 h5{
    margin-bottom: 3px;
}

.reviews_block_all {
    margin: 35px 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}



.reviews_block_all {
    display: flex;
    overflow: hidden; 
    margin: 35px 0px;
    width: 100%;
    justify-content: flex-start;
}


.reviews_block {
    flex: 0 0 auto; 
    width: 360px;
    min-width: 360px;
    min-height: 235px;
    background: #ffffff;
    border: 1px solid #e0e6f3;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    margin-right: 15px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
}


.reviews_block.fade-out {
    opacity: 0;
    transform: translateX(-100%);
}


.reviews_block.slide-in {
    opacity: 1;
    transform: translateX(0);
}


.reviews_block.hidden {
    opacity: 0;
    transform: translateX(100%);
}


.reviews_block p{
    margin-bottom: 10px;
}

.reviews_block h4 {
    background: #1a73e8;
    width: 40px;
    padding: 5px;
    border-radius: 30px;
    color: rgb(244 244 244 / 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 25px;
}

.reviews_block a {
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.rev_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rev_like{
    display: flex;
    flex-direction: row;
}

.rev_like h4{
    margin-right: 7px;
}

.rev_link {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1a73e8;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 50px;
    justify-content: center;
}

.rev_link a{
    color: #fff;
}

#closePop {
    font-size: 25px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    padding: 10px;
}

.popup_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup_cont h3 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
}

.popup_cont h4 {
    color: #e0e6f3;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #e0e6f3;
    width: 190px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}

.popup_cont h5 {
    font-size: 16px;
    background: #fff;
    width: 60px;
    margin-bottom: -12px;
    text-align: center;
    color: #f2f5fa;
    font-weight: 500;
    text-align: center;
}

.popup_cont p{
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.whatsapp{
    background: #128C7E;
}

.telegram {
    background: #0088cc;
    margin-bottom: -5px;
}

.messenger {
    max-width: 280px;
    width: 100%;
    height: 65px;
    font-size: 18px;
    font-weight: 500;
}

.messenger:hover{
    background: #464d5e;
}

.messenger img{
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.like_art{
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.like{
    display: flex;
    margin-right: 25px;
    font-size: 30px;
    cursor: pointer;
}


footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #f2f5fa;
    height: auto;
    max-width: 1480px;
    margin: 0px auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer_row {
    display: flex;
    flex-direction: row;
    padding: 30px 0px;
    box-sizing: border-box;
    width: 100%;
    justify-content: space-between;
}

.footer_soc {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.footer_soc a{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #838DA0;
}

.footer_soc a:hover{
    color: #1A73E8;
}

.footer_soc h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer_soc h4{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer_soc span{
    font-size: 14px;
    font-weight: 400;
    color: #838DA0;
}

.fs_block{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.fs_block img{
    cursor: pointer;
    margin-right: 10px;
    height: 50px;
    width: 50px;
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 1200px){

.container{
width: 938px;
margin: 0px auto;
padding: 0px 15px;
}

.td_block {
    height: 135px;
}

.footer_soc {
    max-width: 210px;
}

.td_block {
    width: 265px;
    height: 210px;
}

.td_block h2{
    font-size: 46px;
    width: 100%;
    
}

.td_block h4 {
    font-size: 14px;
}

.thd_row {
    max-width: 685px;
}


.mb_50{
    margin-bottom: 50px;
}





@media (max-width: 990px){

.container{
    width: 100%;
    margin: 0px auto;
    padding: 0px 15px;
} 

.logo_disc {
    margin-right: 25px;
}   

.td_row {
    flex-direction: column;
    align-items: center;
}

.td_block {
    width: 100%;
    max-width: 620px;
    height: auto;
    margin-bottom: 20px;
    height: 125px;
}

.mb_10 h5 {
    max-width: 300px;
}

.mission_row img{
    width: 100%;
    height: auto;
}

.bg_hd{
    border-radius: 30px;
}

.traning_row{
    width: 100%;
    border-radius: 25px;
}

.td_row {
    flex-direction: column;
    align-items: center;
}

.td_block {
    width: 100%;
    max-width: 320px;
    height: 250px;
    margin-bottom: 30px;
}

.td_block h2{
    font-size: 46px;
    width: 100%;
    
}  

.td_block h4 {
    font-size: 16px;
}

.thd_row {
    flex-direction: column;
    align-items: center;
}

.entry_row {
    flex-direction: column-reverse;
    height: auto;
    width: calc(100% + 20px); /* Увеличиваем ширину на 20px (по 10px с каждой стороны) */
    margin-left: -10px; /* Выход за пределы слева */
    margin-right: -10px; /* Выход за пределы справа */
}

.entry_col {
    width: 100%;
    align-items: center;
    margin-bottom: 50px;
}

.emogzi_col {
    width: 100%;
    background-size: contain;
}

.mb_50{
    margin-bottom: 50px;
}

.test_res {
    width: calc(100% + 20px);
    margin-left: -25px;
    margin-right: -25px;
}

.test_res h4 {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer_row {
    flex-wrap: wrap;
    padding: 30px 10px;
}

.fs_block {
    margin-left: 10px;
}

.footer_soc h4 {
    margin-left: 10px;
}

.footer_soc a {
    margin-left: 10px;
}

.footer_soc {
    max-width: 310px;
}


@media (max-width: 550px){

.container {
    width: 100%;
    padding: 0px 10px;
}

.popup_body {
    height: 100%;
    overflow-y: auto;
    padding: 0px;
    border-radius: 0px;
    width: 100%;
}

#testSection {
    margin-top: 40px;
    padding-bottom: 50px;
}

#prevButton {
    width: 100%;
    height: 60px;
    max-width: 300px;
}

.header {
    padding: 0px 0px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.logo img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.logo_disc {
    font-size: 16px;
}

.logo_text{
    display: none;
}

.head_btn {
    width: 110px;
    font-size: 14px;
}

.main_text h1 {
    font-size: 34px;
}

.main_text h4 {
    font-size: 16px;
}

.btn {
    width: 100%;
    height: 60px;
    max-width: 250px;
    margin-bottom: 10px;
}

.head_btn {
    width: 165px;
    font-size: 14px;
}

.main h2 {
    font-size: 150px;
    text-align: center;
    margin-bottom: -30px;
    margin-top: 30px;
} 

.head_btn:hover{
    color: #42444B;
}

.bg_hd {
    border-radius: 25px;
}

.td {
    padding: 40px 5px;
}

.td h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.td h4 {
    width: 100%;
    font-size: 14px;
}

.td_block {
    padding: 15px;
    height: auto;
    border-radius: 13px;
}

.td_block h2 {
    font-size: 46px;
    width: 70px;
    margin-right: 15px;
}

.td_block h4 {
    font-size: 14px;
    margin-bottom: 0px;
}

.td_block img {
    width: 25px;
    height: 25px;
    right: 15px;
    top: 10px;
}

.traning_row h4{
    font-size: 16px;
}

.intensiv_offer {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-right: -5px;
}

.intensiv_row {
    flex-direction: column;
    align-items: center;
}

.offer_ok h2 {
    display: none;
}

.traning_link {
    padding-bottom: 45px;

}

.traning_rating {
    left: 38px;
}

.traning_info h3 {
    font-size: 18px;
    max-width: 240px;
}

.session_col h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.session_row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.session_col {
    padding: 0px;
}

.ses_row_all {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ses_row {
    width: 100%;
}

#arrow {
    top: -5px;
    width: 20px;
    height: 20px;
}

#textHiden{
    display: none;
}

.thd {
    padding: 0px;
    padding-top: 30px;
}

.thd h4 {
    font-size: 16px;
}

.thd_block h4 {
    font-size: 16px;
}

.thd_block {
    width: 100%;
    max-width: 320px;
} 

.entry_row {
    border-radius: 15px;
    padding: 35px 20px;
}

.entry_col {
    text-align: center;
}

.emogzi_col {
    width: 100%;
}

.emogzi_col h2 {
    font-size: 200px;
    margin-bottom: -20px;
}

.reviews_block {
    min-width: 290px;
    margin-right: 35px;
    width: 100%;
}

.popup_cont {
    padding: 30px 10px;
}

.mb_50{
    margin-bottom: 50px;
}

.traning_row {
    padding: 30px 5px;
}

.test_res h4 {
    font-size: 38px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.test_res p {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.footer {
    flex-direction: column;
}

.dogovor {
    margin-bottom: 20px;
    text-align: center;
}

.info {
    margin-bottom: 20px;
    text-align: center;
}    


}



