@charset "UTF-8";
html.remodal-is-locked {
overflow: hidden;
}
.remodal,
[data-remodal-id] {
display: none;
}
.remodal-overlay {
position: fixed;
z-index: 9999;
top: -5000px;
right: -5000px;
bottom: -5000px;
left: -5000px;
display: none;
}
.remodal-wrapper {
position: fixed;
z-index: 10000;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
overflow: auto;
text-align: center;
-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
display: inline-block;
height: 100%;
margin-left: -0.05em;
content: "";
}
.remodal-overlay,
.remodal-wrapper {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.remodal {
position: relative;
outline: none;
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
.remodal-is-initialized {
display: inline-block;
}
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
-webkit-filter: blur(3px);
filter: blur(3px);
}
.remodal-overlay {
background: rgba(0, 0, 0, 0.8);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
-webkit-animation: remodal-overlay-opening-keyframes 0.3s;
animation: remodal-overlay-opening-keyframes 0.3s;
}
.remodal-overlay.remodal-is-closing {
-webkit-animation: remodal-overlay-closing-keyframes 0.3s;
animation: remodal-overlay-closing-keyframes 0.3s;
}
.remodal-wrapper {
padding: 10px;
}
.remodal {
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 99.2%;
padding: .8%;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
color: #2b2e38;
background: black;
margin-bottom: 10px;
font-family: 'Roboto', sans-serif;
overflow: hidden;
border-radius: 5px;
}
.remodalBorder{
width: 89.2%;
border: 1px solid #e1e1e1;
padding: 4% 5% 0.8%;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
-webkit-animation: remodal-opening-keyframes 0.3s;
animation: remodal-opening-keyframes 0.3s;
}
.remodal.remodal-is-closing {
-webkit-animation: remodal-closing-keyframes 0.3s;
animation: remodal-closing-keyframes 0.3s;
}
.remodal,
.remodal-wrapper:after {
vertical-align: middle;
}
.remodal-close {
position: absolute;
top: 0;
left: 90%;
display: block;
overflow: visible;
width: 35px;
height: 35px;
margin: 0;
padding: 0;
cursor: pointer;
-webkit-transition: color 0.2s;
transition: color 0.2s;
text-decoration: none;
color: #fff;
border: 0;
outline: 0;
background: transparent;
}
.remodal-close:hover,
.remodal-close:focus {
color: #2b2e38;
}
.remodal-close:before {
font-size: 25px;
line-height: 35px;
position: absolute;
top: 5px;
left: 5px;
display: block;
width: 35px;
content: "\00d7";
text-align: center;
}
.remodal-confirm,
.remodal-cancel {
font: inherit;
display: inline-block;
overflow: visible;
min-width: 110px;
margin: 0;
padding: 12px 0;
cursor: pointer;
-webkit-transition: background 0.2s;
transition: background 0.2s;
text-align: center;
vertical-align: middle;
text-decoration: none;
border: 0;
outline: 0;
}
.remodal-confirm {
color: #fff;
background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
background: #66bb6a;
}
.remodal-cancel {
color: #fff;
background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
background: #ef5350;
}
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
padding: 0;
border: 0;
}
@-webkit-keyframes remodal-opening-keyframes {
from {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes remodal-opening-keyframes {
from {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@-webkit-keyframes remodal-closing-keyframes {
from {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
}
}
@keyframes remodal-closing-keyframes {
from {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
}
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.mainButton{
padding: 10px 25px;
background: #e57373;
border-radius: 19px;
box-shadow: 0 0 5px rgba(206, 57, 57, 0.5);
color: #fff;
text-decoration: none;
font: bold 16px 'Roboto', sans-serif;
}
.success, .fail{
color: #fff;
}
#modal1Title{
font-size: 18px;
font-weight: bold;
color: #fff;
margin-bottom: 20px;
margin-top: 20px;
}
.putName, .putPhone{
width: 100%;
padding: 0 15px;
height: 40px;
background: #fff;
margin-bottom: 15px;
border-radius: 2px;
border:none;
outline: none;
}
.btn-remodal{
width: 242px;
height: 40px;
background: #e57373;
margin-bottom: 15px;
border-radius: 2px;
border:none;
outline: none;
color: #fff;
cursor: pointer;
}
.btn-remodal:hover{
background: #C94141;
}
#modal1Title{
font-size: 20px;
}
@media only screen and (min-width: 480px){
#modal1Title{
font-size: 18px;
}
}
@media only screen and (min-width: 440px) {
.remodal {
max-width: 420px;
}
}
@media only screen and (max-width: 439px) {
.remodal {
max-width: 100%;
}
.putName, .putPhone{
height: 50px;
font-size: 18px;
}
.putName:-moz-placeholder,.putPhone:-moz-placeholder{
font-size: 16px;
}
.putName::-webkit-input-placeholder,.putPhone::-webkit-input-placeholder{
font-size: 16px;
}
.textarea-remodal{
width: 90%;
}       
.btn-remodal{
width: 90%;
height: 82px;
font-size: 18px;
}
#modal1Title{
font-size: 18px;
}
}
.putName:-moz-placeholder,.putPhone:-moz-placeholder{
font-size: 14px;
}
.putName::-webkit-input-placeholder,.putPhone::-webkit-input-placeholder{
font-size: 14px;
}
.textarea-remodal:-moz-placeholder{
font-size: 14px;
}
.textarea-remodal::-webkit-input-placeholder{
font-size: 14px;
}
.textarea-remodal{
width: 90%;
border-radius: 5px;
}          
.lt-ie9 .remodal-overlay {
background: #2b2e38;
}
.lt-ie9 .remodal {
width: 420px;
}
@media only screen and (max-width: 360px){
.remodal-close{
left: 87%;
}
}
.btn-remodal{
background: black;
&:hover{
background: rgba(0, 0, 0, .8);
}
}
.remodal{
background: $red;
}
#modal1Title{
color: black;
}
.remodal-close{
color: black;
}
.remodal{
background: rgba(255, 255, 255, .7);
}
.btn-remodal{
background: #2346f5;
width: 60%;
margin: 0 auto;
border-radius: 20px;
box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
}
.btn-remodal:hover{
box-shadow: none;
}
.btn-remodal:hover{
background: #245581;
}
.textarea-remodal{
width: 60%;
}
#modal1Title{
color: $red;
}
.remodal-close{
color: $red;
}
.label-check{
font-size: 14px;
}
.label-check span{
border-bottom: 1px dashed #000;
}
.check-block{
display: flex;
margin-bottom: 30px;
padding-top: 20px;
}
#modal1Title{
color: #000;
}
.remodal{
background: #fff;
padding: 25px;
padding-right: 20px;
padding-left: 20px;
padding-bottom: 20px;
} .putName,.putPhone{
border-bottom: 1px solid #ccc;
padding: 0;
}
@media screen and (max-width: 768px){
.submit-remodal{
height: 40px;
}
.check-block{
margin-bottom: 40px;
}
}
.check-box{margin-right: 4px;}
.sent{ color: #fff; justify-content: center;
align-items: center;
}
.check-box{
margin-right: 7px;
margin-bottom: 7px;
align-items: center;
}
@media screen and (max-width: 480px){.label-check{font-size: 12px}}
.check-block{align-items: center;}
.check-block {
display: flex;
margin-bottom: 20px;
padding-top: 15px;
}
.menu-flex{
display:flex;
flex-direction:column;
}
@media screen and (max-width: 1200px) {
.menu-Flex{
display:flex;
flex-direction:column;}
}
.cx-unique-wrapper .promo__intro .promo-title {
font-weight: bold; font-size: 53px;
line-height: 71px;
color: #fff;
margin-bottom: 20px;
width: 55%;
}
.check-block {
align-items: center;
justify-content: center;
}.promo-banner {
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
height: 1170px;
width: 100%;
}
.cx-unique-wrapper .promo-banner__img { position: absolute;
right: 0px;
bottom: 135px;
width: 45%;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
.cx-unique-wrapper .promo-banner__img {
bottom: 102px;
right: 47px;
}
.cx-unique-wrapper .promo-banner__lines {
display: none;
}
}
.cx-unique-wrapper .promo__hidden {
display: none;
}
.title__subtitle {
text-align: center;
} @media screen and (min-width: 992px) and (max-width: 1200px) {
.cx-unique-wrapper .promo-banner__poly {
right: 14%;
bottom: 11%;
width: 9%;
}
}
.cx-unique-wrapper .promo-banner__lines {
position: absolute; right: 30%;
width: 10%;
top: 240px;
}
.promo__intro-wrapper {
width: 50%;
padding-top:70px;
}
.checkout-btn {
background: #0400FF;
border: 3px solid #0400FF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
color: #fff;
text-align: center;
padding: 15px 30px;
}
.cx-grey-bg {
}
.beige-bg {
background-color: #fff;
}
.instruction {
position: relative;
height: 1095px;
}
.attention {
position: absolute;
background: #FFFFFF;
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
border-radius: 12px;
width: 795.33px;
height: 259.84px;
left: 50%;
margin-left: -394.65px;
top: -125px;
padding: 54px 60px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.single-title {
font-weight: bold;
font-size: 40px;
line-height: 47px;
display: block;
}
.attention__title {
font-weight: bold;
font-size: 40px;
line-height: 47px;
display: block;
}
.attention__text {
font-weight: normal;
font-size: 16px;
line-height: 24px;
display: block;
margin-top: 28px;
}
.exclamation-mark {
font-size: 165px;
color: #0400FF;
padding-right: 60px;
display: block;
line-height: 100%;
}
.instruction__title {
padding-top: 203px;
margin: 0 auto;
text-align: center;
}
.single-text {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
}
.instruction__descr {
display: block;
margin: 0 auto;
text-align: center;
margin-top: 18px;
margin-bottom: 62px;
}
.slider-inner__img {
width: 100%;
}
.slider__wrapper-instr {
display: block;
margin: 0 auto;
}
@media (min-width: 1200px) {
.slider__wrapper-instr {
padding: 0 41px;
}
}
.slider {
position: relative;
}
.slider-prev__chevron {
position: absolute;
left: -5%;
top: 39%;
}
.slider-next__chevron {
position: absolute;
right: -5%;
top: 39%;
}
.commission {
min-height: 952px;
background: url(//form-auto.ru/wp-content/themes/cx/img/bg/bg.svg);
padding-top: 176px;
}
.chevron-right {
transform: rotate(180deg);
}
.commission__title {
margin-bottom: 14px;
}
.commission__text-wrapper {
padding: 50px 43px 43px 86px;
}
.commission__text {
margin-bottom: 24px;
display: block;
}
.commission__content {
padding: 50px;
}
@media(max-width: 576px) {
.commission__content {
padding: 20px;
}
}
.single-subtitle {
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 134%;
display: block;
}
.commission__subtitle {
margin-bottom: 27px;
}
.commission__btn {
display: block;
background: #0400FF;
border: 2px solid #0400FF;
box-sizing: border-box;
border-radius: 8px;
color: #fff;
padding: 14px 40px;
}
.commission__price {
font-style: normal;
font-weight: bold;
font-size: 28px;
line-height: 33px;
color: #0400FF;
margin-bottom: 22px;
display: block;
}
.commission__list-item {
margin-bottom: 20px;
display: block;
}
.commission__list {
margin-bottom: 30px;
display: block;
}
.commission__wrapper {
background: #FFFFFF;
-webkit-box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
border-radius: 8px;
z-index: 3;
}
.commission__img {
position: absolute;
top: -57px;
right: -263px;
}
.commission__inner {
position: relative;
}
.form-block {
padding-top: 185px;
padding-bottom: 230px;
height: fit-content !important;
}
.features.cx-blog + .form-block {
padding-top: 0;
}
.icons-wrapper {
position: relative;
}
.form__icon-1 {
position: absolute;
top: -95px;
left: -101px;
z-index: 0;
}
.form__icon-2 {
position: absolute;
right: -17px;
bottom: -130px;
}
@media (max-width: 1200px) {
.commission__img-none {
display: none;
}
}
@media (min-width: 713px) and (max-width: 980px) {
.attention {
width: 690.33px;
height: 278.84px;
left: 50%;
margin-left: -345.65px;
top: -136px;
padding: 54px 60px;
}
}
@media (max-width: 500px) {
.single-title {
font-size: 28px;
line-height: 33px;
}
.exclamation-mark {
font-size: 105px;
color: #0400FF;
padding-right: 31px;
}
.attention__text {
font-size: 15px;
}
.exam .promo__intro-wrapper {
width: 100%;
}
.exam .promo__intro {
padding-top: 160px !important;
}
.form__icon-1 {
display: none;
}
.form__icon-2 {
display: none;
}
}
.slider__mob-version {
display: none;
}
@media (max-width: 992px) {
.slider__mob-version {
display: block;
}
.slider__pk-version {
display: none;
}
}
.feature-inner {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 20px;
}
.feature-inner .feature__title {
margin-bottom: 25px;
display: block;
}
.feature-inner .feature__image {
margin-bottom: 25px;
}
.teachers__title {
text-align: center;
margin-bottom: 27px;
}
.teachers__subtitle {
text-align: center;
display: block;
margin-bottom: 50px;
}
.support .teachers__title { }
.teachers-wrapper {
padding: 0 214px;
} .teachers__inner {
display: block;
margin: 0 auto;
margin-bottom: 10px;
align-items: center;
text-align: center;
}
.teachers__name {
display: block;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
text-align: center;
color: #000000;
margin-bottom: 14px;
}
.teachers__descr {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
text-align: center;
color: #000000;
display: block;
}
.teachers__img {
margin-bottom: 14px;
}
.teachers {
margin-bottom: 125px;
position:relative;
}
.support {
margin-bottom: 125px;
}
.directors__title {
text-align: center;
margin-bottom: 19px;
color: #fff;
}
.directors__subtitle {
text-align: center;
display: block;
color: #fff;
}
.teachers__descr-wh {
color: #fff;
}
.teachers__name-wh {
color: #fff;
}
.directors {
margin-bottom: 160px;
}
.directors__inner {
max-width: 1598px;
min-height: 724px;
background: #0400FF;
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
border-radius: 12px;
display: block;
margin: 0 auto; 
padding: 60px;
}
.cx-unique-wrapper .directors input{
width: 346px !important;
height: 36.1px;
background: #FFFFFF;
margin-bottom: 13px !important;
margin-top: 20px;
padding: 10px;
font-size: 14px;
}
.directors__text {
margin-bottom: 32px; }
.cx-unique-wrapper .directors #form__btn-2 {
background: #FFFFFF;
border: 3px solid #FFFFFF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
width: 232px !important;
height: 52px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
display: block;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
text-align: center;
color: #0400FF;
padding: 9px 71px;
}
.students-review__title {
display: block;
margin: 0 auto;
text-align: center;
margin-bottom: 24px;
}
.students-review__subtitle {
display: block;
margin: 0 auto;
text-align: center;
}
.form__directors {
margin-bottom: 45px;
}
.students-review__img {
display: block;
margin-bottom: 58px;
margin-top: 105px;
}
.students-review__text {
display: block;
font-weight: 400px;
font-size: 16px;
line-height: 21px;
margin-bottom: 20px;
position: relative;
height: 270px;
overflow: hidden;
}
.students-review__text-italy {
display: block;
font-weight: 400px;
font-style: italic;
font-size: 16px;
line-height: 21px;
}
@media(max-width: 1200px) {
.teachers-wrapper {
padding: 0 15px;
}
.support {
margin-bottom: 50px;
}
.teachers {
margin-bottom: 50px;
}
}
@media (max-width: 600px) {
.teachers-wrapper {
padding: 0 10px;
}
.directors__inner {
padding: 60px 0;
}
.directors {
margin-bottom: 70px;
}
.support {
margin-bottom: 10px;
}
}
.cx-unique-wrapper .directors input #mail {
color: #0400FF !important;
}
.licenses__wrapper {
display: flex;
flex-direction: column;
padding: 25px;
background: #FFFFFF;
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
border-radius: 12px;
margin-bottom: 55px;
height:100%;
}
.licenses__icon {
width: 60px;
margin-bottom: 30px;
}
.licenses__title {
margin-bottom: 12px;
font-weight: bold;
font-size: 24px;
line-height: 28px;
color: #0400FF;
}
.licenses__text {
margin-bottom: 27px;
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;
color: #000000;
}
.licenses {
margin-bottom: 10px;
margin-top: -300px;
}
@media(max-width: 992px) {
.licenses {
margin-bottom: 40px;
}
}
.licenses__inner {
}
.licenses__link {
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;
text-decoration-line: underline;
color: #0400FF;
}
.edu-info__title {
text-align: center;
margin-bottom: 104px;
}
.edu-info__block {
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 24px;
color: #111111;
background: #F0F0F0;
padding: 24px;
position: relative;
}
.edu-info__text {
display: none;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
padding: 48px 10px 37px 39px;
border: 4px solid #F0F0F0;
box-sizing: border-box;
}
.edu-info__item {
margin-bottom: 30px;
}
.accordion:after {
content: '';
background-image: url(//form-auto.ru/wp-content/themes/cx/icons/down.svg);
background-size: 17px 8px;
height: 8px;
width: 17px;
display: block;
position: absolute;
right: 31px;
top: 31px;
transition: .1s;
}
.active__el:after {
content: '';
background-image: url(//form-auto.ru/wp-content/themes/cx/icons/cross.svg);
background-size: 14px 14px;
height: 14px;
width: 14px;
display: block;
position: absolute;
right: 31px;
top: 31px;
transition: .1s;
}
.accordion {
transition: .1s;
}
.active__el {
transition: .1s;
}
.edu-info__norm {
display: block;
font-size: 16px;
margin-bottom: 4px;
}
.edu-info__bold {
font-weight: 700;
}
.licenses__img {
position: absolute;
right: 92px;
top: -187px;
width: 188px;
}
.licenses__img-wrapper {
position: relative;
}
.course-card {
background: #FFFFFF;
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
border-radius: 12px;
padding: 64px 51px 76px 64px;
position: relative;
margin-top: -575px;
}
.course-card__type {
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
}
.course-card__type-c {
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
}
.course-card__sort {
font-style: normal;
font-weight: bold;
font-size: 28px;
line-height: 33px;
margin-top: 3px;
margin-bottom: 53px;
}
.course-card__title {
font-style: normal;
font-weight: bold;
font-size: 57px;
line-height: 71px;
margin-bottom: 20px;
}
.course-card__img {
margin-left: -64px;
width:100%;
}
.course-card__price {
font-style: normal;
font-weight: bold;
font-size: 28px;
line-height: 33px;
color: #0400FF;
}
.course-card__descr {
display: block;
margin-bottom: 62px;
}
.course-card .test__btn {
display: block;
}
.course-card__items {
display: flex;
justify-content: space-between;
padding-top: 11px;
}
.course-card__item {
display: flex;
flex-direction: column;
}
.course-card__item-img {
height: 48px;
align-items: center;
margin: 0 auto;
margin-bottom: 30px;
}
.course-card__item-text {
width: 115px;
text-align: center;
}
.cx-unique-wrapper .promo-banner__card {
height: 840px;
background: linear-gradient(
108.19deg
, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
width: 100%;
}
.course-card__icon-lines {
position: absolute;
right: -28%;
top: 85%;
}
.auto-card {
margin-bottom: 119px;
}
.needs__title {
text-align: center;
margin-bottom: 78px;
}
.needs {
margin-bottom: 150px;
}
.needs__wrapper {
background: #0400FF;
border-radius: 12px;
padding: 30px;
height: 170px;
}
.needs__text {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
text-align: center;
color: #FFFFFF;
display: block;
}
.needs__icon {
height: 52px;
margin: 0 auto;
display: block;
align-items: center;
margin-bottom: 25px;
display: block;
}
.pc-program__auto {
margin-bottom: 90px;
} 
.promo__intro-descr {
font-style: normal;
font-weight: normal;
font-size: 28px;
line-height: 33px;
color: #FFFFFF;
}
.promo__intro .promo__intro-title {
margin-bottom: 40px !important;
}
.licenses__text-wrapper {
display: flex;
flex-direction: column;
}
.edu-info__name {
}
@media(max-width: 992px) {
.needs {
margin-bottom: 60px;
}
.needs__wrapper {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 18px;
padding: 25px;
gap: 30px;
}
.needs__icon {
margin: 0;
}
.auto-card {
margin-bottom: 60px;
}
.cx-unique-wrapper .promo-banner__card {
height: 930px;
}
.form-block {
padding-top: 80px;
padding-bottom: 120px;
}
}
@media (max-width: 767px) {
.course-card__title {
font-style: normal;
font-weight: bold;
font-size: 28px;
line-height: 33px;
color: #111111;
}
.course-card__img {
margin-bottom: 44px;
margin-left: -23px;
}
.course-card__sort {
margin-bottom: 32px;
}
.course-card {
padding: 33px 23px 50px 23px;
margin-top: -800px;
}
.course-card__price {
text-align: center;
display: block;
}
.course-card__type-c {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
margin-bottom: 5px;
}
.course-card__type {
margin-bottom: 5px;
}
.course-card__icon-lines {
display: none;
}
.course-card__items {
display: none;
}
.course-card__items-title{
display:none;
}
.cx-unique-wrapper .promo-banner__card {
height: 910px;
}
.needs__wrapper {
height: auto;
display: flex;
margin-bottom: 18px;
padding: 36px;
}
.needs__icon {
margin: 0;
height: 60px;
align-items: start;
height: auto;
width: 60px;
}
.needs {
margin-bottom: 90px;
}
.form__icon-1 {
display: none;
}
.form__icon-2 {
display: none;
}
}
@media (max-width: 991px) {
.cx-unique-wrapper .promo__intro-wrapper-licenses {
width: 100% !important;
}
.cx-unique-wrapper .promo__intro-licenses {
padding-top: 180px !important;
width: 100% !important;
}
.licenses__img {
display: none;
}
.licenses {
margin-top: -835px;
}
}
@media (max-width: 575px) {
.licenses {
margin-top: -534px;
}
.needs__wrapper {
height: fit-content;
}
}
@media (max-width: 460px) {
.licenses {
margin-top: -515px;
}
.promo__intro-licenses h1 {
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 124%;
text-align: center;
}
.licenses__wrapper {
margin-bottom: 25px;
}
.licenses__title {
font-size: 18px;
line-height: 21px;
margin-bottom: 13px;
}
.licenses__wrapper {
flex-direction: row;
padding: 31px 38px 38px 38px;
}
.licenses__text {
font-weight: 300;
font-size: 14px;
line-height: 17px;
margin-bottom: 15px;
}
.licenses__link {
font-weight: 300;
font-size: 14px;
line-height: 17px;
}
.licenses__icon {
margin-right: 45px;
}
.edu-info__name {
font-weight: 500;
font-size: 16px;
line-height: 19px;
}
.edu-info__block {
padding: 24px 50px 24px 20px;
}
.form-block {
padding-top: 110px;
padding-bottom: 50px;
}
}
@media (max-width: 712px) {
.attention {
max-width: 680.33px;
margin-left: -340px;
}
}
.program__item_shop {
margin-bottom: 30px;
} .program__cart-shop {
width: auto !important;
}
@media(max-width: 1200px){
.program__cart-shop {
width: auto !important;
}
}
@media (max-width: 992px) {
.program__cart-shop {
width: 345px !important;
}
}
@media (max-width: 767px) {
.program__cart-shop {
width: 100% !important;
} }
.shop-grid {
margin-top: -500px;
}
.course-link {
text-decoration: none;
color: #000;
}
.course-link:hover {
text-decoration: none;
color: #000;
}
.img-responsive {
width: 100%;
height: auto;
border-radius: 10px 10px 0 0;
}
.blog-item {
margin-bottom: 30px;
}
.product-description {
padding: 25px 20px;
box-shadow: 1px 0 10px 1px #dadada;
border-radius: 0 0 10px 10px;
height: 140px;
min-height: 170px;
}
.blog-item__title {
color: #000;
font-size: 19px;
display: block;
height:50px;
}
.blog-content__wrapper {
top: -436px !important;
}
.blog-page-section {
margin-top: -330px;
}
.wp-block-image img {
max-width: 200px;
height: auto;
}
.comblock__title {
text-align:center;
font-style: normal;
font-weight: bold;
font-size: 30px;
line-height: 150%;
color: #0400FF;
margin-bottom: 10px;
}
.comblock__address {
text-align:center;
color: #0400FF;
display: flex;
gap: 15px;
margin-bottom: 15px;
font-size: 19px;
}
@media screen and (max-width: 575px) {
.comblock__address {
flex-direction:column;
gap:0;
}
}
.comblock__description {
color: #212529;
display: block;
margin-bottom: 15px;
font-size: 16px;
}
.comblock__descr {
color: #0400FF;
margin-bottom: 30px;
font-size: 19px;
}
@media screen and (max-width: 900px) {
.comblock__descr {
text-align:center;
}
}
.comblock__link {
display: inline-block;
width: 210px;
text-align: center;
padding: 9px 16px;
border-radius: 50px;
border: 3px solid #0400FF;
background: #0400ff;
color: #fff;
text-decoration: none;
margin-bottom:20px;
}
.comblock__link:hover {
border: 3px solid #0400FF;
background-color: transparent;
color: #0400FF;
}
.comblock {
margin-top: -331px;
color: #0400FF;
position: relative;
margin-bottom: 100px;
}
.comblock__wrapper {
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
background: #fff;
border-radius: 12px;
padding: 35px 40px;
}
.comblock__text {
color: #0400FF;
font-size: 28px;
display: block;
margin-bottom: 20px;
line-height: 150%;
text-align:center;
}
.comblock__img img {
width: 100%;
}
.form__comblock {
display: flex;
flex-direction: column;
}
.cx-unique-wrapper .form__comblock input {
border: 1px solid #0400ff;
padding: 8px 10px;
width: 100%;
margin-bottom: 15px;
margin-right: 10px;
border-radius: 5px;
}
.cx-unique-wrapper #form-comblock__btn {
width: 165px;
text-align: center;
padding: 9px 16px;
border-radius: 50px;
border: 3px solid #0400FF;
background: #0400ff;
color: #fff;
}
.cx-unique-wrapper #form-comblock__btn:hover {
border: 3px solid #0400FF;
background-color: transparent;
color: #0400FF;
}
.cx-unique-wrapper .promo-banner__card-fill {
height: 630px;
}
.shedule {
margin: 80px 0;
}
@media screen and (max-width: 768px) {
.shedule {
margin: 70px 0;
}
}
.shedule strong {
margin-right: 20px;
}
.timetable strong {
margin-right: 20px;
}
.timetable-inner {
padding: 35px 30px;
background: #eeeeee75;
border-radius: 12px;
}
.shedule-inner {
padding: 35px 30px;
background: #eeeeee75;
border-radius: 12px;
}
.timetable {
margin-bottom: 50px;
}
.med-commission__inner {
padding: 35px 30px;
background: #eeeeee75;
border-radius: 12px;
}
.med-commission {
margin: 50px 0;
}
.maps-title {
font-size: 25px;
margin-bottom: 10px;
display: block;
}
.maps-address {
font-size: 22px;
margin-bottom: 15px;
display: block;
}
.description {
padding:70px 0;
}
.map__prompt-inner {
display: flex;
align-items: center;
}
.map__prompt-inner div{
margin-left: 10px;
}
@media (max-width: 991px) {
.comblock {
margin-top: -430px;
}
.form__comblock {
flex-direction: column;
}
.cx-unique-wrapper .form__comblock input {
width: 100%;
margin-right: 0;
}
.comblock__text {
font-size: 26px;
}
.promo__intro-descr {
font-size: 18px;
}
}
@media (max-width: 767px) {
.comblock {
margin-top: -631px;
}
.cx-unique-wrapper .promo-banner__card-fill {
height: 725px;
}
}
@media (max-width: 420px) {
.comblock__title {
font-size: 26px;
line-height: 35px;
margin-bottom: 15px;
max-width: 300px;
}
.comblock__address {
margin-bottom: 10px;
}
.comblock__text {
margin-bottom: 15px;
line-height: 34px;
font-size: 22px;
}
.cx-unique-wrapper .form__comblock input {
padding: 6px 10px
}
.comblock {
margin: 0 10px;
margin-top: -525px;
margin-bottom: 70px;
}
.cx-unique-wrapper .promo-banner__card-fill {
height: 669px;
}
.maps-address {
font-size: 17px;
}
.maps-title {
font-size: 19px;
}
}
.cx-blog {
margin-top: -350px;
}
@media (max-width: 991px) {
.cx-blog {
margin-top: -620px;
}
}
@media (max-width: 768px) {
.cx-blog {
margin-top: -550px;
}
}
.features__item-img {
margin-bottom: 20px;
}
.promo-img__about {
margin-top: 331px;
width: 815px;
z-index: 10;
position: relative;
}
.promo-img__about-2 {
z-index: 0;
position: relative;
margin-top: -600px;
width: 155%;
}
.single-page { margin: 70px 0;
}
@media (max-width: 1700px) {
.promo-img__about-2 {
width: 100%;
margin-top: -382px;
}
.promo-img__about {
width: 100%;
margin-left: -40px;
}
.cx-unique-wrapper .exam {
flex-direction:column;
text-align: center;
height:auto;
}
}
@media (max-width: 992px) {
.promo-img__about-2 {
display: none;
}
.promo-img__about {
display: none;
}
.cx-unique-wrapper .promo__intro-top {
padding-top: 140px !important;
} }
.promo__how-to-img {
margin-top: -300px;
width: 100%;
}
@media (max-width: 1670px) {
.promo__how-to-img {
}
.commission__img {
top: 111px;
right: -143px;
width: 136%;
}
}
@media (max-width: 1500px) {
.promo__how-to-img {
margin-top: -330px;
}
.commission__img {
top: 164px;
right: -65px;
width: 100%;
}
}
@media (max-width: 1415px) {
.promo__how-to-img {
display: none;
}
.promo__intro-top {
width: 100%;
}
.promo-how__title {
width: 100% !important;
text-align: center;
}
.cx-unique-wrapper .how-to {
height: 650px !important;
}
}
@media (max-width: 767px) {
.cx-unique-wrapper .promo__intro-top {
padding-top: 110px !important;
}
.cx-unique-wrapper .promo__intro-licenses {
padding-top: 170px !important;
}
.cx-unique-wrapper .promo-how {
padding-top: 30px !important;
}
.cx-unique-wrapper .how-to {
height: 420px !important;
}
}
@media (max-width: 685px) {
.attention {
max-width: 500px;
margin-left: -250px;
padding: 20px;
}
.attention__text {
margin-top: 5px;
}
.single-title {
font-size: 30px;
line-height: 42px;
}
}
@media (max-width: 500px) {
.attention {
max-width: 460px;
margin-left: -230px;
}
}
@media (max-width: 465px) {
.attention {
max-width: 310px;
margin-left: -155px;
height: 385.84px;
margin-top: -110px;
}
.single-title {
font-size: 24px;
line-height: 30px;
margin-bottom: 45px;
}
.cx-unique-wrapper .how-to {
height: 590px !important;
}
}
.promo-bg {
background: linear-gradient(
108.19deg
, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
height: 600px;
width: 100%;
}
.promo__bg-title {
padding-top: 265px;
}
.promo__bg-title h1{
font-weight: bold;
font-size: 50px;
line-height: 64px;
color: #fff;
margin-bottom: 80px;
}
.comblock-edu {
margin-top: -225px;
}
.promo-bg-single {
background: linear-gradient(
108.19deg
, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
height: 470px;
width: 100%;
}
@media(max-width: 1200px) {
.promo-bg {
height: 484px;
}
}
@media (max-width: 992px) {
.promo-bg-single {
height: 290px;
}
.promo__bg-title h1 {
font-size: 35px;
line-height: 45px;
}
.promo__bg-title {
padding-top: 150px;
}
.promo-bg {
height: 600px;
}
}
@media (max-width: 450px) {
.promo-bg-single {
min-height: 230px;
padding-bottom: 20px;
}
.promo__bg-title h1 {
font-size: 23px;
line-height: 35px;
}
.promo__bg-title {
padding-top: 130px;
}
.promo-bg {
height: 635px;
}
}
.download-wrapper {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.download-wrapper-main {
margin-bottom: 30px;
}
.download-img {
width: 145px;
margin-right: 20px;
}
.download-title {
display: block;
margin: 0 auto;
text-align: center;
margin-bottom: 40px;
}
.download-title__small {
display: block; margin-bottom: 20px;
}
.download-logo {
width: 137px;
margin-right: 30px;
}
.online-edu {
padding: 20px 25px;
margin-bottom: 25px;
display: block;
background: #eeeeeea6;
border-radius: 12px;
}
.program__btn a {
color: #000;
}
.program__btn:hover a {
color: #fff;
text-decoration: none;
}
.needs-edu {
padding: 70px 0;
background: #f8f7f6;
}
@media (max-width: 767px) {
.commission__text-wrapper {
padding: 35px 30px 35px 30px;
}
.commission__price {
font-size: 20px;
}
}
@media (max-width: 767px) {
.commission__text-wrapper {
padding: 35px 26px 35px 26px;
}
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
margin-bottom: 20px;
font-weight: 500;
line-height: 1.2;
}
.promo-banner__mini {
height: 800px;
background: linear-gradient( 108.19deg, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
width: 100%;
}
.cx-unique-wrapper .promo-mini__title {
padding-top: 265px !important;
}
.test__btn a {
color: #fff;
}
.test__btn:hover a {
text-decoration: none;
color: #0400FF;
}
@media(max-width: 1200px) {
.cx-unique-wrapper .promo-mini__title {
padding-top: 212px !important;
}
.course-card__icon-lines {
display: none;
}
}
@media(max-width: 992px) {
.cx-unique-wrapper .promo-mini__title {
padding-top: 150px !important;
}
}
@media (max-width: 490px) {
.cx-unique-wrapper .promo-mini__title {
padding-top: 150px !important;
}
.promo-banner__mini {
height: 870px !important;
}
}
.gradient-bg-section {
height: 390px;
background: linear-gradient( 
108.19deg
, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
width: 100%;
padding: 268px 0 100px 0;
}
.main-title__white {
font-weight: bold;
font-size: 60px;
line-height: 71px;
color: #fff;
}
@media (max-width: 991px) {
.gradient-bg-section {
height: 220px;
padding: 120px 0 110px 0;
}
}
@media (max-width: 767px) {
.gradient-bg-section {
min-height: 210px;
padding: 105px 0 115px 0;
}
.main-title__white {
font-size: 39px;
line-height: 52px;
}
}
@media (max-width: 575px) {
.gradient-bg-section {
min-height: 200px;
padding: 120px 0 75px 0;
}
.main-title__white {
font-size: 33px;
line-height: 44px;
margin-left: 6%;
}
}
@media (max-width: 400px) {
.main-title__white {
font-size: 28px;
line-height: 44px;
margin-left: 0;
}
}
.woocommerce form .form-row {
display: flex;
flex-direction: column;
}
.woocommerce form .form-row input.input-text {
border-radius: 3px;
display: block;
padding: 7px 10px 7px 10px;
border: 1px solid #e5e5e5
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
background-color: #0400ff;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
background-color: #0400ff;
}
a:hover .reviews__btn {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
width: 120px;
}
.woocommerce-message {
border-top-color: #2346f5;
}
@media (max-width:992px) {
.cx-unique-wrapper .directors input {
width: 100% !important;
}
}
.cx-unique-wrapper .promo__2-lines {
height: 970px;
}
@media (max-width: 576px) {
.cx-unique-wrapper .promo__2-lines {
height: 775px !important;
}
}
button:focus {
outline: none;
}
.cx-unique-wrapper .block-pay__input {
border: 1px solid #ada8a8;
padding: 12px 5px;
margin-right: 20px;
width: 35%;
}
.block-pay__wrapper {
display: flex;
}
.cx-unique-wrapper .block-pay__button {
margin-top: 25px !important;
}
@media(max-width: 1200px) {
.cx-unique-wrapper .promo__2-lines {
height: 845px;
}
}
@media (max-width: 768px) {
.block-pay__wrapper {
flex-direction: column;
}
.cx-unique-wrapper .block-pay__input {
width: 90%;
margin-bottom: 10px;
}
.cx-unique-wrapper .block-pay__button {
margin-left: 0px !important;
}
}
.footer-copyright {
background: #143fd0;
font-size: 13px;
padding: 20px 0;
color: #fff;
}
.logo__subtext a {
color: #fff;
}
.mobile-only {
display: none;
}
.copyright-text {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}
.cookie-agreement {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
padding: 24px 0;
}
@media (max-width: 570px) {
.mobile-only {
display: block;
}
}
@media (max-width: 330px) {
.menu__item {
padding: 5px 0 !important;
margin: 5px 0;
}
.menu__link {
font-size: 17px !important;
}
}
.students-review__text:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 40px;
background: linear-gradient(
180deg
, transparent, #fff 50%);
}
.comblock-certificate {
margin-bottom: 50px;
margin-top: auto;
padding-top: 300px;
}
.comblock-certificate__whatsapp {
display: inline-block;
margin-right: 30px;
color: #011e81;
padding: 9px 23px;
border: 1px solid #011e81;
border-radius: 36px;
}
.comblock-certificate__whatsapp:hover {
background-color: #0400FF;
color: #fff;
}
.comblock-certificate__whatsapp span {
display: inline-block;
margin-right: 10px;
}
.comblock__whatsapp {
display: inline-block;
margin-right: 30px;
color: #299d89;
}
.comblock__phone {
color: #011e81;
font-size: 20px;
}
.comblock__phone:hover {
color: #0400FF;
}
.comblock__whatsapp-img {
width: 20px;
height: auto;
}
.comblock-btns__wrapper {
height: 55px;
display: flex;
align-items:center;
justify-content: center;
width: 100%;
}
.promo-bg--certificate {
height: auto;
margin-bottom: 100px;
}
.form-certificate {
padding-bottom: 65px;
}
.form-certificate__form {
padding: 30px;
background-color: #fff;
border-radius: 12px;
margin-top:40px;
}
.form-certificate__title {
margin-bottom: 20px;
font-weight: bold;
font-size: 30px;
text-align: center;
color: #0400FF;
}
.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.form-certificate__item{
border: 1px solid #0400FF;	
}
.form-certificate__item {
display: block;
margin-bottom: 10px;
padding: 8px 10px;
border: 1px solid #0400ff;
width: 500px;
color: #0400FF;
border-radius: 5px;
}
.form-certificate__item:focus-visible {
outline: none;
}
.form-certificate__inner {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.form-certificate__button {
display: block;
margin: 0 auto;
width: 165px;
text-align: center;
padding: 9px 16px;
border-radius: 50px;
border: 1px solid;
background: #0400ff;
color: #fff ;
border: 3px solid #0400FF;
}
.form-certificate__button:hover {
border: 3px solid #0400FF;
background-color: transparent;
color: #0400FF;
}
@media (max-width: 1200px) {
.comblock__phone {
font-size: 18px;
text-align:center;
}
.form-certificate__item {
width: 415px;
}
}
@media (max-width: 991px) {
.comblock__phone {
font-size: 18px;
}
.form-certificate__item {
width: 300px;
}
.comblock-certificate {
padding-top: 170px;
}
.comblock-btns__wrapper {
flex-direction: column;
}
.comblock__wrapper {
padding: 35px 40px 65px 40px;
}
}
@media (max-width: 768px) {
.comblock__contact {
display: flex;
flex-direction: column;
}
.comblock-certificate__whatsapp {
width: 45%;
margin-bottom: 20px;
}
.form-certificate__inner {
flex-direction: column;
}
.form-certificate__item {
width: 100%;
}
.comblock-certificate {
padding-top: 150px;
}
}
@media (max-width: 600px) {
.comblock-btns__wrapper {
height: auto;
flex-direction: column;
width: 100%;
}
.comblock__wrapper {
padding: 25px;
}
.form-certificate__form {
padding: 25px;
}
.form-certificate__title {
text-align:center;
font-size: 26px;
text-align: start;
}
.comblock-certificate__whatsapp {
width: 100%;
text-align: center;
}
}
.modal__whatsapp {
color: #2346f5;
margin-top: 15px;
display: block;
}
.lead__wrapper {
display: flex;
align-items: center;
font-size: 19px;
margin-bottom: 10px;
color: #0608f9;
margin: 0 auto;
justify-content: center;
padding: 20px;
background: linear-gradient( 
108.19deg , #0400ff2e 16.5%, #40ff4052 107.89%);
}
.lead__wrapper span {
margin-right: 20px;
font-size: 28px;
}
.lead__wrapper .modal__whatsapp {
margin-top: 0px;
padding: 6px 12px;
border-radius: 36px;
border: 1px solid;
color: #0608f9;
transition: .4s;
}
.lead__wrapper .modal__whatsapp:hover {
color: #31c16e;
transition: .4s;
}
@media (max-width: 600px) {
.lead__wrapper {
flex-direction: column;
align-items: flex-start;
font-size: 16px;
}
.lead__wrapper span {
margin-right: 0;
font-size: 22px;
margin-bottom: 10px;
}
.lead__wrapper .modal__whatsapp {
}
h2 {
font-size: 27px;
}
}
@media (min-width: 998px) {
.menu__dropdown {
visibility: hidden;
position: absolute;
top: 60px;
left: 0px;
width: 300px;
background: #fff;
padding: 0;
border: 1px solid #ccc;
border-radius: 5px;
display: block;
transition: .5s;
}
.menu__dropdown li {
list-style-type: none;
padding: 2px 10px;
border-bottom: 1px solid #eee;
}
.menu__dropdown li a {
color: #110dff;
font-size: 14px;
display: block;
margin-bottom: 4px;
}
.menu__link-dropdown {
position: relative;
cursor: pointer;
}
.menu__link-dropdown:hover .menu__dropdown {
visibility: visible;
transition: .5s;
}
.menu__dropdown li:hover {
background: aliceblue;
}
.menu__link-dropdown .menu__link img {
display: none;
}
.header .menu { 
align-items: baseline;
}
}
@media (max-width: 998px) {
.menu__dropdown {
display: none;
margin-top: 10px;
}
.menu__dropdown li {
list-style-type: none;
margin-bottom: 10px;
}
.menu__link-dropdown .menu__link img { margin-left: 20px;
}
.menu__dropdown-active {
display: block;
padding: 0;
}
.menu__dropdown li a {
color: #fff;
}
.menu__link-icon-down {
transform: rotate(90deg);
}
.menu__link-dropdown .menu__link {
pointer-events: none;
}
}
.slider-container__program {
position:relative;
}
.slider-container__program .tns-controls {
bottom: -50px;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
}
.slider-container__program .tns-controls button[data-controls="prev"] {
background:url(https://form-auto.ru/wp-content/themes/cx/img/graphic/left.png) no-repeat;
background-position: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid blue;
color: white;
padding: 0px;
text-align: center;
margin-right:10px;
font-size:0;
}
.slider-container__program .tns-controls button[data-controls="next"] {
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid blue;
color: white;
padding: 0px;
text-align: center;
background: url(https://form-auto.ru/wp-content/themes/cx/img/graphic/right.png) no-repeat;
background-position: center;
font-size:0;
}
.custom-price-product .woocommerce-product-gallery, .custom-price-product  .product_meta{
display:none;
}
.custom-price-product .single_add_to_cart_button {
margin-top: 20px;
padding: 15px 35px;
border-radius: 30px;
background: transparent;
border-color: #1137d6;
font-size: 16px;
color: #000;
}
.custom-price-product .alg_open_price  {
width: 102px;
text-align: center;
padding: 6px 3px;
margin-left: 15px;
}
.error-section {
height: 650px;
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
}
.error-section__inner {
padding-top: 310px;
display: flex;
flex-direction: column;
align-items: center;
color: #fff;
}
.error-section__title {
color: #fff;
font-size: 46px;
font-weight: 700;
}
.error-section__subtitle {
margin-bottom: 20px;
font-size: 20px;
text-align: center;
}
.error-section__button {
border: 3px solid #FFFFFF;
color: #fff;
background-color: rgba(255, 255, 255, 0);
padding: 14px 16px;
border-radius: 50px;
width: 240px;
text-align: center;
font-size: 16px;
}
.error-section__button:hover {
text-decoration: none;
color: #0400FF;
background-color: #fff;
}
@media(max-width: 992px) {
.error-section {
height: 500px;
}
.error-section__inner {
padding-top: 180px
}
.error-section__title {
font-size: 40px; 
}
}
@media(max-width: 576px) {
.error-section__inner {
padding-top: 115px
}
.error-section__title {
font-size: 35px;
}
.error-section__subtitle {
font-size: 16px;
}
}
.course-card__items-title{
padding-top: 70px;
font-weight: bold;
font-size: 21px;
line-height: 47px;
}
.cx-unique-wrapper .banner-sale__wrapper {
height: 900px;
}
.cx-unique-wrapper .banner-sale {
max-width: 100%;
padding-top: 300px;
}
.cx-unique-wrapper .banner-sale h1 {
font-size: 40px;
line-height: 150%;
}
.cx-unique-wrapper .banner-sale__img {
position: static;
width: 100%;
}
.cx-unique-wrapper .banner-sale__btn-wrapper {
display: flex;
align-items: center;
gap: 20px;
}
.banner-sale__phone {
font-size: 25px;
color: #fff;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
.cx-unique-wrapper .banner-sale h1 {
width: 100%;
}
.cx-unique-wrapper .banner-sale {
padding-top: 150px;
}
.cx-unique-wrapper .banner-sale__wrapper {
height: 700px;
}
.banner-sale__button {
width: 200px;
}
.banner-sale__phone {
font-size: 20px;
}
.cx-unique-wrapper .reviews__logo {
padding-top: 50px;
}
}
@media (max-width: 992px) {
.cx-unique-wrapper .banner-sale {
padding-top: 170px;
width: auto;
}
.cx-unique-wrapper .banner-sale__wrapper {
height: 610px;
}
.cx-unique-wrapper .banner-sale h1 {
font-size: 28px;
text-align: start;
}
.banner-sale__button {
width: 180px;
padding: 10px 16px;
font-size: 14px;
}
.banner-sale__phone {
font-size: 20px;
}
.cx-unique-wrapper .reviews__btn {
margin-top: 50px;
}
.cx-unique-wrapper .form__checkbox {
justify-content: flex-start;
}
.cx-unique-wrapper .form__subheader {
margin-top: 90px;
}
}
@media (max-width: 576px)  {
.cx-unique-wrapper .banner-sale {
padding-top: 115px;
}
.cx-unique-wrapper .banner-sale__wrapper {
height: 630px;
}
.cx-unique-wrapper .banner-sale__btn-wrapper {
flex-direction: row;
align-items: center;
}
.cx-unique-wrapper .banner-sale h1 {
font-size: 25px;
width: 100%;
}
.cx-unique-wrapper .promo-banner .banner-sale__button {
width: 175px;
}
.banner-sale__phone {
font-size: 18px;
}
.cx-unique-wrapper .reviews__btn {
margin-top: 15px;
}
}
@media (max-width: 380px)  {
.cx-unique-wrapper .banner-sale__btn-wrapper {
flex-direction: column;
align-items: flex-start;
}
.cx-unique-wrapper .banner-sale__img {
position: absolute;
width: 76%;
top: -164px;
right: -84px;
}
.cx-unique-wrapper .banner-sale__wrapper {
height: 545px;
}
}
.cx-unique-wrapper .features__inner .item-1 {
min-height: 180px;
color: #212529;
}
.cx-unique-wrapper .features__inner .item-1:hover .item-1__title {
text-decoration: underline;
}
.course__inner {
right: 0;
left: 0;
top: 0px;
max-width: 1600px;
margin: 0 auto;
padding: 66px 0px;
position: relative;
-webkit-box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
background: #fff;
border-radius: 12px;
}
.course__lines-left-1 {
position: absolute;
bottom: 30px;
left: 40px;
}
.course__lines-right-1 {
position: absolute;
top: -110px;
right: 50px;
}
.course__item {
display: flex;
-webkit-box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
padding: 20px 25px;
margin-bottom: 37px;
min-height: 180px;
gap: 23px;
color: #212529;
height: 100%;
}
.course__item:hover {
color: #212529;
}
.course__title  {
font-weight: bold;
font-size: 18px;
}
.course__item:hover .course__title {
text-decoration: underline; 
}
@media (min-width: 1200px) and (max-width: 1400px) {
.course__lines-right-1 {
top: -72px;
right: 50px;
width: 10%;
}
.course__lines-left-1 {
bottom: -42px;
left: 39px;
width: 9%;
}
}
@media (max-width: 1200px) {
.course__lines-right-1 {
top: -26px;
right: 50px;
width: 10%;
}
.course__lines-left-1 {
bottom: -22px;
left: 39px;
width: 10%;
}
.course-title  {
font-size: 34px;
}
}
@media (max-width: 576px) {
.course__lines-right-1, .course__lines-left-1 {
display: none;
}
.course-title  {
font-size: 23px;
margin-bottom: 30px;
}
.course__inner {
padding: 0;
box-shadow: none;
}
.course__item {
flex-direction: column;
align-items: center;
}
.course__wrapper {
text-align: center;
}
}
.cx-unique-wrapper .slider-inner__program  {
overflow: hidden;
}
.pc-program {
padding:30px 0 0 0;
}
@media screen and (max-width: 575px) {
.pc-program {
padding:30px 0 70px 0;
}
}
.features-sale {
margin-bottom: 60px;
}
.features-sale__content {
margin-bottom: 50px;
}
.features-sale__item {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 30px;
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
font-size: 20px;
min-height: 180px;
}
.features-sale__btn {
width: 211.18px;
height: 55px;
background: #0400FF;
border: 3px solid #0400FF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
color: #fff;
}
.features-sale__btn:hover {
background: #fff;
color: #0400FF;
}
.features-sale__btn--color {
background: #fff;
color: #0400FF;
}
.features-sale__btn--color:hover {
box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 40%);
}
.features-sale__btn-wrapper {
display: flex;
justify-content: center;
gap: 20px;
}
.banner-sale__phone:hover {
color: #fff;
}
@media(max-width: 1025px) {
.features-sale__item {
font-size: 18px;
}
}
@media(max-width: 992px) {
.features-sale__item {
font-size: 15px;
min-height: 196px;
padding: 20px;
}
}
@media(max-width: 992px) {
.features-sale__item {
min-height: fit-content;
}
.features-sale__btn {
height: fit-content;
}
}
.promo__btn {
margin-right: 10px;
}
@media(max-width: 1900px) {
.promo__btn {
width: 205px;
}
}
@media (min-width: 1400px) and (max-width: 1499px) {
.cx-unique-wrapper .promo-banner__img {
right: 45px;
width: 41%;
}
}
@media (min-width: 1300px) and (max-width: 1400px) {
.cx-unique-wrapper .promo-banner__img {
right: 69px;
bottom: 90px;
width: 37%;
}
}
@media (min-width: 1200px) and (max-width: 1300px) {
.cx-unique-wrapper .promo-banner__img {
bottom: 16%;
right: 60px;
width: 35%;
}
}
@media(max-width: 992px) {
.promo__btn {
width: 245px;
}
}
@media(max-width: 576px) {
.promo__btn {
margin-right: 0px;
margin-bottom: 10px;
}
}
.licenses-main  {
padding-top: 70px;
padding-bottom: 70px;
position: relative;
}
.licenses-item {
display: flex;
align-items: center;
flex-direction: column;
gap: 25px;
box-shadow: 0px 7px 24px rgb(0 0 0 / 20%);
padding: 30px;
min-height: 435px;
margin-bottom: 30px;
margin-top: 30px;
margin-left: 10px;
margin-right: 10px;
}
.licenses-item__img img {
height: 100px;
} 
.licenses-item__title {
font-weight: bold;
font-size: 26px;
line-height: 150%;
color: #0400FF;
text-align: center;
min-height: 117px;
}
.licenses-item__link {
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 24px;
text-decoration-line: underline;
color: #0400FF;
}
.licenses-item__btn {
padding: 7px 30px;
background: #0400FF;
border: 3px solid #0400FF;
color: #fff;
border-radius: 48px;
}
.licenses-item__btn:hover {
background: #fff;
color: #0400FF;
border: 3px solid #0400FF;
}
.licenses-item__link-wrapper {
display: flex;
gap: 15px;
margin-bottom: 15px;
}
.rating {
padding: 70px 0;
background: linear-gradient(117.52deg, #0400FF 21.05%, #40FF40 111.74%);
}
.rating__title {
color: #fff;
}
.rating-carousel {
position: relative;
}
.rating-item__inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
padding: 20px;
background: #fff;
border-radius: 12px;
}
.rating-item__title {
color: #111111;
font-weight: 800;
font-size: 18px;
text-align: center;
min-height: 54px;
}
.rating__prev {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
bottom: 50%;
left: -10%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
.rating__next {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
bottom: 50%;
right: -10%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
.program__overlay {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 25px;
top: 0;
bottom: 0;
left: 0;
right: 0; */
height: 100%;
opacity: 0; 
width: 100%;
transition: .4s ease; 
background: #0400FF; padding: 20px;
z-index: 11;
font-size: 16px;
border-radius: 12px;
}
.program__link {
color: #fff;
border: 3px solid #fff;
width: fit-content;
padding: 9px 35px;
border-radius: 48px;
}
.program__link:hover {
background-color: #fff;
color: #0400FF
}
.social-buttons--mob {
justify-content: flex-start;
margin: 16px 0;
}
@media(max-width: 1200px) {
.rating__prev {
display: none;
}
.rating__next {
display: none;
}
}
@media (max-width: 1024px) {
.program__overlay {
display: none;
opacity: 1;
gap: 15px;
}
.active-flex  {
display: flex;
}
.cx-unique-wrapper .program__text {
font-size: 14px;
}
}
.cx-unique-wrapper .program__type-mob {
position: static;
}
.program__link-mob {
color: #212529;
}
.social-btn img {
height: 48px;
width: 48px;
}
@media (min-width: 1024px) {
.program__cart:hover .program__overlay {
opacity: 1;
cursor: pointer;
border-radius: 12px 12px 0 0;
}
}
@media(max-width: 1200px) {
.licenses-item {
padding: 25px;
}
.licenses-item__btn {
font-size: 15px;
padding: 7px 20px;
}
}
@media (max-width: 1024px) {
.rating__prev {
display: none;
}
.rating__next {
display: none;
}
}
@media(max-width: 992px) {
.rating {
padding: 40px 0;
}
.cx-unique-wrapper  .program__cart-mob {
width: 100% important;
}
.cx-unique-wrapper .program__block-main {
max-height: 100%;
height: auto;
}
.cx-unique-wrapper  .program__descr-main {
padding-bottom: 17px;
}
.cx-unique-wrapper .program__btn-main {
display: block;
margin-top: 0;
padding: 0;
font-weight: 700;
text-decoration: underline;
}
.cx-unique-wrapper .program__btn-main:hover {
background: transparent;
color: #000;
}
.cx-unique-wrapper .program__img-main {
display: none;
width: 28%;
top: 16px;
right: 24px;
}
.cx-unique-wrapper .program__text-main {
display: block;
}
.cx-unique-wrapper .program__descr-main {
flex-direction: column;
height: auto;
}
}
@media(max-width: 768px) {
.cx-unique-wrapper .program__img-main {
display: none;
}
.rating__prev {
display: none;
}
.rating__next {
display: none;
}
.licenses-item__title {
font-size: 20px;
}
.licenses-item__btn {
padding: 12px 6px;
}
}
@media(max-width: 576px) {
.licenses-item__btn {
padding: 5px 8px;
}
.licenses-item {
padding: 20px;
}
.cx-unique-wrapper .program__block-main {
padding-bottom: 0;
}
.cx-unique-wrapper .program__img-main {
display: block;
width: 35%;
top: 16px;
right: 10px;
}
.callback-button {
padding: 8px 16px;
}
.licenses-item__title {
min-height: auto;
} .social-btn img {
height: 30px;
width: 30px;
}
.licenses-item {
margin-left: 15px;
margin-right: 15px;
}
}
@media(max-width: 400px) {
.cx-unique-wrapper .promo-banner__mobile {
top: 170px;
} } .cx-unique-wrapper .form__contacts .check-block input {
width: auto;
margin-bottom: 0;
}
.cx-unique-wrapper .form__contacts .check-block label {
color: #fff;
}
.cx-unique-wrapper .form__contacts .check-block label a {
color: #fff;
border-bottom: 1px dashed #fff;
}
.cx-unique-wrapper .form__contacts .check-block .label-check {
font-size: 12px;
margin-bottom: 0;
}
.cx-unique-wrapper .form__comblock .check-block input {
width: auto;
}
.cx-unique-wrapper  .form__directors .check-block input {
width: auto !important;
}
.cx-unique-wrapper .form__directors .check-block label {
color: #fff;
}
.cx-unique-wrapper .form__directors .check-block label a {
color: #fff;
border-bottom: 1px dashed #fff;
}
.program__text ul {
padding-left:15px;
}
.text-section {
margin-top:200px;
padding:70px 0px;
}
@media screen and (max-width: 768px) {
.text-section {
margin-top:150px;
}
}
.text-section .alarm {
padding: 38px;
background: #FFFFFF;
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
border-radius: 12px;
}
.text-section .alarm a {
display: block;
width: fit-content;
text-align: center;
padding: 14px 16px;
border-radius: 50px;
font-size: 16px;
line-height: 19px;
cursor: pointer;
border: 3px solid #30b876;
color: #fff;
background-color: #30b876;
}
.main-text {
font-size:24px;
font-weight:600;
line-height:150%;
}
.main-page__banner {
display:flex;
align-items: center;
} .footer-cookie {	
position: fixed;
width: 100%;
bottom: 0;
left: 0;
z-index: 9999999999;
background-color: #0400FF;
padding: 10px 15px;
margin: 0 auto;
justify-content: center;
align-items: center;
line-height: 30px;
}
.footer-cookie__line {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
color: #ffffff;
}
.footer-cookie__img {
flex: 0 0 40px;
width: 40px;
height: 40px;
}
.footer-cookie__img img {
width: 100%;
height: auto;
}
.footer-cookie__text {
text-align: center;
}
@media (max-width: 992px) {
.footer-cookie__link {
font-size: 15px;
}
}
.footer-cookie__link {
font-weight: 500;
color: #ffffff !important;
transition: color .3s ease 0s;
text-decoration: underline;
}
.footer-cookie__link:hover {
color: #000!important;
font-weight: bold;
}
.footer-cookie__close {
border-radius: 5px;
border: none;
color: #ffffff;
background-color:#30b876;
padding: 5px 10px;
cursor: pointer;
}
.footer-cookie__close:active, 
.footer-cookie__close:focus {
border: none;
box-shadow: none;
}
@media (max-width: 576px) {
.footer-cookie__line {
flex-wrap: wrap;
}
.footer-cookie__line {
gap: 10px;
}
.footer-cookie__text {
font-size: 14px;
}
.footer-cookie__link {
font-size: 14px;
}
}
@media (max-width: 985px) {
.footer__bottom-box div {
flex-direction: column;
gap: 20px;
}
}
.snils-photo{
height:auto;
}
.snils-wrapper{
margin-top: 30px;
}
@media screen and (max-width: 990px) {
.snils-wrapper{
margin-top: 0;
}
}
.promo-img_new{
display: flex;
justify-content:center;
}
.promo-img_new img {
width: 500px;
}
@media screen and (max-width: 1300px) {
.promo-img_new img {
width: 200px;
}
}
.cx-unique-wrapper .promo__intro .promo-title {
font-weight: bold; font-size: 53px;
line-height: 71px;
color: #fff;
margin-bottom: 20px;
width: 55%;
}
.contact-flex{
display: flex;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.contact-flex{
flex-direction: column;
}
}
form .contact-flex,
.wpcf7-form .contact-flex {
display: flex;
justify-content: space-between;
}
.check-block {
align-items: center;
justify-content: center;
}
.edu-flex{
display: flex;
flex-direction: column;
align-items: center;
}
}
@media screen and (max-width: 575px) {
.wp-block-image.size-full{
display: flex;
justify-content:center;}
}
@media screen and (max-width: 575px) {
.cx-unique-wrapper .exam {
flex-direction:column;
text-align: center;
height:700px;
}
}
.form-certificate__title p{
text-align:center;
}

@font-face {
font-family: 'Rubik';
src: local("Rubik Bold"), local("Rubik-Bold"), url(//form-auto.ru/wp-content/themes/cx/fonts/Rubik-Bold.woff2) format("woff2"), url(//form-auto.ru/wp-content/themes/cx/fonts/Rubik-Bold.woff) format("woff");
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Rubik';
src: local("Rubik Regular"), local("Rubik-Regular"), url(//form-auto.ru/wp-content/themes/cx/fonts/Rubik-Regular.woff2) format("woff2"), url(//form-auto.ru/wp-content/themes/cx/fonts/Rubik-Regular.woff) format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: local("Roboto"), local("Roboto-Regular"), url(//form-auto.ru/wp-content/themes/cx/css/Roboto-Regular.woff2) format("woff2"), url(//form-auto.ru/wp-content/themes/cx/css/Roboto-Regular.woff) format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: local("Roboto Light"), local("Roboto-Light"), url(//form-auto.ru/wp-content/themes/cx/css/Roboto-Light.woff2) format("woff2"), url(//form-auto.ru/wp-content/themes/cx/css/Roboto-Light.woff) format("woff");
font-weight: 300;
font-style: normal;
font-display: swap;
}
.fw-700 {
font-weight: 700!important;
}
.h-100 {
height: 100%!important;
}
.akcia-short {
font-weight: normal;
font-size: 16px;
line-height: 134%;
text-align: justify;
color: #000000;
}
.akcia-subtitle {
font-weight: 700;
font-size: 45px;
color: #fff;
}
.cursor {
cursor: inherit;
}
.row-gap-30 {
row-gap: 30px;
} .popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.58);
z-index: 9999;
display: none;
}
.popup-body {
box-shadow: none;
top: calc(40% - 215px);
width: 575px;
margin: auto;
position: relative;
background: #f7f7f7;
border-radius: 15px;
}
.popup-wrapper center {
background: #f7f7f7;
}
.popup-image img{
width: 130%;
position: relative;
left: -29px;
}
.popup-title {
font-weight: bold;
font-size: 20px;
line-height: 40px;
margin-bottom: 15px;
}
.popup-title span{
font-weight: bold;
font-size: 23px;
line-height: 43px;
color: #0400FF;
}
.popup-wrapper {
padding: 30px;
}
.popup-wrapper .popup-btn {
margin: 0 auto;
display: block;
}
.popup-wrapper .remodal-close {
left: 91%;
top: 1%;
}
@media screen and (max-width:768px) {
.popup-body {
width: 95%;
}
.popup-body {
box-shadow: none;
top: calc(50% - 237.5px);
}
} .header {
width: 100%;
}
.header__bottom {
position: -webkit-sticky;
position: sticky;
}
.header__top {
padding: 30px 0px 30px 0px;
height: 140px;
background: rgba(255, 255, 255, 0);
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
}
.header .logo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.header .logo .logo__image {
height: 45px;
}
.header .logo__subtext {
text-transform: uppercase;
color: #fff;
font-weight: 300;
font-size: 14px;
}
.header .contacts {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal; -webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
.header .contacts__phone {
color: #fff;
font-weight: bold;
font-size: 25px;
}
.header .contacts__email {
color: #fff;
font-weight: normal;
font-size: 12px;
}
.header .contacts__worktime {
color: #fff;
margin-bottom: 0;
font-size: 12px;
}
.header .buttons-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.header .buttons-wrapper .callback-button {
margin-bottom: 19px;
}
.header .social-buttons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute; }
.header .social-buttons .social-btn {
margin-right: 20px;
}
.header .menu {
background: #fff;
border-bottom: 1px solid #ccc;
color: #0400FF;
height: 58px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
color: #0400FF;
list-style: none;
padding: 0 20%;
margin: 0 auto;
}
.header .menu__item {
padding: 17px 0px;
}
.header .menu__link {
font-weight: bold;
font-size: 14px;
color: #0400FF;
}
.header .menu_active {
background-color: #101e96f0;
color: #fff;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.header .nav-link {
color: #0400FF;
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 17px;
}
.header .navbar-expand-lg .navbar-nav .nav-link {
padding-left: 0;
padding-right: 60px;
}
.hamburger {
display: none;
}
.pk-hidden {
display: none;
}
.cx-unique-wrapper .promo {
background: url(//form-auto.ru/wp-content/themes/cx/img/images/main-banner-grad.jpg) no-repeat;
background-size: cover;
position: relative;
height: 1100px;
width: 100%;
}
.cx-unique-wrapper .promo__hidden {
display: none;
}
.cx-unique-wrapper .promo__intro {
position: relative;   }
.cx-unique-wrapper .promo__intro .promo-title {
font-weight: bold;
font-size: 51px;
line-height: 71px;
color: #fff;
margin-bottom: 35px;
width: 55%;
}
.cx-unique-wrapper .promo__intro .banner-item__subtitle_mc {
font-size: 20px;
color: #fff;
margin-bottom: 30px;
}
.cx-unique-wrapper .promo__intro .banner-item__subtitle {
font-size: 22px;
color: #fff;
margin-bottom: 60px;
width: 55%;
}
.cx-unique-wrapper .promo__intro .page-title {
width: auto;
}
.cx-unique-wrapper .promo__btn-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content:flex-start;
position: relative;
z-index: 900;
}
.cx-unique-wrapper .promo-banner {
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
height: 965px;
width: 100%;
padding-top: 200px;
}
@media screen and (max-width: 1300px) {
.cx-unique-wrapper .promo__btn-wrapper {
justify-content:center;
}
}
.cx-unique-wrapper.promo-banner.exam {
display:flex;
justify-content:center;
align-items:center;
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
height: 965px;
width: 100%;
padding-top: 200px;
}
.cx-unique-wrapper .promo-banner__img {
position: absolute; width: 35%;
}
.cx-unique-wrapper .promo-banner__poly { position: absolute;
right: 18%;
top: 200px;
width: 11%;
}
.cx-unique-wrapper .promo-banner__lines {
position: absolute;
right: 441px;
width: 8%;
top: 303px;
}
.cx-unique-wrapper .promo-banner__intro {
padding-top: 396px;
max-width: 890px;
}
.cx-unique-wrapper .promo-banner__intro .promo-title {
font-weight: bold; 
font-size: 60px;
line-height: 71px;
color: #fff;
margin-bottom: 80px;
}
.cx-unique-wrapper .promo-banner__btn-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.cx-unique-wrapper .features {
padding: 70px 0;
background: #fff;
position: relative;
}
.cx-unique-wrapper .features__inner {
right: 0;
left: 0;
top: -70px;
max-width: 1600px;
margin: 0 auto;
padding: 66px 0px;
position: relative;
-webkit-box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
background: #fff;
border-radius: 12px;
}
.cx-unique-wrapper .features__inner .feature {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
background: #FFFFFF;
-webkit-box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
padding: 20px 25px;
min-height: 210px;
height: 100%;
}
.cx-unique-wrapper .features__inner .feature__image {
margin-right: 23px;
}
.cx-unique-wrapper .features__inner .feature__image svg {
width: 43px;
height: 43px;
}
.cx-unique-wrapper .features__inner .feature__title {
font-weight: bold;
font-size: 18px;
}
.cx-unique-wrapper .features__inner .feature__description {
font-weight: normal;
font-size: 16px;
line-height: 22px;
}
.cx-unique-wrapper .features__lines-left {
position: absolute;
bottom: 5px;
left: 77px;
}
.cx-unique-wrapper .features__lines-right {
position: absolute;
top: -110px;
right: 50px;
}
.cx-unique-wrapper .program {
display: none ;
}
.cx-unique-wrapper .program-car,
.program__cart {
position: relative;
background-color: #B1FFB1;
width: auto !important;
border-radius: 12px;
}
.cx-unique-wrapper .program-all,
.program__cart_car-moto {
background-color: #B1D0FF;
width: auto !important;
border-radius: 12px;
}
.cx-unique-wrapper .program-moto,
.program__cart_moto {
background-color: #FFB1B1;
width: auto !important;
border-radius: 12px;
}
@media(min-width: 768px) {
.cx-unique-wrapper .program__mobile-block {
height: 200px;
}	
}
.cx-unique-wrapper .program__swiper-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
overflow-y: hidden;
overflow-x: scroll;
}
.cx-unique-wrapper .program__swiper-container::-webkit-scrollbar {
width: 0px;
opacity: 0;
background: transparent;
}
.cx-unique-wrapper .program__block {
background-color: #A0E5B1;
height: 261px;
position: relative;
border-radius: 12px;
padding: 17px 24px;
}
.cx-unique-wrapper .program__block_car-moto {
background-color: #A0BBFF;
}
.cx-unique-wrapper .program__block_moto {
background-color: #E69FB1;
}
.cx-unique-wrapper .program__type {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
color: #111111;
}
.cx-unique-wrapper .program__category {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 28px;
line-height: 33px;
color: #111111;
}
.cx-unique-wrapper .program__cart-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.cx-unique-wrapper .program__title {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
color: #111111;
margin-top: 19px;
}
.cx-unique-wrapper .program__title-moto {
margin-top: 24px;
}
.cx-unique-wrapper .program__text {
color: #fff ! important;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 134%;
margin-top: 25px;
}
@media screen and (max-width: 1300px) {
.cx-unique-wrapper .program__text {
font-size: 14px;
}
}
@media screen and (max-width: 575px) {
.cx-unique-wrapper .program__text {
font-size: 12px;
}
}
.cx-unique-wrapper .program__price {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 28px;
line-height: 33px;
text-align: center;
color: #000000;
margin-top: 28px;
}
.cx-unique-wrapper .program__descr {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; padding: 0px 24px 24px 24px;
}
.cx-unique-wrapper .program__img {
width: 254px;
}
.cx-unique-wrapper .program__btn {
color:#000;
display: block;
width: 155px;
text-align: center;
padding: 14px 16px;
border-radius: 50px;
font-size: 16px;
line-height: 19px;
margin: 0 auto;
margin-top: 20px;
cursor: pointer;
background: none;
}
@media screen and (max-width: 575px) {
.cx-unique-wrapper .program__btn {
font-weight:700;
padding: 14px 14px;	
}}
.cx-unique-wrapper .program__btn:hover {
text-decoration: none;
color: #fff;
background-color: #000;
}
.cx-unique-wrapper .program__img {
position: absolute;
right: 0;
bottom: 0px;
}
.cx-unique-wrapper .program__mobile-btn {
display: none;
}
.cx-unique-wrapper .program__item_hide {
display: none;
}
.cx-unique-wrapper .test {
margin: 150px 0 70px 0; }
.cx-unique-wrapper .test__title {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 60px;
line-height: 71px;
color: #0400FF;
}
.cx-unique-wrapper .test__title span {
color: #111111;
}
.cx-unique-wrapper .test__img {
margin-top: -67px;
width: 100%;
}
.cx-unique-wrapper .test__btn {
display:flex;
justify-content:center;
align-items:center;
margin-top: 51px;
width: 211.18px;
height: 55px;
background: #0400FF;
border: 3px solid #0400FF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
color: #fff;
}
.cx-unique-wrapper .test__btn:hover {
border: 3px solid #0400FF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
background-color: transparent;
color: #0400FF;
}
.cx-unique-wrapper .first-class {
background: linear-gradient(117.52deg, #0400FF 21.05%, #40FF40 111.74%);
height: 450px;
position: relative;
}
.cx-unique-wrapper .first-class__wrapper {
padding-top: 15px;
}
.cx-unique-wrapper .first-class__title {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 60px;
line-height: 71px;
text-align: center;
color: #FFFFFF;
margin-top: 121px;
}
.cx-unique-wrapper .first-class__title span {
border-bottom: 3px solid white;
}
.cx-unique-wrapper .first-class__btn {
width: 243.18px;
height: 55px;
background-color: #FFFFFF;
border: 3px solid #FFFFFF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
margin: 0 auto;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: block;
margin-top: 74px;
color: #0400FF;
}
.cx-unique-wrapper .first-class__btn:hover {
background-color: #0400FF;
color: #fff;
border: 3px solid #0400FF;
}
.cx-unique-wrapper .first-class__polygon {
position: absolute;
top: -75px;
left: 200px;
}
@media screen and (max-width: 1300px) {
.cx-unique-wrapper .first-class__polygon {
position: absolute;
top: 25px;
left: 50px;
}
}
.cx-unique-wrapper .first-class__curves {
position: absolute;
left: 0;
bottom: 109px;
}
.cx-unique-wrapper .first-class__lines {
position: absolute;
right: 150px;
bottom: -10px;
}
.cx-unique-wrapper .instructors {
position: relative; }
.cx-unique-wrapper .instructors__title {
margin: 0px 150px;
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 47px;
text-align: center;
color: #000;
margin-top: 86px;
}
.cx-unique-wrapper .instructors__carousel {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin: 0 auto;
margin-top: 92px;
z-index: 0;
}
.cx-unique-wrapper .instructors__wrapper {
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
width: 315px;
height: auto;
background: #FFFFFF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 12px;
-webkit-box-shadow: 0 0 16px 0.1px #D3D3D3;
box-shadow: 0 0 16px 0.1px #D3D3D3;
margin-bottom: 20px;
}
.cx-unique-wrapper .instructors__name {
font-family: Rubik;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
text-align: center;
color: #000000;
margin-top: 28px;
}
.cx-unique-wrapper .instructors__text {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
text-align: justify;
color: #000000;
margin:27px;
}
.instructors__text ul {
padding: 0;
font-size: 16px;
}
@media (max-width: 1300px) {
.instructors__text ul {
font-size: 14px;
}
}
@media (max-width: 1200px) {
.instructors__text ul {
font-size: 13px;
}
}
@media (max-width: 575px) {
.instructors__text ul {
list-style:none;
}
}
.cx-unique-wrapper .instructors__geometric {
position: absolute;
left: 0;
top: -32px;
}
.cx-unique-wrapper .instructors__rounds {
position: absolute;
bottom: 83px;
right: 324px;
z-index: -1;
}
.cx-unique-wrapper .instructors__poly {
position: absolute;
bottom: -93px;
right: 0;
z-index: 1;
}
.cx-unique-wrapper .reviews {
padding:70px 0;
position: relative;
background: linear-gradient(117.52deg, #0400FF 21.05%, #40FF40 111.74%);
}
.cx-unique-wrapper .reviews__logo {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: block;
margin: 0 auto;
}
.cx-unique-wrapper .reviews__title {
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 47px;
text-align: center;
color: #FFFFFF;
margin-top: 9px;
}
.cx-unique-wrapper .reviews__inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
margin: 0 auto;
margin-top: 58px;
}
.cx-unique-wrapper .reviews__btn {
width: fit-content;
padding: 10px 20px;
height: 55px;
background-color: #FFFFFF;
border: 3px solid #FFFFFF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
margin: 0 auto;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: block;
margin-top: 74px;
color: #0400FF;
}
.cx-unique-wrapper .reviews__btn:hover {
background-color: #0400FF;
color: #fff;
border: 3px solid #0400FF;
}
.cx-unique-wrapper .reviews__descr {
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
color: #FFFFFF;
margin-top: 14px;
text-align: center;
margin-right: 46px;
} .cx-unique-wrapper input {
outline: none;
}
.cx-unique-wrapper input[type="email"] {
color: #0400FF;
border-right: none;
border-left: none;
border-top: none;
border-bottom: 1px solid #ccc;
margin-bottom: 20px;
}
.cx-unique-wrapper input[type="text"]::-webkit-input-placeholder, .cx-unique-wrapper input[type="email"]::-webkit-input-placeholder {
color: #0400FF;
}
.cx-unique-wrapper input[type="text"]::-moz-placeholder, .cx-unique-wrapper input[type="email"]::-moz-placeholder {
color: #0400FF;
}
.cx-unique-wrapper input[type="tel"] {
color: #0400FF;
}
.cx-unique-wrapper input[type="tel"]::-webkit-input-placeholder {
color: #0400FF;
}
.cx-unique-wrapper input[type="tel"]::-moz-placeholder {
color: #0400FF;
}
.cx-unique-wrapper .form { position: relative;
}
.cx-unique-wrapper .form__wrapper {
margin-top: 198px;
background: #FFFFFF;
-webkit-box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
box-shadow: 0px 7px 24px rgba(0, 0, 0, 0.2);
border-radius: 8px;
z-index: 3;
}
.cx-unique-wrapper .form__img {
margin-left: 102px;
margin-top: 69px;
width: 481px;
}
.cx-unique-wrapper .form__inner {
background: linear-gradient(117.52deg, #0400FF 21.05%, #40FF40 111.74%);
border-radius: 8px;
width: 100%;
height: 100%;
padding: 19px 20px 45px 20px;
}
.cx-unique-wrapper .form__title {
font-style: normal;
font-weight: bold;
font-size: 34px;
line-height: 47px;
text-align: center;
color: #FFFFFF;
}
.cx-unique-wrapper .form__subtitle {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
text-align: center;
color: #FFFFFF;
margin-top: 2px;
}
.cx-unique-wrapper .form__geometry {
position: absolute;
top: -95px;
left: 220px;
z-index: -1;
}
.cx-unique-wrapper .form__geometry-2 {
position: absolute;
right: 287px;
bottom: 53px;
}
.cx-unique-wrapper .form__contacts {
margin-top: 25px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: #0400FF;
padding: 0 37px 0 37px;
}
.cx-unique-wrapper .form__contacts input, .cx-unique-wrapper .form__contacts select {
display: flex;
justify-content:center;
align-items:center;
text-align:center;
font-style: normal;
font-weight: 300;
font-size: 12px;
line-height: 14px;
text-align: center;
color: #0400FF;
width: 340px;
height: 45px;
margin-bottom: 19px;
text-align: left;
padding-left: 12px;
}
.cx-unique-wrapper .form__consent {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
color: #FFFFFF;
padding: 0px 37px 28px 37px;
}
.cx-unique-wrapper .form__checkbox {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
color: #fff;
}
.cx-unique-wrapper .form__checkbox span {
padding-bottom: 33px;
font-size: 16px;
width: 280px;
}
.cx-unique-wrapper .form__subheader {
font-style: normal;
font-weight: bold;
font-size: 40px;
line-height: 47px;
text-align: center;
color: #000000;
margin-top: 126px;
}
.cx-unique-wrapper #form__contacts-text, .cx-unique-wrapper .form__contacts-text {
width: 340px;
height: 131px;
padding-bottom: 90px;
}
.cx-unique-wrapper #form__btn, .cx-unique-wrapper .form__btn {
background: #FFFFFF;
border: 3px solid #FFFFFF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
width: 232px;
height: 52px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
display: block;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
text-align: center;
color: #0400FF;
padding: 9px 80px;
}
.cx-unique-wrapper #form__btn:hover, .cx-unique-wrapper .form__btn:hover {
background-color: #0400FF;
color: #fff !important;
border: 3px solid #0400FF;
}
.cx-unique-wrapper #form__consent {
width: 21px;
height: 21px;
background: none;
background-color: transparent;
}
.cx-unique-wrapper #checkbox {
display: none;
}
.cx-unique-wrapper #checkbox + label {
display: block;
width: 20px;
height: 20px;
background: none;
border: 1px solid white;
text-align: center;
margin-top: 5px;
margin-right: 12px;
}
.cx-unique-wrapper #checkbox + label:before {
font-size: 20px;
}
.cx-unique-wrapper #checkbox:checked + label {
border: 1px solid #fff;
position: relative;
}
.cx-unique-wrapper #checkbox:checked + label:before {
content: '✔';
font-size: 14px;
color: #fff;
position: absolute;
right: 3px;
top: -1px;
}
.cx-unique-wrapper #name {
color: #0400FF;
}
.cx-unique-wrapper #tel {
color: #0400FF;
}
.cx-unique-wrapper .map__prompt {
background: #FFFFFF;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 0 10px;
width: 100%;
}
.cx-unique-wrapper .map__prompt-inner span {
padding-left: 13px;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
color: #000000;
}
.cx-unique-wrapper .content-container {
margin-top: 10px;
width: 100%;
height: 100px;
background: #ffffff;
text-align: center;
}
.footer { background: #0400FF;
}
.footer__wrapper {
padding-top: 79px;
}
.footer__menu {
margin-bottom: 24px;
}
.footer__menu-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
list-style-type: none;
}
.footer__menu-link {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
color: #FFFFFF;
}
.footer__menu-link:hover {
text-decoration: underline;
color: #fff;
}
.footer__address-title {
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
color: #FFFFFF;
margin-bottom: 24px;
}
.footer__address {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
color: #FFFFFF;
list-style-type: none;
padding-left: 0;
}
.footer__address li {
margin-bottom: 24px;
}
@media screen and (max-width: 575px) {
.footer__address li {
margin-bottom: 5px;
}
}
.footer__address p{
margin: 0;
}
.footer__menu-wrapper p{
margin: 0;
}
.form p{
text-align: center;
margin-top: 10px;
}
.cx-unique-wrapper .slider__prev {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 380px;
left: 15%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
.cx-unique-wrapper .slider__prev-b {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 510px;
left: 15%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid blue;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.cx-unique-wrapper .slider__prev-b {
top: 449px;
}
}
.cx-unique-wrapper .slider__next {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
top: 370px;
right: 15%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
.cx-unique-wrapper .slider__next-b {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
top: 510px;
right: 15%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid blue;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.cx-unique-wrapper .slider__next-b {
top: 449px;
}
}
.cx-unique-wrapper .slider__inner {
margin-top: 58px;
margin-left: 35px;
}
.cx-unique-wrapper .slider__inner-inst {
margin-top: 92px;
margin-left: 30px;
}
.cx-unique-wrapper .slider-inner__program {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
@media (min-width: 1800px) and (max-width: 2000px) {
.cx-unique-wrapper .program__cart {
width: 352px;
}
.cx-unique-wrapper .program__img {
width: 88%;
}
.cx-unique-wrapper .program__type {
font-size: 17px;
}
.cx-unique-wrapper .program__category {
font-size: 26px;
}
}
@media (min-width: 1700px) and (max-width: 1800px) {
.cx-unique-wrapper .promo-banner__img {
bottom: 408px;
}
.cx-unique-wrapper .promo-banner__lines {
right: 423px;
width: 8%;
top: 315px;
} .cx-unique-wrapper .program__cart {
width: 411px;
}
.cx-unique-wrapper .program__img {
width: 88%;
}
.cx-unique-wrapper .program__type {
font-size: 17px;
}
.cx-unique-wrapper .program__category {
font-size: 26px;
}
}
@media (min-width: 1600px) and (max-width: 1700px) {
.cx-unique-wrapper .program__cart {
width: 376px;
}
.cx-unique-wrapper .promo-banner__img {
bottom: 408px;
}
.cx-unique-wrapper .promo-banner__lines {
right: 423px;
width: 8%;
top: 332px;
} }
@media (min-width: 1500px) and (max-width: 1599px) {
.cx-unique-wrapper .program__cart {
width: 352px;
}
.cx-unique-wrapper .program__img {
width: 88%;
}
.cx-unique-wrapper .program__type {
font-size: 17px;
}
.cx-unique-wrapper .program__category {
font-size: 26px;
}
.cx-unique-wrapper .promo-banner__img {
bottom: 408px;
}
.cx-unique-wrapper .promo-banner__lines {
right: 394px;
width: 8%;
top: 363px;
}
.cx-unique-wrapper .promo-banner__poly {
right: 18%;
bottom: 50px;
}
}
@media (min-width: 1400px) and (max-width: 1499px) {
.cx-unique-wrapper .program__cart {
width: 405px;
}
.cx-unique-wrapper .promo-banner__img {
bottom: 408px;
}
.cx-unique-wrapper .promo-banner__lines {
right: 364px;
width: 8%;
top: 390px;
}
}
@media (min-width: 1300px) and (max-width: 1399px) {
.cx-unique-wrapper .promo-banner__img {
bottom: 434px;
}
.cx-unique-wrapper .promo-banner__lines {
right: 364px;
width: 8%;
top: 390px;
}
.cx-unique-wrapper .promo-banner__poly {
right: 20%;
bottom: 4%;
}
.cx-unique-wrapper .promo-banner .promo__intro .promo-title {
font-size: 45px;
line-height: 65px;
width: 630px;
}
.cx-unique-wrapper .promo-banner .callback-button {
width: 208px;
}
.cx-unique-wrapper .promo-banner {
height: 830px;
}
}
@media (min-width: 1200px) and (max-width: 1299px) {
.cx-unique-wrapper .promo-banner__lines {
right: 364px;
width: 8%;
top: 390px;
}
.cx-unique-wrapper .promo-banner__poly {
right: 19%;
bottom: 9%;
width: 9%;
}
.cx-unique-wrapper .promo-banner .promo__intro .promo-title {
font-size: 48px;
line-height: 65px;
width: 646px;
}
.cx-unique-wrapper .promo-banner .callback-button {
width: 208px;
}
}
@media (min-width: 1200px) and (max-width: 1280px) {
.cx-unique-wrapper .program__cart {
width: 375px;
}
}
@media (min-width: 1100px) and (max-width: 1199px) {
.cx-unique-wrapper .program__cart {
width: 352px;
}
.cx-unique-wrapper .program__img {
width: 64%;
}
.cx-unique-wrapper .program__type {
font-size: 17px;
}
.cx-unique-wrapper .program__category {
font-size: 26px;
}
}
@media (min-width: 1000px) and (max-width: 1099px) {
.cx-unique-wrapper .program__cart {
width: auto;
}
.cx-unique-wrapper .program__img {
width: 88%;
}
.cx-unique-wrapper .program__title {
font-size: 17px;
}
.cx-unique-wrapper .program__descr {
padding: 0 20px 20px 20px;
}
.cx-unique-wrapper .program__type {
font-size: 17px;
}
.cx-unique-wrapper .program__category {
font-size: 26px;
}
.cx-unique-wrapper .form {
height: 740px;
}
}
@media (min-width: 768px) and (max-width: 900px) {
.cx-unique-wrapper .program__cart {
width: 352px;
}
.cx-unique-wrapper .program__img {
width: 88%;
}
.cx-unique-wrapper .program__type {
font-size: 17px;
}
.cx-unique-wrapper .program__category {
font-size: 26px;
}
.cx-unique-wrapper .promo-banner__lines {
display: none;
}
.cx-unique-wrapper .promo-banner__poly {
display: none;
}
.cx-unique-wrapper .promo-licenses {
height: 1170px;
}
}
@media (min-width: 1401px) and (max-width: 1700px) {
.header .menu {
padding: 0 10%;
}
.cx-unique-wrapper .slider__prev-b {
left: 5% !important;
}
.cx-unique-wrapper .slider__next-b {
right: 5% !important;
}
.cx-unique-wrapper .slider__prev {
left: 5% !important;
}
.cx-unique-wrapper .slider__next {
right: 5% !important;
}
.cx-unique-wrapper .program {
display: none;
}
.cx-unique-wrapper .instructors__rounds {
right: 104px;
width: 10%;
bottom: 107px;
}
.cx-unique-wrapper .instructors__poly {
width: 10%;
}
.cx-unique-wrapper .instructors__geometric {
width: 10%;
}
.cx-unique-wrapper .form__geometry {
width: 10%;
left: 68px;
}
.cx-unique-wrapper .form__geometry-2 {
width: 10%;
right: 98px;
bottom: 61px;
}
}
@media (min-width: 1200px) and (max-width: 1400px) {
.header .logo {
margin-left: 70px;
}
.header .buttons-wrapper {
margin-right: 20px;
}
.header .menu {
padding: 0 4%;
}
.cx-unique-wrapper .features__lines-right {
top: -72px;
right: 50px;
width: 10%;
}
.cx-unique-wrapper .features__lines-left {
bottom: -73px;
left: 39px;
width: 10%;
}
.cx-unique-wrapper .features__inner {
max-width: 1190px;
}
.cx-unique-wrapper .test {
margin: 190px 80px 0 80px;
}
.cx-unique-wrapper .test__img {
width: 100%;
}
.cx-unique-wrapper .instructors__geometric {
width: 8%;
}
.cx-unique-wrapper .instructors__poly {
width: 10%;
bottom: -72px;
}
.cx-unique-wrapper .instructors__rounds {
bottom: 109px;
right: 60px;
width: 10%;
}
.cx-unique-wrapper .instructors__img {
width: 100%;
}
.cx-unique-wrapper .slider-container {
max-width: 1050px;
margin: 0 auto;
}
.cx-unique-wrapper .slider-container-inst {
max-width: 1070px;
margin: 0 auto;
}
.cx-unique-wrapper .slider__prev-b {
left: 3%;
}
.cx-unique-wrapper .slider__next-b {
right: 3%;
}
.cx-unique-wrapper .slider__prev {
left: 3%;
}
.cx-unique-wrapper .slider__next {
right: 3%;
}
.cx-unique-wrapper .slider__inner {
margin-left: 17px;
}
.cx-unique-wrapper .form__img {
width: 455px;
}
.cx-unique-wrapper .form__inner {
padding: 19px 20px 24px 20px;
}
.cx-unique-wrapper .form__geometry-2 {
right: 10px;
bottom: 87px;
width: 9%;
}
.cx-unique-wrapper .form__geometry {
top: -95px;
left: 1px;
width: 10%;
}
}
@media (max-width: 1200px) {
.header .menu {
position: fixed;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
top: 0;
left: -100%;
width: 30%;
height: 100% !important;
padding: 20px 15px;
background-color: #01020af0;
-webkit-transition: 0.6s all;
transition: 0.6s all;
padding: 30px 0 !important;
}
.header .menu_active {
left: 0;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background-color: #101e96f0;
}
.header .menu__item {
padding: 7px 0 !important;
padding-right: 0;
border: none;
margin: 0px 20px;
width: 300px;
}
.header .menu__link {
font-size: 16px !important;
color: #fff !important;
}
.header .hamburger {
display: block;
position: absolute;
right: 10%;
top: 35%;
width: 26px;
height: 12px;
}
.header .hamburger span {
display: block;
height: 2px;
width: 34px;
background-color: #fff;
margin-bottom: 8px;
-webkit-transition: 0.5s all;
transition: 0.5s all;
}
.header .hamburger_active span {
margin-bottom: -2px;
}
.header .hamburger_active span:nth-child(1) {
-webkit-transform: translateY(3px) rotate(-45deg);
transform: translateY(3px) rotate(-45deg);
}
.header .hamburger_active span:nth-child(2) {
display: none;
}
.header .hamburger_active span:nth-child(3) {
-webkit-transform: translateY(3px) rotate(45deg);
transform: translateY(3px) rotate(45deg);
}
.header .logo {
margin-left: 15%;
}
.header .logo__subtext {
display: none;
}
.header .contacts__mobile {
color: #fff;
text-decoration: underline;
}
.header .contacts__mobile:hover {
color: #c9e9f1;
}
.header .pk-hidden {
display: flex;
flex-direction:column;
gap: 20px;
}
.header .mobile-hidden {
display: none;
}
.mobile-hidden {
display: none;
}
.mobile-menu__active {
margin-top: 20% !important;
}
}
@media(max-width: 992px) {
.header .menu {
width: 44%;
align-items: start;
justify-content: flex-start;
}
.header .social-buttons {
display: none;
}
.cx-unique-wrapper .promo-licenses {
height: 1170px;
}
}
@media(max-width: 576px) {
.header .menu {
margin-top:100px;
width: 100%;
}
.header .social-buttons {
display: flex;
}
.header .social-buttons .social-btn {
margin-right: 10px;
}
.header__top {
padding: 30px 0px 30px 0px;
height: 110px;
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
.cx-unique-wrapper .promo__intro {
width: 92%;
font-size: 40px;
margin: 0 auto;
}
.cx-unique-wrapper .reviews__btn {
margin-top: 40px;
}
.cx-unique-wrapper .form__wrapper {
margin-top: 100px;
}
.header__top {
padding: 30px 0;
height: 130px;
}
.header .buttons-wrapper {
margin-right: 20px;
}
.header .menu {
padding: 0 4%;
}
.header .logo {
margin-left: 20px;
}
.footer {
height: 700px;
}
.footer__logo {
width: 95%;
} .footer__menu {
margin-bottom: 15px;
}
.footer__wrapper {
padding-top: 60px;
}
.cx-unique-wrapper .promo__intro .promo-title {
font-size: 36px;
line-height: 56px;
}
.cx-unique-wrapper .promo-banner {
height: 700px;
}
.cx-unique-wrapper .promo-banner__lines {
right: 250px;
width: 8%;
top: 32%;
}
.cx-unique-wrapper .callback-button {
width: 215px;
}
.cx-unique-wrapper .nav-list {
margin: 0;
}
.cx-unique-wrapper .nav-link {
font-size: 13px !important;
}
.cx-unique-wrapper .navbar-expand-lg .navbar-nav .nav-link {
padding-left: 5px !important;
padding-right: 23px !important;
}
.cx-unique-wrapper .promo__intro {
max-width: 1000px !important;
margin: 0 auto !important;
padding-left: 0;
padding-top: 150px;
}
.cx-unique-wrapper .promo__intro .banner-item__subtitle {
font-size: 22px;
width: 45%;
}
.cx-unique-wrapper .features {
padding: 0 20px;
}
.cx-unique-wrapper .features__inner .feature {
height: 280px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.cx-unique-wrapper .features__inner .feature__description {
font-size: 15px;
}
.cx-unique-wrapper .feature__title {
font-size: 17px;
}
.cx-unique-wrapper .features__lines-right {
top: -59px;
right: 50px;
width: 10%;
}
.cx-unique-wrapper .features__lines-left {
bottom: -61px;
left: 39px;
width: 10%;
}
.cx-unique-wrapper .test {
margin: 150px 80px 100px 80px;
height: 370px;
}
.cx-unique-wrapper .test__title {
font-size: 44px;
}
.cx-unique-wrapper .test__img {
width: 100%;
}
.cx-unique-wrapper .test__btn {
width: 188px;
}
.cx-unique-wrapper .first-class {
height: 350px;
}
.cx-unique-wrapper .first-class__title {
font-size: 43px;
margin-top: 100px;
}
.cx-unique-wrapper .first-class__btn {
width: 222px;
margin-top: 18px;
}
.cx-unique-wrapper .first-class__polygon {
width: 10%;
}
.cx-unique-wrapper .first-class__lines {
width: 10%;
}
.cx-unique-wrapper .first-class__curves {
width: 10%;
}
.cx-unique-wrapper .instructors__title {
font-size: 26px;
margin-top: 50px;
}
.cx-unique-wrapper .instructors__geometric {
width: 8%;
}
.cx-unique-wrapper .instructors__poly {
width: 10%;
bottom: -72px;
}
.cx-unique-wrapper .instructors__rounds {
bottom: 109px;
right: 60px;
width: 10%;
}
.cx-unique-wrapper .instructors__img {
width: 100%;
}
.cx-unique-wrapper .title {
font-size: 37px !important;
}
.cx-unique-wrapper .slider-container-inst {
max-width: 1070px;
margin: 0 auto;
}
.cx-unique-wrapper .slider-container {
max-width: 1050px;
margin: 0 auto;
} .cx-unique-wrapper .slider__inner {
margin-left: 17px;
}
.cx-unique-wrapper .reviews { padding-bottom: 3rem;
} .cx-unique-wrapper .form__img {
margin-left: 32px;
margin-top: 77px;
width: 94%;
}
.cx-unique-wrapper .form__inner {
padding: 19px 20px 24px 20px;
}
.cx-unique-wrapper .form__geometry-2 {
right: 10px;
bottom: 87px;
width: 9%;
}
.cx-unique-wrapper .form__geometry {
top: -95px;
left: 1px;
width: 10%;
}
.cx-unique-wrapper .form__title {
font-size: 26px;
width: 315px;
}
.cx-unique-wrapper .form__inner {
padding: 17px 50px 20px 50px;
}
.cx-unique-wrapper .form__contacts {
padding: 0;
line-height: 36px;
margin-top: 18px;
}
.cx-unique-wrapper .form__contacts input, .cx-unique-wrapper .form__contacts select {
height: 40px;
}
.cx-unique-wrapper .form__subheader {
font-size: 37px;
margin-top: 100px;
}
.cx-unique-wrapper .form__geometry {
top: -73px;
left: -2px;
}
.cx-unique-wrapper .form__geometry-2 {
bottom: 178px;
}
.cx-unique-wrapper #form__contacts-text, .cx-unique-wrapper .form__contacts-text {
height: 125px;
}
.cx-unique-wrapper #form__btn, .cx-unique-wrapper .form__btn {
width: 190px;
height: 45px;
font-size: 14px;
padding: 8px 59px;
margin: 0 77px;
}
.cx-unique-wrapper .map {
margin-top: 10px;
}
}
@media(max-width: 992px) {
.header .contacts__phone {
font-size: 22px;
}
.cx-unique-wrapper .promo-banner {
padding-top: 0;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.footer {
height: 900px;
}
.footer__wrapper {
padding: 79px 15px 0 21px;
}
.footer__logo { margin-bottom: 45px;
}
.footer__menu {
margin-bottom: 15px;
}
.footer__address {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 171px;
}
.footer__menu-link {
font-size: 15px;
}
.footer__menu-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
font-size: 12px;
}
.footer .pk-hidden {
display: block;
}
.cx-unique-wrapper .promo-banner__img {
right: 56px;
bottom: 553px;
width: 87%;
}
.cx-unique-wrapper .promo__intro .promo-title {
line-height: 50px;
}
.cx-unique-wrapper .pk-hidden {
display: block;
}
.cx-unique-wrapper .mobile-hidden {
display: none;
}
.cx-unique-wrapper .promo {
height: 950px;
}
.cx-unique-wrapper .promo__intro .promo-title {
font-size: 40px;
width: auto;
}
.cx-unique-wrapper .mobile-menu__active {
margin-top: 20%;
}
.cx-unique-wrapper .features__lines-right {
top: -59px;
right: 50px;
width: 10%;
}
.cx-unique-wrapper .features__lines-left {
bottom: -61px;
left: 39px;
width: 10%;
}
.cx-unique-wrapper .features__inner .feature {
min-height: 135px;
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.cx-unique-wrapper .features__inner .feature__description {
margin: 0 auto;
margin-top: 4px;
text-align: center;
font-size: 15px;
line-height: 21px;
}
.cx-unique-wrapper .features__inner .feature__description-last {
max-width: 235px;
}
.cx-unique-wrapper .features__inner .feature__title {
text-align: center;
display: block;
margin: 0 auto;
margin-top: 16px;
font-size: 17px;
}
.cx-unique-wrapper .feature-title {
margin-bottom: 80px !important;
}
.cx-unique-wrapper .features__inner .feature__image {
margin-right: 0;
margin: 0 auto;
width: 53px;
margin-top: -45px;
}
.cx-unique-wrapper .title {
font-size: 34px !important;
margin-bottom: 50px !important;
}
.cx-unique-wrapper .features__inner {
padding: 43px 0;
margin: 0 20px;
}
.cx-unique-wrapper .test {
margin: 145px 50px 65px 50px;
height: 365px;
}
.cx-unique-wrapper .test__title {
font-size: 40px;
line-height: 50px;
}
.cx-unique-wrapper .test__img {
width: 100%;
margin-top: -17px;
}
.cx-unique-wrapper .test__btn {
width: 188px;
}
.cx-unique-wrapper .first-class {
height: 330px;
}
.cx-unique-wrapper .first-class__title {
font-size: 40px;
margin-top: 90px;
}
.cx-unique-wrapper .first-class__btn {
width: 200px;
margin-top: 18px;
height: 50px;
}
.cx-unique-wrapper .first-class__polygon {
width: 10%;
top: -41px;
}
.cx-unique-wrapper .first-class__lines {
width: 10%;
right: 78px;
}
.cx-unique-wrapper .first-class__curves {
width: 20%;
}
.cx-unique-wrapper .instructors__geometric {
width: 8%;
}
.cx-unique-wrapper .instructors__poly {
width: 10%;
bottom: -48px;
}
.cx-unique-wrapper .instructors__rounds {
bottom: 109px;
right: 60px;
width: 10%;
}
.cx-unique-wrapper .instructors__img {
width: 100%;
}
.cx-unique-wrapper .instructors__title {
margin: 0 auto;
width: 547px;
font-size: 25px;
margin-top: 70px;
}
.cx-unique-wrapper .slider__prev-b {
display: none;
}
.cx-unique-wrapper .slider__next-b {
display: none;
}
.cx-unique-wrapper .slider-container {
max-width: 1050px;
margin: 0 auto;
}
.cx-unique-wrapper .slider__prev {
display: none;
}
.cx-unique-wrapper .slider__next {
display: none;
}
.cx-unique-wrapper .form-img__none {
display: none;
}
.cx-unique-wrapper .form__geometry {
display: none;
}
.cx-unique-wrapper .form__geometry-2 {
display: none;
}
.cx-unique-wrapper .form__wrapper {
margin-top: 50px;
padding: 0 45px;
}
.cx-unique-wrapper .reviews__content { }
.cx-unique-wrapper .reviews { padding-bottom: 3rem;
}
.cx-unique-wrapper .form__contacts {
padding: 0 90px 0 90px;
}
.cx-unique-wrapper .form__contacts input, .cx-unique-wrapper .form__contacts select {
width: 95%;
}
.cx-unique-wrapper #form__contacts-text, .cx-unique-wrapper .form__contacts-text {
height: 125px;
width: 95%;
}
.cx-unique-wrapper .form__inner {
padding: 19px 15px 45px 15px;
}
.cx-unique-wrapper .form__subheader {
font-size: 34px;
}
.cx-unique-wrapper .form__wrapper {
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
z-index: 3;
}
}
@media (max-width: 992px) {
.cx-unique-wrapper .promo__hidden {
display: block !important;
position: absolute;
top: 143px;
width: 65%;
left: 15%;
}
.cx-unique-wrapper .promo__mobile-hidden {
display: none !important;
}
.cx-unique-wrapper .promo__intro .banner-item__subtitle {
margin-bottom: 22px;
width: auto;
}
}
@media (min-width: 880px) and (max-width: 990px) {
.cx-unique-wrapper .promo-banner__img {
right: 74px;
bottom: 537px;
width: 83% !important;
}
.cx-unique-wrapper .promo__intro {
padding-top: 506px; 
}
.cx-unique-wrapper .promo-banner__lines {
display: none;
}
.cx-unique-wrapper .promo-banner__poly {
display: none;
}
}
@media(max-width: 576px) {
.header .contacts__phone {
font-size: 25px;
}
.footer {
height: 100%;
}
.cx-unique-wrapper .program {
display:none !important;
}
}
@media (min-width: 576px) and (max-width: 767px) {
.header .logo {
margin-left: 15%;
}
.header .logo .logo__image {
width: 95%;
margin-left: 11px;
height: auto;
}
.header .logo__subtext {
display: none;
}
.header .contacts__phone {
font-size: 13px;
}
.header .contacts__mobile {
color: #fff;
text-decoration: underline;
font-size: 11px;
}
.header .contacts__mobile:hover {
color: #c9e9f1;
}
.header .menu {
position: fixed;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
top: 0;
left: -100%;
width: 70%;
height: 100% !important;
padding: 20px 15px;
background-color: #01020af0;
-webkit-transition: 0.6s all;
transition: 0.6s all;
padding: 60px 0 !important;
}
.header .menu_active {
left: 0;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background-color: #101e96f0; 	
}
.header .menu__item {
padding: 7px 0 !important;
padding-right: 0;
border: none;
margin: 10px 0;
width: 300px;
}
.header .menu__link {
font-size: 21px !important;
color: #fff !important;
}
.header .hamburger {
display: block;
position: absolute;
right: 10%;
top: 35%;
width: 26px;
height: 12px;
}
.header .hamburger span {
display: block;
height: 2px;
width: 34px;
background-color: #fff;
margin-bottom: 8px;
-webkit-transition: 0.5s all;
transition: 0.5s all;
}
.header .hamburger_active span {
margin-bottom: -2px;
}
.header .hamburger_active span:nth-child(1) {
-webkit-transform: translateY(3px) rotate(-45deg);
transform: translateY(3px) rotate(-45deg);
}
.header .hamburger_active span:nth-child(2) {
display: none;
}
.header .hamburger_active span:nth-child(3) {
-webkit-transform: translateY(3px) rotate(45deg);
transform: translateY(3px) rotate(45deg);
}
.header .pc-program {
display: none;
}
.header .pk-hidden {
display: block;
}
.header .mobile-hidden {
display: none;
}
.header .mobile-menu__active {
margin-top: 25%;
}
.header .menu_active {
padding-top: 25% !important;
}
.footer {
height: 750px;
}
.footer__wrapper {
padding: 35px 0 0 0px;
}
.footer__logo {
width: 110px;
margin-bottom: 45px;
}
.footer__menu {
margin-bottom: 15px;
}
.footer__address {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
height: 135px;
font-size: 12px;
}
.footer__address-title {
margin-top: 5px;
font-size: 12px;
}
.footer__menu-link {
font-size: 12px;
}
.footer__menu-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column; height: 260px;
font-size: 12px;
}
.footer .pk-hidden {
display: block;
}
.pk-hidden {
display: block;
}
.mobile-hidden {
display: none;
}
.cx-unique-wrapper .promo-banner__lines {
display: none;
}
.cx-unique-wrapper .promo-banner__poly {
display: none;
}
.cx-unique-wrapper .pk-hidden {
display: block;
}
.cx-unique-wrapper .mobile-hidden {
display: none;
}
.cx-unique-wrapper .promo__intro {
text-align: center;
padding-top: 450px; 
width: 90%;
margin: 0 auto;
}
.cx-unique-wrapper .promo__intro .promo-title {
line-height: 50px;
font-size: 35px;
width: auto;
margin: 0 auto;
margin-bottom: 15px;
}
.cx-unique-wrapper .promo-banner__img {
right: 45px;
bottom: 672px;
width: 87%;
}
.cx-unique-wrapper .mobile-menu__active {
margin-top: 25%;
}
.cx-unique-wrapper .features__lines-right {
display: none;
}
.cx-unique-wrapper .features__lines-left {
display: none;
}
.cx-unique-wrapper .features__inner .feature {
min-height: 135px;
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.cx-unique-wrapper .features__inner .feature__image {
margin-right: 0;
margin: 0 auto;
width: 53px;
margin-top: -45px;
}
.cx-unique-wrapper .features__inner .feature__description {
margin: 0 auto;
margin-top: 4px;
text-align: center;
font-size: 15px;
line-height: 21px;
}
.cx-unique-wrapper .features__inner .feature__description-last {
max-width: 235px;
}
.cx-unique-wrapper .features__inner .feature__title {
text-align: center;
display: block;
margin: 0 auto;
margin-top: 16px;
font-size: 17px;
}
.cx-unique-wrapper .features__inner {
padding: 43px 0;
max-width: 550px;
}
.cx-unique-wrapper .feature-title {
margin-bottom: 80px !important;
}
.cx-unique-wrapper .title {
font-size: 32px !important;
}
.cx-unique-wrapper .test {
margin: 145px 50px 110px 50px; }
.cx-unique-wrapper .test__title {
font-size: 40px;
line-height: 50px;
text-align: center;
}
.cx-unique-wrapper .test__img {
width: 100%;
margin-top: -17px;
margin-bottom: 32px;
}
.cx-unique-wrapper .first-class {
height: 660px;
}
.cx-unique-wrapper .first-class__title {
font-size: 40px;
width: 348px;
text-align: center;
margin: 0 auto;
margin-top: 180px;
}
.cx-unique-wrapper .first-class__btn {
width: 200px;
margin-top: 18px;
height: 50px;
}
.cx-unique-wrapper .first-class__polygon {
display: none;
}
.cx-unique-wrapper .first-class__lines {
width: 105px;
right: 52px;
bottom: 26px;
}
.cx-unique-wrapper .first-class__curves {
width: 76%;
left: -273px;
top: 84px;
}
.cx-unique-wrapper .instructors__geometric {
display: none !important;
}
.cx-unique-wrapper .instructors__poly {
display: none !important;
}
.cx-unique-wrapper .instructors__rounds {
bottom: 16px;
right: 44px;
width: 20%;
}
.cx-unique-wrapper .instructors__img {
width: 100%;
}
.cx-unique-wrapper .instructors__title {
margin: 0 auto;
width: 547px;
font-size: 25px;
margin-top: 70px;
}
.cx-unique-wrapper .slider__prev-b {
display: none;
}
.cx-unique-wrapper .slider__next-b {
display: none;
}
.cx-unique-wrapper .slider-container {
max-width: 1050px;
margin: 0 auto;
padding-left: 65px;
}
.cx-unique-wrapper .slider__prev {
display: none;
}
.cx-unique-wrapper .slider__next {
display: none;
}
.cx-unique-wrapper .form-img__none {
display: none;
}
.cx-unique-wrapper .form__geometry {
display: none;
}
.cx-unique-wrapper .form__geometry-2 {
display: none;
}
.cx-unique-wrapper .form__wrapper {
margin-top: 50px;
padding: 0 45px;
}
.cx-unique-wrapper .form__contacts {
padding: 0 22px 0 22px;
}
.cx-unique-wrapper .form__contacts input, .cx-unique-wrapper .form__contacts select {
width: 100%;
}
.cx-unique-wrapper .form__inner {
padding: 19px 15px 45px 15px;
}
.cx-unique-wrapper .form__subheader {
font-size: 31px;
}
.cx-unique-wrapper .form__wrapper {
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
z-index: 3;
}
.cx-unique-wrapper .form__checkbox span {
font-size: 14px;
}
.cx-unique-wrapper #form__contacts-text, .cx-unique-wrapper .form__contacts-text {
height: 125px;
width: 100%;
}
.cx-unique-wrapper .map__prompt-inner span {
font-size: 14px !important;
}
.cx-unique-wrapper .map__prompt {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 157px;
-ms-flex-pack: distribute;
justify-content: space-around;
padding: 0 32px;
font-size: 12px;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: start;
}
.cx-unique-wrapper .map__prompt-inner {
width: 100%;
font-size: 12px;
margin-left: 20px;
}
.cx-unique-wrapper .map__prompt-inner-1 {
margin-right: 0;
padding-right: 0;
}
.cx-unique-wrapper .map__prompt-inner span {
font-size: 14px;
}
.cx-unique-wrapper .program {
display: block;
}
.cx-unique-wrapper .program__swiper-container {
-webkit-box-orient: vertical;
-webkit-box-direction: normal; overflow-x: unset;
overflow-y: unset;
}
.cx-unique-wrapper .program__swiper-container {
margin: 0 auto;
width: 95%;
}
.cx-unique-wrapper .program__type {
font-size: 21px;
}
.cx-unique-wrapper .program__category {
margin-top: 10px;
font-size: 34px;
}
.cx-unique-wrapper .program__type-sort {
display: none;
}
.cx-unique-wrapper .program__cart {
width: 90%;
margin: 0 auto;
}
.cx-unique-wrapper .program__img {
right: 22px;
width: 39%;
}
.cx-unique-wrapper .program__price {
margin-top: 23px;
font-size: 31px;
} .cx-unique-wrapper .program__block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: 10px;
background-color: transparent;
height: 200px;
}
.cx-unique-wrapper .program__descr {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: column;
}
.cx-unique-wrapper .program__descr__descr-mobile {
margin-top: -10px !important;
}
.cx-unique-wrapper .program__descr-moto {
margin-top: -40px !important;
}
.cx-unique-wrapper .program__title {
font-size: 20px;
width: 190px;
}
.cx-unique-wrapper .program__mobile-btn {
display: block;
text-align: center;
margin: 0 auto;
border: 3px solid #0400FF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
background: #FFFFFF;
width: 243.18px;
height: 55px;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
color: #0400FF;
margin-top: 41px;
padding: 5px 48px;
}
.cx-unique-wrapper .program__mobile-btn:hover {
text-decoration: none;
color: #fff;
background-color: #000;
border: 3px solid  #000F;
}
.cx-unique-wrapper .title-learn {
margin-bottom: 45px !important;
}
.cx-unique-wrapper .reviews {
height: 100%;
padding-bottom: 3rem;
}
.cx-unique-wrapper .reviews__descr {
margin-right: 143px;
}
.cx-unique-wrapper .reviews__btn {
margin-top: 74px;
}
.cx-unique-wrapper .reviews__content { }
}
@media(max-width: 992px) {
.cx-unique-wrapper .program {
display: block;
}
.slider-btns {
gap: 5px!important;
flex-wrap: wrap;
}
}
@media (max-width: 575px) {
.pk-hidden {
display: block;
}
.mobile-xs-hidden {
display: none;
}
.contacts {
display: none !important;
}
.contacts__mobile {
color: #fff;
text-decoration: underline;
}
.contacts__mobile:hover {
color: #c9e9f1;
}
.logo {
margin-left: 6%;
}
.header .logo .logo__image {
width: 100% !important;
margin-bottom: 9px !important;
height: auto;
}
.logo__subtext {
font-size: 12px !important;
}
.mobile-hidden {
display: none;
}
.menu {
position: fixed;
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
top: 0;
left: -100%;
width: 100%;
height: 100% !important;
padding: 20px 15px;
background-color: #01020af0;
-webkit-transition: 0.6s all;
transition: 0.6s all;
padding: 20px 0 !important;
}
.menu_active {
left: 0;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
background-color: #01020af0;
}
.menu__item {
padding: 7px 0 !important;
padding-right: 0;
border: none;
margin: 10px 0;
width: 300px;
}
.menu__link {
font-size: 21px !important;
color: #fff !important;
}
.hamburger {
display: block;
position: absolute;
right: 10%;
top: 25%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 26px;
height: 12px;
z-index: 3;
}
.hamburger span {
display: block;
height: 2px;
width: 34px;
background-color: #fff;
margin-bottom: 8px;
-webkit-transition: 0.5s all;
transition: 0.5s all;
}
.hamburger_active span {
margin-bottom: -2px;
}
.hamburger_active span:nth-child(1) {
-webkit-transform: translateY(3px) rotate(-45deg);
transform: translateY(3px) rotate(-45deg);
}
.hamburger_active span:nth-child(2) {
display: none;
}
.hamburger_active span:nth-child(3) {
-webkit-transform: translateY(3px) rotate(45deg);
transform: translateY(3px) rotate(45deg);
}
.mobile-menu__active {
margin-top: 6%;
}
.footer {
height: 100%;
}
.footer__wrapper {
padding: 85px 0 0 0px;
}
.footer__logo {
width: 110px;
margin-bottom: 45px;
}
.footer__menu {
margin-bottom: 5px;
}
.footer__address {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap; font-size: 12px;
}
.footer__address-title {
margin-bottom: 5px;
font-size: 12px;
}
.footer__menu-link {
font-size: 12px;
margin-bottom: 5px;
display: block;
}
.footer__menu-wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap; font-size: 12px;
}
.cx-unique-wrapper .tns-item {
text-align: center;
}
.cx-unique-wrapper .promo-banner__lines {
display: none;
}
.cx-unique-wrapper .promo-banner__poly {
display: none;
}
.cx-unique-wrapper .promo__intro {
text-align: center; width: 90%;
margin: 0 auto;
}
.cx-unique-wrapper .promo__intro .promo-title {
line-height: 50px;
font-size: 41px;
width: 72%;
margin: 0 auto;
margin-bottom: 55px;
}
.cx-unique-wrapper .promo-banner {
height: 850px;
padding-top: 0;
}
.cx-unique-wrapper .promo-banner__img {
right: 25px;
bottom: 52%;
width: 87%;
}
.cx-unique-wrapper .mobile-xs-hidden {
display: none;
}
.cx-unique-wrapper .mobile-hidden {
display: none;
}
.cx-unique-wrapper .promo {
height: 790px;
}
.cx-unique-wrapper .promo__intro {
text-align: center; width: 90%;
margin: 0 auto;
}
.cx-unique-wrapper .promo__intro .promo-title {
line-height: 36px;
font-size: 22px;
width: 76%;
margin: 0 auto;
margin-bottom: 25px;
}
.akcia-subtitle {
line-height: 36px;
font-size: 22px;
}
.cx-unique-wrapper .promo__btn-wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin: 0 auto;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.cx-unique-wrapper .promo .callback-button--style3 {
margin-left: 0;
margin-top: 20px;
}
.cx-unique-wrapper .promo .callback-button {
width: 220px;
font-size: 15px;
}
.cx-unique-wrapper .mobile-menu__active {
margin-top: 25%;
}
.cx-unique-wrapper .features__lines-right {
display: none;
}
.cx-unique-wrapper .features__lines-left {
display: none;
}
.cx-unique-wrapper .features__inner .feature {
min-height: 135px;
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.cx-unique-wrapper .features__inner .feature__image {
margin-right: 0;
margin: 0 auto;
width: 53px;
margin-top: -45px;
}
.cx-unique-wrapper .features__inner .feature__description {
margin: 0 auto;
margin-top: 4px;
text-align: center;
font-size: 15px;
line-height: 21px;
}
.cx-unique-wrapper .features__inner .feature__description-last {
max-width: 235px;
}
.cx-unique-wrapper .features__inner .feature__title {
text-align: center;
display: block;
margin: 0 auto;
margin-top: 16px;
font-size: 17px;
}
.cx-unique-wrapper .features__inner {
padding-top: 43px;
padding-bottom: 0px;
max-width: 550px;
border-radius: 0%;
}
.cx-unique-wrapper .feature-title {
margin-bottom: 80px !important;
}
.cx-unique-wrapper .title {
font-size: 23px !important;
line-height: 150%;
margin-bottom: 30px;
}
.cx-unique-wrapper .test {
margin: 70px 50px 70px 50px; }
.cx-unique-wrapper .test__title {
font-size: 40px;
line-height: 50px;
text-align: center;
}
.cx-unique-wrapper .test__img {
width: 100%;
margin-top: -17px;
}
.cx-unique-wrapper .test__btn { }
.cx-unique-wrapper .first-class {
height: 560px;
}
.cx-unique-wrapper .first-class__title {
font-size: 32px;
max-width: 340px;
text-align: center;
margin: 0 auto;
margin-top: 180px;
}
.cx-unique-wrapper .first-class__btn {
width: 200px;
margin-top: 18px;
height: 50px;
}
.cx-unique-wrapper .first-class__polygon {
display: none;
}
.cx-unique-wrapper .first-class__lines {
width: 105px;
right: 13px;
bottom: 26px;
}
.cx-unique-wrapper .first-class__curves {
width: 78%;
left: -153px;
top: 98px;
}
.cx-unique-wrapper .instructors__geometric {
width: 8%;
display: none;
}
.cx-unique-wrapper .instructors__poly {
width: 10%;
bottom: -72px;
display: none;
}
.cx-unique-wrapper .instructors__rounds {
bottom: 109px;
right: 60px;
width: 10%;
}
.cx-unique-wrapper .instructors__wrapper {
margin-top: -30px;
}
.cx-unique-wrapper .instructors__img {
width: 100%;
}
.cx-unique-wrapper .instructors__title {
margin: 0 auto;
width:100%; font-size: 25px;
margin-top: 20px;
line-height: 32px;
color: #000;
}
.cx-unique-wrapper .instructors__text {
text-align: center;
font-size: 14px;
}
.cx-unique-wrapper .slider__prev-b {
left: 3%;
}
.cx-unique-wrapper .slider__next-b {
right: 3%;
}
.cx-unique-wrapper .slider-container {
max-width: 1050px;
margin: 0 auto;
}
.cx-unique-wrapper .slider__prev {
left: 3%;
top: 300px;
}
.cx-unique-wrapper .slider__next {
right: 3%;
top: 300px;
}
.cx-unique-wrapper .slider__inner {
margin: 6px auto;
}
.cx-unique-wrapper .slider__title {
line-height: 33px;
width: 96%;
}
.cx-unique-wrapper .form-img__none {
display: none;
}
.cx-unique-wrapper .form__geometry {
display: none;
}
.cx-unique-wrapper .form__geometry-2 {
display: none;
}
.cx-unique-wrapper .form__wrapper {
margin-top: 50px;
padding: 0 45px;
}
.cx-unique-wrapper .reviews {
height: 700px;
}
.cx-unique-wrapper .reviews__content {
width: 300px;
}
.cx-unique-wrapper .form__contacts {
padding: 0 15px 0 15px;
}
.cx-unique-wrapper .form__contacts input, .cx-unique-wrapper .form__contacts select {
width: 100%;
}
.cx-unique-wrapper .form__inner {
padding: 19px 15px 45px 15px;
border-radius: 0%;
}
.cx-unique-wrapper .form__subheader {
font-size: 27px;
line-height: 31px;
margin-top: 80px;
}
.cx-unique-wrapper .form__wrapper {
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
z-index: 3;
padding: 0;
border-radius: none;
}
.cx-unique-wrapper .form__title {
font-size: 27px;
margin-bottom: 25px;
}
.cx-unique-wrapper .form__checkbox span {
max-width: 350px;
}
.cx-unique-wrapper #form__contacts-text, .cx-unique-wrapper .form__contacts-text {
height: 125px;
width: 100%;
}
.cx-unique-wrapper .map {
margin-top: 15px;
}
.cx-unique-wrapper .map__prompt-inner span {
font-size: 12px !important;
}
.cx-unique-wrapper .map__prompt-img {
width: 25px !important;
}
.cx-unique-wrapper .map__prompt {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 100px;
-ms-flex-pack: distribute;
justify-content: space-around;
padding: 0 15px;
font-size: 12px;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: start;
}
.cx-unique-wrapper .map__prompt-inner {
width: 100%;
font-size: 12px;
}
.cx-unique-wrapper .map__prompt-inner-1 {
margin-right: 0;
padding-right: 0;
}
.cx-unique-wrapper .map__prompt-inner span {
font-size: 12px;
}
.cx-unique-wrapper .program__swiper-container {
-webkit-box-orient: vertical;
-webkit-box-direction: normal; overflow-x: unset;
overflow-y: unset;
}
.cx-unique-wrapper .program__swiper-container {
margin: 0 auto;
width: 95%;
}
.cx-unique-wrapper .program__type {
font-size: 14px;
}
.cx-unique-wrapper .program__type-sort {
position: absolute;
right: 24px;
top: 120px;
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 14px;
}
.cx-unique-wrapper .program__cart {
width: 95%;
margin: 0 auto;
margin-top: 17px;
}
.cx-unique-wrapper .program__img {
width: 39%;
right: 24px;
bottom: -3px;
} .cx-unique-wrapper .program__block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: 4px;
background-color: transparent;
max-height: 115px;
}
.cx-unique-wrapper .program__descr {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: column; margin-top: 10px;
}
.cx-unique-wrapper .program__descr__descr-mobile {
margin-top: -10px !important;
}
.cx-unique-wrapper .program__descr-moto {
margin-top: 0 !important;
}
.cx-unique-wrapper .program__title {
margin-top: 10px;
font-size: 14px;
width: 150px;
}
.cx-unique-wrapper .program__mobile-btn {
display: block;
text-align: center;
margin: 0 auto;
border: 3px solid #0400FF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
background: #FFFFFF;
width: 243.18px;
height: 55px;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
color: #0400FF;
margin-top: 41px;
padding: 5px 48px;
}
.cx-unique-wrapper .program__mobile-btn:hover {
text-decoration: none;
color: #fff;
background-color: #000;
}
.cx-unique-wrapper .program__category {
font-size: 22px;
margin-top: -3px;
text-align:left;
}
.cx-unique-wrapper .program__cart-header {
font-size: 13px;
}
.cx-unique-wrapper .program__price {
font-size: 23px;
margin-top: 15px;
}
.cx-unique-wrapper .title-learn {
margin-bottom: 20px !important;
}
.cx-unique-wrapper .reviews {
height: 100%;
padding-bottom: 3rem;
}
.cx-unique-wrapper .reviews__descr {
margin: 12px auto;
color: #000;
}
.cx-unique-wrapper .reviews__btn {
margin: 15px auto;
}
.cx-unique-wrapper .reviews__title {
font-size: 28px;
}
.cx-unique-wrapper .pk-hidden {
display: block;
}
.cx-unique-wrapper .promo__intro .banner-item__subtitle {
font-size: 16px;
height: 96px;
}
.cx-unique-wrapper .promo__intro .banner-item__subtitle_mc {
font-size: 16px;
}
}
@media (max-width: 460px) {
.cx-unique-wrapper .promo-banner__img {
bottom: 59%;
}
.cx-unique-wrapper .promo-banner .callback-button {
width: 230px;
}
.cx-unique-wrapper .promo__intro { }
.cx-unique-wrapper .promo__intro .promo-title {
margin-bottom: 15px;
width: 100%;
}
}
@media (max-width: 360px) {
.cx-unique-wrapper .program__title {
font-size: 13px;
width: 144px;
}
.cx-unique-wrapper .reviews__btn {
width: 207px;
}
}
@media (max-width: 470px) {
.cx-unique-wrapper .instructors__wrapper {
width: 82%;
height: auto;
margin-left:4px;
}
}
.cx-unique-wrapper .mobile-menu__active {
margin-top: 18%;
}
@media (max-width: 660px) {
.cx-unique-wrapper .promo-banner__mobile {
width: 85%;
left: 8%;
margin-left:4px;
}
}
@media (max-width: 575px) {
.cx-unique-wrapper .promo-banner__mobile {
width: 76%;
left: 10%;
top: 258px;
}
} @media (max-width: 340px) {
.cx-unique-wrapper .test {
max-height: 382px;
}
} * {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Rubik';
}
.callback-button {
display: block;
width: 240px;
text-align: center;
padding: 14px 16px;
border-radius: 50px;
font-size: 16px;
line-height: 19px;
cursor: pointer;
}
.callback-button--style1 {
border: 3px solid #FFFFFF;
color: #fff;
background-color: rgba(255, 255, 255, 0);
}
.callback-button--style1:hover {
text-decoration: none;
color: #0400FF;
background-color: #fff;
}
.callback-button--style2 {
border: 3px solid #30b876;
color: #fff;
background-color: #30b876;
}
.callback-button--style2:hover {
border: 3px solid #2ba56a;
text-decoration: none;
color: #fff;
background-color: #2ba56a;
}
.callback-button--style3 {
border: 3px solid #FFFFFF;
color: #fff;
background-color: rgba(255, 255, 255, 0);
margin-left: 14px;
}
.callback-button--style3:hover {
text-decoration: none;
color: #0400FF;
background-color: #fff;
}
.title {
font-weight: bold;
font-size: 40px;
line-height: 47px;
text-align: center;
margin-bottom: 40px;
}
.copyright-text a {
color: #fff;
}
.copyright-text a:hover {
text-decoration :underline;
} .header-logo {
display: flex;
gap: 20px 30px;
}
.mob-app {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
}
.mob-app__wrap {
display: block;
width: 45px;
padding: 10px;
background-color: #fff;
border-radius: 20%;
box-shadow: 0 1px 2px 0 rgb(60, 64, 67, 30%), 0 1px 3px 1px rgb(60, 64, 67, 15%);
}
.mob-app__wrap-black {
background-color: #364150;
}
.mob-app__image {
width: 100%;
height: auto;	
}
.mob-app__subtext {
display: inline-block;
font-size: 12px;
line-height: 15px;
text-align: center;
color: #fff;
}
.mob-app__subtext:hover {
color: #e1dede;
}
.cx-unique-wrapper .program__overlay .program__text {
margin-top: 0;
}
@media (max-width: 768px) {
.mob-app__wrap {
width: 48px;
padding: 6px;
}
}
@media (max-width: 576px) {
.header-logo {
gap: 20px 10px;
}
.header .logo {
margin-left: 0px;
}
}
.video {
margin: 70px 0 70px;
}
.video-block {
display: flex;
justify-content: center;
}
.video__link {
display: block;
width: 165px;
text-align: center;
margin: 40px auto 0px;
padding: 9px 16px;
border-radius: 50px;
border: 3px solid #0400FF;
background: #0400ff;
color: #fff;
text-decoration: none;
}
.video__link:hover {
border: 3px solid #0400FF;
background-color: transparent;
color: #0400FF;
}
.video-block iframe {
height: 615px;
}
@media(max-width: 1199.9px) {
.video-block iframe {
height: 515px;
}
}
@media(max-width: 991.9px) {
.video-block iframe {
height: 385px;
}
}
@media(max-width: 767.9px) {
.video-block iframe {
height: 295px;
}
}
@media(max-width: 575.9px) {
.video-block iframe {
height: 225px;
}
}
.cx-unique-wrapper .features__inner {
top: 50px;
}
.features-wrapper {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
row-gap: 30px;
}
@media(min-width: 576px) {
.features-custom .feature__wrapper {
position: relative;
}
.features-custom .feature__wrapper ul {
position: absolute;
padding: 0px;
left: 15px;
}
}
.ped-btn {
display: flex;
justify-content: center;
margin-bottom: 80px;
}
.ped-btn__link {
display: block;
text-align: center;
margin: 40px 0 0 0;
padding: 9px 30px;
border-radius: 50px;
border: 3px solid #0400FF;
background: #0400ff;
color: #fff;
text-decoration: none;
}
@media(max-width: 400px) {
.ped-btn__link {
margin: 20px auto 40px;
padding: 9px 20px;
font-size: 14px;
}
}
.ped-btn__link:hover {
border: 3px solid #0400FF;
background-color: transparent;
color: #0400FF;
}
.cx-unique-wrapper .instructors {
padding-top:70px;
}
@media (min-width: 768px) and (max-width: 991px) {
.cx-unique-wrapper .instructors {
height: auto;
}
}
.wp-block-embed iframe {
height: 615px;
width: 100%;
max-width: 1200px!important;
}
@media(max-width: 1199.9px) {
.wp-block-embed iframe {
height: 515px;
}
}
@media(max-width: 991.9px) {
wp-block-embed iframe {
height: 385px;
}
}
@media(max-width: 767.9px) {
.wp-block-embed iframe {
height: 295px;
}
}
@media(max-width: 575.9px) {
.wp-block-embed iframe {
height: 225px;
}
}
@media(max-width: 575px) {
.features-wrapper {
display: grid;
grid-template-columns: repeat(2, 1fr);
margin-right: 0px;
margin-left: 0px;
row-gap: 30px;
}
.cx-unique-wrapper .features__inner .feature {
padding: 20px 0px;
margin-bottom: 20px;
}
.features-custom .features__inner {
padding-bottom: 43px;
}
.features-custom .feature__wrapper ul {
padding: 0px;
list-style: none;
}
.features-custom .course__item {
box-shadow: none;
padding: 20px 0px;
margin-bottom: 0px;
}
}
@media (min-width: 576px) and (max-width: 767px) {
.cx-unique-wrapper .title-learn {
margin-top: 100px;
}
}
@media(max-width: 768px) {
.rating__next {
display: flex;
right: -1%!important;
}
.rating__prev {
display: flex;
left: -1%!important;
}
} .promo-banner__next {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
top: 50%;
right: 5%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
.promo-banner__prev {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 50%;
left: 5%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
@media(max-width: 576px) {
.promo-banner__next {
display: none;
}
.promo-banner__prev {
display: none;
}
}
.section-btn {
height: 100%;
padding: 70px 0;
}
@media(max-width: 770px) {
.section-btn .wrapper-btn {
gap: 1rem;
}
}
.licens__prev-b {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 50%;
left: 5%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid blue;
cursor: pointer;
}
.licens__next-b {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
top: 50%;
right: 5%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid blue;
cursor: pointer;
}
@media(min-width: 576px) {
.licens__prev-b {
display: none;
}
.licens__next-b {
display: none;
}
} .cx-cf7 label {
color: #fff;
font-size: 13px;
}
.cx-cf7 label a {
color: #fff;
font-size: 13px;
border-bottom: 1px dashed #fff;
}
.cx-cf7 .wpcf7-spinner {
display: block;
}
.cx-cf7 p {
margin: 0;
}
.cx-cf7 .form__btn {
font-size: 16px !important;
text-align: center !important;
width: 232px !important;
height: 52px !important;
text-align: center !important;
padding: 0 !important;
}
.cx-cf7 .check-block .wpcf7-list-item {
margin: 0;
}
.cx-cf7 .check-block .wpcf7-list-item .mail:placeholder {
color: blue;
}
.cx-cf7 .check-block .wpcf7-list-item label {
display: flex;
text-align: left;
font-size: 12px !important;
margin-bottom: 0;
align-items: center;
gap: 6px;
}
.cx-cf7 .check-block .wpcf7-list-item label .label-check {
height: auto;
width: auto !important;
}
.cx-cf7 .form__contacts-text {
width: 340px !important;
height: 131px !important;
padding-bottom: 90px !important;
}
.cx-cf7.form__comblock .form-comblock__btn {
width: 165px;
text-align: center;
padding: 9px 16px;
border-radius: 50px;
border: 3px solid #0400FF;
background: #0400ff;
color: #fff;
}
.cx-cf7.form__comblock .form-comblock__btn:hover {
border: 3px solid #0400FF;
background-color: transparent;
color: #0400FF;
}
.cx-cf7.form__comblock .wpcf7 form.sent .wpcf7-response-output {
color: #000;
}
.cx-cf7.form__comblock .check-block .wpcf7-list-item label {
align-items: baseline;
color: blue;
}
.cx-cf7.form__comblock .check-block .wpcf7-list-item label a, .cx-cf7.form-certificate__form .check-block .wpcf7-list-item label a {
color: #007bff;
}
.cx-cf7.form__comblock .check-block .wpcf7-list-item label .label-check {
margin: 0 !important;
}
.cx-cf7.form-certificate__form .check-block .wpcf7-list-item label {
color: inherit;
}
@media (max-width: 575px) {
.cx-cf7 .form__contacts-text {
height: 125px !important;
width: 100% !important;
}
}
.cx-cf7 .privacy-box-modal label {
color: #000;
}
.cx-cf7 .privacy-box-modal label a {
color: #005c9e;
}
.cx-cf7 .privacy-box-modal .wpcf7-list-item {
margin: 0;
}
.cx-cf7 .btn-remodal {
margin-top: 16px;
}
.cx-cf7 + .wpcf7-response-output {
color: #000;
}
.banner-item__subtitleWM{
font-size: 22px;
color: #fff;
margin-bottom: 20px;
width: 55%;
}
@media screen and (max-width: 575px) {
.banner-item__subtitleWM{
font-size: 16px;
width: 100%;
margin-bottom: 10px;
}
}
.banner-item__smalltext{
font-size: 22px;
color: #fff;
margin-bottom: 60px;
width: 55%;
}
@media screen and (max-width: 575px) {
.banner-item__smalltext{
font-size: 16px;
width: 100%;
margin-bottom: 10px;
}
}
@media screen and (max-width: 575px) {
.banner-item{
height: 500px;
}
}
.header .contacts__phone {
color: #fff;
font-weight: bold;
font-size: 25px;
}
.menu__link-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.menu__link-icon-wrapper {
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 0 5px;
margin-left: 5px;
}
.menu__link-icon {
transition: transform 0.3s ease;
}
.menu__link-icon-down {
transform: rotate(90deg);
} @media (max-width: 768px) {
.menu__link-wrapper {
padding: 10px 0;
}
}
.comisya{
padding: 90px 0 70px 0;
background: linear-gradient(117.52deg, #0400FF 21.05%, #40FF40 111.74%);
color: #fff;
display: flex;
flex-direction: column;
align-items:center;
}
.comisya-link {
color:#fff;
font-weight: 600;
white-space: nowrap;
}
.comisya-link:hover {
color:#30b876;
}
.comisya-flex{
display: flex;
flex-direction: column;
align-items:center;
}
@media screen and (max-width: 768px) {
.comisya-p{
text-align:center; }
}
@media screen and (max-width: 768px) {
.center-margin{
margin-left:50%;
margin-right: 50%;
}
}
@media screen and (max-width: 575px) {
.instructors__rounds{
display:none; }
}
}
.contact-flex{
display: flex;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.contact-flex{
flex-direction: column;
}
}
form .contact-flex,
.wpcf7-form .contact-flex {
display: flex;
justify-content: space-between;
}
.check-block {
align-items: center;
justify-content: center;
}
.justify-center{
display: flex;
justify-content: space-between;
}
.map__wrapper{
padding:70px 0;
background: linear-gradient(117.52deg, #0400FF 21.05%, #40FF40 111.74%);
}
.container.map-flex {
display: flex;
align-items: flex-start; 
}
@media (max-width: 1400px) {
.container.map-flex {
flex-direction: column;
}
}
.map {
width: 40%;
}
@media screen and (max-width: 1400px) {
.map {
width: 100%;
}
}
.map-gde {
width: 30%;
}
@media screen and (max-width: 1400px) {
.map-gde {
margin-top:40px;
width: 100%;
}
}
.embed-container.maps {
position: relative;
padding-bottom: 56.25%; 
height: 0;
overflow: hidden;
}
@media screen and (max-width: 1400px) {
.embed-container.maps {
height: 400px;
}
}
.embed-container.maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.map-logo {
width: 30%;
display: flex;
}
@media screen and (max-width: 1400px) {
.map-logo {
display: none;
}
}
.map-logo img {
max-width: 100%;
height: auto;
}
.title-white{
color:#fff;
}
.align-end{
text-align: end;
}
@media screen and (max-width: 1400px) {
.align-end{
text-align: center;}
}
.map__address{
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 134%;
color: #FFFFFF;
list-style-type: none;
padding-left: 0;
}
@media screen and (max-width: 1400px) {
.map__address {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
height: 135px;
font-size: 12px;
}
}
@media screen and (max-width: 768px) {
.map__address {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
}
@media screen and (max-width: 575px) {
.wp-block-image.size-full{
display:flex;
justify-content:center;}
}
figure {
margin: 0 auto !important;
}
.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
display: flex !important;
flex-direction: column !important;
}
.btn-flex {
display: flex;
justify-content: center;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.remodal__item.putName.uslugi-title{
}
.modal-form{
display: none; 
position: fixed; 
top: 50%; 
left: 50%; 
transform: translate(-50%, -50%);
background: white;
padding: 20px; 
z-index: 9999;
box-shadow: 0 24px 38px rgba(0, 0, 0, 0.14), 
0 9px 46px rgba(0, 0, 0, 0.12), 
0 11px 15px rgba(0, 0, 0, 0.2);
border-radius: 16px;
}
@media screen and (max-width: 575px) {
.modal-form{
width:100%;}
}
.video-box{
position: relative; 
padding-top: 144%; 
width: 100%
}
.video-iframe{
position: absolute;
width: 100%; 
height: 100%; 
top: 0; 
left: 0;
}
.rating__prev:hover,
.rating__next:hover {
background: #0400FF;
}
.rating__prev:hover img,
.rating__next:hover img {
filter: brightness(0) invert(1);
}
.reviews-prev {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 48%;
left: 5%;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
.reviews-next {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
top: 48%;
right: 5%;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: transparent;
border: 2px solid #FFFFFF;
cursor: pointer;
}
@media screen and (max-width: 768px) {
.reviews-item.slider-item {
width: 100%;
max-width: 290px; 
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
margin-left:48px;
}
}
@media screen and (max-width: 575px) {
.rating__prev,
.rating__next{
display:none; }
}
.page-edu.single-page{
padding-top:70px;
margin: 0 0;}
.details{
padding:70px 0;
}
.detail-left img{
width:200px;
border-radius: 12px;
}
.details-flex{
display: flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
}
@media screen and (max-width: 1000px) {
.details-flex{
flex-direction:column;
gap:40px;
}
}
.details-right{
max-width:250px;
}
.details-wrapper{
display:flex;
justify-content:space-between;
gap:20px
}
@media screen and (max-width: 575px) {
.details-wrapper{
flex-direction:column;
align-items:center;
}
.detail-left {
display:flex;
justify-content:center;
}	  
.details-right{
max-width:100%;
}
}
.details-title{
max-width:416px;
font-weight: 700;
font-size: 24px;
line-height: 150%;
color: #0400FF;
margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
.details-title{
font-size: 20px;
text-align:center;
}
}
.details-item{
box-shadow: 0 0 16px 0.1px #D3D3D3;
border-radius: 12px;
padding: 20px;
}
.vosstanovlenye-list{
list-style: none;
padding-left: 0;
}
.vosstanovlenye-list li {
padding-left: 1em;
position: relative;
}
.vosstanovlenye-list li::before {
content: "•";
color:#0400FF;
position: absolute;
left: 0;
font-size: inherit;
}
.wpcf7.form.sent.wpcf7-response-output{
font-size: 20px;
font-weight: 700;
}
.wpcf7-response-output{
font-size: 25px;
font-weight: 700;
}
.exam {
display:flex;
justify-content:center;
align-items:center;
position: relative;
width: 100%;
padding-top: 200px;
height:100vh;
}
.filial-title{
font-weight: 700;
font-size: 40px;
line-height: 47px;
margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.filial-title{
font-size: 32px;
}
}
@media screen and (max-width: 575px) {
.filial-title{
font-size: 23px;
}
}
.license__intro-wrapper{
width: 100%;
padding-top: 70px;
}
.oferta-title{
font-weight: bold;
font-size: 60px;
line-height: 71px;
color: #fff;
}
@media screen and (max-width: 1200px) {
.oferta-title{
font-size: 36px;
}
}
@media screen and (max-width: 768px) {
.oferta-title{
font-size: 22px;
line-height: normal;
}
}
.oferta-bg-section {
height: auto;
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
position: relative;
width: 100%;
padding: 268px 0 70px 0;
}
@media screen and (max-width: 768px) {
.oferta-bg-section {
padding: 200px 0 70px 0;
}
}
.teachers-next,
.teachers-prev {
background: none !important;
width: 48px !important;
height: 48px !important;
margin-top: 0 !important;
transform: translateY(-50%) !important;
}
.teachers-next::after,
.teachers-prev::after {
display: none !important; 
}
.teachers-next img,
.teachers-prev img {
display: block;
width: 12px;
height: 12px;
object-fit: contain;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.teachers-next,
.teachers-prev {
background: transparent;
border-radius: 50%;
border: 2px solid blue;
transition: all 0.3s ease;
} .teachers-next {
right: 10px;
}
.teachers-prev {
left: 10px;
} .swiper-button-next,
.swiper-button-prev { opacity: 1;
} .teachers-swiper .swiper-button-next:not(.teachers-next),
.teachers-swiper .swiper-button-prev:not(.teachers-prev) {
display: none;
}
.students-review{
position:relative;	
}
.rev-next,
.rev-prev {
background: none !important;
width: 48px !important;
height: 48px !important;
margin-top: 0 !important;
transform: translateY(-50%) !important;
background: transparent;
border-radius: 50%;
border: 2px solid blue;
transition: all 0.3s ease;
}
.rev-next::after,
.rev-prev::after {
display: none !important; 
}
.rev-next img,
.rev-prev img {
display: block;
width: 12px;
height: 12px;
object-fit: contain;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
} .rev-next {
right: 10px;
}
.rev-prev {
left: 10px;
} .students-review-swiper .swiper-button-next:not(.rev-next),
.students-review-swiper .swiper-button-prev:not(.rev-prev) {
display: none;
} .rev-next:hover,
.rev-prev:hover {
background-color: rgba(0, 0, 255, 0.1);
transform: translateY(-50%) scale(1.1);
cursor: pointer;
}
.detail-left{
display:flex;
flex-direction:column;
}
.promo-banner-wrapper{
background: linear-gradient(108.19deg, #0400FF 16.5%, #40FF40 107.89%);
background-size: cover;
}
.exam-title{
font-weight: bold;
font-size: 51px;
line-height: 71px;
color: #fff;
margin-bottom: 20px;
width: 55%;
}
.exam_intro-descr{
font-size: 22px;
color: #fff;
margin-bottom: 60px;
width: 55%;
}
@media screen and (max-width:1700px) {
.exam-title{
width: 100%;
font-size: 40px;
}
.exam_intro-descr{
width: 100%;
}
}
.school-item.swiper-slide{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
@media screen and (max-width: 1200px) {
.cx-unique-wrapper .promo__intro {
text-align: center;
width: 85%;
}
} .smart-captcha {
min-height: 120px !important;
height: auto !important;
overflow: visible !important;
} .smart-captcha iframe {
height: auto !important;
min-height: 120px !important;
overflow: visible !important;
} .smart-captcha iframe[data-testid="checkbox-iframe"],
.smart-captcha iframe[data-testid="backend-iframe"] {
height: auto !important;
min-height: 120px !important;
overflow: visible !important;
}
.needs-btn{
display:flex;
justify-content: center;
}
.test-photo img{
width:500px;
}
@media screen and (max-width: 575px) {
.test-photo img{
width:100%;
}
}
.instructors__cart img{
width: 315px;
height: auto;
object-fit: cover;
object-position: top;
}
.header-tg img{
width:30px;
height:30px;
}
.header-tg,
.new__phone-box{
display:none;
}
@media screen and (max-width: 1200px) {
.header-tg,
.new__phone-box{
display:block;
}
}
.df{
display:flex;
justify-content:space-between;
gap:20px;
}
.fz14{
font-size:14px;
}
.callnew__btn{
display: flex;
justify-content: center;
align-items: center;
margin-top: 51px;
width: 211.18px;
height: 55px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 48.2143px;
color: #fff ! important;
font-size:14px;
border: 3px solid #30b876;
background: #30b876;
}
.callnew__a{
color:#fff ! important;
}
.btn-product-flex{
display: flex;
flex-direction:column;
justify-content:center;
align-items:flex-start;
}
@media screen and (max-width: 768px) {
.btn-product-flex{
align-items:center;
}
}