@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,700&display=swap');

:root {
    --red: #df3240;
    --darkred: #7e1f26;
    --gold: #e6be81;
}

.mobile {
    display: none !important;
}

body, html {
    font-size: 10px;
    font-family: 'Inter';
    color: #131314;
    background-color: #000;
}

a {
    color: var(--red);
}

h1 {
    font-size: 8.3vh;
    font-weight: 900;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 span {
    display: block;
    font-size: 64%;
    margin-top: -.1em;
}


h2 {
    font-family: inherit;
    font-size: 3.5em;
    font-weight: 700;
    text-transform: uppercase;
}

h2.left {
    color: #fff;
}

h2.left:before {
    content: " ";
    background: url(/img/marker.png) left center no-repeat;
    background-size: 38px;
    padding-right: 55px;
}

red, .red {
    color: var(--red)
}

.bg-red {
    background: var(--red)
}


.white {
    color: white;
}

.gradient {
    background: -webkit-linear-gradient(#fff, #818181);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent {
    color: var(--red)
}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

.block {
    width: 100%;
    min-height: 10vh;
    box-sizing: border-box;
    padding: 20px;
}

#darkbottom, .darkbottom {
    position: relative;
    z-index: 2;
    bottom: -60px;
    min-height: 120px;
    width: 100vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(10, 11, 12, 1) 40%, rgba(10, 11, 12, 1) 60%, rgba(0, 0, 0, 0) 100%);
}


/* EOF MAIN */

#hero {
    padding: 170px 7vw 40px;
    background: url(/img/hero2.jpg) bottom center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 96vh;
    color: #fff
}

ul.marked {
    list-style: none;
    font-size: 1.7em;
}

ul.marked li {
    padding-left: 2em;
    text-indent: -2em;
    margin-bottom: 13px;
    font-weight: bold;
}

ul.marked li:before {
    content: " ";
    background: url(/img/marker.png) left center no-repeat;
    background-size: 22px;
    padding-right: 36px;
}

button.filled, .input, a.filled {
    font-family: serif;
    display: inline-block;
    border: var(--red) 3px solid;
    border-radius: 14px;
    color: white;
    background-color: var(--darkred);
    padding: 12px;
    transform: skew(-10deg);
    font-family: 'Inter';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2em;
    min-width: 200px;
    cursor: pointer;
    transition: all .33s ease-out;
    box-shadow: 0 0 50px 2px #cd3745;
    text-shadow: 0 1px 4px #ebe7e046;
}

button.filled:hover, a.filled:hover {
    box-shadow: 0 0 90px 4px #cd3745;
    text-shadow: 0 1px 7px #ebe7e0;
}

button.filled div, a.filled div {
    transform: skew(10deg);
    font-family: inherit;
    letter-spacing: .01em;
}

button.nobg, a.nobg {
    background-color: transparent !important;
}

.nolight, .nolight div {
    box-shadow: 0 0 0 black !important;
    text-shadow: 0 0 0 #ebe7e000;
}

button:disabled {
    opacity: .6;
    filter: saturate(0.0);
}


.input {
    transform: skew(-10deg);
    width: 300px;
    margin: 12px 0;
    box-shadow: 0 0 0 #cd3745;
    background-color: #ebe7e0;
}

.input:hover {
    box-shadow: 0 0 40px 1px #cd3745;
}

.input input[type="text"] {
    background-color: transparent;
    width: 100%;
    display: block;
    font-size: 1.1em;
    transform: skew(10deg);
    padding: 4px;
    box-sizing: border-box;
    font-weight: bold;
    font-family: 'Carlito';
}


/* checkbox */

/* для элемента input c type="checkbox" */
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 2em;
    height: 2em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus+label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}

#anounce {
    padding-bottom: 40px;
    background: radial-gradient(circle, #df3240 0%, #7e1f26 100%);
    /* background: url('/img/redbg.jpg');
     background-size:cover;*/
}

