@font-face {
    font-family: "Helvetica Neue";
    src: url(fonts/HelveticaNeue-Roman.otf) format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url(fonts/HelveticaNeue-Medium.otf) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url(fonts/GraphikLCG-Bold.woff2) format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
}
p {
    margin-bottom: 0;
}
ul,
ol {
    padding-left: 0;
}
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 400;
    overflow-x: hidden;
}
.ui-container {
    margin: 0 auto;
}
@media (max-width: 767.9px) {
    .ui-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 768px) {
    .ui-container {
        width: 696px;
    }
}
@media (min-width: 1024px) {
    .ui-container {
        width: 928px;
    }
}
@media (min-width: 1201px) {
    .ui-container {
        width: 1200px;
    }
}
.header {
    color: #000;
    padding: 20px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}
.logo img {
    width: 173px;
    height: 35px;
    margin-right: 30px;
}
.nav-main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list-item {
    position: relative;
    margin-right: 15px;
}
.nav-list-item::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #fff0;
    pointer-events: none;
    z-index: 5;
}
.nav-list-item:hover::before {
    pointer-events: auto;
}
.nav-list-item:last-child {
    margin-right: 0;
}
.nav-list-item button {
    font-size: 16px;
    padding: 9px 13px;
    border: none;
    background-color: #fff;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.4s;
}
.nav-list-item button:hover {
    background-color: #f4f5fe;
}
.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
}
.header-actions {
    display: flex;
    align-items: center;
    margin-right: 25px;
}
.header-actions-address {
    position: relative;
}
.header-actions-address::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #fff0;
    pointer-events: none;
    z-index: 5;
}
.header-actions-address:hover::before {
    pointer-events: auto;
}
.cta-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 16px;
    padding: 9px 15px;
    margin-right: 40px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
    .nav-dropdown-city {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }
}
.cta-button:hover {
    background-color: #f4f5fe;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    padding: 16px 12px;
    border-radius: 10px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.nav-dropdown li {
    margin-bottom: 8px;
    list-style-type: none;
}
.nav-dropdown li a {
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.nav-dropdown li a:hover {
    background-color: #f4f5fe;
}
.nav-dropdown li:last-child {
    margin-bottom: 0;
}
.nav-dropdown a {
    color: #000;
    text-decoration: none;
    display: block;
}
.nav-list-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-actions-address:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.burger-menu-icon {
    display: none;
    background-color: #fff0;
    border: none;
}
.mobile-menu {
    display: none;
}
.social-links-mobile {
    display: none;
    margin-right: 15px;
}
.social-links-mobile a {
    text-decoration: none;
}
.title-center-h3 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}
@media (max-width: 1200px) {
    .title-center-h3 {
        font-size: 28px;
    }
    .header {
        justify-content: space-between;
    }
    .nav-menu {
        display: none;
    }
    .header-actions {
        display: none;
    }
    .social-links-mobile {
        display: block;
    }
    .burger-menu-icon {
        display: block;
    }
    .mobile-menu {
        display: none;
        width: 100%;
        height: calc(100vh - 150px);
        background-color: #fff;
        z-index: 99;
        overflow-y: auto;
        position: fixed;
        top: 150px;
        left: 0;
        right: 0;
    }
    body.menu-open {
        overflow: hidden;
    }
    .mobile-main-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .m-nav-dropdown li {
        list-style-type: none;
        font-size: 16px;
    }
    .mobile-main-menu li a {
        text-decoration: none;
        color: #000;
        font-size: 18px;
    }
    .m-nav-list-item-btn {
        font-size: 18px;
        font-weight: 500;
        padding: 9px 15px;
        min-height: 52px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .m-nav-list-item-btn:hover {
        background-color: #f4f5fe;
        border-radius: 10px;
    }
    .m-nav-dropdown li {
        padding: 12px 15px;
    }
    .m-nav-list-item {
        position: relative;
        padding-bottom: 11px;
    }
    .m-nav-list-item::after {
        content: "";
        background: #e0e0e0;
        bottom: 0;
        left: 0;
        height: 1px;
        position: absolute;
        width: calc(100% - 30px);
        margin-right: 15px;
        margin-left: 15px;
    }
    .m-nav-list-item:last-child::after {
        display: none;
    }
    .m-nav-dropdown {
        transition: opacity 0.3s ease, max-height 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    .m-nav-dropdown.show {
        max-height: 500px;
    }
}
.footer {
    background-color: #000;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 64px;
}
.footer-tel {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
}
.footer-tel:hover {
    opacity: 0.7;
}
.footer-col {
    display: flex;
    align-items: top;
}
.footer-col-app {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-col a {
    text-decoration: none;
    color: #fff;
}
.social-icon {
    text-decoration: none;
    margin-right: 8px;
    transition: opacity 0.3s;
}
.social-icon:hover {
    opacity: 0.7;
}
.footer-underline {
    position: relative;
    padding-bottom: 16px;
}
.footer-underline::after {
    content: "";
    background: #fff;
    opacity: 0.1;
    bottom: 0;
    left: 0;
    height: 1px;
    position: absolute;
    width: calc(100% - 30px);
    margin-right: 15px;
    margin-left: 15px;
}
.footer-cookie {
    font-size: 12px;
    opacity: 0.65;
}
.footer-cookie a {
    color: inherit;
}
.footer-cookie a:hover {
    text-decoration: none;
}
.footer-app-btn {
    width: 202px;
    height: 44px;
    transition: opacity 0.3s;
}
.footer-app-btn:hover {
    opacity: 0.7;
}
@media (max-width: 768px) {
    .installment-plan-con {
        display: none;
    }
    .footer-col {
        margin-bottom: 40px;
    }
    .footer-sobaka {
        margin-bottom: 40px;
    }
    .more-teachers-carousel-card-razm {
        width: 100% !important;
    }
}
@media (max-width: 1200px) {
    .footer-social-col {
        margin-top: 40px;
    }
}
.banner-container {
    width: 1400px;
    padding-bottom: 160px;
    margin: 0 auto;
}
.banner-block {
    width: 100%;
    height: 671px;
    border-radius: 16px;
    background-image: url(../images/banner-img.jpeg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    position: relative;
    overflow: hidden;
}
.banner-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 43%;
    height: 100%;
    background-color: #0e26ff;
    border-radius: 57px;
    z-index: 1;
}
.banner-text {
    padding-left: 58px;
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 40%;
}
.banner-text-subtitle {
    margin-top: 93px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
}
.banner-text-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 45px;
    line-height: 60px;
}
.director-img img {
    border-radius: 16px;
}
.banner-text-btn {
    padding: 18px 58px;
    background-color: #fff;
    color: #0e26ff;
    border-radius: 16px;
    border: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s, background-color 0.3s;
}
.banner-text-btn:hover {
    background-color: #000;
    color: #fff;
}
.banner-mini-cards {
    width: 80%;
    position: relative;
    z-index: 2;
    margin: 125px auto 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}
.banner-mini-card {
    flex: 1 1 calc(25% - 8px);
    background-color: #fff;
    border-radius: 8px;
    min-height: 112px;
    padding: 20px;
}
.banner-mini-card.yellow {
    background-color: #fff705;
}
.banner-mini-card-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}
.banner-mini-card-text {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
@media (max-width: 1450px) {
    .banner-container {
        width: 1200px;
    }
    .banner-mini-card-title {
        font-size: 20px;
    }
    .banner-mini-card-text {
        font-size: 12px;
    }
}
.banner-container-mobile {
    padding: 0 7px 64px;
    display: none;
}
@media (max-width: 1200px) {
    .banner-container {
        display: none;
    }
    .banner-container-mobile {
        display: block;
    }
}
.banner-container-mobile-con {
    padding: 16px 17px;
    background-color: #0e26ff;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}
.banner-container-mobile-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
}
.banner-container-mobile-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}
.banner-container-mobile-img {
    width: 100%;
    height: 343px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.banner-container-mobile-img img {
    width: 145%;
    height: 145%;
    object-fit: cover;
    position: absolute;
    top: -40%;
    left: -30%;
}
.banner-mini-card.mobile {
    width: 100%;
    flex: none;
    background-color: #fff;
    border-radius: 8px;
    min-height: 0;
    text-align: left;
    padding: 20px;
    margin-top: 8px;
}
.banner-mini-card.mobile.first {
    margin-top: 18px;
}
.banner-mini-card.yellow {
    background-color: #fff705;
}
.banner-mini-card-title.mobile {
    font-size: 24px;
    font-weight: 400;
    color: #000;
}
.banner-mini-card-text.mobile {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.features-container {
    padding: 51px 0;
    background-color: #f4f5fe;
}
.features-row {
    display: flex;
    align-items: center;
}
.features-img {
    margin-left: 77px;
}
.features-img img {
    width: 321px;
    height: auto;
}
.features-title {
    width: 55%;
}
.features-title h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 32px;
}
.features-title p {
    font-size: 24px;
    font-weight: 400;
}
.features-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 31px;
}
.features-card {
    flex: 1 1 calc(50% - 36px);
    box-sizing: border-box;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .features-card-row {
        padding: 0 0;
    }
    .features-card {
        flex: 1 1 100%;
    }
}
.features-card p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}
.features-card span {
    font-size: 20px;
    font-weight: 500;
}
.features-row-mobile {
    display: none;
}
@media (max-width: 768px) {
    .features-row {
        display: none;
    }
    .features-row-mobile {
        display: block;
        text-align: left;
    }
    .features-img {
        margin-left: 0;
    }
    .features-img img {
        max-width: 321px;
        height: auto;
    }
    .features-title {
        width: 100%;
    }
}
.prices-con {
    margin-top: 152px;
}
.prices-con h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 41px;
}
.prices-filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 53px;
    border-radius: 10px;
}
.filter-btn {
    padding: 12px 10px;
    border: 1px solid #000;
    border-radius: 16px;
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}
.filter-btn:hover {
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
}
.filter-btn.active {
    background-color: #0e26ff;
    color: #fff;
    border-color: #0e26ff;
}
.prices-card {
    height: 576px;
    border-radius: 8px;
    padding: 27px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.prices-card.min::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d0fa9b;
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
    .prices-card:hover::before {
        transform: scale(1.02);
    }
}
#carousel1 .owl-stage {
    margin: 10px;
    margin-right: 20px;
}
#carousel1 .owl-stage-outer {
    margin-left: -20px;
}
@media screen and (max-width: 768px) {
    #carousel1 .owl-stage {
        margin-right: 0;
        margin: 0;
    }
    #carousel1 .owl-stage-outer {
        margin-left: 0;
    }
}
.prices-card.standart::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #77cbfa;
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}
.prices-card.online::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b3d6ff;
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}
.prices-card.max::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d2effc;
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}
.price-rate {
    font-size: 18px;
    font-weight: 400;
    margin-top: 23px;
    margin-bottom: 15px;
}
.price-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.75;
}
.sub-price-card {
    width: 100%;
    background-color: #e8fdcd;
    border-radius: 15px;
    min-height: 187px;
    padding: 23px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}