#anounce .item {
    background: rgba(0, 0, 0, .2);
    border-radius: 10px;
    border: 1px solid var(--red);
    margin: 5px 10px;
    padding: 20px;
    min-width: 220px;
    box-shadow: 4px 4px 10px 0 darkred;

}

/* why */
#why {
    background: url(/img/why.jpg) top center no-repeat;
    background-size: cover;
}

#free-lesson {
    justify-content: space-between;
    margin-bottom: 100px;
    border-radius: 10px;
}

#free-lesson img {
    border-radius: 10px;
}

#benefits .item {
    display: inline-block;
    padding: 2px;
    margin: 10px 30px;
    background: url(/img/benitem.png) no-repeat center;
    background-size: contain;
    height: 250px;
    width: 320px;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
    border-radius: 40px;
    backdrop-filter: blur(3px);
}

#benefits .item img {
    margin: 17px auto;
    margin-top: 30px;
    height: 44%;
    width: auto;
    object-fit: contain;
}

#benefits .item p {
    line-height: 1.2em;
    font-size: 1.7em;
    font-weight: 600;
    position: relative;
    bottom: 0px;
}

#benefits .item red {
    font-weight: bold;
}


/* courses */
#courses .course {
    position: relative;
}

#courses .item {
    display: flex;
    justify-content: end;
}

#courses .item .main {
    max-width: 70%;
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
}

#courses .item h4 {
    color: var(--red);
    font-size: 3.4em;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 30px;
}

#courses .item .features {
    margin: 30px 0px;
    box-sizing: border-box;
    color: #fff;
    font-size: .88em;
}

#courses .item .features>div {
    width: 50%;
    text-align-last: left;
}

#courses .item .features .left {
    margin-right: 40px;
}

#courses .price i {
    color: #818181;
    font-style: normal;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: -10px;
    display: block;
}

#courses .footer {
    align-items: center;
    padding: 40px;
    padding-bottom: 70px;
}

#courses .num {
    position: absolute;
    top: 0px;
    left: 10vw;
    height: 60px;
    width: 60px;
    transform: skewX(-10deg);
    background-color: var(--red);
    color: white;
    font-weight: 900;
    font-size: 4.3em;
    z-index: 2;
    padding: 5px;
    padding-top: 10px;
    border-radius: 5px;
}


#courses .cat-solo {
    background: url(/img/cats.jpg) left top no-repeat;
    background-size: contain;
}

#courses .cat-a {
    background: url(/img/cata.jpg) right top no-repeat;
    background-size: contain;
}

#courses .cat-b {
    background: url(/img/catb.jpg) left top no-repeat;
    background-size: contain;
}

#courses .cat-c {
    background: url(/img/catc.jpg) right top no-repeat;
    background-size: contain;
}


#courses .cat-r {
    background: url(/img/catr.jpg) right top no-repeat;
    background-size: contain;
}

#courses .cat-r .item {
    justify-content: start;
}


/* #courses .cat-s .num, #courses .cat-b .num{
    left: auto;
    right: 10vw;
} */

#courses #extraCats {
    padding: 70px 30px;
}

#courses #extraCats .item {
    align-content: space-evenly;
    text-align: center;
    width: 22%;
    max-width: 330px;
    min-width: 250px;
    margin: 1%;
    padding: 5px;
    padding-bottom: 20px;
    border: 3px solid var(--red);
    border-radius: 10px;
}

#courses #extraCats .item h4 {
    margin: 5px 0;
    font-size: 2.7rem;
    font-weight: bold;
}


#courses #extraCats .item .price {
    padding: 20px 0;
}

#courses #extraCats .item p {
    height: 70px;
}





/* abon */
#abon {
    background: url(/img/abon.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

#abon h2 {
    color: white;
    font-size: 4em;
    width: 100%;
}

#abon h5 {
    color: var(--red);
    font-size: 1.6em;
}

#abon .text {
    width: 50%;
    font-family: 'Carlito';
}

#abon .top-arrow {
    position: absolute;
    height: 200px;
    width: auto;
    left: 45%;
    top: -50px;
    display: block;
    z-index: 3;
}

#abon .calc {
    width: 50%;
    margin-top: 40px;
    padding: 0 50px;
}

/* calculator */
#abon .calc .digits {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

#abon .calc #days, #disc {
    position: relative;
    box-sizing: border-box;
    color: white;
    border-radius: 20px;
    border: var(--red) 4px solid;
    display: inline-block;
    margin: 10px 30px;
    height: 160px;
    width: 130px;
    text-align: center;
    overflow: hidden;
    font-weight: bold;
    font-size: 6em;
    letter-spacing: -10px
}

#abon .calc #days p, #abon .calc #disc p {
    position: absolute;
    margin: 0 auto;
    left: -5px;
    right: auto;
    top: -10px;
    width: 100%;
}

#abon .calc i {
    position: absolute;
    bottom: 12px;
    display: block;
    font-size: 14px;
    width: 100%;
    text-align: center;
    letter-spacing: normal;
    font-style: normal;
}


#abon .calc .slider {
    text-align: center;
    width: 60%;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
}

#abon .darkbottom {
    position: absolute;
    box-sizing: border-box;
}

/* cars */
#cars {
    background: radial-gradient(circle, #1e2024 0%, #010101 100%);
}

#cars .content {
    align-items: center
}

#cars .slideshow {
    margin: 40px auto;
}

#cars .slideshow p {
    font-family: 'Carlito';
    font-weight: bold;
    font-style: italic;
    font-size: 2em;
    opacity: 0.77;
    padding: 20px 0;
}

#cars .slideshow img {
    height: 400px;
    width: auto;
    margin: 0 auto;
}

#cars .owl-theme .owl-nav {
    top: 0;
    width: 100%;
    margin: 0 auto;
    height: 70%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

#cars button.owlbtn {
    font-family: 'Inter';
    color: var(--red);
    font-size: 70px;
    background: transparent;
    padding: 30px;
    cursor: pointer;
}

#cars .left, #cars .right {
    display: block;
    height: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: 100px;
}

#cars .extra-info {
    justify-content: center;
    align-items: center;
    padding-bottom: 70px;

}

#cars .extra-info .text {
    padding: 0 40px;
    max-width: 600px;
}

#cars .extra-info img {
    height: 200px;
    width: auto;
    border-radius: 10px;
    border: 4px solid var(--red);
    box-shadow: 0 0 20px var(--darkred);
    margin: 30px;
}


/* CONTACTS */

#contacts_block {
    padding-top: 40px;
    color: var(--red);
    overflow: hidden;
    background-color: #0f1114;
    background: url(/img/map.jpg) no-repeat center fixed;
    background-size: cover;

}

#contacts_block .item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    margin-bottom: 33px;
}

#contacts_block .item img {
    width: 33px;
    height: 33px;
    margin-right: 20px;
}

#contacts_block .item p {
    margin-bottom: 0px !important;
    font-size: 1.2rem !important
}

#contacts_block .item a {
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 0;
    color: white !important;
}


#contacts_block .item span.mini {
    font-weight: 200 !important;
    letter-spacing: -3px;
}

#contacts_block .map {
    box-shadow: 0 0 70px var(--darkred);
    border-radius: 10px;
}

#contacts_block .social img {
    width: 44px;
    height: 44px;
}

/* form */
#form {
    background: url(/img/cta.jpg) center no-repeat;
    background-size: cover;
    min-height: 400px;
    padding-top: 50px;
    padding-bottom: 80pxs;
}

/* feedback */
#feedback {
    background: url(/img/feedback.jpg) top center no-repeat;
    background-size: cover;
    padding-top: 80px;
}