.sub-price-card.standart {
    background-color: #d2effc;
}
.sub-price-card.online {
    background-color: #d9ebff;
}
.sub-price-card.max {
    background-color: #e9f7fe;
}
.price-btns-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.price-btn-second {
    flex: 1 1 calc(50% - 10px);
    border: 1px solid #000;
    border-radius: 10px;
    background-color: #fff0;
    color: #000;
    text-align: center;
    padding: 15px 18px;
    transition: background-color 0.3s, color 0.3s;
}
.price-btn-primary,
.price-btn-primary-pay {
    flex: 1 1 calc(50% - 10px);
    border: 1px solid #0e26ff;
    border-radius: 10px;
    background-color: #0e26ff;
    color: #fff;
    text-align: center;
    padding: 15px 18px;
    transition: background-color 0.3s, color 0.3s;
}
.price-btn-second:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
.price-btn-primary:hover,
.price-btn-primary-pay:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
.price-title-img img {
    max-width: 109px;
    height: auto;
}
.price-title-img {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.sub-price-img img {
    width: 75px !important;
    height: auto;
}
.sub-price-img {
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.old-price {
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
}
.current-price {
    font-size: 32px;
    font-weight: 500;
}
.first-pay {
    font-size: 18px;
    font-weight: 400;
}
.sub-price-img {
    align-items: end;
    flex: 1 1 40%;
}
.sub-price-card {
    flex-wrap: wrap;
}
@media (max-width: 500px) {
    .prices-card {
        width: 100%;
        border-radius: 8px;
        padding: 23px 22px;
    }
    .price-title {
        font-size: 18px;
        line-height: 28px;
    }
    .price-title-img img {
        margin-left: 20px;
        width: 74px !important;
        height: auto;
    }
    .old-price {
        font-size: 16px;
    }
    .current-price {
        font-size: 28px;
    }
    .first-pay {
        font-size: 16px;
    }
    .sub-price-img img {
        width: 63px !important;
        height: auto;
    }
    .sub-price-card {
        padding: 20px 15px;
        min-height: 0;
    }
    .price-btns-row button {
        flex: 1 1 100%;
        padding: 15px;
    }
    .price-btns-row {
        flex-wrap: wrap;
    }
    .price-rate {
        margin-top: 0;
    }
}
.owl-prices-nav {
    display: flex;
    align-items: center;
    margin-top: 24px;
    gap: 23px;
}
.owl-dots {
    display: none;
}
.why-choose-us {
    padding-top: 152px;
    padding-bottom: 90px;
}
.why-choose-us-con {
    display: flex;
    gap: 45px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.why-choose-us-text,
.why-choose-us-img {
    flex: 1 1 calc(50% - 22.5px);
    box-sizing: border-box;
}
.why-choose-us-img-mobile {
    display: none;
}
.why-choose-us-title-mobile {
    display: none;
    font-size: 40px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .why-choose-us-title-mobile {
        font-size: 28px;
    }
    .mobile-special-dis {
        display: none;
    }
}
.why-choose-us-text h3 {
    font-size: 40px;
    font-weight: 500;
}
.why-choose-us-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.why-choose-us-faq-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.why-choose-us-faq {
    padding: 24px 20px;
    background-color: #f4f5fe;
    border-radius: 16px;
}
.why-choose-us-faq.first {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: 56px;
}
.why-choose-us-faq.mid {
    margin-top: 5px;
    border-radius: 0;
}
.why-choose-us-faq.last {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    margin-top: 5px;
}
.why-choose-us-faq-answer {
    background-color: #f7d9c4;
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    padding: 0 14px;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s, margin-top 0.3s;
    max-height: 0;
    overflow: hidden;
}
.why-choose-us-faq-question {
    font-size: 18px;
    font-weight: 500;
}
.why-choose-us-faq-answer.show {
    max-height: 500px;
    padding: 12px 14px;
    margin-top: 20px;
}
.why-choose-us-faq-arrow {
    transition: transform 0.4s ease;
}
.why-choose-us-faq-arrow.rotated {
    transform: rotate(-180deg);
}
@media (max-width: 1200px) {
    .why-choose-us-con {
        gap: 18px;
    }
    .why-choose-us-text,
    .why-choose-us-img-mobile {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    .why-choose-us-img-mobile {
        display: block;
    }
    .why-choose-us-title-mobile {
        display: block;
    }
    .why-choose-us-img {
        display: none;
    }
    .why-choose-us-img img {
        width: 100%;
        height: auto;
    }
    .why-choose-us-img-mobile img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    .why-choose-us-text h3 {
        display: none;
    }
    .why-choose-us-faq.first {
        margin-top: 0;
    }
}
.banner-free-lesson {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-color: #0e26ff;
    border-radius: 16px;
    padding: 30px 76px 30px 35px;
    color: #fff;
}
.banner-free-lesson-img {
    flex: 1 1 45%;
}
.banner-free-lesson-img img {
    width: 375px;
    height: auto;
}
.banner-free-lesson-text {
    flex: 1 1 55%;
}
.banner-free-lesson-img-mobile {
    display: none;
}
@media (max-width: 1200px) {
    .banner-free-lesson-img img {
        width: 300px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .banner-free-lesson {
        padding: 32px 20px 20px;
        align-items: start;
    }
    .banner-free-lesson {
        flex-direction: column;
        gap: 20px;
    }
    .banner-free-lesson-img {
        display: none;
    }
    .banner-free-lesson-text {
        flex: 1 1 100%;
        width: 100%;
    }
    .banner-free-lesson-btn {
        width: 100%;
    }
    .banner-free-lesson-img-mobile {
        text-align: center;
        display: block;
    }
    .banner-free-lesson-img-mobile img {
        width: 240px;
        height: auto;
    }
}
.banner-free-lesson-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 40px;
}
.banner-free-lesson-ul ul {
    list-style-type: none;
}
.banner-free-lesson-ul ul li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}
.banner-free-lesson-ul ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(60%);
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}
.banner-free-lesson-ul ul li:last-child {
    margin-bottom: 0;
}
.banner-free-lesson-btn {
    padding: 18px 50px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    border: none;
    margin-top: 40px;
    transition: background-color 0.3s, color 0.3s;
}
.banner-free-lesson-btn:hover {
    background-color: #000;
    color: #fff;
}
.best-teachers-con {
    padding-top: 152px;
    padding-bottom: 90px;
}
.best-teachers-con h3 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 51px;
}
.why-choose-us-faq.first.best-teachers {
    margin-top: 0;
    border-bottom: 1px solid #d6d6d6;
}
.why-choose-us-faq.mid.best-teachers {
    border-bottom: 1px solid #d6d6d6;
    margin-top: 0;
}
.why-choose-us-faq.last.best-teachers {
    border-bottom: 1px solid #d6d6d6;
    margin-top: 0;
}
.why-choose-us-faq-answer.best-teachers {
    background-color: #fff9d5;
}
.why-choose-us-text.best-teachers {
    flex: 1 1 calc(33% - 22.5px);
    box-sizing: border-box;
}
.why-choose-us-img.best-teachers {
    flex: 1 1 calc(66% - 22.5px);
    box-sizing: border-box;
}
@media (max-width: 1200px) {
    .best-teachers-con h3 {
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 18px;
    }
    .why-choose-us-text.best-teachers,
    .why-choose-us-img.best-teachers {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .best-teachers-con h3 {
        font-size: 28px;
    }
}
.more-teachers-con {
    padding-bottom: 152px;
}
.more-teachers-btn {
    width: 270px;
    height: 56px;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
    transition: background-color 0.3s;
}
.more-teachers-btn:last-child {
    margin-bottom: 0;
}
.more-teachers-btn:hover {
    background-color: #d6d6d6;
}
.more-teachers-btn img {
    margin-right: 17px;
}
.more-teachers-text-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.more-teachers-text h3 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 28px;
}
.more-teachers-text p {
    font-size: 24px;
    font-weight: 400;
}
.more-teachers-text {
    margin-bottom: 54px;
}
.more-teachers-carousel-card {
    height: 489px;
    background-color: #000;
    border-radius: 8px;
    color: #fff;
    padding: 32px 35px 32px 20px;
}
.more-teachers-carousel-card-name-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}
.more-teachers-carousel-card-name-row h4 {
    font-size: 20px;
    font-weight: 500;
}
.profile-picture {
    position: relative;
    width: 100px;
    height: 100px;
}
.profile-picture img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.rating-oval {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 22px;
    background-color: #0e26ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}
.star {
    font-size: 14px;
    color: #fff;
    margin-right: 4px;
}
.rating {
    font-size: 14px;
    color: #fff;
}
.more-teachers-profile-property-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.more-teachers-profile-property-row:last-child {
    margin-bottom: 40px;
}
.more-teachers-profile-property-skill {
    font-size: 18px;
    font-weight: 500;
}
.more-teachers-profile-property-value {
    font-size: 18px;
    display: flex;
    font-weight: 500;
}
.more-teachers-profile-property-value button {
    background-color: #fff0;
    font-size: 16px;
    padding: 0 6px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}
.more-teachers-carousel-card-btns button:nth-of-type(1) {
    width: 100%;
    text-align: center;
    background-color: #fff0;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    transition: opacity 0.3s;
}
.more-teachers-carousel-card-btns button:nth-of-type(1):hover {
    opacity: 0.7;
}
.more-teachers-carousel-card-btns button:nth-of-type(2) {
    width: 100%;
    text-align: center;
    background-color: #0e26ff;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 18px 21px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}
.more-teachers-carousel-card-btns button:nth-of-type(2):hover {
    background-color: #000;
    color: #fff;
}
.more-teachers-btns.mobile {
    display: none;
}
@media (max-width: 768px) {
    .more-teachers-btns {
        display: none;
    }
    .more-teachers-text {
        margin-bottom: 18px;
    }
    .more-teachers-btns.mobile {
        display: block;
        margin-top: 36px;
    }
    .more-teachers-btns.mobile button,
    .more-teachers-btns.mobile a {
        width: 100%;
    }
    .more-teachers-text h3 {
        font-size: 28px;
    }
}
.how-to-study-con {
    padding-bottom: 152px;
}
.how-to-study-con h3 {
    font-size: 48px;
}
.more-teachers-btn.how-to-study {
    padding: 16px 33px;
    background-color: #ebebeb;
    color: #000;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 0;
    transition: background-color 0.3s;
}
.more-teachers-btn.how-to-study:hover {
    background-color: #b6b5b5;
}
.how-to-study-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.how-to-study-img {
    flex: 1 1 calc(60% - 10px);
}
.how-to-study-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.how-to-study-text {
    flex: 1 1 calc(40% - 10px);
    background-color: #f4f5fe;
    border-radius: 16px;
    padding-left: 48px;
    padding-right: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.how-to-study-card {
    margin-top: 48px;
}
.how-to-study-subtitle {
    margin-bottom: 23px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ebebeb;
    color: #000;
    border-radius: 20px;
    border: none;
}
.how-to-study-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 23px;
}
.how-to-study-pagination {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}
.how-to-study-current-slide {
    margin: 0 22px;
}
.more-teachers-btn.how-to-study.mobile {
    display: none;
}
@media (max-width: 1024px) {
    .how-to-study-img,
    .how-to-study-text {
        flex: 1 1 100%;
    }
    .how-to-study-card {
        margin-bottom: 22px;
    }
}
@media (max-width: 768px) {
    .more-teachers-btn.how-to-study.mobile {
        display: block;
        margin-bottom: 20px;
    }
    .how-to-study-con h3 {
        font-size: 28px;
    }
    .how-to-study-text {
        padding-left: 23px;
    }
    .clean-classes-title.new p {
        font-size: 25px !important;
    }
}
.clean-cars-con {
    padding-bottom: 152px;
}
.why-choose-us-faq.first.clean-cars {
    margin-top: 0;
}
.more-teachers-btns.clean-cars {
    width: 568px;
}
.why-choose-us-faq-answer.clean-cars {
    background-color: #fff;
}
.more-teachers-text-row.clean-cars {
    flex-wrap: wrap;
}
.more-teachers-text.mobile {
    display: none;
}
.clean-cars-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    overflow: hidden;
}
.clean-cars-img img {
    width: 100%;
    height: auto;
}
.more-teachers-text.clean-cars {
    margin-bottom: 32px;
}
.banner-mini-cards.clean-cars {
    width: 100%;
    margin: 31px 0 0;
    align-items: start;
}
.banner-mini-card.clean-cars {
    background-color: #f4f5fe;
}
@media (max-width: 1024px) {
    .more-teachers-btns.clean-cars {
        width: 100%;
    }
    .more-teachers-text.clean-cars {
        width: 100%;
    }
    .more-teachers-text.clean-cars {
        display: none;
    }
    .more-teachers-text.clean-cars.mobile {
        display: block;
    }
    .more-teachers-text.clean-cars {
        margin-bottom: 22px;
    }
    .more-teachers-text-row.clean-cars {
        margin-bottom: 26px;
    }
    .banner-mini-cards.clean-cars {
        flex-wrap: wrap;
    }
    .banner-mini-card.clean-cars {
        flex: 1 1 calc(50% - 8px);
    }
}
@media (max-width: 768px) {
    .more-teachers-btns.clean-cars {
        display: block;
    }
    .banner-mini-card.clean-cars {
        flex: 1 1 100%;
    }
}
.real-app-con {
    background-color: #000;
    padding: 60px 83px;
    border-radius: 16px;
    color: #fff;
    overflow: hidden;
}
.real-app-title-row {
    display: flex;
    flex-wrap: wrap;
}
.real-app-title-row-text {
    flex: 1 1 60%;
}
.real-app-title-row-img {
    text-align: center;
    flex: 1 1 40%;
}
.real-app-title-row-img img {
    width: 339px;
    height: auto;
}
.real-app-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 54px;
    margin-top: 100px;
    margin-bottom: 51px;
}
.real-app-descrip {
    width: 378px;
    font-size: 16px;
    font-weight: 400;
}
.real-app-title-row-text img,
.real-app-title-row-text video,
.real-app-title-row-text dotlottie-player {
    display: none;
}
.app-owl-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 28px;
}
.app-capability {
    width: 300px;
    height: 309px;
    border-radius: 8px;
    background-color: #ffdf6e;
    padding: 29px 25px;
}
.app-capability-num {
    border-radius: 50px;
    width: 38px;
    height: 38px;
    font-size: 18px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
}
.app-capability-title {
    font-size: 22px;
    font-weight: 500;
    margin-top: 52px;
    color: #000;
}
.app-capability-desc {
    font-size: 16px;
    font-weight: 400;
    margin-top: 45px;
    color: #000;
}
#carousel4.owl-carousel .owl-stage-outer {
    overflow: visible;
}
#carousel4 {
    margin-bottom: 28px;
}
.real-app-current-slide {
    margin-right: 22px;
    margin-left: 22px;
}
.how-to-study-pagination.real-app {
    width: 100%;
    justify-content: center;
}
.more-teachers-btns.real-app {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.more-teachers-btn.real-app {
    margin-bottom: 0;
}
@media (max-width: 1200px) {
    .real-app-con {
        padding: 30px 40px;
    }
}
@media (max-width: 1024px) {
    .real-app-title-row-img {
        display: none;
    }
    .real-app-title {
        margin-top: 20px;
    }
    .real-app-title-row-text img,
    .real-app-title-row-text video,
    .real-app-title-row-text dotlottie-player {
        display: block;
        width: 276px;
        height: auto;
        margin: 0 auto;
    }
    .real-app-title-row {
        display: block;
    }
    .real-app-descrip {
        width: 100%;
    }
    .real-app-title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .more-teachers-btns.real-app {
        display: block;
    }
    .more-teachers-btn.real-app {
        width: 100%;
        margin-bottom: 18px;
    }
    .more-teachers-btn.real-app:last-child {
        width: 100%;
        margin-bottom: 0;
    }
    .app-owl-title {
        font-size: 20px;
        line-height: 22px;
        margin-top: 31px;
    }
}
.clean-classes-con {
    padding-top: 152px;
    padding-bottom: 152px;
}
.clean-classes-title-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
}
.clean-classes-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 55px;
}
.how-to-study-pagination.clean-classes {
    margin-bottom: 0;
}
.clean-classes-card {
    width: 100%;
}
.clean-classes-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
#carousel5 {
    margin-top: 40px;
}
.clean-classes-contacts {
    padding: 32px 32px 28px;
    background-color: #f4f5fe;
    border-radius: 16px;
    margin-top: 8px;
}
.clean-classes-address {
    font-size: 28px;
    font-weight: 400;
}
.clean-classes-hours {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 16px;
}
.how-to-study-pagination.clean-classes.mobile {
    display: none;
}
@media (max-width: 768px) {
    .clean-classes-card {
        min-width: 0;
        width: 100%;
    }
    .clean-classes-special {
        display: none;
    }
    .how-to-study-pagination.clean-classes {
        display: none;
    }
    .how-to-study-pagination.clean-classes.mobile {
        margin-top: 18px;
        display: block;
    }
    .clean-classes-title {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
    }
}
.installment-plan-con {
    padding: 70px 0;
    background-color: #f4f5fe;
}
.installment-plan-section {
    background-color: #fff;
    border-radius: 16px;
    padding: 56px 80px;
    background-repeat: no-repeat;
    background-size: 310px 216px;
    background-position: 40px bottom;
}
.installment-plan-section h3 {
    font-size: 48px;
    font-weight: 500;
}
.installment-plan-section p {
    font-size: 32px;
    font-weight: 500;
}
.installment-plan-columns {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 92px;
}
.installment-plan-column-plan,
.installment-plan-column-pay {
    flex: 1 1 calc(50% - 92px);
}
.custom-radio input[type="radio"] {
    display: none;
}
.custom-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
}
.custom-radio .benefit-label {
    background-color: #fff93d;
    color: #000;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.custom-radio:last-child {
    margin-bottom: 0;
}
.custom-radio .radiomark {
    width: 24px;
    height: 24px;
    background: url(/images/payment-1-unchecked.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
    margin-right: 8px;
}
.custom-radio input[type="radio"]:checked + .radiomark {
    background: url(/images/payment-1-cheched.svg) no-repeat center center;
}
.checked {
    border: 2px solid #0e26ff;
}
.custom-radio2 input[type="radio"] {
    display: none;
}
.custom-radio2 {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}
.custom-radio2:last-child {
    margin-bottom: 0;
}
.custom-radio2 .radiomark {
    width: 24px;
    height: 24px;
    background: url(/images/payment-1-unchecked.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
    margin-right: 8px;
}
.custom-radio2 input[type="radio"]:checked + .radiomark {
    background: url(/images/payment-2-checked.svg) no-repeat center center;
}
.checked {
    border: 2px solid #0e26ff;
}
.installment-plan-column-pay {
    text-align: center;
}
.installment-plan-column-pay button {
    margin-top: 128px;
    background-color: #0e26ff;
    border-radius: 10px;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: none;
    transition: background-color 0.3s;
}
.installment-plan-column-pay button:hover {
    background-color: #000;
}
@media (max-width: 1200px) {
    .custom-radio .benefit-label {
        background-color: #fff93d;
        color: #000;
        padding: 4px 12px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 500;
        position: absolute;
        left: 18px;
        right: auto;
        top: 25px;
        transform: translateY(-50%);
    }
    .custom-radio.benefit {
        padding: 50px 11px 26px 11px;
    }
    .installment-plan-columns {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        gap: 52px;
    }
    .installment-plan-column-plan,
    .installment-plan-column-pay {
        flex: 1 1 calc(50% - 52px);
    }
}
@media (max-width: 1024px) {
    .installment-plan-section {
        padding: 31px 30px;
    }
    .installment-plan-columns {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .installment-plan-column-plan,
    .installment-plan-column-pay {
        flex: 1 1 calc(50% - 15px);
    }
    .installment-plan-section {
        background-size: 210px auto;
        background-position: 40px bottom;
    }
}
@media (max-width: 768px) {
    .installment-plan-column-plan {
        flex: 1 1 100%;
    }
    .installment-plan-column-pay {
        flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 28px;
    }
    .custom-radio2 {
        flex: 1 1 calc(50% - 7px);
    }
    .custom-radio2.small-pad {
        padding: 4px 18px;
    }
    .installment-plan-column-pay button {
        margin-top: 38px;
        width: 100%;
    }
    .installment-plan-section h3 {
        font-size: 28px;
        font-weight: 500;
    }
    .installment-plan-section p {
        font-size: 20px;
        font-weight: 500;
    }
    .installment-plan-section {
        background-image: none;
    }
}
.banner-freeze {
    margin-top: 81px;
    margin-bottom: 152px;
    padding: 14px 73px;
    background-color: #0e26ff;
    border-radius: 16px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.banner-freeze img {
    width: 119px;
    height: auto;
    margin-right: 63px;
}
.banner-freeze p {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 42px;
}
@media (max-width: 1024px) {
    .banner-freeze img {
        margin-right: 0;
    }
    .banner-freeze p {
        font-size: 28px;
        line-height: 42px;
    }
    .banner-freeze {
        padding: 14px 30px;
    }
}
@media (max-width: 768px) {
    .banner-freeze p {
        font-size: 20px;
        line-height: 24px;
    }
    .banner-freeze {
        padding: 14px 14px;
    }
}
.banner-mama {
    margin-top: 81px;
    margin-bottom: 152px;
    padding: 100px 60px;
    background-color: #f4f5fe;
    border-radius: 16px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.banner-mama img {
    width: 462px;
    height: auto;
    margin-right: 79px;
    border-radius: 16px;
}
.banner-mama-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 36px;
}
.banner-mama-desc {
    font-size: 18px;
    font-weight: 400;
    margin-top: 28px;
    line-height: 28px;
}
.banner-mama-text button {
    padding: 18px 49px;
    background-color: #0e26ff;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 28px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}
.banner-mama-text button:hover {
    background-color: #000;
    color: #fff;
}
@media (max-width: 1200px) {
    .banner-mama img {
        width: 350px;
        height: auto;
        margin-right: 59px;
    }
    .banner-mama {
        padding: 70px 40px;
    }
}
@media (max-width: 1024px) {
    .banner-mama img {
        width: 100%;
        height: auto;
    }
    .banner-mama {
        flex-wrap: wrap;
        padding: 26px;
    }
    .banner-mama-text {
        margin-top: 28px;
    }
    .banner-mama-title {
        font-size: 28px;
        line-height: 32px;
    }
    .banner-mama-desc {
        font-size: 16px;
        margin-top: 18px;
        line-height: 22px;
    }
    .banner-mama-text button {
        width: 100%;
    }
}
.real-avto-numbers {
    padding-bottom: 152px;
}
.real-avto-numbers img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.clean-cars-img img {
    border-radius: 16px;
}
.real-avto-numbers-row {
    display: flex;
    margin-top: 50px;
    width: 100%;
}
.real-avto-num {
    flex: 1 1 25%;
    font-size: 24px;
    font-weight: 400;
}
.real-avto-numbers-row.mobile {
    display: none;
}
@media (max-width: 1024px) {
    .real-avto-num {
        flex: 1 1 50%;
        margin-bottom: 18px;
    }
    .real-avto-numbers-row {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .real-avto-num {
        flex: 1 1 100%;
        margin-bottom: 18px;
    }
    .real-avto-numbers-row {
        flex-wrap: wrap;
    }
    .real-avto-numbers-row {
        padding: 0 20px;
    }
    .real-avto-numbers-row.desctop {
        display: none;
    }
    .real-avto-numbers-row.mobile {
        display: block;
    }
}
@media (max-width: 500px) {
    .real-avto-num {
        font-size: 18px;
    }
}
.director-con {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 77px;
}
.director-img,
.director-text {
    flex: 1 1 calc(50% - 77px);
}
.director-img img {
    width: 100%;
    height: auto;
}
.director-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
}
.director-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 46px;
}
.director-text button {
    background-color: #fff705;
    padding: 18px 28px;
    border-radius: 10px;
    border: none;
    margin-top: 98px;
    transition: background-color 0.3s, color 0.3s;
}
.director-text button:hover {
    background-color: #000;
    color: #fff;
}
@media (max-width: 1200px) {
    .director-con {
        gap: 27px;
    }
    .director-img,
    .director-text {
        flex: 1 1 calc(50% - 27px);
    }
    .director-text button {
        margin-top: 48px;
    }
}
@media (max-width: 1024px) {
    .director-title {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
    }
    .director-desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        margin-top: 18px;
    }
    .director-text button {
        margin-top: 28px;
    }
}
@media (max-width: 768px) {
    .director-img,
    .director-text {
        flex: 1 1 100%;
    }
    .director-title {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
    }
    .director-desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        margin-top: 18px;
    }
    .director-text button {
        margin-top: 28px;
    }
}
.reviews-con {
    padding-top: 152px;
    padding-bottom: 152px;
}
.reviews-con-row {
    padding: 20px 0 48px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.reviews-text-column,
.reviews-owl-column {
    flex: 1 1 calc(50% - 32px);
}
.reviews-owl-column {
    background-color: #f4f5fe;
    border-radius: 16px;
    width: 100%;
    min-height: 514px;
    padding: 36px 34px;
    text-align: center;
}
.reviews-text-column h3 {
    font-size: 50px;
    line-height: 54px;
    font-weight: 500;
}
.reviews-text-desc {
    margin-top: 32px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    width: 60%;
}
.reviews-text-desc.first {
    margin-top: 56px;
}
.reviews-text-desc span {
    font-size: 51px;
}
.reviews-owl-title {
    font-size: 25px;
    line-height: 28px;
    font-weight: 400;
}
.reviews-owl-title span {
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid #000;
    border-radius: 6px;
    background-color: #fff0;
}
.reviews-owl-item {
    width: 100%;
    display: flex;
    gap: 37px;
}
#carousel6 {
    margin-top: 46px;
    width: 371px;
}
.reviews-owl-item-main {
    text-align: left;
}
.reviews-owl-item-ava {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
}
.reviews-owl-item-ava img {
    width: 64px !important;
    height: auto;
    margin-right: 21px;
}
.reviews-owl-item-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}
.reviews-owl-item-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 5px;
}
.how-to-study-pagination.reviews.mobile {
    display: none;
}
#customPrevBtn6,
#customNextBtn6 {
    margin-top: 106px;
}
@media (max-width: 1200px) {
    #carousel6 {
        width: 700px;
    }
}
@media (max-width: 1024px) {
    #customPrevBtn6,
    #customNextBtn6 {
        display: none;
    }
    #carousel6 {
        width: 100%;
    }
    .reviews-text-column,
    .reviews-owl-column {
        flex: 1 1 100%;
    }
    .reviews-owl-column {
        margin-top: 62px;
        padding: 32px 25px;
    }
    .how-to-study-pagination.reviews.mobile {
        display: flex;
        margin-top: 18px;
        margin-bottom: 0;
    }
    .reviews-owl-column {
        min-height: 200px;
    }
    .reviews-text-column h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
    }
    .reviews-text-desc {
        margin-top: 32px;
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
        width: 100%;
    }
    .reviews-text-desc span {
        font-size: 32px;
    }
}
.reviews-video-item {
    width: 268px;
    height: 426px;
    border-radius: 20px;
}
.owl-carousel .reviews-video-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.owl-carousel .reviews-video-item .video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}
.play-icon {
    position: absolute;
    top: 15px;
    left: -100px;
    width: 40px;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}
.reviews-video-item span {
    display: inline-block;
    background-color: #fff;
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 16px;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
}
.how-to-study-pagination.real-app.reviews {
    margin-top: 40px;
}
.reviews-current-slide {
    margin: 0 30px;
}
@media (max-width: 768px) {
    .how-to-study-pagination.real-app.reviews {
        justify-content: start;
    }
}
.license-con {
    background-color: #000;
    border-radius: 16px;
    height: 398px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.license-con img {
    width: 463px;
    height: auto;
}
.license-con-img,
.license-con-text {
    flex: 1 1 50%;
}
.license-con-title {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
}
.license-con-desc {
    width: 60%;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin: 31px 0;
    color: #fff;
}
.license-con-text button,
.license-con-text a {
    padding: 18px 27px;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}
.license-con-text button:hover,
.license-con-text a:hover {
    background-color: #000;
    color: #fff !important;
}
@media (max-width: 1024px) {
    .license-con img {
        width: 300px;
        height: auto;
    }
}
@media (max-width: 768px) {
    .license-con-img,
    .license-con-text {
        flex: 1 1 100%;
    }
    .license-con {
        text-align: left;
        height: auto;
        padding: 23px;
    }
    .license-con img {
        width: 100%;
        height: auto;
    }
    .license-con-desc {
        width: 100%;
    }
    .license-con-text button {
        width: 100%;
    }
    .license-con-title {
        margin-top: 49px;
    }
}
.faq-con {
    margin-top: 152px;
    margin-bottom: 152px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.faq-con-main {
    width: 718px;
}
.faq-con-img img {
    width: 364px;
    height: auto;
}
.faq-con-main h3 {
    font-size: 52px;
    font-weight: 500;
    line-height: 54px;
}
.why-choose-us-faq-answer.faq {
    background-color: #e3e2f6;
}
@media (max-width: 1024px) {
    .faq-con-img {
        display: none;
    }
    .faq-con-main {
        width: 100%;
    }
    .faq-con-main h3 {
        margin-bottom: 22px;
    }
}
@media (max-width: 768px) {
    .faq-con-main h3 {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
    }
}
.submit-form-con {
    background-color: #f4f5fe;
    border-radius: 8px;
    padding: 48px 48px 48px 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 152px;
}
.submit-form-text {
    flex: 1 1 55%;
}
.submit-form-form {
    flex: 1 1 45%;
}
.submit-form-title {
    width: 80%;
    font-size: 40px;
    line-height: 42px;
    font-weight: 400;
}
.submit-form-desc {
    margin-top: 25px;
    width: 60%;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}
.submit-form-form input {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 18px 21px;
}
.submit-form-input-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.submit-form-input-row input {
    flex: 1 1 calc(50% - 15px);
}
.submit-form-form span {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    color: #a5a5a5;
}
.submit-form-form span a {
    color: inherit;
}
.submit-form-form button {
    background-color: #0e26ff;
    color: #fff;
    padding: 17px 48px;
    border-radius: 10px;
    margin-bottom: 13px;
    border: none;
    transition: background-color 0.3s;
}
.submit-form-form button:hover {
    background-color: #000;
    color: #fff;
}
input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #9e9e9e;
}
input:focus::placeholder {
    color: #bdbdbd;
}
@media (max-width: 1200px) {
    .submit-form-input-row {
        flex-wrap: wrap;
        margin-bottom: 16px;
    }
    .submit-form-input-row input {
        flex: 1 1 100%;
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .submit-form-text,
    .submit-form-form {
        flex: 1 1 100%;
    }
    .submit-form-title {
        width: 100%;
        font-size: 28px;
        line-height: 32px;
        font-weight: 400;
    }
    .submit-form-desc {
        margin-top: 25px;
        margin-bottom: 18px;
        width: 100%;
        font-size: 18px;
        line-height: 22px;
        font-weight: 400;
    }
    .submit-form-con {
        background-color: #f4f5fe;
        border-radius: 16px;
        padding: 30px 26px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .submit-form-form button {
        width: 100%;
    }
}
.moscow-first-block {
    margin-bottom: 152px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-image: url(/images/moscow-first-mini.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: 400px 200px;
}
.moscow-first-block-text-column {
    width: 50%;
}
.moscow-first-block-gif-column {
    width: 40%;
}
.moscow-first-block-gif-column img {
    width: 100%;
    height: auto;
}
.moscow-first-block-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 32px;
}
.moscow-first-block-desc {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 44px;
}
.moscow-first-block-btns button:first-child {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
    padding: 18px;
    border-radius: 10px;
    transition: background-color 0.3s;
}
.moscow-first-block-btns button:first-child:hover {
    background-color: #000;
}
.moscow-first-block-btns button:nth-child(2) {
    background-color: #fff0;
    color: #000;
    border: 1px solid #000;
    padding: 18px;
    width: 190px;
    border-radius: 10px;
    margin-left: 10px;
    transition: background-color 0.3s, color 0.3s;
}
.moscow-first-block-btns button:nth-child(2):hover {
    background-color: #000;
    color: #fff;
}
.moscow-first-block-btns {
    margin-bottom: 106px;
}
.moscow-first-block-cards {
    width: 90%;
    display: flex;
    gap: 8px;
}
.moscow-first-block-card {
    flex: 0 0 248px;
    background-color: #f4f5fe;
    padding: 16px 17px;
    border-radius: 8px;
}
.moscow-first-mini-img {
    display: none;
}
.moscow-first-block-card span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}
@media (max-width: 1200px) {
    .moscow-first-block {
        background-image: url(/images/moscow-first-mini.png);
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: 350px 250px;
    }
}
@media (max-width: 1024px) {
    .moscow-first-block-gif-column {
        width: 100%;
    }
    .moscow-first-block-btns button:first-child {
        display: none;
    }
    .moscow-first-block-text-column {
        width: 100%;
    }
    .moscow-first-mini-img {
        display: block;
    }
    .moscow-first-mini-img img {
        width: 249px;
        height: 100%;
    }
    .moscow-first-block-text-column {
        text-align: center;
    }
    .moscow-first-block-btns {
        margin-bottom: 18px;
    }
    .moscow-first-block-cards {
        width: 100%;
        margin-bottom: 20px;
    }
    .moscow-first-block-title {
        font-weight: 700;
        font-size: 34px;
        line-height: 36px;
        margin-bottom: 18px;
    }
    .moscow-first-block-desc {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        margin-bottom: 25px;
    }
    .moscow-first-block {
        background-image: none;
    }
}
@media (max-width: 600px) {
    .moscow-first-block-cards {
        flex-wrap: wrap;
    }
    .moscow-first-block-card {
        text-align: left;
        flex: 1 1 100%;
    }
}
.our-offices-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
}
.our-offices-subtitle {
    width: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.our-offices-title-block {
    margin-bottom: 42px;
}
.our-offices-cards {
    width: 1267px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 86px;
    gap: 25px;
}
@media screen and (max-width: 768px) {
    .our-offices-card1 {
        width: 100% !important;
    }
}
.our-offices-card {
    flex: 1 1 calc(25% - 25px);
    background-color: rgb(208 250 155 / 0.4);
    border-radius: 8px;
    padding: 20px 26px 16px 26px;
    min-height: 284px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.our-offices-card-text-1 {
    font-size: 18px;
    font-weight: 500;
}
.our-offices-card-text-2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}
.our-offices-card-text-3 {
    font-size: 16px;
    font-weight: 400;
}
.our-offices-card-text-4 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}
.our-office-card-btn button {
    margin-top: 20px;
    padding: 18px 60px;
    width: 100%;
    background-color: #fff0;
    border: 1px solid #000;
    color: #000;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}
.our-office-card-btn button:hover {
    background-color: #000;
    color: #fff;
}
@media (max-width: 1200px) {
    .our-offices-card {
        flex: 1 1 calc(50% - 25px);
    }
    .our-offices-cards {
        width: 928px;
        gap: 25px;
    }
}
@media (max-width: 1024px) {
    .our-offices-card {
        flex: 1 1 calc(50% - 25px);
    }
    .our-offices-cards {
        width: 696px;
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .our-offices-card {
        flex: 1 1 calc(25% - 25px);
        max-width: initial;
    }
    .our-offices-cards {
        width: auto;
        gap: 25px;
    }
    .our-offices-subtitle {
        width: 100%;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }
    .our-offices-title {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 18px;
    }
    .our-offices-card {
        padding: 20px 31px 16px 31px;
    }
}
.prices-head-banner-main {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}
.prices-head-banner-head {
    flex: 1 1 calc(60% - 8px);
    background-color: #0e26ff;
    color: #fff;
    border-radius: 16px;
    padding: 51px 63px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.prices-head-banner-img {
    flex: 1 1 calc(40% - 8px);
}
.prices-head-banner-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.prices-head-banner-head h1 {
    font-size: 54px;
    line-height: 60px;
    font-weight: 500;
}
.prices-head-banner-head p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}
.prices-head-banner-head img {
    border-radius: 16px;
    display: none;
}
.prices-head-banner-bnts {
    display: flex;
    gap: 18px;
    align-items: center;
}
.prices-head-banner-bnts button:first-child {
    padding: 18px 50px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    border: 1px solid #fff;
    font-size: 18px;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}
.prices-head-banner-bnts button:last-child {
    padding: 18px 15px;
    background-color: #fff0;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #fff;
    font-size: 18px;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}
.prices-head-banner-bnts button:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
@media (max-width: 1200px) {
    .prices-head-banner-head h1 {
        font-size: 40px;
        line-height: 45px;
        font-weight: 500;
    }
    .prices-head-banner-head {
        padding: 40px 50px;
    }
}
@media (max-width: 1024px) {
    .prices-head-banner-img {
        display: none;
    }
    .prices-head-banner-head {
        padding: 30px 40px;
    }
    .prices-head-banner-head h1 {
        font-size: 34px;
    }
}
@media (max-width: 768px) {
    .prices-head-banner-head img {
        display: block;
        width: 100%;
        height: auto;
    }
    .prices-head-banner-head {
        align-items: center;
        text-align: center;
    }
    .prices-head-banner-bnts {
        flex-wrap: wrap;
    }
    .prices-head-banner-bnts button:first-child {
        flex: 1 1 100%;
        margin-top: 30px;
    }
    .prices-head-banner-bnts button:last-child {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
    .prices-head-banner-head h1 {
        font-size: 34px;
        font-weight: 700;
    }
    .banner-mini-card {
        min-height: 0;
    }
}
.prices-second-block {
    margin-top: 152px;
    background-color: #f4f5fe;
    padding: 100px 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 88px;
}
.prices-second-img {
    flex: 1 1 calc(50% - 88px);
}
.prices-second-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.prices-second-text {
    flex: 1 1 calc(50% - 88px);
}
.prices-second-text-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
}
.prices-second-text-text {
    font-size: 18px;
    font-weight: 400;
}
@media (max-width: 1200px) {
    .prices-second-block {
        margin-top: 152px;
        background-color: #f4f5fe;
        padding: 50px 31px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 44px;
    }
    .prices-second-img,
    .prices-second-text {
        flex: 1 1 calc(50% - 44px);
    }
    .prices-second-text-title {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 30px;
    }
}
@media (max-width: 1024px) {
    .prices-second-block {
        flex-wrap: wrap;
    }
    .prices-second-img,
    .prices-second-text {
        flex: 1 1 100%;
    }
    .prices-second-text-title {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
        margin-bottom: 30px;
    }
    .prices-second-text-text {
        font-size: 16px;
        line-height: 22px;
    }
}
@media (max-width: 768px) {
    .prices-con {
        margin-top: 64px;
    }
    .why-choose-us {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .best-teachers-con {
        padding-top: 64px;
        padding-bottom: 48px;
    }
    .more-teachers-con {
        padding-bottom: 64px;
    }
    .how-to-study-con {
        padding-bottom: 64px;
    }
    .clean-cars-con {
        padding-bottom: 64px;
    }
    .clean-classes-con {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .banner-freeze {
        margin-top: 40px;
        margin-bottom: 64px;
    }
    .banner-mama {
        margin-bottom: 64px;
    }
    .real-avto-numbers {
        padding-bottom: 64px;
    }
    .reviews-con {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .faq-con {
        margin-top: 64px;
        margin-bottom: 64px;
    }
    .submit-form-con {
        margin-bottom: 64px;
    }
    .moscow-first-block {
        margin-bottom: 64px;
    }
    .prices-second-block {
        margin-top: 64px;
    }
    .installment-plan-con.prices {
        margin-top: 64px;
    }
    .submit-form-con.prices {
        margin-top: 64px;
    }
}
@media (min-width: 1024px) {
    .why-choose-us-faq.last {
        margin-bottom: 26px;
    }
}
.bread-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 14px;
    padding: 20px 0 60px;
}
.bread-crumbs a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}
.bread-crumbs a:hover {
    opacity: 0.7;
}
.bread-crumbs-prev {
    font-size: 20px;
    font-weight: 400;
    color: #7a7a7a;
}
.bread-crumbs-current {
    font-size: 20px;
    font-weight: 500;
}
.b-akpp-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 152px;
    position: relative;
}
.b-akpp-banner-text,
.b-akpp-banner-img {
    flex: 1 1 50%;
}
.b-akpp-banner-img img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}
.b-akpp-banner-title {
    width: 90%;
    font-size: 50px;
    line-height: 54px;
    font-weight: 500;
    margin-top: 12px;
}
.b-akpp-banner-btns {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.b-akpp-banner-btns button {
    width: 225px;
    padding: 18px;
    border-radius: 10px;
}
.b-akpp-banner-btns button:first-child {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
    transition: background-color 0.3s, color 0.3s;
}
.b-akpp-banner-btns button:last-child {
    background-color: #fff0;
    color: #000;
    border: 1px solid #000;
    transition: background-color 0.3s, color 0.3s;
}
.b-akpp-banner-btns button:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
.b-akpp-banner-low-row {
    position: absolute;
    left: 0;
    bottom: 77px;
    width: 100%;
    background-color: #f4f5fe;
    border-radius: 16px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    padding: 18px 150px 18px 194px;
}
.b-akpp-mini-1 {
    position: absolute;
    left: 60px;
    bottom: 80px;
    width: 94px;
}
.b-akpp-mini-1 img {
    width: 100%;
    height: auto;
}
.b-akpp-mini-2 {
    position: absolute;
    right: -40px;
    bottom: 90px;
    width: 176px;
}
.b-akpp-mini-2 img {
    width: 100%;
    height: auto;
}
.legal-b-akpp-banner-low-row p {
    width: 96%;
}
@media (max-width: 1200px) {
    .b-akpp-banner-title {
        width: 90%;
        font-size: 40px;
        line-height: 45px;
        margin-top: 0;
    }
    .b-akpp-banner-btns button {
        width: 200px;
        padding: 18px;
        border-radius: 10px;
    }
    .b-akpp-banner-low-row {
        left: 0;
        bottom: 40px;
        font-size: 24px;
        line-height: 32px;
        font-weight: 400;
        padding: 18px 150px 18px 194px;
    }
    .b-akpp-mini-1 {
        left: 60px;
        bottom: 60px;
        width: 94px;
    }
    .b-akpp-mini-2 {
        right: -40px;
        bottom: 60px;
        width: 176px;
    }
}
@media (max-width: 1024px) {
    .b-akpp-banner-text,
    .b-akpp-banner-img {
        flex: 1 1 100%;
    }
    .b-akpp-banner-btns {
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .b-akpp-banner-low-row {
        left: 0;
        bottom: 40px;
        width: 100%;
        font-size: 24px;
        line-height: 32px;
        font-weight: 400;
        padding: 25px;
    }
    .b-akpp-mini-1 {
        display: none;
    }
    .b-akpp-mini-2 {
        display: none;
    }
    .legal-b-akpp-banner-low-row p {
        width: 100%;
    }
    .b-akpp-banner-title {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .b-akpp-banner-title {
        width: 100%;
        font-size: 28px;
        line-height: 32px;
        margin-top: 0;
    }
    .b-akpp-banner-btns button {
        width: 100%;
    }
    .b-akpp-banner-low-row {
        left: 0;
        bottom: 35px;
        width: 100%;
        font-size: 20px;
        line-height: 24px;
        font-weight: 400;
        padding: 18px;
    }
}
.b-akpp-how-to-learn {
    padding: 70px 0;
    background-color: rgb(173 195 255 / 0.5);
}
.b-akpp-how-to-learn h3 {
    font-size: 40px;
    line-height: 42px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .b-akpp-how-to-learn h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
    }
}
.small-reviews-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.small-reviews-title {
    flex: 1 1 50%;
    font-size: 50px;
    line-height: 54px;
    font-weight: 500;
}
.small-reviews-btns {
    flex: 1 1 50%;
    text-align: right;
}
.small-reviews-btns button,
.small-reviews-btns a {
    padding: 18px 65px;
    background-color: #fff0;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}
.small-reviews-btns button:hover,
.small-reviews-btns a:hover {
    background-color: #000;
    color: #fff;
}
.small-reviews-card {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 33px 22px 22px;
    height: 256px;
}
.small-reviews-card-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}
.small-reviews-card-head-main {
    margin-left: 22px;
}
.small-reviews-card-head-main span:first-child {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 14px;
}
.small-reviews-card-head-main span:last-child {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    color: #656565;
}
.small-reviews-card-date {
    margin-top: 5px;
    margin-right: 10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #656565;
}
.small-reviews-card p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.small-reviews-card-head-left {
    display: flex;
    align-items: center;
}
.small-reviews-card-head-left img {
    width: 72px !important;
    height: 72px;
    border-radius: 100%;
}
@media (max-width: 1024px) {
    .small-reviews-title {
        flex: 1 1 100%;
    }
    .small-reviews-btns {
        flex: 1 1 100%;
        text-align: left;
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .small-reviews-title {
        font-size: 28px;
        line-height: 32px;
    }
    .small-reviews-head {
        margin-bottom: 22px;
    }
    .small-reviews-card {
        min-height: 300px;
        box-sizing: border-box;
    }
    .small-reviews-card-date {
        display: none;
    }
}
.submit-form-con.b-akpp {
    background-color: #0e26ff;
    color: #fff;
}
.submit-form-form.b-akpp button {
    background-color: #fff;
    color: #000;
    transition: background-color 0.3s, color 0.3s;
}
.submit-form-form.b-akpp button:hover {
    background-color: #000;
    color: #fff;
}
.b-akpp-banner-title.mam-kap {
    font-size: 44px;
    line-height: 50px;
}
.b-akpp-banner-low-row.mam-kapital {
    font-size: 22px;
    line-height: 32px;
    padding-left: 61px;
}
@media (max-width: 1200px) {
    .b-akpp-banner-title.mam-kap {
        font-size: 40px;
        line-height: 45px;
    }
}
@media (max-width: 1024px) {
    .b-akpp-banner-low-row.mam-kapital {
        padding-left: 30px;
    }
}
@media (max-width: 600px) {
    .b-akpp-banner-title.mam-kap {
        font-size: 28px;
        line-height: 32px;
    }
    .b-akpp-banner-low-row.mam-kapital {
        font-size: 20px;
        line-height: 28px;
        padding-left: 20px;
    }
}
.more-teachers-text.clean-cars.b-akpp,
.more-teachers-btns.clean-cars.b-akpp {
    flex: 1 1 50%;
}
.more-teachers-text.clean-cars.b-akpp button {
    margin-top: 22px;
    padding: 18px 45px;
    background-color: #0e26ff;
    color: #fff;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}
.more-teachers-text.clean-cars.b-akpp button:hover {
    background-color: #000;
    color: #fff;
}
@media (max-width: 1024px) {
    .more-teachers-text.clean-cars.b-akpp,
    .more-teachers-btns.clean-cars.b-akpp {
        flex: 1 1 100%;
    }
    .more-teachers-text.clean-cars.b-akpp button {
        margin-top: 0;
    }
}
.how-to-mama-con {
    width: 1376px;
    margin: 0 auto;
    border-radius: 16px;
    background-color: #f4f5fe;
    padding: 69px 0 83px;
}
.how-to-mama-con h3 {
    font-size: 52px;
    line-height: 55px;
    font-weight: 400;
}
.how-to-mama-cards {
    margin-top: 50px;
    margin-bottom: 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.how-to-mama-card-big {
    background-color: #fff;
    border-radius: 8px;
    min-height: 212px;
    padding: 32px 32px 28px 32px;
    flex: 1 1 calc(50% - 8px);
}
.how-to-mama-card-small {
    background-color: #fff;
    border-radius: 8px;
    min-height: 160px;
    padding: 32px 32px 28px 32px;
    flex: 1 1 calc(33% - 8px);
}
.submit-form-con.b-akpp.mam-cap {
    margin-bottom: 0;
    position: relative;
}
.how-to-mama-card-big img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 222px;
    height: auto;
}
.how-to-mama-cards span {
    display: block;
    background-color: #000;
    color: #fff;
    border-radius: 16px;
    width: 36px;
    height: 24px;
    text-align: center;
    font-size: 12px;
    padding-top: 3px;
}
.how-to-mama-card-title {
    margin-top: 16px;
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 28px;
}
.how-to-mama-cards button {
    background-color: #0e26ff;
    border-radius: 10px;
    padding: 19px 40px;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}
.how-to-mama-cards button:hover {
    background-color: #000;
    color: #fff;
}
.submit-form-con.b-akpp.mam-cap img {
    position: absolute;
    bottom: -65px;
    left: 60px;
    width: 447px;
    height: auto;
}
@media (max-width: 1380px) {
    .how-to-mama-con {
        width: 100%;
        border-radius: 0;
        background-color: #f4f5fe;
        padding: 69px 0 83px;
    }
}
@media (max-width: 1024px) {
    .how-to-mama-card-small {
        background-color: #fff;
        border-radius: 8px;
        min-height: 160px;
        padding: 32px 32px 28px 32px;
        flex: 1 1 100%;
    }
    .submit-form-con.b-akpp.mam-cap img {
        position: absolute;
        bottom: -20px;
        left: 100px;
        width: 250px;
        height: auto;
    }
    .how-to-mama-card-big img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 150px;
        height: auto;
    }
}
@media (max-width: 768px) {
    .how-to-mama-card-big {
        flex: 1 1 100%;
        min-height: 160px;
    }
    .submit-form-con.b-akpp.mam-cap img {
        display: none;
    }
    .how-to-mama-card-big img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 150px;
        height: auto;
    }
    .how-to-mama-con h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 400;
    }
}
.rewards-head {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 66px 35px 60px;
}
.rewards-head-head {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    margin-bottom: 28px;
}
.rewards-head-text h1 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 56px;
}
.rewards-head-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
.rewards-head-text {
    flex: 1 1 60%;
}
.rewards-head-img {
    flex: 1 1 40%;
}
.rewards-head-img img {
    width: 100%;
    height: auto;
}
.rewards-head-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.rewards-card {
    flex: 1 1 calc(33% - 14px);
    background-color: #fff;
    border-radius: 8px;
    padding: 24px 20px;
}
.rewards-card span {
    display: block;
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}
.rewards-card p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #666;
}
@media (max-width: 1200px) {
    .rewards-head-text h1 {
        font-size: 52px;
        line-height: 56px;
    }
}
@media (max-width: 1024px) {
    .rewards-head-text h1 {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 30px;
    }
    .rewards-head-head {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 28px;
    }
    .rewards-card {
        flex: 1 1 100%;
        background-color: #fff;
        border-radius: 24px;
        padding: 24px 20px;
    }
}
@media (max-width: 768px) {
    .rewards-head-text,
    .rewards-head-img {
        flex: 1 1 100%;
    }
    .rewards-head-img img {
        width: 300px;
        height: auto;
        margin-top: 30px;
    }
}
.rewards-gallery-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 58px;
    font-weight: 400;
}
.rewards-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
.rewards-gallery-item {
    flex: 1 1 calc(33% - 35px);
}
.rewards-gallery-item img {
    width: 100%;
    height: auto;
    margin-bottom: 14px;
}
.rewards-gallery-item p {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
}
.rewards-gallery-last {
    margin-top: 111px;
}
@media (max-width: 1024px) {
    .rewards-gallery-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 40px;
        font-weight: 400;
    }
    .rewards-gallery-item p {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }
    .rewards-gallery-last {
        margin-top: 60px;
    }
}
@media (max-width: 600px) {
    .rewards-gallery-title {
        margin-bottom: 40px;
    }
    .rewards-gallery-item p {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }
    .rewards-gallery-last {
        margin-top: 50px;
    }
    .rewards-gallery-item {
        flex: 1 1 100%;
    }
    .rewards-gallery {
        gap: 50px;
    }
}
.metro-info {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}
.metro-info-desc-column {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 40px 20px 25px;
    flex: 1 1 calc(30% - 36px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.metro-info-map {
    flex: 1 1 calc(70% - 36px);
}
.metro-info-map h1,
.metro-info-map h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 17px;
}
.metro-info-map img {
    width: 100%;
    height: auto;
}
.metro-route {
    margin-top: 72px;
}
.metro-route span {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 34px;
}
.metro-route p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}
@media (max-width: 1024px) {
    .metro-info-desc-column {
        padding: 40px 20px 25px;
        flex: 1 1 100%;
    }
    .metro-info-map {
        flex: 1 1 100%;
    }
    .metro-route {
        margin-top: 40px;
    }
    .metro-route span {
        display: block;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 20px;
    }
}
.metro-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.metro-title {
    margin-left: 8px;
    font-size: 18px;
    font-weight: 500;
}
.metro-time {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    padding: 6px 12px;
    justify-content: center;
}
.metro-time img {
    width: 14px;
    height: auto;
    margin-right: 5px;
}
.metro-meet-place {
    font-size: 16px;
    font-weight: 400;
    color: #5f5f5f;
}
.metro-meet-address {
    font-size: 18px;
    font-weight: 400;
}
.metro-offeces-addresses-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.metro-info-desc-column button {
    width: 100%;
    border: none;
    padding: 18px 21px;
    background-color: #0e26ff;
    border-radius: 10px;
    color: #fff;
    transition: background-color 0.3s;
}
.metro-info-desc-column button:hover {
    background-color: #000;
}
.metro-offeces-addresses {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.metro-offeces-theor-row {
    display: flex;
    margin-top: 10px;
}
.metro-offeces-theor-col {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
}
.metro-offeces-theor-col span {
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-left: 5px;
}
.metro-info-map div {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.metro-info-map div iframe {
    width: 100%;
    min-height: 625px;
}
@media (max-width: 1200px) {
    .metro-info-map div iframe {
        min-height: 700px;
    }
}
@media (max-width: 1024px) {
    .metro-info-map div iframe {
        min-height: 400px;
    }
}
.features-card-low {
    flex: 1 1 calc(33% - 36px);
}
@media (max-width: 1024px) {
    .features-card-low {
        flex: 1 1 100%;
    }
}
.comfort-cars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #0e26ff;
    color: #fff;
    border-radius: 16px;
    padding: 50px 60px;
}
.comfort-cars-text-column {
    flex: 1 1 66%;
}
.comfort-cars-img {
    flex: 1 1 33%;
}
.comfort-cars-img img {
    width: 100%;
    height: auto;
}
.comfort-cars-text-column h3 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 32px;
}
.comfort-cars-text-column p {
    width: 80%;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}
.comfort-cars-text-column button {
    margin-top: 45px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 18px 65px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}