#feedback .item {
    width: 45%;
    height: 400px;
    box-sizing: border-box;
    padding: 30px;
    font-family: 'Carlito';
    font-style: italic;
    text-align: center;
}

#feedback-page {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

#feedback-page .item {
    /* flex: 0 0 25%; */
    width: 25%;
    min-width: 300px;
    height: 340px;
    box-sizing: border-box;
    padding: 30px;
    font-family: 'Carlito';
    font-style: italic;
    text-align: center;
}


#feedback .video, #feedback-page .video {
    width: 100%;
    height: 80%;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 12px;
    border: 3px solid var(--red);
    box-shadow: #010101 0 0 30px 5px;
    transition: all .4s ease-in-out;
}

#feedback .video:hover {
    box-shadow: var(--red) 0 0 20px 1px;
}

.text-feedback {
    width: 70%;
    text-align: center;
    margin: 80px auto 120px;
    font-family: 'Carlito';
    font-style: italic;
    padding: 20px;
    box-sizing: border-box;
    /* backdrop-filter: blur(5px);
    background-color: #2e2e34af; */
    border-radius: 20px;

    height: 220px;
    position: relative;

    /* box-shadow: #e6848159 0 0 20px 1px; */
}

.text-feedback p.text {
    width: 86%;
    margin: 0 auto;
    display: block;
    padding-top: 1px;
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--gold);
}

.text-feedback p.name {
    color: var(--gold)
}

.text-feedback a {
    text-decoration: underline;
}

.text-feedback .link:before {
    content: '';
    background: url(/img/link.png) left center no-repeat;
    background-size: contain;
    padding-right: 25px;
}

/* text feedback page */
#textrv-page .item {
    border-radius: 7px;
    background-color: #2c2d31;
    color: #fff;
    padding: 14px !important;
    margin-bottom: 30px;
    position: relative;
    box-sizing: border-box;
    font-size: 9px;
}

#textrv-page .item h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 10px;
}

#textrv-page .item a {
    text-decoration: underline;
    font-weight: normal;
    color: #fff
}

#textrv-page .item i {
    position: absolute;
    right: 20px;
    top: 14px;
    opacity: .7;
    font-size: 11px;
}

#textrv-page .item p {
    padding-bottom: 5px;
}


          #revlinks{display:flex; justify-content:space-around; flex-direction:row; margin: 60px auto;}
            #revlinks a{display:block; width:25vw; max-width:330px; background: radial-gradient(circle, #df3240 0%, #7e1f26 100%); border-radius:15px; padding:10px; box-sizing:border-box; color:black; border: var(--red) 3px solid; box-shadow: 0 0 50px 2px #cd3745; text-align:center; height:200px;}
            #revlinks img{max-width:300px; margin:0 auto; img{object-fit:contain; max-width:90%;}}
            #revlinks .text{display:flex; display:row; justify-content:space-around; font-size: 12px; }
                #revlinks p{color:white;}






#team {
    padding-bottom: 60px;
}

#team .item {
    width: 23%;
    margin: 1%;
}

#team .item img {
    width: 250px;
    border-radius: 10px;
    border: 3px solid var(--red);
}

#team .item h3 {
    padding-bottom: 5px;
    font-size: 20px;
}

/* FOOTER */

footer {
    display: flex;
    width: 100%;
    padding: 20px 10px;
    background-color: #2c2d31;
    color: white;
    box-sizing: border-box;
}

footer p, footer a {
    font-size: 1em;
    color: inherit;
}

footer ul {
    list-style-type: none;
}

footer ul>li {
    display: inline-block;
    padding: 5px;
}

footer ul>li a {
    font-size: 1.4em;
}


footer ul>li a:hover {
    color: var(--red)
}


/* Navigation */
nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #070607c1 0%, #3d3d4218 100%);
    backdrop-filter: blur(4px);
    padding: 10px 50px;
    box-sizing: border-box;
}