.comfort-cars-text-column button:hover {
    background-color: #000;
    color: #fff;
}
.comfort-cars-text-column img {
    display: none;
}
@media (max-width: 1200px) {
    .comfort-cars-text-column h3 {
        font-size: 40px;
        line-height: 44px;
        font-weight: 500;
        margin-bottom: 25px;
    }
}
@media (max-width: 1024px) {
    .comfort-cars-text-column h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 25px;
    }
    .comfort-cars-text-column p {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
    }
    .comfort-cars-text-column {
        flex: 1 1 100%;
    }
    .comfort-cars-img {
        flex: 1 1 100%;
    }
    .comfort-cars-text-column button {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .comfort-cars {
        border-radius: 24px;
        padding: 20px 30px 30px;
    }
    .comfort-cars-img {
        display: none;
    }
    .comfort-cars-text-column img {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }
}
.spacer40 {
    padding: 40px 0;
}
.spacerb152 {
    padding-bottom: 152px;
}
.metro-spacer {
    margin-bottom: 8px;
}
.metro-big-spacer {
    margin-bottom: 8px;
}
.metro-biggest-spacer {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .spacer40 {
        padding: 20px 0;
    }
    .spacerb152 {
        padding-bottom: 64px;
    }
}
.metro-route.offices p {
    margin-top: 34px;
}
.how-to-study-pagination.clean-classes.offices {
    margin-top: 24px;
}
@media (max-width: 1024px) {
    .metro-route.offices p {
        margin-top: 18px;
    }
}
.metro-choose-title {
    font-weight: 500;
    font-size: 60px;
    margin-bottom: 84px;
}
.metro-choose-subtitle {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 18px;
}
.prices-filter-btns.metro-choose {
    margin-bottom: 0;
}
.filter-btn.metro-choose {
    display: flex;
    align-items: center;
    min-width: 60px;
    padding: 12px 10px;
    border: 1px solid #000;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}
.filter-btn.metro-choose:hover {
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
}
.filter-btn.metro-choose.active {
    background-color: #0e26ff;
    color: #fff;
    border-color: #0e26ff;
}
button.brench-selector svg {
    margin-right: 8px;
}
button.brench-selector {
    display: flex;
    align-items: center;
    min-width: 60px;
    padding: 12px 10px;
    border: 1px solid #000;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.25 !important;
}
button.brench-selector:hover {
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
}
button.brench-selector.active {
    background-color: #0e26ff;
    color: #fff;
    border-color: #0e26ff;
}
.filter-btn.metro-choose svg {
    margin-right: 4px;
}
.metro-choose-btn-con-mobile {
    display: none;
}
.metro-choose-btn-con-mobile h1 {
    font-weight: 500;
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 18px;
}
.metro-choose-hr {
    color: #000;
    opacity: 1;
    margin: 58px 0;
}
.metro-choose-stations-con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.metro-choose-cards {
    margin-top: 54px;
    width: 910px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.metro-choose-card {
    flex: 1 1 calc(33% - 8px);
    background-color: #f4f5fe;
    border-radius: 15px;
    min-height: 284px;
    padding: 28px 26px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.metro-choose-card button,
.metro-choose-card a {
    width: 100%;
    padding: 14px;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s, background-color 0.3s;
}
.metro-choose-card button:hover,
.metro-choose-card a:hover {
    background-color: #000;
    color: #fff;
}
.metro-choose-input-column {
    width: 250px;
    font-size: 16px;
}
.metro-choose-input-column-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}
.metro-choose-card-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 18px;
}
.metro-choose-card-metro {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 16px;
}
.metro-choose-input-column label {
    display: block;
    margin-bottom: 10px;
}
input[type="checkbox"] {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    margin-right: 6px;
}
.metro-choose-card-contacts {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.metro-choose-subtitle-mobile {
    font-size: 18px;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 18px 0;
}
.custom-select {
    position: relative;
    cursor: pointer;
    padding: 12px;
    padding-right: 30px;
    border: 1px solid #ccc;
    border-radius: 16px;
    background-color: #fff;
    font-size: 16px;
    user-select: none;
    transition: border-color 0.3s ease;
}
.select-placeholder {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.arrow-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}
.select-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    background-color: #f4f5fe;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 1000;
    list-style: none;
    padding: 5px;
    margin: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.select-options.show {
    opacity: 1;
    visibility: visible;
}
.select-placeholder svg {
    margin-right: 6px;
    margin-top: -2px;
}
.select-options svg {
    margin-right: 6px;
    margin-top: -2px;
}
.select-options li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.select-options li:hover {
    background-color: #fff;
}
.custom-select.open .arrow-icon {
    transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 1200px) {
    .metro-choose-cards {
        width: 650px;
    }
    .metro-choose-card {
        flex: 0 1 calc(50% - 8px);
    }
}
@media (max-width: 1024px) {
    .metro-choose-cards {
        width: 440px;
    }
    .metro-choose-card {
        flex: 1 1 100%;
    }
}
@media (max-width: 768px) {
    .metro-choose-input-column {
        width: 100%;
    }
    .metro-choose-cards {
        width: 100%;
        gap: 10px;
    }
    .metro-choose-btn-con {
        display: none;
    }
    .metro-choose-btn-con-mobile {
        display: block;
    }
    .metro-choose-card {
        flex: 1 1 calc(50% - 8px);
    }
    .metro-choose-input-column-title {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 17px;
    }
    .metro-choose-hr {
        display: none;
    }
}
@media (max-width: 600px) {
    .metro-choose-card {
        flex: 1 1 100%;
    }
}
.b-akpp-how-to-learn.contacts {
    background-color: #f4f5fe;
}
.features-card.contacts {
    position: relative;
}
.features-card.contacts div {
    position: absolute;
    top: -30px;
    left: 0;
    display: block;
    width: 54px;
    height: 54px;
    padding-top: 8px;
    text-align: center;
    background-color: #000;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    border-radius: 100px;
}
.features-card-row.contacts {
    margin-top: 82px;
}
.features-card.contacts p {
    line-height: 20px;
}
.features-card.contacts span {
    font-size: 18px;
    font-weight: 500;
}
.prices-filter-btns.metro-choose.contacts button {
    padding: 8px 16px;
}
.contacts-title {
    font-size: 60px;
    font-weight: 500;
    margin: 0;
}
.bread-crumbs.contacts {
    padding: 60px 0 50px;
}
.contacts-title-mobile-con {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 34px;
    font-weight: 500;
}
.contacts-title-mobile-con h1 {
    font-size: 34px;
    font-weight: 500;
}
.contacts-choose-city-mobile {
    display: none;
}
.contacts-choose-city-mobile-subtitle {
    font-size: 28px;
    font-weight: 500;
}
.metro-info-desc-column.contacts button {
    width: 80%;
    margin: 0 auto;
}
.metro-info-map.contacts iframe {
    min-height: 420px;
}
.custom-select-wrapper.contacts {
    margin-top: 0;
    margin-bottom: 40px;
}
.contacts-column-mini-address {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}
.custom-select.contacts {
    border-radius: 10px;
    background-color: #f4f5fe;
}
.select-options.contacts {
    background-color: #fff;
}
.select-options.contacts li:hover {
    background-color: #f4f5fe;
}
.select-placeholder.contacts {
    font-size: 15px;
    line-height: 20px;
}
.select-options.contacts li {
    font-size: 14px;
    line-height: 18px;
}
.contacts-desc-column-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 25px;
}
.contacts-desc-column-tel span {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 15px;
    display: block;
}
.contacts-desc-column-tel p {
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
}
.custom-select.city {
    border: 1px solid #000;
    border-radius: 10px;
}
.contacts-modal-content img {
    width: 191px;
    height: auto;
}
.contacts-modal-content-title span {
    font-size: 30px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    margin-bottom: 15px;
}
.contacts-modal-content-title p {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 30px;
}
.submit-form-form.contacts button {
    margin-bottom: 0;
    width: 70%;
    margin-top: 14px;
}
body.contacts-no-scroll {
    overflow: hidden;
}
.contacts-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.5);
    z-index: 1002;
}
.contacts-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
    width: 589px;
    z-index: 1003;
}
.contacts-modal-content {
    text-align: center;
}
.submit-form-form.contacts {
    width: 85%;
    margin: 0 auto;
}
@media (min-width: 1200px) {
    .metro-info-desc-column.contacts {
        flex: 1 1 calc(35% - 30px);
    }
    .metro-info-map.contacts {
        flex: 1 1 calc(65% - 30px);
    }
}
@media (max-width: 768px) {
    .contacts-title-mobile-con {
        display: block;
        margin-bottom: 40px;
    }
    .contacts-title {
        display: none;
    }
    .contacts-choose-city-mobile {
        display: block;
    }
    .bread-crumbs.contacts {
        padding: 0 0 20px;
    }
    .bread-crumbs.contacts a {
        font-size: 14px;
    }
    .bread-crumbs.contacts > .bread-crumbs-current {
        font-size: 14px;
    }
    .metro-choose-hr.contacts {
        display: block;
        margin-top: 7px;
        margin-bottom: 64px;
    }
    .features-card.contacts div {
        top: -20px;
        left: calc(50% - 17px);
        width: 35px;
        height: 35px;
        font-size: 18px;
        font-weight: 500;
        padding-top: 4px;
    }
    .b-akpp-how-to-learn.contacts {
        padding: 30px 0;
    }
    .features-card-row.contacts {
        margin-top: 55px;
    }
    .contacts-modal {
        width: 90%;
    }
    .contacts-modal-content {
        text-align: center;
    }
    .submit-form-form.contacts {
        width: 100%;
        margin: 0 auto;
    }
    .contacts-modal-content-title span {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
        display: block;
        margin-bottom: 15px;
    }
    .contacts-modal-content-title p {
        font-size: 18px;
        font-weight: 400;
        line-height: 22px;
        margin-bottom: 30px;
    }
    .submit-form-form.contacts input {
        margin-bottom: 6px;
    }
    .submit-form-input-row.contacts {
        gap: 0;
    }
}
.branches-head-con {
    background-color: #edecf9;
    border-radius: 16px;
    width: 100%;
    padding: 122px 677px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.branches-head-con h1 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 500;
}
.branches-head-con button {
    padding: 12px 66px;
    background-color: #0e26ff;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    width: 225px;
    margin-top: 40px;
    transition: background-color 0.3s, color 0.3s;
}
.branches-head-con button:hover {
    background-color: #000;
}
.bread-crumbs.branches {
    padding-bottom: 82px;
}
.branches-head-main {
    width: 1048px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: -17%;
    z-index: 2;
}
.branches-head-keys {
    width: 400px;
    height: auto;
    position: absolute;
    top: 0;
    right: 50%;
    z-index: 2;
}
.branches-head-star1 {
    width: 46px;
    height: auto;
    position: absolute;
    top: 10%;
    left: 10%;
}
.branches-head-star2 {
    width: 59px;
    height: auto;
    position: absolute;
    bottom: 20%;
    left: 40%;
}
.branches-head-star3 {
    width: 37px;
    height: auto;
    position: absolute;
    top: 9%;
    right: 2%;
}
.branches-cards-con {
    display: flex;
    flex-direction: column;
}
.branches-cards {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.branches-card {
    flex: 0 1 calc(33% - 20px);
}
.branches-card:nth-child(n + 4) {
    margin-top: 10px;
}
.branches-card img {
    width: 100%;
    height: auto;
}
.branches-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.branches-card-row span {
    font-size: 24px;
    font-weight: 500;
    display: block;
}
.branches-card-row a,
.button-on-page {
    padding: 15px 32px;
    background-color: #fff0;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    color: #000;
}
.button-on-page {
    display: block;
    text-align: center;
    margin-top: 15px;
}
.branches-card-row a:hover,
.button-on-page:hover {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
}
.branches-cards-more {
    padding: 18px 65px;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff0;
    border: 1px solid #000;
    border-radius: 10px;
    margin: 80px auto;
    transition: background-color 0.3s, color 0.3s;
}
.branches-cards-more:hover {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
}
@media (max-width: 1200px) {
    .branches-head-con {
        background-color: #edecf9;
        border-radius: 16px;
        width: 100%;
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        position: relative;
        text-align: center;
        height: 700px;
    }
    .branches-head-con button {
        margin: 30px auto;
    }
    .branches-head-main {
        width: 700px;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 13%;
        z-index: 2;
    }
    .branches-head-keys {
        width: 400px;
        height: auto;
        position: absolute;
        top: 35%;
        right: 15%;
        z-index: 2;
    }
    .branches-head-star1 {
        width: 46px;
        height: auto;
        position: absolute;
        top: 20%;
        left: 10%;
    }
    .branches-head-star2 {
        width: 59px;
        height: auto;
        position: absolute;
        bottom: 30%;
        right: 2%;
        top: auto;
        left: auto;
    }
    .branches-head-star3 {
        width: 37px;
        height: auto;
        position: absolute;
        bottom: 5%;
        left: 2%;
        top: auto;
        right: auto;
    }
    .branches-card-row button {
        padding: 10px 15px;
    }
    .branches-card-row span {
        font-size: 20px;
    }
}
@media (max-width: 1024px) {
    .branches-head-con {
        background-color: #edecf9;
        border-radius: 16px;
        width: 100%;
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        position: relative;
        text-align: center;
        height: 700px;
    }
    .branches-head-con button {
        margin: 30px auto;
    }
    .branches-head-main {
        width: 700px;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 2;
    }
    .branches-head-keys {
        width: 400px;
        height: auto;
        position: absolute;
        top: 35%;
        right: 3%;
        z-index: 2;
    }
    .branches-head-star1 {
        width: 46px;
        height: auto;
        position: absolute;
        top: 25%;
        left: 10%;
    }
    .branches-head-star2 {
        width: 59px;
        height: auto;
        position: absolute;
        bottom: 30%;
        right: 2%;
        top: auto;
        left: auto;
    }
    .branches-head-star3 {
        width: 37px;
        height: auto;
        position: absolute;
        bottom: 5%;
        left: 5%;
        top: auto;
        right: auto;
    }
    .branches-card {
        flex: 0 1 calc(50% - 20px);
    }
}
@media (max-width: 768px) {
    .video-otziv-item {
        display: flex;
        justify-content: center;
    }
    #carousel7 .owl-nav {
        display: flex;
        justify-content: center;
    }
    .branches-head-con {
        background-color: #edecf9;
        border-radius: 16px;
        width: 100%;
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        position: relative;
        text-align: center;
        height: 500px;
    }
    .branches-head-con button {
        margin: 15px auto;
    }
    .branches-head-main {
        width: 420px;
        height: auto;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
    .branches-head-keys {
        width: 256px;
        height: auto;
        position: absolute;
        top: 45%;
        left: 60%;
        transform: translateX(-50%);
        z-index: 2;
    }
    .branches-head-star1 {
        width: 30px;
        height: auto;
        position: absolute;
        top: 25%;
        left: 10%;
    }
    .branches-head-star2 {
        width: 40px;
        height: auto;
        position: absolute;
        bottom: 30%;
        right: 2%;
        top: auto;
        left: auto;
    }
    .branches-head-star3 {
        width: 25px;
        height: auto;
        position: absolute;
        bottom: 5%;
        left: 5%;
        top: auto;
        right: auto;
    }
    .branches-head-con h1 {
        font-size: 34px;
        line-height: 36px;
        font-weight: 500;
    }
    .bread-crumbs.branches {
        padding-bottom: 20px;
    }
    .branches-card {
        flex: 0 1 100%;
    }
    .branches-card-row button {
        padding: 14px 42px;
        font-size: 18px;
    }
    .branches-card-row span {
        font-size: 18px;
    }
    .branches-card:nth-child(n + 1) {
        margin-top: 20px;
    }
    .branches-cards-more {
        width: 100%;
        margin-top: 36px;
    }
}
.our-cars-con h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 40px;
}
.our-cars-con p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 35px;
}
.our-cars-card {
    border-radius: 8px;
    border: 1px solid #000;
    width: 364px;
    padding: 16px;
}
.our-cars-card img {
    width: 100%;
    height: auto;
    margin-bottom: 23px;
}
.our-cars-card-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 16px;
}
.our-cars-card-date {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 18px;
}
.our-cars-card-span-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.our-cars-card-span-row span {
    display: block;
    padding: 10px 24px;
    border-radius: 10px;
    background-color: #f4f5fe;
    font-size: 22px;
}
.our-cars-card button {
    width: 100%;
    background-color: #0e26ff;
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
}
.our-cars-card button:hover {
    background-color: #000;
}
.our-cars-card.last {
    background-color: #0e26ff;
    color: #fff;
    height: 522px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.our-cars-card.last button {
    border: 1px solid #fff;
}
.our-cars-card.last > .our-cars-card-title {
    font-size: 37px;
    font-weight: 500;
    line-height: 42px;
    margin-top: 180px;
}
.our-cars-card.last {
    background-image: url(/images/our-cars-card-last.png);
}
.branches-pasad-head {
    width: 100%;
    background-color: #d8d8ff;
    border-radius: 20px;
    height: 675px;
    padding: 50px;
    position: relative;
}
.branches-pasad-head h1 {
    width: 60%;
    font-size: 55px;
    line-height: 55px;
    font-weight: 500;
    margin-bottom: 30px;
}
.branches-pasad-head p {
    width: 60%;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 50px;
}
.branches-pasad-head-btns-row button {
    padding: 15px 50px;
    border-radius: 10px;
}
.branches-pasad-head-btns-row button:first-child {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
    margin-right: 20px;
    transition: background-color 0.3s, color 0.3s;
}
.branches-pasad-head-btns-row button:first-child:hover {
    background-color: #000;
}
.branches-pasad-head-btns-row button:last-child {
    background-color: #fff0;
    color: #000;
    border: 1px solid #000;
    transition: background-color 0.3s, color 0.3s;
}
.branches-pasad-head-btns-row button:last-child:hover {
    background-color: #000;
    color: #fff;
}
.branches-pasad-head-img-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 622px;
    height: auto;
    z-index: 2;
}
.branches-pasad-head-img-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: auto;
}
.branches-pasad-head-img-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: auto;
}
.branches-pasad-head-img-4 {
    position: absolute;
    bottom: 0;
    right: 35%;
    width: 380px;
    height: auto;
}
.branches-pasad-head-img-5 {
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 250px;
    height: auto;
}
.branches-pasad-advantages {
    width: 100%;
    padding: 50px 0;
    background-color: #edecf9;
}
.branches-pasad-advantages-con {
    position: relative;
    background-color: #fff;
    padding: 70px 50px 100px;
    border-radius: 20px;
    background-image: url(/images/branches-pasad-adv-line.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: calc(50% - 70px) center;
}
.branches-pasad-advantages-img-1 {
    position: absolute;
    top: 22%;
    right: 27%;
    width: 400px;
    height: auto;
}
.branches-pasad-advantages-img-2 {
    position: absolute;
    bottom: 26%;
    left: 27%;
    width: 225px;
    height: auto;
}
.branches-pasad-advantages-row {
    display: flex;
    align-items: center;
    gap: 58px;
}
.branches-pasad-advantages-row:first-child {
    margin-bottom: 270px;
}
.branches-pasad-advantages-row:nth-child(n + 1) {
    margin-bottom: 320px;
}
.branches-pasad-advantages-row:last-child {
    margin-bottom: 0;
}
.branches-pasad-advantages-img {
    flex: 1 1 calc(60% - 58px);
}
.branches-pasad-advantages-row .branches-pasad-advantage-text {
    flex: 1 1 calc(40% - 58px);
    position: relative;
}
.branches-pasad-advantage-text img {
    position: absolute;
    top: -25%;
    left: 0;
    width: 55px;
    height: auto;
}
.branches-pasad-advantages-img img {
    width: 100%;
    height: auto;
}
.branches-pasad-advantages h2 {
    width: 60%;
    font-size: 50px;
    line-height: 56px;
    font-weight: 500;
    margin-bottom: 40px;
}
.branches-pasad-advantage-text span {
    display: block;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 15px;
}
.branches-pasad-advantage-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.branches-pasad-advantages-img.mobile {
    display: none;
}
@media (max-width: 1200px) {
    .branches-pasad-advantage-text p {
        line-height: 24px;
    }
    .branches-pasad-head-img-1 {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 500px;
        height: auto;
        z-index: 2;
    }
    .branches-pasad-head-img-2 {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: auto;
    }
    .branches-pasad-head-img-3 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 350px;
        height: auto;
    }
    .branches-pasad-head-img-4 {
        position: absolute;
        bottom: -5%;
        right: 35%;
        width: 250px;
        height: auto;
    }
    .branches-pasad-head-img-5 {
        position: absolute;
        bottom: 30%;
        right: -5%;
        width: 200px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .branches-pasad-advantages-con {
        background-image: none;
    }
    .branches-pasad-advantages {
        background-image: url(/images/branches-pasad-adv-line.png);
        background-repeat: no-repeat;
        background-size: auto 120%;
        background-position: calc(50% - 70px) calc(50% + 600px);
    }
    .branches-pasad-advantage-text img {
        position: absolute;
        top: -35%;
        left: 0;
        width: 37px;
        height: auto;
    }
    .branches-pasad-advantages-img-1 {
        position: absolute;
        top: 28%;
        right: -20%;
        width: 300px;
        height: auto;
    }
    .branches-pasad-advantages-img-2 {
        position: absolute;
        bottom: 26%;
        right: -7%;
        left: auto;
        top: auto;
        width: 154px;
        height: auto;
    }
    .branches-pasad-advantages-con {
        overflow: hidden;
    }
    .branches-pasad-advantage-text span {
        display: block;
        font-size: 18px;
        font-weight: 700;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .branches-pasad-advantage-text p {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }
    .branches-pasad-advantages {
        padding: 30px 0;
    }
    .branches-pasad-advantages-con {
        padding: 90px 15px 30px;
    }
    .branches-pasad-advantages-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .branches-pasad-advantages-row:first-child {
        margin-bottom: 167px;
    }
    .branches-pasad-advantages-row:nth-child(n + 1) {
        margin-bottom: 210px;
    }
    .branches-pasad-advantages-row:last-child {
        margin-bottom: 0;
    }
    .branches-pasad-advantages-img {
        display: none;
    }
    .branches-pasad-advantages-img.mobile {
        display: block;
        flex: 1 1 100%;
    }
    .branches-pasad-advantages-row .branches-pasad-advantage-text {
        flex: 1 1 100%;
    }
    .branches-pasad-advantages h2 {
        width: 100%;
        font-size: 34px;
        line-height: 36px;
        font-weight: 500;
        margin-bottom: 25px;
    }
    .our-cars-card {
        width: 288px;
        height: auto;
    }
    .our-cars-card-span-row span {
        padding: 10px 20px;
        font-size: 16px;
    }
    .our-cars-card-title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .our-cars-card.last {
        height: 458px;
    }
    .our-cars-card.last > .our-cars-card-title {
        font-size: 30px;
        line-height: 32px;
    }
    .branches-pasad-head-img-1 {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: auto;
        z-index: 2;
    }
    .branches-pasad-head-img-2 {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: auto;
    }
    .branches-pasad-head-img-3 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200px;
        height: auto;
    }
    .branches-pasad-head-img-4 {
        position: absolute;
        bottom: 10%;
        left: 15%;
        width: 250px;
        height: auto;
    }
    .branches-pasad-head-img-5 {
        position: absolute;
        bottom: 30%;
        right: 15%;
        width: 150px;
        height: auto;
    }
    .branches-pasad-head h1 {
        width: 100%;
        font-size: 34px;
        line-height: 36px;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .branches-pasad-head p {
        width: 100%;
        font-size: 18px;
        line-height: 22px;
        font-weight: 400;
    }
    .branches-pasad-head-btns-row {
        display: none;
    }
    .branches-pasad-head {
        height: 750px;
    }
}
@media (max-width: 600px) {
    .branches-pasad-head {
        height: 850px;
    }
    .branches-pasad-head-img-1 {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: auto;
        z-index: 2;
    }
    .branches-pasad-head-img-2 {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: auto;
    }
    .branches-pasad-head-img-3 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200px;
        height: auto;
    }
    .branches-pasad-head-img-4 {
        position: absolute;
        bottom: 10%;
        left: 0;
        width: 250px;
        height: auto;
        z-index: 3;
    }
    .branches-pasad-head-img-5 {
        position: absolute;
        bottom: 30%;
        right: 5%;
        width: 150px;
        height: auto;
    }
}
@media (max-width: 768px) {
    .branches-pasad-head {
        padding: 50px 17px;
    }
    .our-cars-con h3 {
        font-size: 28px;
        line-height: 32px;
    }
}
@media (max-width: 500px) {
    .branches-pasad-advantage-text img {
        position: absolute;
        top: -25%;
        left: 0;
        width: 37px;
        height: auto;
    }
    .branches-pasad-advantages-img-1 {
        position: absolute;
        top: 28%;
        right: -20%;
        width: 250px;
        height: auto;
    }
    .branches-pasad-advantages-img-2 {
        position: absolute;
        bottom: 26%;
        right: -7%;
        left: auto;
        top: auto;
        width: 120px;
        height: auto;
    }
}
.avtopark h1 {
    width: 40%;
    font-size: 52px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 24px;
}
.avtopark-transmission-con {
    background-color: #f4f5fe;
    padding: 50px 35px;
    border-radius: 16px;
    width: 1262px;
    margin: 0 auto;
}
.avtopark-transmission {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.avtopark-transmission-choose {
    background-color: #0e26ff;
    border-radius: 8px;
    padding: 51px 35px;
    flex: 1 1 calc(36% - 15px);
}
.avtopark-transmission-type {
    background-color: #fff;
    border-radius: 8px;
    padding: 44px 28px;
    position: relative;
    font-size: 20px;
    line-height: 24px;
    flex: 1 1 calc(22% - 15px);
}
.avtopark-transmission-type img {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 95px;
    height: auto;
}
.avtopark-transmission-type div {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}
.avtopark-transmission-type span {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 60px;
    display: block;
    padding: 10px 35px;
    background-color: #f4f5fe;
    border-radius: 8px;
    width: 128px;
}
.avtopark-transmission-choose div {
    color: #fff;
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 35px;
}
.avtopark-transmission-choose p {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
}
.more-teachers-text-row.avtopark {
    margin-top: 90px;
}
.more-teachers-text.avtopark {
    margin-bottom: 0;
}
.more-teachers-text.avtopark p {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    width: 70%;
}
.best-teachers-con.avtopark {
    background-color: #f4f5fe;
    padding: 60px 0;
}
.best-teachers-con.avtopark h3 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 51px;
    width: 50%;
}
.more-teachers-text.avtopark h3 {
    font-size: 40px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 27px;
    width: 60%;
}
.why-choose-us-faq-answer.avtopark {
    background-color: #f5e5ce;
}
.why-choose-us-faq.best-teachers.avtopark {
    background-color: #fff;
}
.avtopark-our-cars {
    display: flex;
    flex-direction: column;
}
.branches-cards-more.avtopark {
    margin-top: 40px;
}
.avtopark-our-cars h3 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 16px;
}
.avtopark-our-cars p {
    width: 60%;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}