nav .menu {
    height: 60px;
    width: 60px;
    background: url(/img/icons/menu.png) center no-repeat;
    background-size: cover;
    margin-right: 20px;
    display: inline-block;
    cursor: pointer;
    filter: saturate(0%) brightness(500%);
    transition: all .22s ease-in-out;
}

nav .menu:hover {
    filter: saturate(100%) brightness(100%);
}

nav .logo {
    display: inline-block;
    height: auto;
    width: 200px;
    padding-bottom: 10px;
}

nav .callme {
    display: inline-block;
    margin-left: 50px;
    padding-top: 4px;
}

nav .phones a {
    display: block;
    margin: 10px 0;
    font-size: 1.4em;
    letter-spacing: .3px;
}

/* ACCORDEON */


.accordion dl {}

.accordion dt>a {
    text-align: center;
    font-weight: 700;
    padding: 1em;
    display: block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: background-color 0.5s ease-in-out;
    cursor: pointer;
}

.accordion dd {
    background-color: transparent;
    color: #fafafa;
    font-size: 1em;
    line-height: 1.5em;
}

.accordion dd>p {
    padding: 1em 2em 1em 2em;
    font-size: 1.2em;
}

.accordion {
    position: relative;
    background-color: transparent;
}

.accordionTitle {
    background-color: var(--red);
    margin-bottom: 6px;
    font-size: 1.6rem;
}