.avtopark-our-cars-cards {
    margin-top: 40px;
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}
.our-cars-card {
    flex: 1 1 calc(33% - 45px);
}
.custom-select.avtopark {
    width: 200px;
    border: 1px solid #000;
    padding: 10px 18px;
}
.avtopark-select-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.custom-select-wrapper.avtopark {
    width: auto;
    margin: 0;
}
.avtopark-modal-btn {
    display: none;
    padding: 12px 18px;
    width: 155px;
    background-color: #fff0;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #000;
    transition: background-color 0.3s, color 0.3s;
}
.avtopark-modal-btn svg {
    margin-right: 14px;
}
.avtopark-modal-btn:active {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
}
.avtopark-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.5);
    z-index: 1002;
}
.avtopark-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 68px 18px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
    width: 90%;
    z-index: 1003;
}
.avtopark-close-modal-btn {
    position: absolute;
    top: 24px;
    right: 17px;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}
.avtopark-close-modal-btn:active {
    opacity: 0.7;
}
.avtopark-modal-content button:nth-child(n + 2) {
    padding: 14px;
    width: 100%;
    background-color: #0e26ff;
    color: #fff;
    border-radius: 10px;
    border: none;
    margin-top: 22px;
    transition: background-color 0.3s;
}
.avtopark-modal-content button:nth-child(n + 2):active {
    background-color: #000;
}
.custom-select.avtopark.avtopark-modal {
    width: 100%;
    margin-bottom: 6px;
}
.custom-select.avtopark.avtopark-modal:last-child {
    margin-bottom: 0;
}
.custom-select-wrapper.avtopark-modal-select {
    margin: 0 0 6px;
}
.custom-select-wrapper.avtopark-modal-select:last-child {
    margin: 0;
}
.custom-select-wrapper.avtopark-modal-select div {
    border: 1px solid #000;
}
@media (max-width: 1200px) {
    .avtopark-our-cars-cards {
        gap: 15px;
    }
    .avtopark h1 {
        width: 50%;
    }
    .avtopark-transmission-con {
        background-color: #f4f5fe;
        padding: 30px 15px;
        border-radius: 16px;
        width: 968px;
        margin: 0 auto;
    }
    .avtopark-transmission-choose {
        background-color: #0e26ff;
        border-radius: 16px;
        padding: 51px 35px;
        flex: 1 1 100%;
    }
    .avtopark-transmission-type {
        background-color: #fff;
        border-radius: 16px;
        padding: 44px 28px;
        position: relative;
        font-size: 20px;
        line-height: 24px;
        flex: 1 1 calc(50% - 15px);
    }
    .avtopark-transmission-type img {
        position: absolute;
        top: 10%;
        right: 10%;
        width: 100px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .our-cars-card {
        flex: 1 1 calc(50% - 15px);
    }
    .avtopark-transmission-con {
        width: 726px;
        padding: 15px;
    }
    .avtopark h1 {
        width: 100%;
        font-size: 34px;
        line-height: 36px;
        font-weight: 700;
        margin-bottom: 18px;
    }
    .best-teachers-con.avtopark h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 18px;
        width: 100%;
    }
    .more-teachers-text.avtopark h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 18px;
        width: 70%;
    }
    .custom-select-wrapper.avtopark:nth-child(n + 2) {
        margin-right: 100px;
    }
    .custom-select-wrapper.avtopark:nth-child(n + 3) {
        margin-right: 0;
    }
}
@media (max-width: 768px) {
    .avtopark-select-row {
        display: none;
    }
    .avtopark-transmission-con {
        width: 95%;
        padding: 32px 0;
    }
    .avtopark-transmission-type {
        background-color: #fff;
        border-radius: 16px;
        padding: 44px 28px;
        position: relative;
        font-size: 20px;
        line-height: 24px;
        flex: 1 1 100%;
    }
    .avtopark-transmission-choose div {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 18px;
    }
    .avtopark-transmission-type div {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 15px;
    }
    .avtopark-transmission-type {
        font-size: 16px;
        line-height: 24px;
    }
    .avtopark-transmission-type div {
        margin-top: 122px;
        display: inline-block;
        margin-right: 35px;
    }
    .avtopark-transmission-type span {
        display: inline-block;
        margin-bottom: 10px;
    }
    .avtopark-transmission-type img {
        position: absolute;
        top: 10%;
        left: 5%;
        width: 95px;
        height: auto;
    }
    .more-teachers-text-row.avtopark {
        margin-top: 36px;
        flex-wrap: wrap;
    }
    .more-teachers-text.avtopark h3 {
        width: 100%;
    }
    .more-teachers-text.avtopark p {
        width: 100%;
    }
    .more-teachers-btns.avtopark {
        display: block;
        width: 100%;
        margin-top: 18px;
    }
    .more-teachers-btns.avtopark button,
    .more-teachers-btns.avtopark a {
        width: 100%;
    }
    .avtopark-our-cars p {
        width: 100%;
    }
    .avtopark-modal-btn {
        display: block;
    }
    .avtopark-our-cars p {
        margin-bottom: 18px;
    }
    .avtopark-our-cars-cards {
        margin-top: 18px;
    }
}
@media (max-width: 650px) {
    .our-cars-card {
        flex: 1 1 100%;
    }
    .our-cars-card:nth-child(n + 4) {
        display: none;
    }
}
.about-us-head {
    width: 77%;
}
.about-us-head img {
    width: 100%;
    border-radius: 16px;
}
.about-us-row {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-us-row span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #6377ee;
}
.about-us-links {
    display: flex;
    align-items: center;
}
.about-us-links p {
    font-size: 16px;
    color: #202123;
    margin-right: 12px;
}
.about-us-links img {
    width: 40px;
    height: auto;
}
.about-us-links a {
    transition: opacity 0.3s;
}
.about-us-links a:hover {
    opacity: 0.7;
}
.about-us-main-row {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
}
.about-us-main {
    width: 60%;
}
.about-us-main h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 70px;
}
.about-us-main h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 46px;
    margin-top: 34px;
}
.about-us-main p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 34px;
}
.about-us-main img {
    width: 100%;
    height: auto;
    margin-top: 34px;
}
#carousel12 .owl-stage {
    display: flex;
    align-items: center;
}
.about-us-aside-title {
    font-size: 21px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 27px;
}
.about-us-aside-links {
    list-style-type: none;
}
.about-us-aside-links a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    color: #3178eb;
}
.about-us-aside-links li:nth-child(n + 2) {
    margin-top: 20px;
}
.about-us-aside-sticky {
    position: sticky;
    top: 100px;
}
.about-us-head span:last-child {
    display: none;
}
.stock-head-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stock-head-banner-text {
    width: 50%;
}
.stock-head-banner-text h1 {
    font-size: 52px;
    line-height: 54px;
    font-weight: 500;
}
.stock-head-banner-text p {
    width: 83%;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-top: 58px;
    margin-bottom: 47px;
}
.stock-head-banner-img {
    width: 40%;
}
.stock-head-banner-img img {
    width: 100%;
    height: auto;
}
.stock-carousel-img {
    cursor: pointer;
    transition: transform 0.3s;
}
.stock-carousel-img:hover {
    transform: scale(1.02);
}
.stock-modal {
    width: 940px;
    padding: 60px;
}
.stock-modal-row {
    display: flex;
    gap: 56px;
    justify-content: space-between;
}
.stock-modal-img {
    flex: 1 1 calc(40% - 56px);
}
.stock-modal-img img {
    width: 100%;
    height: auto;
}
.stock-modal-text {
    flex: 1 1 calc(60% - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stock-modal-title {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 33px;
}
.stock-modal-text p {
    font-size: 22px;
    line-height: 24px;
}
.stock-modal-row .stock-modal-text button {
    width: 225px;
}
@media (min-width: 1025px) {
    .stock-modal-row .stock-modal-text button:hover {
        background-color: #000;
        color: #fff;
    }
    .avtopark-close-modal-btn:hover {
        opacity: 0.5;
    }
}
@media (max-width: 1200px) {
    .stock-modal {
        width: 840px;
        padding: 40px;
    }
    .stock-modal-text p {
        font-size: 18px;
        line-height: 24px;
    }
    .stock-head-banner-text {
        width: 60%;
    }
    .stock-head-banner-text p {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
        margin-top: 58px;
        margin-bottom: 47px;
    }
}
@media (max-width: 1024px) {
    .stock-modal {
        width: 680px;
        padding: 80px 29px 24px;
    }
    .stock-modal-text p {
        font-size: 16px;
        line-height: 22px;
    }
    .stock-modal-title {
        font-size: 28px;
        line-height: 32px;
        font-weight: 700;
        margin-bottom: 18px;
    }
    .stock-modal-img {
        display: none;
    }
    .stock-modal-row .stock-modal-text button {
        width: 100%;
    }
    .about-us-aside {
        display: none;
    }
    .about-us-main {
        width: 100%;
    }
    .about-us-head {
        width: 100%;
    }
    .stock-head-banner-text {
        width: 60%;
    }
    .stock-head-banner-text h1 {
        font-size: 42px;
        line-height: 44px;
        font-weight: 500;
    }
    .stock-head-banner-text p {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
        margin-top: 58px;
        margin-bottom: 47px;
    }
    .stock-head-banner-img {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .stock-modal {
        width: 90%;
    }
    .about-us-row span {
        display: none;
    }
    .about-us-head span:last-child {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: #6377ee;
    }
    .about-us-main-row {
        margin-top: 22px;
    }
    .about-us-main h1 {
        font-size: 34px;
        line-height: 36px;
    }
    .about-us-main h3 {
        font-size: 18px;
        line-height: 22px;
        margin-top: 22px;
    }
    .about-us-main p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 10px;
    }
    .about-us-main img {
        margin-top: 22px;
    }
    .stock-head-banner-text {
        flex: 1 1 100%;
        text-align: center;
    }
    .stock-head-banner-text h1 {
        font-size: 34px;
        line-height: 36px;
    }
    .stock-head-banner-text p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 18px;
        margin-bottom: 25px;
    }
    .stock-head-banner-img {
        flex: 1 1 100%;
    }
    .stock-head-banner {
        flex-wrap: wrap;
    }
    .stock-head-banner-text-mobile {
        display: none;
    }
}
.stock-head-banner.reviews .stock-head-banner-text.reviews button {
    margin-left: 0;
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
}
.stock-head-banner.reviews .stock-head-banner-text.reviews button:hover {
    background-color: #000;
}
.small-reviews-card.reviews {
    height: auto;
    width: 100%;
}
.metro-choose-cards.reviews {
    gap: 34px;
    margin-top: 0;
}
@media (min-width: 1200px) {
    .stock-head-banner-img.reviews {
        width: 50%;
    }
}
.prices-filter-btns.blog button {
    padding: 10px 20px;
}
.prices-filter-btns.blog {
    margin-bottom: 58px;
}
.blog-contaner h1 {
    font-size: 50px;
    line-height: 54px;
    margin-bottom: 36px;
}
.blog-contaner h2 {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 20px;
}
.blog-card-tags {
    flex: 1 1 65%;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.blog-card-date {
    flex: 1 1 25%;
    font-size: 16px;
    line-height: 20px;
    color: #7a7a7a;
    text-align: right;
}
.branches-card-row.blog {
    align-items: start;
}
.blog-card-tag {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    color: #0e26ff;
    transition: opacity 0.3s;
}
.blog-card-tag:hover {
    opacity: 0.7;
}
.blog-card-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 18px;
}
.custom-select-wrapper.blog {
    display: none;
}
@media (max-width: 768px) {
    .custom-select-wrapper.blog {
        display: block;
    }
    .blog-contaner h1 {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 18px;
    }
    .blog-contaner h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
}
.faq-con.instr {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}
.faq-con.instr img {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 250px;
    height: auto;
}
.faq-con-img.instr img {
    width: 250px;
    height: auto;
    margin-right: 50px;
}
.instr-faq-con {
    width: 100%;
    background-color: #edecf9;
    padding: 50px 0 24px;
}
.instr-cards-con h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 73px;
}
.instr-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
@media screen and (max-width: 1280px) {
    .instr-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 768px) {
    .instr-cards {
        grid-template-columns: 1fr;
    }
}
.instr-cards-con {
    display: flex;
    flex-direction: column;
}
.instr-cards-show-more-btn {
    margin: 0 auto;
    padding: 15px;
    background-color: #fff0;
    border: 1px solid #000;
    border-radius: 16px;
    width: 267px;
    margin-top: 50px;
    transition: background-color 0.3s, color 0.3s;
}
.instr-cards-show-more-btn:hover {
    background-color: #000;
    color: #fff;
}
.custom-select.avtopark.instr {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}
.avtopark-select-row.instr {
    margin-bottom: 32px;
    justify-content: end;
}
.custom-select-wrapper.avtopark.instr {
    margin-right: 0 !important;
}
.avtopark-modal-btn.instr {
    margin-bottom: 20px;
}
.more-teachers-text.avtopark.instr h3 {
    width: 75%;
}
@media (max-width: 1200px) {
    .faq-con.instr img {
        position: absolute;
        bottom: 0;
        right: -50px;
        width: 250px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .faq-con.instr img {
        position: absolute;
        top: -100%;
        left: 10%;
        width: 165px;
        height: auto;
    }
    .instr-faq-con {
        width: 100%;
        background-color: #edecf9;
        padding: 207px 0 24px;
    }
}
@media (max-width: 768px) {
    .faq-con.instr img {
        position: absolute;
        top: -80%;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: auto;
    }
    .instr-cards-con h2 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 25px;
    }
}
@media (max-width: 600px) {
    .faq-con.instr img {
        position: absolute;
        top: -70%;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: auto;
    }
}
.banner-freeze.inexam {
    margin: 0;
    background-color: #f7d9c4;
    position: relative;
}
.banner-freeze.inexam p {
    font-size: 30px;
    line-height: 42px;
    font-weight: 500;
    color: #000;
}
.internal-head {
    width: 1192px;
    height: 490px;
    border-radius: 16px;
    margin: 0 auto;
    background-image: url(/images/internal-head.png);
    background-size: cover;
    background-position: center;
    padding: 60px 40px 50px;
}
.internal-head h1 {
    width: 50%;
    font-size: 60px;
    line-height: 55px;
    font-weight: 700;
    margin-bottom: 30px;
}
.internal-head p {
    width: 50%;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 60px;
}
.internal-head button {
    width: 270px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #0e26ff;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}
.internal-head button:hover {
    background-color: #000;
}
@media screen and (max-width: 1200px) {
    .internal-head {
        background-image: none !important;
        width: initial;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #f6f6f6;
        border-radius: 20px;
        height: initial;
    }
    .internal-head h1 {
        font-size: 28px;
        line-height: 1.25;
    }
    .internal-head p {
        width: 100%;
    }
    .internal-head button {
        width: 100%;
    }
    .submit-form-form button {
        padding: 17px 10px;
    }
}
@media (max-width: 768px) {
    .bread-crumbs-prev {
        font-size: 14px;
    }
    .bread-crumbs-current {
        font-size: 14px;
    }
}
.gos-main {
    width: 59%;
    font-size: 16px;
    line-height: 30px;
}
.gos-main h1 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 80px;
}
.gos-main p {
    margin-bottom: 60px;
}
.gos-main p:last-child {
    margin-bottom: 0;
}
.gos-p-gray {
    padding: 20px 60px 20px 20px;
    background-color: #f4f5fe;
    border-radius: 8px;
}
.gos-p-gray-small {
    color: #a5a6af;
}
.gos-sub-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
}
.gos-main ul {
    list-style-type: none;
    margin-bottom: 95px;
}
.gos-main ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 35px;
}
.gos-main ul li:last-child {
    margin-bottom: 0;
}
.gos-main ul li img {
    width: 40px;
    height: auto;
}
.gos-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 80px;
}
.gos-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.gos-tabs {
    margin-bottom: 60px;
    position: relative;
}
.tab-btn {
    background-color: #fff0;
    border: none;
    cursor: pointer;
    margin-right: 50px;
    font-size: 30px;
    line-height: 50px;
    font-weight: 400;
    color: #a5a6af;
    position: relative;
}
.tab-btn.active {
    font-weight: 500;
    color: #000;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-btn::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.tab-btn.active::after {
    background-color: #0e26ff;
}
.gos-tabs hr {
    position: absolute;
    bottom: -25px;
    width: 100%;
    border: none;
    height: 2px;
    background-color: #ccc;
    z-index: -1;
}
@media (max-width: 1200px) {
    .gos-main {
        width: 80%;
    }
}
@media (max-width: 1024px) {
    .gos-main {
        width: 100%;
    }
}
.calculator-head {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 60px 40px 108px;
    position: relative;
    margin-bottom: 220px;
}
.calculator-head h1 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 25px;
    width: 60%;
}
.calculator-head p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 96px;
    width: 50%;
}
.calculator-head button {
    background-color: #0e26ff;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    border-radius: 15px;
    padding: 17px 95px;
    border: none;
    transition: background-color 0.3s;
}
.calculator-head button:hover {
    background-color: #000;
}
.calc-head-main-img {
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 404px;
    height: auto;
}
.calc-head-sub-img {
    position: absolute;
    bottom: 10%;
    right: 45%;
    width: 200px;
    height: auto;
}
.calc-head-star1-img {
    position: absolute;
    bottom: 45%;
    right: 45%;
    width: 66px;
    height: auto;
}
.calc-head-star2-img {
    position: absolute;
    bottom: 25%;
    right: 40%;
    width: 35px;
    height: auto;
}
.calc-head-star3-img {
    position: absolute;
    bottom: 15%;
    right: 62%;
    width: 35px;
    height: auto;
}
.calc-menu-item-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 35px;
    font-weight: 500;
}
.calc-menu-item-title img {
    width: 50px;
    height: auto;
}
.custom-select-wrapper.calculator-select {
    width: auto;
}
.custom-select-wrapper.calculator-select .custom-select {
    padding: 15px 40px 15px 20px;
    font-size: 25px;
    border-radius: 10px;
}
.calc-menu-item {
    margin-bottom: 80px;
}
.calc-menu-item:last-of-type {
    margin-bottom: 100px;
}
.calc-menu-finish-btn {
    background-color: #0e26ff;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    border-radius: 15px;
    padding: 17px 95px;
    border: none;
    transition: background-color 0.3s;
}
.calc-menu-finish-btn:hover {
    background-color: #000;
}
.prices-filter-btns.calc-menu-item-btns {
    gap: 20px;
    margin-bottom: 0;
}
.filter-btn.calc-menu-item-btn {
    font-size: 25px;
    min-width: 63px;
}
.filter-btn.calc-menu-item-btn {
    font-size: 25px;
    min-width: 63px;
    padding: 15px 25px;
    border-radius: 10px;
    background-color: #fff;
    transition: background-color 0.3s, color 0.3s;
}
.filter-btn.calc-menu-item-btn:hover {
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
}
.filter-btn.calc-menu-item-btn.active {
    background-color: #0e26ff;
    color: #fff;
    border-color: #0e26ff;
}
.submit-form-title.calculator {
    font-weight: 500;
}
.submit-form-text.calculator span {
    font-size: 50px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    color: #0e26ff;
}
.submit-form-text.calculator hr {
    width: 407px;
    color: #000;
    opacity: 1;
    margin-top: 0;
    margin-bottom: 30px;
}
.submit-form-desc.calculator img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}
.submit-form-desc.calculator {
    display: flex;
    align-items: center;
}
.banner-mini-card {
    min-height: 130px;
}
.driving-sites-main {
    width: 60%;
}
.driving-sites-main h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}
.driving-sites-main p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 35px;
}
.driving-sites-main h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 30px;
}
.driving-sites-main-article-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
}
.driving-sites-main-article-row img {
    width: 38px;
    height: auto;
}
.driving-sites-main-article p {
    margin-bottom: 25px;
}
.gos-video-wrapper.driving-sites {
    margin-bottom: 25px;
}
@media (max-width: 1200px) {
    .driving-sites-main {
        width: 80%;
    }
}
@media (max-width: 1024px) {
    .driving-sites-main {
        width: 100%;
    }
}
.courses-head-main-img {
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 531px;
    height: auto;
}
.courses-head-star1-img {
    position: absolute;
    top: 20%;
    right: 50%;
    width: 66px;
    height: auto;
}
.courses-head-star2-img {
    position: absolute;
    top: 10%;
    right: 40%;
    width: 35px;
    height: auto;
}
.courses-head-star3-img {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 35px;
    height: auto;
}
.calculator-head.courses h1 {
    font-size: 60px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 25px;
    width: 40%;
}
.calculator-head.courses p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 96px;
    width: 50%;
}
.calculator-head.courses {
    padding: 60px 40px;
    margin-bottom: 0;
}
.courses-sub-head {
    background-color: rgb(173 195 255 / 0.5);
    padding: 30px;
    border-radius: 16px;
}
.courses-sub-head p {
    font-size: 20px;
    line-height: 30px;
}
.fw500 {
    font-weight: 500;
}
.fw700 {
    font-weight: 700;
}
.courses-steps-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 33px;
    font-size: 20px;
    line-height: 22px;
}
.courses-steps-item p {
    margin-bottom: 0;
}
.courses-steps-item img {
    width: 50px;
    height: auto;
}
.courses-steps-item:last-of-type {
    margin-bottom: 0;
}
.courses-steps h3 {
    width: 40%;
    font-size: 40px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}
.courses-steps-title-p {
    width: 60%;
    font-size: 25px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 50px;
}
.courses-owl-nav {
    float: right;
}
.why-choose-us.courses {
    padding: 0;
}
.branches-cards-more.avtopark.courses {
    margin-bottom: 0;
}
@media (max-width: 1200px) {
    .courses-head-main-img {
        position: absolute;
        bottom: 0;
        right: -5%;
        width: 531px;
        height: auto;
    }
    .courses-steps h3 {
        width: 60%;
        font-size: 40px;
        line-height: 42px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .courses-steps-title-p {
        width: 80%;
        font-size: 25px;
        line-height: 30px;
        font-weight: 400;
        margin-bottom: 50px;
    }
}
@media (max-width: 1024px) {
    .courses-steps h3 {
        width: 100%;
        font-size: 40px;
        line-height: 42px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .courses-steps-title-p {
        width: 100%;
        font-size: 25px;
        line-height: 30px;
        font-weight: 400;
        margin-bottom: 50px;
    }
    .courses-head-main-img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 334px;
        height: auto;
    }
    .courses-head-star1-img {
        position: absolute;
        bottom: 35%;
        left: 5%;
        right: auto;
        top: auto;
        width: 45px;
        height: auto;
    }
    .courses-head-star2-img {
        position: absolute;
        bottom: 45%;
        left: 15%;
        right: auto;
        top: auto;
        width: 30px;
        height: auto;
    }
    .courses-head-star3-img {
        position: absolute;
        bottom: 5%;
        right: 20%;
        width: 30px;
        height: auto;
    }
    .calculator-head.courses h1 {
        font-size: 34px;
        line-height: 36px;
        font-weight: 700;
        margin-bottom: 25px;
        width: 100%;
    }
    .calculator-head.courses p {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        margin-bottom: 25px;
        width: 100%;
    }
    .calculator-head.courses {
        padding: 30px 19px 386px;
        text-align: center;
    }
    .calculator-head.courses button {
        width: 100%;
        font-size: 18px;
        padding: 12px;
    }
}
@media (max-width: 768px) {
    .courses-sub-head {
        padding: 25px 20px;
    }
    .courses-sub-head p {
        font-size: 16px;
        line-height: 22px;
    }
    .courses-steps h3 {
        width: 100%;
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 25px;
    }
    .courses-steps-title-p {
        display: none;
    }
    .courses-steps-item {
        display: block;
    }
    .courses-steps-item p {
        margin-top: 15px;
        font-size: 16px;
        line-height: 22px;
    }
    .courses-owl-nav {
        display: none;
    }
}
.diff-head {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.diff-head-text {
    flex: 1 1 calc(40% - 50px);
}
.diff-head-img {
    flex: 1 1 calc(55% - 50px);
}
.diff-head-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.diff-head-text h1 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 500;
    margin-bottom: 25px;
}
.diff-head-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 90px;
}
.diff-head-text button {
    padding: 15px 60px;
    border-radius: 10px;
    background-color: #0e26ff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s;
}
.diff-head-text button:hover {
    background-color: #000;
}
.diff-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
}
.diff-real {
    font-size: 40px;
    font-weight: 500;
}
.diff-real img {
    width: 80px;
    height: auto;
    margin-right: 30px;
}
.diff-item {
    width: 100%;
    border: 1px solid #000;
    border-radius: 16px;
    padding: 40px;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.diff-item-title {
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto;
}
.diff-item-row {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}
.diff-item:last-of-type {
    margin-bottom: 50px;
}
.diff-item-row-item {
    display: flex;
    flex: 1 1 calc(50% - 40px);
}
.diff-item-row-item img {
    width: 40px;
    height: 40px;
    margin-right: 30px;
}
.diff-item-row::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #000;
}
.diff-main-con {
    display: flex;
    flex-direction: column;
}
.diff-main-con button {
    padding: 18px;
    width: 225px;
    background-color: #fff0;
    border: 1px solid #000;
    border-radius: 10px;
    margin: 0 auto;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.diff-main-con button:hover {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
}
.trial-head {
    padding: 120px 40px 76px;
    background-color: rgb(173 195 255 / 0.5);
    border-radius: 16px;
    position: relative;
}
.trial-head h1 {
    width: 40%;
    font-size: 50px;
    line-height: 55px;
    font-weight: 500;
    margin-bottom: 65px;
}
.trial-btns {
    width: 40%;
    display: flex;
    gap: 13px;
    align-items: center;
}
.trial-btns button {
    padding: 12px;
    border: 1px solid #0e26ff;
    background-color: #0e26ff;
    border-radius: 8px;
    color: #fff;
    flex: 1 1 calc(50% - 13px);
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.trial-btns button:last-of-type {
    border: 1px solid #000;
    background-color: #fff0;
    color: #000;
}
.trial-btns button:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
.trial-head-img-main {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 683px;
    height: auto;
}
.trial-head-img-sub {
    position: absolute;
    top: 5%;
    left: 7%;
    width: 320px;
    height: auto;
}
.trial-head-img-star1 {
    position: absolute;
    top: 7%;
    right: 40%;
    width: 55px;
    height: auto;
}
.trial-head-img-star2 {
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translateX(-50%);
    width: 45px;
    height: auto;
}
.trial-head-img-star3 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 35px;
    height: auto;
}
.distant-con h2 {
    width: 60%;
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 80px;
}
.distant-columns {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.distant-column {
    flex: 1 1 calc(50% - 100px);
}
.distant-column-item {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 35px;
}
.distant-column-item:last-of-type {
    margin-bottom: 0;
}
.distant-column-item img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}
.try-video-con {
    position: relative;
}
.try-video-con span {
    width: 60%;
    display: block;
    font-size: 50px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 80px;
}
.try-video-con p {
    width: 50%;
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 40px;
}
.try-video-con img {
    position: absolute;
    top: 3%;
    right: 33%;
    width: 250px;
    height: auto;
}
.gos-video-wrapper.trial {
    margin-bottom: 0;
}
.trial-test-con h3 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 40px;
}
.trial-test-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.trial-test-btns button {
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #000;
    font-size: 20px;
    font-weight: 700;
    background-color: #fff0;
    border-radius: 10px;
}
.trial-test-btns button:hover {
    background-color: #f4f5fe;
    border: 1px solid #f4f5fe;
}
.trial-test-btns button.active {
    background-color: #0e26ff;
    color: #fff;
    border: 1px solid #0e26ff;
}
.trial-test-item img {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
}
.trial-test-item p {
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}
.test-control-columns {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.test-next-btn {
    background-color: #0e26ff;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    border: none;
    font-size: 20px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.test-next-btn:hover {
    background-color: #000;
}
.test-show-help {
    background-color: #fff0;
    border: none;
    font-size: 20px;
    color: #0e26ff;
    transition: opacity 0.3s;
}
.test-show-help:hover {
    opacity: 0.7;
}
.test-options-row {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    margin-bottom: 15px;
}
.test-options-row:last-of-type {
    margin-bottom: 50px;
}
.test-options-row button {
    width: 30px;
    height: 30px;
    background-color: #fff0;
    border: 1px solid #000;
    border-radius: 7px;
    transition: background-color 0.3s, border 0.3s;
}
.test-options-row button:hover {
    background-color: #f4f5fe;
    border: 1px solid #f4f5fe;
}
.test-options-row button.active {
    background-color: #0e26ff;
    border: 1px solid #0e26ff;
}
.submit-form-con.trial {
    position: relative;
    background-color: rgb(173 195 255 / 0.5);
}
.submit-form-form.b-akpp.trial button {
    background-color: #0e26ff;
    color: #fff;
    width: 250px;
}
.submit-form-form.b-akpp.trial {
    flex: 1 1 30%;
}
.submit-form-form.b-akpp.trial button:hover {
    background-color: #000;
}
.submit-form-desc.trial {
    width: 40%;
}
.submit-form-title.trial {
    width: 70%;
}
.submit-form-con.trial img {
    position: absolute;
    top: 10%;
    left: 41%;
    width: 200px;
    height: auto;
}
.test-show-help.exam {
    color: #a5a6af;
}
.online-choose h3 {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 38px;
    font-weight: 500;
}
.online-choose section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.online-choose section article {
    flex: 1 1 calc(33% - 10px);
    background-color: #ededff;
    border-radius: 8px;
    padding: 60px 26px;
    display: flex;
    align-items: center;
    gap: 33px;
}
.online-choose section article img {
    width: 72px;
    height: auto;
}
.online-choose section article p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}
@media (max-width: 1024px) {
    .online-choose section article {
        flex: 1 1 100%;
    }
    .online-choose section {
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .online-choose section article p {
        font-size: 18px;
    }
    .online-choose h3 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 31px;
    }
}
.app-filling {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 100px 116px;
    box-sizing: border-box;
}
.app-filling h3 {
    font-size: 52px;
    line-height: 54px;
    margin-bottom: 32px;
}
.app-filling-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-bottom: 56px;
}
.app-filling-row div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.app-filling-row div img {
    width: 20px;
    height: auto;
}
.app-filling-row div p {
    font-size: 16px;
    line-height: 20px;
}
.app-filling span {
    display: inline-block;
    padding: 6px 13px;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 26px;
}
.app-filling span:last-of-type {
    margin-top: 30px;
}
.why-choose-us-faq.app-fill {
    background-color: #fff;
    margin-top: 2px;
    padding: 32px;
    width: 100%;
}
.why-choose-us-faq.app-fill.first {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    margin-top: 0;
}
.why-choose-us-faq.app-fill.last {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}
.why-choose-us-faq.app-fill .why-choose-us-faq-question {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}
.why-choose-us-faq.app-fill .why-choose-us-faq-question p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #a3a3a3;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .ui-container {
        max-width: 696px;
        width: 100%;
    }
}
@media (min-width: 1024px) {
    .ui-container {
        max-width: 928px;
        width: 100%;
    }
}
@media (min-width: 1201px) {
    .ui-container {
        max-width: 1200px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .app-filling {
        padding: 29px 0;
    }
    .app-filling h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 18px;
        font-weight: 400;
    }
    .app-filling-row {
        gap: 12px;
        margin-bottom: 18px;
        flex-direction: column;
        align-items: start;
    }
    .why-choose-us-faq.app-fill {
        padding: 24px;
    }
    .why-choose-us-faq.app-fill .why-choose-us-faq-question {
        font-size: 20px;
        line-height: 24px;
    }
    .why-choose-us-faq.app-fill .why-choose-us-faq-question p {
        font-size: 14px;
        margin-top: 16px;
    }
}
.how-to-study-con.online-school h3 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 56px;
    width: 70%;
}
.how-to-study-main.online-school {
    position: relative;
}
.online-school-how-to-study-img {
    position: absolute;
    width: 370px;
    height: auto;
    left: -5%;
    top: -9%;
}
@media (max-width: 1200px) {
    .online-school-how-to-study-img {
        display: none;
    }
}
@media (max-width: 1024px) {
    .how-to-study-con.online-school h3 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .how-to-study-con.online-school h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 18px;
    }
}
.more-teachers-text-row.avtopark.online-school {
    background-color: #0e26ff;
    padding: 68px 58px;
    border-radius: 16px;
    color: #fff;
    margin-top: 0;
}
.more-teachers-text-row.avtopark.online-school h3 {
    width: 100%;
    margin-bottom: 0;
}
.more-teachers-text-row.avtopark.online-school p {
    font-size: 32px;
    line-height: 48px;
    margin-top: 45px;
}
@media (max-width: 1024px) {
    .more-teachers-text-row.avtopark.online-school {
        flex-wrap: wrap;
        padding: 30px 16px;
    }
    .more-teachers-text-row.avtopark.online-school {
        flex: 1 1 100%;
    }
    .more-teachers-btns.avtopark.online-school {
        flex: 1 1 100%;
        margin-top: 40px;
    }
    .more-teachers-text-row.avtopark.online-school p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 18px;
    }
    .more-teachers-btns.avtopark.online-school .more-teachers-btn {
        width: 100%;
    }
}
.free-theory-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 74px;
}
.free-theory-row h3 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}
.free-theory-row p {
    width: 40%;
    font-size: 18px;
    line-height: 28px;
}
.free-theory-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 27px;
}
.free-theory-card {
    position: relative;
    padding: 33px 20px;
    background-color: #f7f7f5;
    border-radius: 8px;
    height: 500px;
    flex: 1 1 calc(33% - 27px);
}
.free-theory-card-img-1 {
    position: absolute;
    bottom: -10%;
    left: -50%;
    transform: translateX(50%);
    width: 370px;
    height: auto;
}
.free-theory-card-img-2 {
    position: absolute;
    bottom: 0;
    left: -50%;
    transform: translateX(50%);
    width: 382px;
    height: auto;
}
.free-theory-card-img-3 {
    position: absolute;
    bottom: 0;
    left: -50%;
    transform: translateX(50%);
    width: 370px;
    height: auto;
}
.free-theory-card p {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}
@media (max-width: 1200px) {
    .free-theory-card {
        height: 450px;
    }
    .free-theory-card-img-1 {
        position: absolute;
        bottom: -10%;
        left: -50%;
        transform: translateX(50%);
        width: 290px;
        height: auto;
    }
    .free-theory-card-img-2 {
        position: absolute;
        bottom: 0;
        left: -50%;
        transform: translateX(50%);
        width: 290px;
        height: auto;
    }
    .free-theory-card-img-3 {
        position: absolute;
        bottom: 0;
        left: -50%;
        transform: translateX(50%);
        width: 290px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .free-theory-row {
        flex-wrap: wrap;
    }
    .free-theory-row h3 {
        width: 100%;
    }
    .free-theory-row p {
        width: 100%;
    }
    .free-theory-card {
        flex: 1 1 100%;
    }
    .free-theory-card-img-1 {
        position: absolute;
        bottom: -5%;
        left: 50%;
        transform: translateX(-50%);
        width: 290px;
        height: auto;
    }
    .free-theory-card-img-2 {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 290px;
        height: auto;
    }
    .free-theory-card-img-3 {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 290px;
        height: auto;
    }
}
@media (max-width: 768px) {
    .free-theory-row {
        gap: 18px;
        margin-bottom: 18px;
    }
    .free-theory-row h3 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 0;
    }
    .free-theory-row p {
        font-size: 16px;
        line-height: 22px;
    }
}
.online-school-banner {
    max-width: 1400px;
    width: 100%;
    background-color: #000;
    border-radius: 16px;
    padding: 33px 120px;
    margin: 0 auto;
    color: #fff;
}
.online-school-banner-row {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    align-items: center;
}
.online-school-banner-text {
    padding: 90px 0 60px;
    flex: 1 1 calc(70% - 56px);
}
.online-school-banner-img {
    flex: 1 1 calc(30% - 56px);
}
.online-school-banner-img img {
    width: 100%;
    height: auto;
}
.online-school-banner-text h1 {
    font-size: 58px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 48px;
}
.online-school-banner-text p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 39px;
    width: 60%;
}
.online-school-banner-text button {
    padding: 18px;
    background-color: #0e26ff;
    border-radius: 10px;
    font-size: 18px;
    line-height: 20px;
    border: none;
    color: #fff;
    margin-bottom: 73px;
    transition: background-color 0.3s;
}
.online-school-banner-text button:hover {
    background-color: #000;
}
.online-school-banner-cards-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.online-school-banner-card {
    flex: 1 1 calc(33% - 14px);
    background-color: #fff;
    border-radius: 8px;
    padding: 24px 20px;
    color: #000;
}
.online-school-banner-card {
    font-size: 22px;
    line-height: 24px;
}
.online-school-banner-card p {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    margin-top: 11px;
    margin-bottom: 0;
    color: #666;
}
.online-school-banner-mobile {
    display: none;
}
@media (max-width: 1024px) {
    .online-school-banner-text button {
        display: none;
    }
    .online-school-banner-img {
        display: none;
    }
    .online-school-banner-mobile {
        display: block;
        width: 249px;
        height: auto;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .online-school-banner-text {
        padding: 0;
        flex: 1 1 100%;
    }
    .online-school-banner-card {
        flex: 1 1 100%;
        padding: 15px;
        border-radius: 16px;
    }
    .online-school-banner-text p {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .online-school-banner-text h1 {
        font-size: 34px;
        line-height: 36px;
        font-weight: 700;
        margin-bottom: 18px;
    }
    .online-school-banner-text p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    .online-school-banner {
        max-width: 1400px;
        width: 95%;
        padding: 28px 0;
    }
    .online-school-banner-card {
        font-size: 18px;
        line-height: 22px;
    }
    .online-school-banner-card p {
        width: 100%;
        font-size: 14px;
        line-height: 18px;
        margin-top: 10px;
        margin-bottom: 0;
        color: #666;
    }
}
.price-btns-row a {
    display: flex;
    flex: 1 1 calc(50% - 10px);
    text-decoration: none;
}
.sticky-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 98%;
    margin: 0 auto;
    background-color: #e7f161;
    border-radius: 100px;
    padding: 16px;
    text-align: center;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sticky-banner p {
    font-size: 25px;
    line-height: 26px;
    font-weight: 400;
    margin-right: 212px;
    z-index: 1002;
}
.sticky-banner span {
    font-weight: 500;
}
.sticky-banner button {
    border: none;
    padding: 10px 12px;
    background-color: #0e26ff;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s;
    margin-right: 150px;
    z-index: 1002;
}
.sticky-banner button:hover {
    background-color: #0e26ff;
}
.mb36-sticky-banner {
    margin-bottom: 36px;
}
.sticky-banner-img-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: auto;
}
.sticky-banner-img-2 {
    position: absolute;
    left: 62%;
    bottom: 5%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
}
.sticky-banner-img-3 {
    position: absolute;
    right: 80px;
    bottom: 0;
    width: 300px;
    height: auto;
}
@media (max-width: 1630px) {
    .sticky-banner p {
        margin-right: 150px;
    }
    .sticky-banner button {
        margin-right: 50px;
    }
    .sticky-banner-img-1 {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 200px;
        height: auto;
    }
    .sticky-banner-img-2 {
        position: absolute;
        left: 70%;
        bottom: 5%;
        transform: translateX(-50%);
        width: 200px;
        height: auto;
    }
    .sticky-banner-img-3 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 300px;
        height: auto;
    }
}
@media (max-width: 1430px) {
    .sticky-banner p {
        margin-right: 75px;
        font-size: 20px;
    }
    .sticky-banner button {
        margin-right: 50px;
    }
    .sticky-banner-img-1 {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 200px;
        height: auto;
    }
    .sticky-banner-img-2 {
        display: none;
    }
    .sticky-banner-img-3 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 300px;
        height: auto;
    }
}
@media (max-width: 1200px) {
    .sticky-banner p {
        margin-right: 30px;
        font-size: 20px;
    }
    .sticky-banner button {
        margin-right: 0;
    }
    .sticky-banner-img-1 {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 200px;
        height: auto;
    }
    .sticky-banner-img-2 {
        display: none;
    }
    .sticky-banner-img-3 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 300px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .sticky-banner p {
        margin-right: 30px;
        font-size: 20px;
    }
    .sticky-banner button {
        margin-right: 0;
    }
    .sticky-banner-img-1 {
        display: none;
    }
    .sticky-banner-img-2 {
        display: none;
    }
    .sticky-banner-img-3 {
        display: none;
    }
}
@media (max-width: 850px) {
    .sticky-banner p {
        margin-right: 30px;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .sticky-banner {
        display: none;
    }
    .mb36-sticky-banner {
        display: none;
    }
}
.sticky-banner-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 24px 36px;
    text-align: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sticky-banner-mobile button {
    width: 90%;
    background-color: #0e26ff;
    border-radius: 8px;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
}
.sticky-banner-mobile button:active {
    background-color: #000;
}
@media (max-width: 768px) {
    .sticky-banner-mobile {
        display: block;
    }
}
.custom-select-wrapper.prices {
    display: none;
}
@media (max-width: 768px) {
    .custom-select-wrapper.prices {
        display: block;
        margin-bottom: 40px;
        width: 271px;
        font-size: 18px;
    }
}
.instructors-modal {
    width: 950px;
    height: auto;
    padding: 30px 33px;
    overflow-y: auto;
    max-height: 90vh;
}
.instructors-no-scroll {
    position: fixed;
    width: 100%;
}
.instructors-modal .avtopark-modal-content .stock-modal-row .instructors-modal-column .instructors-modal-column-row .instructors-modal-column-img {
    width: 114px;
    height: auto;
    position: relative;
    border: 4px solid #0e26ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: content-box;
    margin-right: 7px;
}
.instructors-modal .avtopark-modal-content .stock-modal-row .instructors-modal-column .instructors-modal-column-row .instructors-modal-column-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instructors-modal-column-row {
    display: flex;
    justify-content: space-between;
}
.instructors-modal-column-row p {
    font-size: 18px;
    font-weight: 500;
}
.instructors-modal-column {
    width: 281px;
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 28px 18px 35px;
}
.instructors-modal-row {
    display: flex;
    gap: 20px;
}
.instructors-modal-row aside {
    flex: 1 1 calc(30% - 20px);
    padding: 28px 16px 35px;
    background-color: #f4f5fe;
    border-radius: 16px;
}
.instructors-modal-row main {
    flex: 1 1 calc(70% - 20px);
}
.instructors-modal-row aside .inst-row:nth-child(1) {
    display: flex;
    gap: 7px;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}
.inst-img-con {
    width: 114px;
    height: 114px;
    border: 4px solid #0e26ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.inst-img-con img {
    width: 100px;
    height: 100px;
}
.instructors-modal-row aside .inst-row:nth-child(2) {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin-top: 35px;
}
.instructors-modal-row aside .inst-row:nth-child(2) p {
    font-size: 14px;
    font-weight: 400;
}
.inst-car {
    margin-bottom: 10px;
}
.inst-car p {
    font-size: 14px;
    margin-bottom: 10px;
}
.inst-car span {
    font-size: 18px;
    font-weight: 500;
}
.inst-span {
    display: inline-block;
    padding: 2px 4px;
    border: 1px solid #000;
    border-radius: 6px;
}
.instructors-modal-row aside .inst-row:nth-child(3) {
    display: flex;
    gap: 5px;
    font-size: 16px;
}
.instructors-modal-row aside p:last-of-type {
    font-size: 16px;
    line-height: 20px;
}
.instructors-modal-row main {
    margin-top: 32px;
}
.inst-reviews-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 32px;
}
.inst-review {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 18px 38px 18px 24px;
    font-size: 16px;
    line-height: 24px;
}
.inst-review {
    margin-bottom: 12px;
}
.inst-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.inst-review-row img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 23px;
    object-fit: cover;
}
.inst-review-row > span:last-of-type {
    font-size: 16px;
    font-weight: 400;
}
.inst-review-row div span {
    font-size: 18px;
    font-weight: 500;
}
.instructors-modal-row aside .inst-row .inst-img-con .rating-oval {
    background-color: #000;
}
@media (min-width: 1024px) {
    .instructors-modal-row aside button:hover {
        background-color: #000;
    }
}
@media (max-width: 1024px) {
    .instructors-modal-row {
        flex-direction: column;
        gap: 26px;
    }
    .instructors-modal {
        width: 100%;
        padding: 89px 24px 29px;
    }
    .instructors-modal-row aside .inst-row:nth-child(2) {
        justify-content: start;
        gap: 30px;
    }
    .instructors-modal-row main {
        margin-top: 0;
    }
    .inst-reviews-title {
        margin-bottom: 14px;
    }
}
@media (max-width: 768px) {
    .stock-head-banner.reviews .stock-head-banner-text.reviews button {
        display: none;
    }
}
.reviews-modal {
    padding: 68px 100px;
    width: 809px;
    height: auto;
    border-radius: 16px;
}
.reviews-modal .contacts-modal-content .modal-step-1 > span:first-of-type {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 61px;
    display: block;
}
.reviews-modal .contacts-modal-content .modal-step-2 > span:first-of-type {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 61px;
    display: block;
}
.reviews-modal .contacts-modal-content .modal-step-1 .reviews-modal-form {
    margin: 0;
    width: 100%;
}
.reviews-modal .contacts-modal-content .modal-step-2 .reviews-modal-form {
    margin: 0;
    width: 100%;
}
.reviews-modal-form textarea {
    width: 597px;
    min-height: 137px;
    max-height: 137px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 16px 21px;
    font-size: 16px;
    margin-bottom: 50px;
}
.reviews-modal-form-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
}
.reviews-modal-form-maps p {
    font-size: 14px;
    margin-bottom: 22px;
}
.reviews-modal-form-maps div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reviews-modal-form-maps div img {
    width: 125px;
    height: auto;
}
.reviews-modal-form-maps div img:nth-child(n + 3) {
    display: none;
}
.reviews-modal .contacts-modal-content .modal-step-1 .reviews-modal-form .reviews-modal-form-row button {
    width: 256px;
}
.reviews-modal .contacts-modal-content .modal-step-2 .reviews-modal-form .reviews-modal-form-row button {
    width: 256px;
}
.reviews-modal-form-input-row .custom-select-wrapper {
    display: block;
    flex: 1 1 calc(50% - 31px);
}
.reviews-modal-form-input-row {
    display: flex;
    gap: 31px;
}
.reviews-modal-form-input-row input {
    flex: 1 1 calc(50% - 31px);
    height: 56px;
    margin-bottom: 0;
}
.reviews-modal-form-input-row input[type="file"] {
    height: auto;
}
.reviews-modal-form-input-row .custom-select-wrapper {
    display: block;
    flex: 1 1 calc(50% - 31px);
    margin: 0;
}
.reviews-modal-form-input-row .custom-select-wrapper .custom-select {
    height: 56px;
    padding: 18px 21px;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
}
.reviews-modal-form-input-row .custom-select-wrapper .custom-select .select-placeholder {
    font-size: 16px;
}
.reviews-modal-form .reviews-modal-form-input-row {
    margin-bottom: 25px;
}
.reviews-modal-form .reviews-modal-form-input-row:first-of-type {
    margin-bottom: 25px;
}
@media (max-width: 1024px) {
    .reviews-modal-form-row {
        flex-direction: column;
        gap: 28px;
        align-items: start;
    }
    .reviews-modal {
        padding: 80px 29px 24px;
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    .reviews-modal-form-maps div {
        flex-direction: column;
        gap: 16px;
    }
    .reviews-modal-form-maps div img {
        width: 228px;
        height: auto;
    }
    .reviews-modal-form-maps div img:nth-child(n + 3) {
        display: block;
    }
    .reviews-modal-form-maps div img:nth-child(1) {
        display: none;
    }
    .reviews-modal-form-maps div img:nth-child(2) {
        display: none;
    }
    .reviews-modal-form textarea {
        width: 100%;
        min-height: 210px;
        max-height: 210px;
        border-radius: 12px;
    }
    .reviews-modal .contacts-modal-content .modal-step-1 > span:first-of-type {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 24px;
        display: inline-block;
    }
    .reviews-modal .contacts-modal-content .modal-step-2 > span:first-of-type {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 24px;
        display: inline-block;
    }
    .reviews-modal .contacts-modal-content {
        text-align: left;
    }
    .reviews-modal .contacts-modal-content .modal-step-1 .reviews-modal-form .reviews-modal-form-row button {
        width: 100%;
    }
    .reviews-modal .contacts-modal-content .modal-step-2 .reviews-modal-form .reviews-modal-form-row button {
        width: 100%;
    }
    .reviews-modal-form-input-row {
        flex-direction: column;
        gap: 6px;
    }
    .reviews-modal-form .reviews-modal-form-input-row:first-of-type {
        margin-bottom: 6px;
    }
}
.banner-mini-card-text {
    color: #666;
}
.banner-mini-card {
    padding: 30px 20px 20px;
}
.submit-form-title.avtopark {
    width: 70%;
}
.submit-form-desc.avtopark {
    margin-left: 10px;
    width: 65%;
}
.submit-form-desc.avtopark div {
    display: flex;
    gap: 12px;
}
.submit-form-desc.avtopark div:first-of-type {
    margin-bottom: 25px;
}
.submit-form-desc.avtopark div img {
    width: 10px;
    height: 10px;
    margin-top: 5px;
}
.submit-form-desc.avtopark div p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.submit-form-form.b-akpp.avtopark button {
    width: 100%;
    font-size: 18px;
}
.submit-form-form.b-akpp.avtopark {
    flex: 1 1 316px;
}
.submit-form-con.b-akpp.avtopark {
    padding: 65px 100px;
    position: relative;
}
.submit-form-con.b-akpp.avtopark > img:first-of-type {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    width: 155px;
    height: auto;
}
@media (max-width: 1200px) {
    .submit-form-form.b-akpp.avtopark {
        margin-top: 120px;
    }
    .submit-form-con.b-akpp.avtopark > img:first-of-type {
        position: absolute;
        left: 75%;
        transform: translateX(-75%) translateY(-10%);
        top: 10%;
        width: 155px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .submit-form-con.b-akpp.avtopark > img:first-of-type {
        display: none;
    }
    .submit-form-title.avtopark {
        width: 100%;
    }
    .submit-form-desc.avtopark {
        margin-left: 0;
        width: 100%;
    }
    .submit-form-con.b-akpp.avtopark {
        padding: 30px 25px;
    }
    .submit-form-desc.avtopark div:last-of-type {
        margin-bottom: 25px;
    }
    .submit-form-form.b-akpp.avtopark {
        margin-top: 0;
    }
}
.more-teachers-btns.avtopark.online-school button {
    border: none;
}
.how-to-study-img.online-school img:last-of-type {
    display: none;
}
@media (max-width: 1200px) {
    .how-to-study-img.online-school img:first-of-type {
        display: none;
    }
    .how-to-study-img.online-school img:last-of-type {
        display: block;
    }
}
.why-choose-us-faq-answer.faq.online-school {
    background-color: #fff;
}
.why-choose-us-faq-answer.faq.online-school ul {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}
.pdrl-20 {
    padding-right: 20px;
    padding-left: 20px;
}
.ui-price-con {
    margin: 0 auto;
}
@media (max-width: 767.9px) {
    .ui-price-con {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 768px) {
    .ui-price-con {
        width: 696px;
    }
}
@media (min-width: 1024px) {
    .ui-price-con {
        width: 928px;
    }
}
@media (min-width: 1201px) {
    .ui-price-con {
        width: 1200px;
    }
}
@media (min-width: 1350px) {
    .ui-price-con {
        width: 1304px;
    }
}
@media (max-width: 500px) {
    .prices-card {
        width: 100%;
    }
}
.moscow-first-block-text-column {
    width: 60%;
}
.moscow-first-block-gif-column {
    width: 35%;
}
.moscow-first-block-desc {
    font-size: 30px;
    font-weight: 500;
}
.moscow-first-block-btns {
    margin-bottom: 72px;
}
.moscow-first-block-btns button:first-of-type {
    width: 225px;
}
@media (max-width: 1024px) {
    .moscow-first-block-text-column {
        width: 100%;
    }
    .moscow-first-block-gif-column {
        width: 100%;
    }
    .moscow-first-block-card {
        flex: 1 1 248px;
    }
    .moscow-first-block-btns {
        margin-bottom: 0;
    }
}
.clean-cars-con.new {
    padding-bottom: 0;
}
.more-teachers-text-row.clean-cars.new h3 {
    font-size: 52px;
    line-height: 52px;
    font-weight: 500;
    margin-bottom: 31px;
}
.more-teachers-text-row.clean-cars {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .more-teachers-text-row.clean-cars.new h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 16px;
    }
}
.clean-classes-title.new h3 {
    font-size: 48px;
    line-height: 55px;
    font-weight: 500;
    margin-bottom: 23px;
}
.clean-classes-title.new p {
    font-size: 32px;
    line-height: 38px;
    font-weight: 400;
}
.clean-classes-title.new {
    width: 60%;
}
@media (max-width: 1200px) {
    .clean-classes-title.new {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .clean-classes-title.new {
        width: 100%;
    }
}
.clean-classes-con.ui-container.new {
    padding-bottom: 0;
}
.our-offices-cards {
    margin-bottom: 0;
}
.best-teachers-con.new,
.why-choose-us.new {
    padding-top: 0;
}
.why-choose-us.new {
    padding-bottom: 0;
}
.real-avto-numbers.new {
    padding-bottom: 0;
}
.lucky-hours-con {
    color: #fff;
    background-color: #0e26ff;
    border-radius: 16px;
    padding: 44px 344px 8px 122px;
    position: relative;
    text-align: center;
}
.lucky-hours-con h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 68px;
    margin-bottom: 36px;
}
.lucky-hours-con span {
    display: block;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 36px;
}
.lucky-hours-con button {
    z-index: 10;
    border-radius: 10px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 28px;
    padding: 24px;
    width: 292px;
    background-color: #fff;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}
.lucky-hours-con p {
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
}
.lucky-hours-con img:nth-of-type(1) {
    position: absolute;
    bottom: -15%;
    right: 0;
    width: 351px;
    height: auto;
}
.lucky-hours-con img:nth-of-type(2) {
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 450px;
    height: auto;
}
.lucky-hours-con img:nth-of-type(3) {
    position: absolute;
    bottom: 40%;
    left: 15%;
    width: 95px;
    height: auto;
}
.lucky-hours-con img:nth-of-type(4) {
    position: absolute;
    bottom: 15%;
    right: 30%;
    width: 117px;
    height: auto;
}
.lucky-hours-con img:nth-of-type(5) {
    position: absolute;
    top: 30%;
    right: 2%;
    width: 33px;
    height: auto;
}
@media (min-width: 769px) {
    .lucky-hours-con button:hover {
        background-color: #000;
        color: #fff;
    }
}
@media (max-width: 768px) {
    .lucky-hours-con button:active {
        background-color: #000;
        color: #fff;
    }
}
@media (max-width: 1200px) {
    .lucky-hours-con img:nth-of-type(1) {
        position: absolute;
        bottom: -15%;
        right: -5%;
        width: 351px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(2) {
        position: absolute;
        bottom: -15%;
        left: -15%;
        width: 450px;
        height: auto;
    }
    .lucky-hours-con {
        padding: 44px 300px 8px 170px;
    }
    .lucky-hours-con img:nth-of-type(3) {
        position: absolute;
        bottom: 55%;
        left: 10%;
        width: 95px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(4) {
        position: absolute;
        bottom: 25%;
        right: 27%;
        width: 117px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(5) {
        position: absolute;
        top: 30%;
        right: 2%;
        width: 33px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .lucky-hours-con img:nth-of-type(1) {
        position: absolute;
        bottom: auto;
        top: -18%;
        right: 45%;
        transform: translateX(50%);
        width: 351px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(2) {
        display: none;
    }
    .lucky-hours-con {
        padding: 380px 25px 20px;
    }
    .lucky-hours-con img:nth-of-type(3) {
        position: absolute;
        bottom: auto;
        top: 10%;
        left: 10%;
        width: 95px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(4) {
        position: absolute;
        bottom: 55%;
        right: 5%;
        width: 117px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(5) {
        display: none;
    }
}
@media (max-width: 768px) {
    .lucky-hours-con img:nth-of-type(1) {
        position: absolute;
        bottom: auto;
        top: -10%;
        right: 45%;
        transform: translateX(50%);
        width: 250px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(2) {
        display: none;
    }
    .lucky-hours-con {
        padding: 340px 25px 20px;
    }
    .lucky-hours-con h3 {
        font-size: 26px;
        font-weight: 700;
        line-height: 32px;
        margin-bottom: 20px;
    }
    .lucky-hours-con span {
        font-size: 28px;
        font-weight: 700;
        line-height: 36px;
        margin-bottom: 38px;
    }
    .lucky-hours-con button {
        font-size: 16px;
        font-weight: 400;
        line-height: 16px;
        margin-bottom: 20px;
        width: 100%;
    }
    .lucky-hours-con p {
        font-size: 16px;
        font-weight: 400;
        line-height: 16px;
        margin-bottom: 20px;
    }
    .lucky-hours-con img:nth-of-type(3) {
        position: absolute;
        bottom: auto;
        top: 5%;
        left: 5%;
        width: 77px;
        height: auto;
    }
    .lucky-hours-con img:nth-of-type(4) {
        position: absolute;
        bottom: 50%;
        right: 5%;
        width: 69px;
        height: auto;
    }
}
@media screen and (min-width: 768px) {
    .image-child-page {
        width: initial !important;
    }
}
.video-lessons {
    display: flex;
    gap: 14px;
}
.video-lessons div {
    flex: 1 1 calc(33% - 14px);
    background-color: #f4f5fe;
    border-radius: 8px;
    padding: 35px 29px 44px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.video-lessons div:nth-child(1) img {
    display: block;
    width: 70%;
    height: 200px;
    margin-bottom: 32px;
}
.video-lessons div:nth-child(2) img {
    display: block;
    height: 200px;
    margin-bottom: 32px;
}
.video-lessons div:nth-child(3) img {
    display: block;
    width: 70%;
    height: 200px;
    margin-bottom: 32px;
}
.video-lessons div span {
    font-size: 28px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 26px;
}
.video-lessons div p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
}
@media (max-width: 1200px) {
    .video-lessons div {
        padding: 25px 15px 30px;
    }
}
@media (max-width: 1024px) {
    .video-lessons div {
        padding: 18px 10px 25px;
    }
    .video-lessons div:nth-child(1) img {
        display: block;
        width: 60%;
        height: auto;
        margin-bottom: 29px;
    }
    .video-lessons div:nth-child(2) img {
        display: block;
        width: 80%;
        height: auto;
        margin-bottom: 29px;
    }
    .video-lessons div:nth-child(3) img {
        display: block;
        width: 60%;
        height: auto;
        margin-bottom: 29px;
    }
    .video-lessons div span {
        font-size: 20px;
        line-height: 20px;
        font-weight: 500;
        margin-bottom: 16px;
    }
    .video-lessons div p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px;
    }
}
@media (max-width: 768px) {
    .video-lessons div {
        flex: 1 1 100%;
    }
    .video-lessons {
        flex-wrap: wrap;
    }
    .banner-container-mobile-title {
        line-height: 36px;
    }
}
@media (min-width: 1201px) {
    .banner-text-title.new-offices {
        font-size: 56px;
        margin-bottom: 80px;
    }
}
@media (max-width: 1450px) {
    .banner-mini-cards.new-offices {
        margin-top: 80px;
    }
}
.prices-head-banner-head.new-prices {
    padding: 90px 63px;
}
.bonuces {
    padding: 70px 63px 70px 631px;
    background-color: #f4f5fe;
    border-radius: 16px;
    position: relative;
}
.bonuces > img:first-of-type {
    position: absolute;
    width: 502px;
    height: auto;
    bottom: 0;
    left: 5%;
}
.bonuces-text h3 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 41px;
}
.bonuces-text p {
    width: 75%;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 41px;
}
.bonuces-text span {
    font-weight: 500;
}
.bonuces-mini {
    margin-top: 31px;
    border-radius: 16px;
    background-color: #f4f5fe;
    padding: 28px 134px 28px 280px;
    position: relative;
}
.bonuces-mini img {
    position: absolute;
    width: 109px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
}
.bonuces-mini p {
    font-size: 34px;
    line-height: 42px;
    font-weight: 500;
}
@media (max-width: 1200px) {
    .bonuces > img:first-of-type {
        position: absolute;
        width: 400px;
        height: auto;
        bottom: 0;
        left: 0;
    }
    .bonuces {
        padding: 55px 40px 55px 430px;
        background-color: #f4f5fe;
        border-radius: 16px;
        position: relative;
    }
}
@media (max-width: 1024px) {
    .bonuces > img:first-of-type {
        position: absolute;
        width: 400px;
        height: auto;
        bottom: 0;
        left: 45%;
        transform: translateX(-50%);
    }
    .bonuces {
        padding: 40px 40px 500px;
        background-color: #f4f5fe;
        border-radius: 16px;
        position: relative;
    }
    .bonuces-mini {
        padding: 28px 50px 28px 170px;
    }
    .bonuces-mini p {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
    }
    .bonuces-mini img {
        position: absolute;
        width: 109px;
        height: auto;
        top: 50%;
        transform: translateY(-50%);
        left: 5%;
    }
}
@media (max-width: 768px) {
    .bonuces > img:first-of-type {
        position: absolute;
        width: 300px;
        height: auto;
        bottom: 0;
        left: 45%;
        transform: translateX(-50%);
    }
    .bonuces {
        padding: 40px 40px 400px;
        background-color: #f4f5fe;
        border-radius: 16px;
        position: relative;
    }
    .bonuces-text p {
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 41px;
    }
    .bonuces-mini {
        padding: 130px 28px 28px 28px;
    }
    .bonuces-mini p {
        font-size: 24px;
        line-height: 28px;
        font-weight: 500;
    }
    .bonuces-mini img {
        position: absolute;
        width: 109px;
        height: auto;
        top: 30%;
        left: 0;
    }
}
.why-choose-us.tseny {
    padding-top: 0;
}
.more-teachers-btns.avtopark.stocks {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
}
.more-teachers-btns.avtopark.stocks button {
    margin-bottom: 0;
}
.stock-head-banner-text.reviews button {
    padding: 13px;
    border-radius: 10px;
    background-color: #0e26ff;
    color: #fff;
    width: 225px;
    border: 1px solid #0e26ff;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}
.stock-head-banner-text.reviews button:last-child {
    background-color: #fff0;
    border: 1px solid #000;
    color: #000;
    font-weight: 400;
    margin-left: 16px;
}
.stock-head-banner-text.reviews button:hover {
    background-color: #000;
    color: #fff;
}
.stock-head-banner-text.reviews h1 {
    margin-bottom: 74px;
}
.stock-head-banner.reviews .stock-head-banner-text.reviews button:last-of-type {
    background-color: #fff0;
    border: 1px solid #000;
    color: #000;
    margin-left: 20px;
}
.stock-head-banner.reviews .stock-head-banner-text.reviews button:last-of-type:hover {
    background-color: #000;
    color: #fff;
}
@media (max-width: 1024px) {
    .stock-head-banner.reviews .stock-head-banner-text.reviews button:last-of-type {
        margin-top: 20px;
        margin-left: 0;
    }
}
.bonuces-text-button {
    background-color: #0e26ff;
    color: #fff;
    border-radius: 10px;
    padding: 18px;
    width: 225px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s;
}
@media (min-width: 769px) {
    .bonuces-text-button:hover {
        background-color: #000;
    }
}
@media (max-width: 768px) {
    .bonuces-text-button {
        display: none;
    }
}
.faq-con.otszyvy {
    margin-top: 0;
}
.moscow-first-block.inst {
    background-image: none;
}
@media (min-width: 1025px) {
    .our-offices-subtitle.new {
        width: 60%;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .our-offices-subtitle.new {
        width: 80%;
    }
}
@media (min-width: 1201px) and (max-width: 1350px) {
    .our-offices-cards {
        width: 1200px;
    }
}
.our-offices-card.addres {
    background-color: #f4f5fe;
    width: 298px;
    flex: none;
    padding: 18px 24px 32px;
}
@media (min-width: 1201px) and (max-width: 1350px) {
    .our-offices-card.addres {
        width: 280px;
    }
}
.our-offices-card.addres span {
    font-size: 16px;
    line-height: 16px;
    color: #5f5f5f;
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
    width: 100%;
}
.our-offices-card.addres p {
    font-size: 18px;
    line-height: 18px;
}
.our-offices-card.addres img {
    width: 14px;
    height: 14px;
}
.avtopark-select-row.offices {
    margin-bottom: 42px;
}
.input-offices {
    width: 200px;
    height: 46px;
    position: relative;
}
.input-offices input {
    background-color: #fff0;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    padding: 10px 18px 10px 43px;
    border: 1px solid #000;
}
.input-offices img {
    position: absolute;
    width: 20px;
    height: auto;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
@media (max-width: 768px) {
    .avtopark-select-row.offices {
        display: flex;
    }
    .input-offices {
        width: 100%;
    }
    .custom-select-wrapper.avtopark.offices {
        width: 100%;
        margin-right: 0;
    }
    .custom-select.avtopark.offices {
        width: 100%;
    }
    .avtopark-select-row.offices {
        margin-bottom: 26px;
    }
    .our-offices-title-block {
        margin-bottom: 26px;
    }
}
.more-teachers-carousel-card-razm {
    width: 340px;
}
.diff-main-con .diff-item:nth-child(n + 5) {
    display: none;
}
.diff-main-con .diff-item.show {
    display: flex;
}
@media screen and (max-width: 768px) {
    .diff-item-row::after {
        display: none;
    }
    .diff-title {
        align-items: end;
        justify-content: space-between;
    }
    .diff-real {
        font-size: 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .diff-item-row {
        flex-direction: column;
    }
}
.mini-banner-con {
    padding: 36px 52px 36px 257px;
    background-color: #0e26ff;
    color: #fff;
    border-radius: 16px;
    position: relative;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}
.mini-banner-con img {
    position: absolute;
    left: -2%;
    top: 40%;
    transform: translateY(-50%);
    width: 273px;
    height: auto;
}
@media (max-width: 1024px) {
    .mini-banner-con img {
        position: absolute;
        left: -4%;
        top: 40%;
        transform: translateY(-50%);
        width: 220px;
        height: auto;
    }
    .mini-banner-con {
        padding: 36px 52px 36px 200px;
        background-color: #0e26ff;
        color: #fff;
        border-radius: 16px;
        position: relative;
        font-size: 20px;
        line-height: 28px;
        font-weight: 500;
    }
}
@media (max-width: 768px) {
    .mini-banner-con img {
        position: absolute;
        left: -4%;
        top: 40%;
        transform: translateY(-50%);
        width: 150px;
        height: auto;
    }
    .mini-banner-con {
        padding: 18px 18px 18px 130px;
        background-color: #0e26ff;
        color: #fff;
        border-radius: 16px;
        position: relative;
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
    }
}
.why-choose-us-con.medcom {
    gap: 22px;
}
.why-choose-us-text.medcom {
    flex: 1 1 calc(50% - 22px);
}
.why-choose-us-img.medcom {
    flex: 1 1 calc(50% - 22px);
}
.why-choose-us-text.medcom .why-choose-us-faq.first {
    margin-top: 40px;
}
.why-choose-us-text.medcom .why-choose-us-faq {
    padding-bottom: 16px;
}
.why-choose-us-text.medcom .why-choose-us-faq .why-choose-us-faq-answer {
    background-color: #e3e2f6;
}
@media (min-width: 1200px) {
    .courses-steps.medcom h3 {
        width: 50%;
    }
}
.med-price-con {
    width: 100%;
    background-color: #0e26ff;
    border-radius: 16px;
    padding: 43px 76px 66px 552px;
    position: relative;
    color: #fff;
}
.med-price-con p {
    font-size: 38px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 48px;
}
.med-price-con span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: block;
}
.med-price-con img {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 368px;
    height: auto;
}
.med-price-con button {
    font-size: 24px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 48px;
    padding: 16px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    width: 195px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 769px) {
    .med-price-con button:hover {
        background-color: #000;
        color: #fff;
    }
}
@media (max-width: 768px) {
    .med-price-con button:active {
        background-color: #000;
        color: #fff;
    }
}
@media (max-width: 1200px) {
    .med-price-con {
        width: 100%;
        background-color: #0e26ff;
        border-radius: 20px;
        padding: 43px 76px 66px 400px;
        position: relative;
        color: #fff;
    }
    .med-price-con img {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 368px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .med-price-con {
        width: 100%;
        background-color: #0e26ff;
        border-radius: 20px;
        padding: 30px 50px 40px 250px;
        position: relative;
        color: #fff;
    }
    .med-price-con img {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 250px;
        height: auto;
    }
    .med-price-con p {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .med-price-con span {
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        display: block;
    }
    .med-price-con button {
        font-size: 20px;
    }
}
@media (max-width: 1024px) {
    .med-price-con {
        width: 100%;
        background-color: #0e26ff;
        border-radius: 20px;
        padding: 170px 30px 30px 30px;
        position: relative;
        color: #fff;
    }
    .med-price-con img {
        position: absolute;
        left: 0;
        top: 12%;
        width: 250px;
        height: auto;
    }
}
.b-akpp-how-to-learn.dop-uslugi {
    background-color: #f4f5fe;
}
.diff-head-text.dop-uslugi h1 {
    margin-bottom: 54px;
}
@media (max-width: 1200px) {
    .diff-head-text.dop-uslugi h1 {
        margin-bottom: 30px;
    }
    .diff-head-text.dop-uslugi p {
        margin-bottom: 30px;
    }
}
@media (max-width: 1024px) {
    .diff-head {
        flex-wrap: wrap;
    }
    .diff-head-text {
        flex: 1 1 100%;
    }
    .diff-head-img {
        flex: 1 1 100%;
    }
}
@media (max-width: 768px) {
    .diff-head-text h1 {
        font-size: 28px;
        line-height: 32px;
    }
    .diff-head-text p {
        font-size: 20px;
        line-height: 24px;
    }
}
.doki-con h1 {
    font-size: 60px;
    line-height: 60px;
    font-weight: 500;
    margin-top: 61px;
    margin-bottom: 82px;
}
.doki-row {
    display: flex;
    gap: 30px;
}
.doki-con-title {
    flex: 1 1 calc(35% - 30px);
}
.doki-con-doki-column {
    flex: 1 1 calc(65% - 30px);
}
.doki-row ul {
    list-style-type: none;
}
.doki-con-title button {
    padding: 20px 29px;
    width: 100%;
    border-radius: 16px;
    background-color: #fff0;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    border: none;
    text-align: left;
}
.doki-con-title button.active {
    background-color: #f4f5fe;
}
.doki-con-doki div {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 38px 29px;
    margin-bottom: 14px;
}
.doki-con-doki div:last-of-type {
    margin-bottom: 0;
}
.doki-con-doki div ul {
    margin: 0;
}
.doki-con-doki div p {
    font-size: 26px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 32px;
}
.doki-con-doki div ul li a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #000;
}
.doki-con-doki div ul li {
    margin-bottom: 22px;
}
.doki-con-doki div > ul li:last-of-type {
    margin-bottom: 0;
}
.doki-con-doki {
    display: none;
}
.doki-con-doki.active {
    display: block;
}
.custom-select-wrapper.prices.installment.doki {
    display: none;
}
.custom-select-wrapper.prices.installment.doki .custom-select {
    border: 1px solid #000;
    border-radius: 10px;
}
@media (max-width: 1024px) {
    .doki-con-title {
        display: none;
    }
    .custom-select-wrapper.prices.installment.doki {
        display: block;
    }
}
.reviews-con.prices-moto {
    padding-top: 0;
}
.banner-mini-card-title.prices-moto {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 18px;
}
.banner-mini-card.clean-cars.prices-moto {
    padding: 29px 20px;
    min-height: 0;
}
.video-item-moto {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.moto-banner {
    background-color: #f4f5fe;
    border-radius: 16px;
    padding: 66px 34px 45px 34px;
    overflow: hidden;
}
.moto-banner-text {
    padding: 0;
    width: 65%;
    flex: none;
}
.moto-banner .online-school-banner-row {
    position: relative;
}
.moto-banner .online-school-banner-row img {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    width: 364px;
    height: auto;
}
.moto-banner-text button {
    width: 225px;
}
.moto-banner-text button:first-of-type {
    margin-right: 18px;
    border: 1px solid #0e26ff;
}
.moto-banner-text button:last-of-type {
    background-color: #fff0;
    border: 1px solid #000;
    color: #000;
}
@media (min-width: 769px) {
    .moto-banner-text button:last-of-type:hover {
        background-color: #000;
        color: #fff;
    }
    .moto-banner-text button:first-of-type:hover {
        border: 1px solid #000;
    }
}
@media (max-width: 768px) {
    .moto-banner-text button:last-of-type:active {
        background-color: #000;
        color: #fff;
    }
    .moto-banner-text button:first-of-type:active {
        border: 1px solid #000;
    }
}
@media (max-width: 1200px) {
    .moto-banner .online-school-banner-row img {
        position: absolute;
        right: -15%;
        top: 50%;
        transform: translateY(-50%);
        width: 364px;
        height: 605px;
    }
}
@media (max-width: 1024px) {
    .moto-banner .online-school-banner-row img {
        display: none;
    }
    .moto-banner-text {
        width: 100%;
    }
    .moto-banner-text button:last-of-type {
        display: inline-block;
    }
    .moto-banner-text button:first-of-type {
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .moto-banner-text button:last-of-type {
        display: inline-block;
        margin-bottom: 20px;
    }
    .moto-banner-text button:first-of-type {
        display: none;
    }
    .moto-banner-text h1 {
        width: 70%;
    }
}
@media (max-width: 580px) {
    .moto-banner-text h1 {
        width: 100%;
    }
}
.header-actions-address.header-actions-address--mobile.new {
    width: 93%;
    margin: 0 auto;
    display: none;
}
@media (max-width: 1200px) {
    .header-actions-address.header-actions-address--mobile.new {
        display: block;
    }
    .nav-dropdown-city {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }
}
.header-actions-address.header-actions-address--mobile.new .cta-button {
    font-size: 15px;
    border: none;
    background-color: #f4f5fe;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    margin-bottom: 35px;
    margin-top: -20px;
    border-radius: 10px;
}
.place-block {
    margin-top: 54px;
}
.place-block {
    display: flex;
}
.place-block-1 {
    display: flex;
    flex-direction: column;
    margin-right: 38px;
}
.place-block-yandex-img {
    margin-bottom: 14px;
}
.place-block-yandex-img,
.place-block-2gis-img {
    width: 210px;
    height: 51px;
}
.place-block-yaplace-img {
    width: 66px;
    height: 116px;
}
.banner-mini-card {
    min-height: 139px;
}
.reviews-con.woman {
    padding-top: 0;
}
.submit-btn {
    border-radius: 10px;
    background-color: #0e26ff;
    border: none;
    padding: 18px;
    width: 225px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    margin-top: 53px;
    transition: background-color 0.3s;
}
.med-price-con.gift p {
    font-size: 38px;
    line-height: 46px;
    font-weight: 500;
}
.med-price-con.gift span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.med-price-con.gift button {
    font-size: 18px;
    font-weight: 500;
    color: #0e26ff;
}
.banner-freeze.restudy p {
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
}
.banner-freeze.restudy img {
    width: 160px;
    height: auto;
}
.gos-study {
    width: 100%;
}
.pers59 {
    width: 59%;
    margin-bottom: 60px;
}
.pers65 {
    width: 70%;
}
.two-columns {
    column-count: 2;
    column-gap: 200px;
}
.gos-main.restore ul {
    margin-bottom: 0;
}
.gos-main.restore h3 {
    font-size: 40px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 37px;
}
.gos-main.restore p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 60px;
    width: 90%;
}
.gos-main.restore .gos-p-gray {
    width: 70%;
}
.gos-main.restore.last .gos-p-gray {
    width: 90%;
    margin-bottom: 60px;
}
.gos-main.restore .gos-p-gray ul {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 20px;
}
.gos-p-gray ul li {
    list-style-type: disc;
    font-weight: inherit;
    display: list-item;
    font-size: inherit;
    line-height: 30px;
    margin-bottom: 10px;
}
.courses-steps.students h3 {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 38px;
}
.courses-steps.students .courses-steps-item img {
    width: 40px;
    height: auto;
}
.courses-steps.students .courses-steps-item p {
    font-size: 20px;
    line-height: 22px;
}
.submit-form-con.b-akpp.students {
    padding: 33px 91px 47px 430px;
    position: relative;
}
.submit-form-con.b-akpp.students img:first-of-type {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 343px;
    height: auto;
}
.submit-form-con.b-akpp.students img:last-of-type {
    position: absolute;
    right: 4%;
    top: 7%;
    width: 95px;
    height: auto;
}
.submit-form-con.b-akpp.students h2 {
    font-size: 54px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 43px;
}
.submit-form-input-row span {
    display: block;
    flex: 1 1 calc(50% - 15px);
}
.submit-form-input-row button {
    flex: 1 1 calc(50% - 15px);
}
.gos-p-gray.tenagers {
    padding: 30px 30px 30px 25px;
}
.gos-p-gray.tenagers p {
    margin-bottom: 0;
    width: 100%;
}
.gos-p-gray.tenagers span {
    display: block;
    width: 70%;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 21px;
}
@media (min-width: 1200px) {
    .diff-head-text.new {
        flex: 1 1 calc(45% - 50px);
    }
    .diff-head-img.new {
        flex: 1 1 calc(50% - 50px);
    }
    .diff-head-text.new.foreigners {
        flex: 1 1 calc(50% - 50px);
    }
    .diff-head-img.new.foreigners {
        flex: 1 1 calc(45% - 50px);
    }
    .diff-head-text.new.restudy {
        flex: 1 1 calc(55% - 50px);
    }
    .diff-head-img.new.restudy {
        flex: 1 1 calc(40% - 50px);
    }
}
@media (min-width: 769px) {
    .submit-btn:hover {
        background-color: #000;
        color: #fff;
    }
    .med-price-con.gift button:hover {
        color: #fff;
    }
    .image-plosh {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .submit-btn:active {
        background-color: #000;
        color: #fff;
    }
    .med-price-con.gift button:hover {
        color: #fff;
    }
    .med-price-con.gift p {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
    }
    .banner-freeze.restudy p {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }
    .image-plosh {
        height: 230px;
    }
}
@media (min-width: 1200px) {
    .med-price-con.gift img {
        width: 435px;
        height: auto;
    }
}
@media (max-width: 1200px) {
    .pers59 {
        width: 70%;
        margin-bottom: 60px;
    }
    .pers65 {
        width: 85%;
    }
    .submit-form-input-row span {
        flex: 1 1 100%;
    }
    .submit-form-input-row button {
        flex: 1 1 100%;
    }
    .submit-form-con.b-akpp.students {
        padding: 33px 91px 47px 350px;
        position: relative;
    }
    .submit-form-con.b-akpp.students img:first-of-type {
        position: absolute;
        left: 3%;
        top: 50%;
        transform: translateY(-50%);
        width: 300px;
        height: auto;
    }
    .submit-form-con.b-akpp.students img:last-of-type {
        position: absolute;
        right: 4%;
        top: 7%;
        width: 95px;
        height: auto;
    }
}
@media (max-width: 1024px) {
    .submit-form-con.b-akpp.students img:first-of-type {
        display: none;
    }
    .submit-form-con.b-akpp.students {
        padding: 60px 30px 30px;
        position: relative;
    }
    .submit-form-con.b-akpp.students h2 {
        font-size: 40px;
        line-height: 44px;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .pers59 {
        width: 100%;
        margin-bottom: 60px;
    }
    .pers65 {
        width: 100%;
    }
    .two-columns {
        column-count: 1;
    }
    .gos-main.restore p {
        font-size: 16px;
        line-height: 30px;
        font-weight: 400;
        margin-bottom: 30px;
        width: 100%;
    }
    .gos-main.restore .gos-p-gray {
        width: 100%;
    }
    .gos-main.restore.last .gos-p-gray {
        width: 100%;
        margin-bottom: 30px;
    }
    .gos-main.restore h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .gos-tabs {
        display: none;
    }
    .gos-main p {
        margin-bottom: 30px;
    }
    .gos-p-gray.tenagers span {
        display: block;
        width: 100%;
        font-size: 24px;
        line-height: 30px;
        font-weight: 500;
        margin-bottom: 21px;
    }
}
.schedule-owl-card {
    width: 454px;
    height: 425px;
    border-radius: 16px;
    padding: 40px 27px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bg-green {
    background-color: #d0fa9b;
}
.bg-blue {
    background-color: #77cbfa;
}
.bg-purple {
    background-color: #b3d6ff;
}
.bg-pastel-blue {
    background-color: #d2effc;
}
.bg-green .schedule-owl-card-sub {
    background-color: #e8fdcd;
}
.bg-blue .schedule-owl-card-sub {
    background-color: #bbe5fd;
}
.bg-purple .schedule-owl-card-sub {
    background-color: #d9ebff;
}
.bg-pastel-blue .schedule-owl-card-sub {
    background-color: #e9f7fe;
}
.schedule-owl-con h2 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    margin-bottom: 56px;
}
.schedule-owl-pagination {
    margin-top: 24px;
}
.schedule-owl-card > p {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}
.schedule-owl-card > span {
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    display: block;
}
.schedule-owl-card-sub {
    padding: 13px 21px;
    font-size: 24px;
    line-height: 52px;
    font-weight: 500;
    border-radius: 16px;
}
.schedule-owl-card button {
    border: none;
    border-radius: 10px;
    background-color: #0e26ff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    padding: 18px;
    width: 100%;
    transition: background-color 0.3s ease;
}
.schedule-banner-con {
    width: 100%;
    max-width: 1556px;
    height: auto;
    padding: 94px 0 86px;
    margin: 0 auto;
    border-radius: 32px;
    background-color: #f4f5fe;
    background-repeat: no-repeat;
    position: relative;
    background-size: 100%;
}
.schedule-banner h1 {
    font-size: 58px;
    line-height: 62px;
    font-weight: 500;
    margin-bottom: 53px;
    z-index: 2;
    position: relative;
}
.metro-choose-btn-con.schedule {
    z-index: 2;
    position: relative;
}
.filter-btn.metro-choose.schedule {
    border: none !important;
    border-radius: 6px !important;
    line-height: 20px !important;
}
.prices-filter-btns.metro-choose.contacts.schedule button {
    padding: 10px 20px !important;
}
.filter-btn.metro-choose.schedule.active {
    background-color: #0e26ff !important;
}
.schedule-banner > img {
    position: absolute;
    width: 672px;
    height: auto;
    top: 5%;
    right: 3%;
    z-index: 1;
}
.students-new-banner-top {
    position: relative;
    overflow: visible;
}
.prices-modal__banner__column .sub-price-card {
    justify-content: initial !important;
}