.accordionTitle:before {
    content: "+";
    font-size: 2em;
    line-height: 0.5em;
    float: left;
    -moz-transition: -moz-transform 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.accordionTitle:hover {
    background-color: var(--darkred);
}

.accordionTitleActive {
    background-color: var(--red);
}

.accordionTitleActive:before {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.accordionItem {
    height: auto;
    overflow: hidden;
}


@media all {
    .accordionItem {
        max-height: 50em;
        -moz-transition: max-height 1s;
        -o-transition: max-height 1s;
        -webkit-transition: max-height 1s;
        transition: max-height 1s;
    }
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: auto;
        -moz-transition: max-height 0.5s;
        -o-transition: max-height 0.5s;
        -webkit-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

.accordionItemCollapsed {
    max-height: 0;
}

.animateIn {
    -webkit-animation-name: accordionIn;
    -webkit-animation-duration: 0.65s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: normal;
    -moz-animation-duration: 0.65s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionIn;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
}

.animateOut {
    -webkit-animation-name: accordionOut;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: accordionOut;
    -moz-animation-duration: 0.75s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionOut;
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes accordionIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.8);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
    }
}

@-moz-keyframes accordionOut {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
    }

    100% {
        opacity: 0;
        -moz-transform: scale(0.8);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}


/* -----======== MOBILE ========----- */
@media (orientation: portrait) {
    .content {
        box-sizing: border-box;
        min-width: 100% !important;
    }

    .mobile {
        display: block !important;
    }

    nav {
        padding: 9px;
    }

    nav .logo {
        height: auto;
        width: 50px;
        padding-bottom: 5px;
    }

    nav .phones {
        font-weight: bold;
        padding-right: 20px;
    }

    nav .menu {
        margin-right: 5px;
    }

    h1 {
        font-size: 12vw;
    }

    #hero {
        position: relative;
        background: url(/img/hero_v.jpg) no-repeat center;
        background-size: cover;
        padding-top: 100px;
    }

    #hero #info {
        position: absolute;
        bottom: 2vh;
        width: 80%;
        margin: 0 auto;
        left: 0;
        right: 0;
        text-align: center;
    }

    #hero ul {
        padding: 20px;
        text-align-last: left;
    }

    #hero ul.marked li {
        text-align: left;
    }

    #hero h1 {
        text-align: center;
    }

    #hero h1 span {
        line-height: 110%;
    }

    #hero ul li {
        text-shadow: 0 0 10px black;
    }

    #hero #info .mt8 {
        margin: 20px auto;
        text-align: center;
    }

    #hero #info p {
        font-size: 14px;
    }

    #anounce, #anounce>div {
        flex-direction: column;
    }

    #anounce button {
        margin-top: 30px;
    }


    #abon .content, #form .content {
        flex-direction: column;
    }

    #abon .content .text, #abon .content .calc {
        width: 100%;
        padding: 10px 20px;
        text-align: center;
        box-sizing: border-box;
    }

    #form .content .w60, #form .content .w40 {
        width: 100%;
    }

    #form .content h2 {
        text-align: center !important;
        width: 100%;
    }

    #why {
        position: relative;
        background: url(/img/why_v.jpg) no-repeat center;
        background-size: cover;
        padding-top: 100px;
    }

    #free-lesson .content {
        flex-direction: column;
    }

    #contacts_block .flex, #video-feedback {
        flex-direction: column;
    }

    #contacts_block .w50 {
        width: 100%;
        padding: 20px;
    }

    #contacts_block .map {
        box-sizing: border-box;
        width: 90%;
    }

    #video-feedback .item {
        width: 100%;
    }

    .text-feedback {
        width: 100%;
        box-sizing: border-box;
    }

    .text-feedback p.text {
        width: 100%;
        font-size: 1.4em;
    }

    .cbp-qtprogress {
        left: 5%
    }

    .text-feedback .link {
        font-size: 1.77em;
        font-weight: bold;
    }

    #cars .slideshow img {
        width: 90%;
        padding-left: 5%;
        height: auto;
        text-align: center;
    }

    #cars .left, #cars .right {
        padding: 0px 0;
    }

    #cars .slideshow p {
        font-size: 1.5em;
    }

    #cars .extra-info {
        flex-direction: column-reverse;
    }


    #courses .item {
        background: rgba(0, 0, 0, .5);
    }

    #courses .footer, #courses .features {
        flex-direction: column;
    }

    #courses .item .features>div {
        width: 100%;
    }

    #courses ul li {
        text-align: left;
        font-size: 12px;
        width: 100%;
    }

    #courses .footer {
        padding: 0;
    }

    #courses .footer .price {
        padding-bottom: 20px;
    }

    #courses .desc {
        font-size: 1.2em;
        text-align: center;
        padding-bottom: 10px;
    }

    #courses .item h4 {
        margin-bottom: 10px;
        line-height: 1em;
    }

    #courses .cta {
        margin-bottom: 60px;
        margin-top: 10px;
    }

    #courses .num {
        left: 3%
    }

    #courses .cat-r .num {
        right: 3%;
    }

    #courses .cat-a, #courses .cat-b, #courses .cat-c, #courses .cat-r, #courses .cat-solo {
        background-size: cover;
    }


    #courses #extraCats {
        flex-direction: column;
    }

    #courses #extraCats .item {
        width: 90%;
        max-width: 550px;
        padding-top: 50px;
        margin-bottom: 50px;
    }

    #courses #extraCats .item h4 {
        font-size: 4rem;
    }

    footer {
        flex-direction: column;
    }

    footer .w20, footer .w60 {
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }

    #feedback-page .item {
        width: 100%;
    }

    .form-activator {
        width: 100%
    }

    ;

    .accordionTitle {
        font-size: 1.3em;
    }

    #team .item{ width: 100%; margin:  10px 0;}
    #team .item img {
        width: 330px;
        border-radius: 10px;
    }

    #team .item h3{padding-bottom: 5px !important; font-size: 20px;}



    #revlinks{flex-direction:column; text-align:center; align-content:center; align-items:center; padding-top:0; margin-top:0;}
    #revlinks a{min-width:80vw; margin-bottom:30px; box-shadow: 0 0 20px 2px #cd3745; height:180px;}
    #revlinks img{object-fit:contain; max-width:90%;}


}