:root{
    /* COLORS */
    --color-black: #141414;
    --color-white: #FFFFFF;
    --color-blue: #1877F2;
    --color-blue--light: #62A3F7;
    --color-blue--hover: #559FFF;
    
    /* TRANSITIONS */
    --transition-base: .3s all ease-in-out;
}

.container{
    width: 100%;
    max-width: 1412px;
    padding: 0 20px;
}

/* Header Start*/

header.header{
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 18px;
    line-height: 21px;
    z-index: 3;
}

.header--wrap{
    width: 100%;
    display: flex;
    align-items: center;
    border: 2px solid var(--color-blue);
    border-top: none;
    border-radius: 0 0 36px 36px;
    padding: 20px 36px;
    background-color: var(--color-white);
}

.header--logo{
    width: 160px;
    height: 45px;
}

.header--logo img{
    width: 100%;
    height: 100%;
}

.header--nav{
    margin-left: auto;
}

.header--nav ul{
    display: flex;
    align-items: center;
}

.header--nav ul li{
    margin: 0 36px 0 0;
}

.header--nav ul li:last-child{
    margin: unset;
}

.header--nav ul li a{
    color: var(--color-blue);
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
    line-height: 1;
}

.header--nav ul li.active a,
.header--nav ul li a:hover,
.header--nav ul li a:focus{
    border-bottom: 1px solid var(--color-blue);
}

.header--phones{
    display: flex;
    flex-direction: column;
    margin-left: 58px;
    position: relative;
}

.header--phone__main{
    display: flex;
    align-items: center;
}

.header--phone__main--phone{
    display: flex;
    align-items: center;
}

.header--phone__main--icon{
    width: 18px;
    height: 18px;
    fill: var(--color-blue);
    transition: var(--transition-base);
}

.header--phone__main--phone span{
    color: var(--color-blue);
    margin: 0 2px 0 8px;
    display: block;
    transition: var(--transition-base);
    line-height: 1;
}

.header--phone__arrow{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header--phone__arrow svg{
    width: 10px;
    height: 5px;
    transition: var(--transition-base);
    stroke: var(--color-blue);
}

.header--phones:hover .header--phone__arrow svg,
.header--phone__arrow.active svg{
    transform: rotate(180deg);
}

.header--phone__main:hover span,
.header--phone__main:focus span{
    color: var(--color-blue--hover);
}

.header--phone__main:hover header--phone__arrow svg,
.header--phone__main:focus header--phone__arrow svg{
    stroke: var(--color-blue--hover);
}

.header--phone__list{
    opacity: 0;
    width: max-content;
    pointer-events: none;
    top: calc(100% + 6px);
    left: -14px;
    padding: 12px;
    border-radius: 8px;
    position: absolute;
    background-color: var(--color-white);
    transition: var(--transition-base);
    border: 1px solid var(--color-blue--light);
}

.header--phone__list::after{
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: -8px;
    left: 0;
    background-color: transparent;
}

.header--phone__list.show,
.header--phones:hover .header--phone__list{
    opacity: 1;
    pointer-events: inherit;
}

.header--phone__list li{
    margin-bottom: 8px;
}

.header--phone__list li:last-child{
    margin-bottom: 0;
}

.header--phone__list li a{
    display: flex;
    align-items: center;
}

.header--phone__list li a svg{
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.header--phone__list li a span{
    color: var(--color-black);
    transition: var(--transition-base);
}

.header--phone__list li a:hover span,
.header--phone__list li a:focus span{
    color: var(--color-blue--hover);
}

.header--lang{
    display: flex;
    flex-direction: column;
    margin-left: 48px;
    position: relative;
}

.header--lang__select{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header--lang__select--flag{
    width: 20px;
    height: 20px;
}

.header--lang__select span{
    color: var(--color-blue);
    transition: var(--transition-base);
    margin: 0 2px 0 8px;
    line-height: 1;
}

.header--lang__select--arrow{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.header--lang:hover .header--lang__select--arrow,
.header--lang__select--arrow.active{
    transform: rotate(180deg);
}

.header--lang__select--arrow svg{
    width: 10px;
    height: 5px;
    stroke: var(--color-blue);
}

.header--lang__select:hover span,
.header--lang__select:focus span{
    color: var(--color-blue--hover);
}

.header--lang__select:hover header--lang__select--arrow svg,
.header--lang__select:focus header--lang__select--arrow svg{
    stroke: var(--color-blue--hover);
}

.header--lang__list{
    padding: 12px 28px 12px 12px;
    border: 1px solid var(--color-blue--light);
    border-radius: 8px;
    position: absolute;
    left: -12px;
    top: calc(100% + 6px);
    background-color: var(--color-white);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.header--lang__list::after{
    content: '';
    display: block;
    width: 100%;
    height: 7px;
    top: -7px;
    left: 0;
    position: absolute;
    background-color: transparent;
}

.header--lang:hover .header--lang__list,
.header--lang__list.show{
    opacity: 1;
    pointer-events: inherit;
}

.header--lang__list li{
    margin-bottom: 8px;
}

.header--lang__list li:last-child{
    margin-bottom: unset;
}

.header--lang__list li a{
    display: flex;
    align-items: center;
}

.header--lang__list li a svg{
    width: 20px;
    height: 21px;
    margin-right: 8px;
}

.header--lang__list li a span{
    color: var(--color-black);
    transition: var(--transition-base);
}

.header--lang__list li a:hover span,
.header--lang__list li a:focus span{
    color: var(--color-blue--hover);
}

.header--consult{
    background-color: var(--color-blue);
    color: var(--color-white);
    transition: var(--transition-base);
    padding: 12px 16px;
    border-radius: 36px;
    cursor: pointer;
    width: max-content;
    margin-left: 42px;
    line-height: 1;
}

.header--consult:hover{
    background-color: var(--color-blue--hover);
}

.header--burger,
.header--mobile,
.header--mobile__bg{
    display: none;
}

@media screen and (min-width: 1600px){
    .header--wrap{
        padding: 27px 36px;
    }
}

@media screen and (max-width: 1350px){
    .header--logo{
        width: 120px;
        height: 34px;
    }

    header.header{
        font-size: 14px;
    }

    .header--nav ul li{
        margin-right: 24px;
    }

    .header--consult{
        font-size: 16px;
        line-height: 1;
    }
}

@media screen and (max-width: 1170px){
    .header--wrap{
        padding: 20px 24px;
    }

    .header--logo{
        width: 88px;
        height: 24px;
        margin: 0 auto;
        position: relative;
        right: -40px;
        width: 140px;
        height: 40px;
    }

    .header--consult{
        font-size: 16px;
        line-height: 19px;
        padding: 10px 16px;
    }

    .header--burger{
        display: flex;
        width: 21px;
        height: 16px;
        display: flex;
        align-items: center;
        position: relative;
        cursor: pointer;
    }

    .header--burger svg{
        width: 100%;
        height: 100%;
    }

    .header--mobile{
        display: flex;
        flex-direction: column;
        width: 272px;
        border-right: 1px solid var(--color-blue);
        position: absolute;
        left: 0;
        top: 0;
        height: calc(var(--vh,1vh) * 100);
        background-color: var(--color-white);
        padding: 15px 24px 30px 24px;
        left: -100%;
        pointer-events: none;
        transition: var(--transition-base);
        z-index: 1;
        overflow: auto;
    }

    .header--mobile .simplebar-track{
        background-color: transparent;
        width: 3px;
        right: 3px;
    }
    
    .header--mobile .simplebar-wrapper{
        width: 0;
    }
    
    .header--mobile .simplebar-content{
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .header--mobile.show{
        left: 0;
        pointer-events: inherit;
    }

    .header--mobile__head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 53px;
    }

    .header--mobile__logo{
        width: 88px;
        height: 24px;
        display: flex;
    }

    .header--mobile__logo img{
        width: 100%;
        height: 100%;
    }

    .header--mobile__close{
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header--mobile__close svg{
        width: 12px;
        height: 12px;
    }

    .header--mobile__mail{
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }

    .header--mobile__mail svg{
        width: 18px;
        height: 14px;
        margin-right: 8px;
    }

    .header--mobile__mail span{
        font-size: 14px;
        line-height: 1;
        color: var(--color-blue);
    }

    .header--mobile__phones{
        display: flex;
        flex-direction: column;
    }

    .header--mobile__phones li{
        margin-bottom: 12px;
    }

    .header--mobile__phones li:last-child{
        margin-bottom: unset;
    }

    .header--mobile__phones li a{
        display: flex;
        align-items: center;
    }

    .header--mobile__phones li a svg{
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .header--mobile__phones li a span{
        display: flex;
        align-items: center;
        line-height: 1;
        font-size: 14px;
        color: var(--color-blue);
    }

    .header--mobile__phones li a span small{
        color: var(--color-blue);
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
        line-height: 1;
        margin-left: 4px;
    }

    .header--mobile__consult{
        margin: 24px 0 54px;
        width: 100%;
        padding: 10px 23px;
        background-color: var(--color-blue);
        color: var(--color-white);
        border-radius: 36px;
        cursor: pointer;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        display: none;
    }

    .header--mobile__nav{
        flex-direction: column;
        width: 100%;
        display: none;
        margin-bottom: 20px;
    }

    .header--mobile__nav li{
        margin-bottom: 18px;
        width: 100%;
    }

    .header--mobile__nav li:last-child{
        margin-bottom: unset;
    }

    .header--mobile__nav li a{
        font-weight: 500;
        font-size: 24px;
        width: 100%;
        display: flex;
        line-height: 1;
        padding-bottom: 4px;
        position: relative;
        color: var(--color-blue);
    }

    .header--mobile__nav li a::after{
        content: '';
        display: block;
        height: 2px;
        width: calc(100% + 8px);
        background-color: transparent;
        position: absolute;
        bottom: -4px;
        left: -8px;
    }

    .header--mobile__nav li.active a::after{
        background-color: var(--color-blue);
    }

    .header--mobile__social{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
    }

    .header--mobile__social--link{
        width: 26px;
        height: 26px;
    }

    .header--mobile__social--link svg{
        width: 100%;
        height: 100%;
        fill: var(--color-blue);
    }

    .header--mobile__bg{
        width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        background-color: rgba(255, 255, 255, 0.8);
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-base);
    }

    .header--mobile__bg.show{
        opacity: 1;
        pointer-events: inherit;
    }

    .header--wrap{
        border-width: 1px;
    }

    .header--phones{
        display: none;
    }

    .header--nav,
    .header--consult{
        display: none;
    }

    .header--mobile__nav{
        display: flex;
    }

    .header--mobile__consult{
        display: block;
    }

}

@media screen and (max-width: 768px){
    header.header .container{
        padding: unset;
    }

    .header--wrap{
        padding: 13px 24px;
        border-radius: 0 0 24px 24px;
    }

    .header--logo{
        width: 98px;
        height: 26px;
    }
}

/* Header End*/

/* Hero Start*/

.hero{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 200px 0 170px;
}

.hero .container{
    display: flex;
    align-items: center;
    padding: 0 150px;
}

.hero--picture{
    position: relative;
    max-width: 50%;
    width: 100%;
    height: auto;
}

.hero.second--hero .hero--picture{
    display: flex;
    justify-content: center;
}

.hero--picture__main{
    width: 85%;
    height: auto;
}

.hero--picture__head{
    position: absolute;
    left: calc(100% - 80px);
    transform: translateX(-50%);
    top: -25px;
    width: 35%;
    animation: MoveUpDown 3s linear infinite;
}
  
@keyframes MoveUpDown {
    0%, 100% {
      top: -75px;
    }
    50% {
      top: -25px;
    }
}

.hero--content{
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.hero.second--hero .hero--content{
    margin-left: 150px;
}

.hero--title{
    margin-bottom: 40px;
}

.hero--title,
.hero--title small{
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    color: var(--color-black);
}

.hero--title span{
    color: var(--color-blue);
}

.hero--title small{
    position: relative;
}

.hero--title small.svk::after,
.hero--title small.eng::after{
    content: '';
    display: block;
    width: 42px;
    height: 28px;
    position: absolute;
    left: calc(100% + 16px);
    top: calc(50% + 4px);
    transform: translateY(-50%);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero--title small.svk::after{
    background-image: url(../images/hero/svk.svg);
}

.hero--title small.eng::after{
    background-image: url(../images/hero/eng.svg);
}

.hero--consult{
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 24px 36px;
    border-radius: 72px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    width: max-content;
    cursor: pointer;
    transition: var(--transition-base);
}

.hero--consult:hover{
    background-color: var(--color-blue--hover);
}

@media screen and (min-width: 1600px){
    .hero .container{
        padding: 0 20px;
    }

    .hero--title,
    .hero--title small{
        font-weight: 600;
        font-size: 48px;
        line-height: 57px;
    }

}

@media screen and (max-width: 1170px){
    .hero{
        margin: 170px 0;
    }

    .hero .container{
        justify-content: center;
    }

    .hero--picture{
        width: calc(50% - 50px);
        margin-right: 30px;
    }

    .hero--picture__head{
        left: calc(100% - 50px);
        transform: translateX(-50%);
        top: -25px;
        width: 35%;
    }

    .hero--content{
        width: calc(50% - 60px);
        margin-left: 30px;
    }

    .hero.second--hero .hero--content{
        margin-left: 30px;
    }

    .hero--title{
        margin-bottom: 36px;
    }

    .hero--title, .hero--title small{
        font-size: 32px;
        line-height: 39px;
    }

    .hero--consult{
        padding: 16px 36px;
        font-size: 16px;
        line-height: 19px;
    }
}

@media screen and (max-width: 1024px){
    .hero .container{
        padding: 0 50px;
    }

    .hero--picture{
        width: calc(54% - 15px);
        margin: unset;
    }

    .hero--content{
        width: calc(46% - 15px);
        margin: unset;
    }

}

@media screen and (max-width: 768px){
    .hero{
        margin: 120px 0 170px;
    }

    .hero .container{
        flex-direction: column;
        padding: 0 20px;
    }

    .hero--picture{
        width: 100%;
        max-width: 80%;
        margin: unset;
    }

    .hero--picture__main{
        width: 100%;
    }

    .hero--picture__head{
        transform: rotate(70deg);
        left: calc(100% - 130px);
        transform-origin: center center;
        top: 0px;
        width: 35%;
        animation: MoveUpDown 3s linear infinite;
    }

    .hero.second--hero .hero--content{
        margin-left: unset;
    }

    @keyframes MoveUpDown {
        0%, 100% {
            top: -35px;
        }
        50% {
            top: 0px;
        }
    }

    .hero--content{
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-top: 48px;
        align-items: center;
    }

    .hero--title small{
        left: -26px;
    }
}

@media screen and (max-width: 600px){
    .hero{
        margin: 140px 0 100px;
    }

    .hero--picture__head{
        left: calc(100% - 80px);
    }

    .hero--title{
        margin-bottom: 24px;
    }  [lang="en"]  .hero--title br:nth-of-type(1){ 
display: none; }

    .hero--title,
    .hero--title small{
        font-size: 30px;
        line-height: 36px;
    }

    .hero--title small.svk::after, 
    .hero--title small.eng::after{
        width: 33px;
        height: 22px;
    }
}

/* Hero End*/

/* Info Start*/

.info{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 170px;
}

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

.info--picture img{
    width: 280px;
    height: auto;
}

.info--descr{
    max-width: 1020px;
    width: 100%;
    font-size: 28px;
    line-height: 36px;
    color: var(--color-black);
    text-align: center;
    margin-top: 50px;
}

.info--descr span{
    color: var(--color-blue);
}

.info--cards{
    margin-top: 170px;
    width: 100%;
}

.info--cards__title{
    font-weight: 500;
    font-size: 42px;
    line-height: 58px;
    color: var(--color-black);
    margin-bottom: 60px;
    text-align: center;
}

.info--cards__title span{
    color: var(--color-blue);
}

.info--cards__list{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.info--cards__list--item{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 36px;
    padding: 0 75px;
}

.info--cards__list--item:last-child{
    margin-bottom: unset;
}

.info--cards__list--item picture{
    width: 150px;
    min-width: 150px;
    margin-right: 36px;
}

.info--cards__list--item picture img{
    width: 100%;
}

.info--cards__list--item__info{
    display: flex;
    flex-direction: column;
}

.info--cards__list--item__info span{
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.info--cards__list--item__info p{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-black);  
}

.info--cards__list--item:nth-child(even){
    justify-content: flex-end;
    max-width: calc(100% - 280px);
}

@media screen and (min-width: 1600px){
    .info--picture img{
        width: 346px;
    }

    .info--descr{
        font-size: 36px;
        line-height: 43px;
    }

    .info--cards__title{
        font-size: 48px;
        line-height: 57px;
        margin-bottom: 91px;
    }

    .info--cards__list--item picture{
        width: 180px;
        min-width: 180px;
        margin-right: 56px;
    }

    .info--cards__list--item{
        padding: unset;
    }
}

@media screen and (max-width: 1170px){
    .info{
        margin-bottom: 120px;
    }

    .info--picture img{
        width: 254px;
    }

    .info--descr{
        margin-top: 36px;
        max-width: 666px;
        font-size: 24px;
        line-height: 29px;
    }

    .info--cards{
        margin-top: 128px;
    }

    .info--cards__title{
        font-size: 36px;
        line-height: 43px;
        margin-bottom: 64px;
    }

    .info--cards__list--item picture{
        width: 100px;
        min-width: 100px;
        margin-right: 24px;
    }

    .info--cards__list--item:nth-child(even){
        margin-left: auto;
        max-width: calc(100% - 120px);
    }
}

@media screen and (max-width: 768px){
    .info{
        margin-bottom: 100px;
    }

    .info--cards{
        margin-top: 100px;
    }

    .info--picture img{
        width: 180px;
    }

    .info--cards__list--item{
        width: 100%;
        padding: 0 50px;
        align-items: flex-start;
    }

    .info--cards__list--item:nth-child(even){
        margin-left: unset;
        justify-content: flex-start;
    }

    .info--descr{
        font-size: 18px;
        line-height: 21px;
        margin-top: 10px;
    }

    .info--cards__title{
        font-size: 24px;
        line-height: 29px;
        text-align: center;
        margin: 0 auto 50px;
        max-width: 80%;
    }

    .info--cards__list--item picture{
        width: 86px;
        min-width: 86px;
        margin-right: 12px;
    }

    .info--cards__list--item:nth-child(even){
        max-width: 100%;
    }

    .info--cards__list--item__info span{
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 10px;
    }

    .info--cards__list--item__info p{
        font-size: 16px;
        line-height: 19px;
    }
}

@media screen and (max-width: 600px){
    .info--cards__list--item{
        padding: unset;
    }
}

/* Info End*/

/* Course Start */

.course{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 170px;
}

.course--top{
    display: flex;
    flex-direction: column;
}

.course--title{
    font-weight: 500;
    font-size: 42px;
    line-height: 58px;
    color: var(--color-black);
    margin-bottom: 60px;
    text-align: center;
}

.course--top__wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.course--top__item{
    width: calc(60% - 16px);
    display: flex;
    align-items: flex-start;
    padding: 55px 70px 41px 70px;
    border-width: 2px 2px 0px 0px;
    border-style: solid;
    border-radius: 48px;
}

.course--top__item.orange{
    background: linear-gradient(49.15deg, #FF8F12 5.92%, #FFBD12 124.71%);
    border-color: #FFC44D;
    display: none;
}

.course--top__item.blue{
    background: rgba(24, 119, 242, 0.1);
    border-color: transparent;
}

.course--top__item--image{
    padding: 34px 4px;
    border-radius: 36px;
    width: 198px;
}

.course--top__item--image img{
    width: 100%;
}

.course--top__item.orange .course--top__item--image{
    background: #DF7600;
}

.course--top__item.blue .course--top__item--image{
    background: rgba(24, 119, 242, 0.2);
}

.course--top__item--info{
    width: calc(100% - 198px - 36px);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course--top__item--title{
    font-weight: 400;
    font-size: 40px;
    line-height: 0;
    margin-bottom: 25px;
}

.course--top__item.orange .course--top__item--title{
    color: var(--color-white);
}

.course--top__item.blue .course--top__item--title{
    color: var(--color-black);
}

.course--top__item--title i{
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    font-style: italic;
    margin-right: 10px;
}

.course--top__item.blue .course--top__item--title i{
    color: var(--color-blue);
}

.course--top__item--title span{
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    position: relative;
}

.course--top__item.blue .course--top__item--title span{
    color: var(--color-blue);
}

.course--top__item--title span::after{
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    right: -32px;
    top: 5px;
}

.course--top__item--title span.slk::after{
    background-image: url(../images/second/course/slovakia.png);
}

.course--top__item--title span.eng::after{
    background-image: url(../images/second/course/england.png);
}

.course--top__item--list{
    display: flex;
    flex-direction: column;
}

.course--top__item--list li span{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

.course--top__item--list li small{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.course--top__item.orange .course--top__item--list li span{
    color: rgba(255, 255, 255, 0.8);   
}

.course--top__item.orange .course--top__item--list li small{
    color: var(--color-white);
}

.course--top__item.blue .course--top__item--list li span{
    color: rgba(0, 0, 0, 0.6);
}

.course--top__item.blue .course--top__item--list li small{
    color: var(--color-blue);
}

.course--top__item--btn{
    margin: auto 0 12px;
    display: flex;
    padding: 16px 24px;
    border-radius: 72px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    cursor: pointer;
    width: max-content;
    transition: var(--transition-base);
}

.course--top__item.orange .course--top__item--btn{
    background-color: var(--color-white);
    color: #FF8F12;
}

.course--top__item.blue .course--top__item--btn{
    background-color: var(--color-blue);
    color: var(--color-white);
}

.course--top__item .course--top__item--btn:hover{
    opacity: 0.7;
}


/* NEW DESIGN START */

.course--top__item--desktop{
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(49.15deg, #FF8F12 5.92%, #FFBD12 124.71%);
    border-width: 2px 2px 0px 0px;
    border-style: solid;
    border-color: #FFC44D;
    border-radius: 48px;
    width: 100%;
    padding: 64px 100px 64px 48px;
    position: relative;
}

.course--top__item--desktop__image{
    position: absolute;
    width: 460px;
    height: calc(100% + 48px);
    top: -24px;
    left: 48px;
    background: linear-gradient(47.94deg, #DF6B00 1.09%, #FF9C2D 139.71%);
    border-radius: 36px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course--top__item--desktop__image img{
    padding: 60px;
    width: 100%;
    height: 100%;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    position: relative;
    z-index: 1;
}

.course--top__item--desktop__image::after,
.course--top__item--desktop__image::before{
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.course--top__item--desktop__image::after{
    width: 108px;
    height: 103px;
    top: 42px;
    left: 46px;
    background-image: url(../images/second/course/zoom1.webp);
}

.course--top__item--desktop__image::before{
    width: 142px;
    height: 146px;
    right: 23px;
    bottom: 53px;
    background-image: url(../images/second/course/zoom2.webp);
    z-index: 2;
    transform: rotate(-35.04deg);
}

.course--top__item--desktop__info{
    width: calc(100% - 524px);
}

.course--top__item--desktop__info--title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 49px;
}

.course--top__item--desktop__info--title span{
    font-style: italic;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
    color: var(--color-white);
}

.course--top__item--desktop__info--title img{
    width: 99px;
    height: 96px;
}

.course--top__item--desktop__info ul{
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
}

.course--top__item--desktop__info ul li,
.course--top__item--desktop__info ul li span{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.course--top__item--desktop__info ul li span{
    font-weight: 700;
    color: var(--color-white);
}

.course--top__item--desktop__info--btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course--top__item--desktop__info--btn{
    padding: 16px 37px;
    cursor: pointer;
    transition: var(--transition-base);
    background-color: var(--color-white);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #FF8F12;
    border-radius: 72px;
}

.course--top__item--desktop__info--price,
.course--top__item--desktop__info--price span{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: rgba(255, 255, 255, 0.8);
}

.course--top__item--desktop__info--price span{
    font-weight: 700;
    color: var(--color-white);
    margin-left: 12px;
}

@media screen and (max-width: 1170px){
    .course--top__item.orange{
        display: flex;
    }

    .course--top__item--desktop{
        display: none;
    }
}

/* NEW DESIGN END */

.course--bottom{
    margin-top: 120px;
    display: flex;
    flex-direction: column;
}

.course--bottom__title{
    font-weight: 500;
    font-size: 42px;
    line-height: 58px;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}

.course--bottom__wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course--bottom__image{
    width: 380px;
    display: flex;
    flex-direction: column;
}

.course--bottom__image img{
    width: 100%;
    height: 321px;
}

.course--bottom__consult{
    padding: 20px 40px;
    display: block;
    cursor: pointer;
    background-color: var(--color-blue);
    border-radius: 40px;
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    color: var(--color-white);
    width: max-content;
    margin: 0 auto;
    transition: var(--transition-base);
}

.course--bottom__consult:hover{
    opacity: 0.7;
}

.course--bottom__info{
    width: calc(100% - 380px - 72px);
}

.course--bottom__info--item{
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.course--bottom__info--item:last-child{
    margin-bottom: unset;
}

.course--bottom__info--item span{
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    color: var(--color-black);
}

.course--bottom__info--item p{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-black);
}

@media screen and (max-width: 1220px){
    .course--top__item{
        width: calc(50% - 8px);
        padding: 27px 24px 20px 18px;
    }

    .course--top__item--info {
        width: calc(100% - 198px - 16px);
    }
}

@media screen and (max-width: 1170px){
    .course--title,
    .course--bottom__title{
        font-size: 36px;
        line-height: 43px;
        margin-bottom: 64px;
    }

    .course--top__item--title,
    .course--top__item--title i{
        font-size: 36px;
        line-height: 43px;
    }

    .course--top__item--title span{
        font-size: 28px;
        line-height: 32px;
    }

    .course--top__item--list li{
        margin-bottom: 4px;
    }

    .course--top__item--list li:last-child{
        margin-bottom: unset;
    }

    .course--top__wrap{
        flex-direction: column;
    }

    .course--top__item{
        max-width: 710px;
        width: 100%;
        align-items: stretch;
        margin: 0 auto;
    }

    .course--top__item.blue{
        margin-top: 24px;
    }

    .course--top__item--info{
        height: auto;
    }

    .course--top__item--list{
        margin: auto 0;
    }

    .course--bottom__image{
        width: 300px;
    }

    .course--bottom__image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .course--bottom__consult{
        padding: 20px 26px;
        font-size: 18px;
        line-height: 21px;
    }

    .course--bottom__info{
        width: calc(100% - 300px - 20px);
    }

    .course--bottom__info--item p{
        font-size: 18px;
        line-height: 22px;
    }
}

@media screen and (max-width: 768px){
    .course{
        margin-bottom: 100px;
    }

    .course--title, 
    .course--bottom__title{
        font-size: 24px;
        line-height: 29px;
        text-align: center;
        margin-bottom: 36px;
    }

    .course--top__item--title,
    .course--top__item--title i{
        font-size: 24px;
        line-height: 29px;
    }

    .course--top__item--title span{
        font-size: 24px;
        line-height: 27px;
    }

    .course--top__item--image{
        width: 142px;
        display: flex;
        align-items: center;
    }

    .course--top__item--image img{
        width: 100%;
    }

    .course--top__item--info{
        width: calc(100% - 142px - 22px);
    }

    .course--top__item--list{
        margin: auto 0 24px;
    }

    .course--top__item--list li span,
    .course--top__item--list li small{
        font-size: 16px;
        line-height: 19px;
    }

    .course--top__item--title span::after{
        width: 20px;
        height: 20px;
        right: -22px;    
    }

    .course--top__item--btn{
        padding: 10px 16px;
        font-size: 16px;
        line-height: 1;
    }

    .course--bottom{
        margin-top: 100px;
    }

    .course--bottom__wrap{
        flex-direction: column-reverse;
    }

    .course--bottom__info{
        width: 100%;
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 500px){
    .course--top__item--image{
        width: 110px;
    }

    .course--top__item--info{
        width: calc(100% - 110px - 10px);
    }

    .course--top__item--title, 
    .course--top__item--title i{
        font-size: 24px;
        line-height: 27px;
    }

    .course--top__item--title span{
        font-size: 20px;
        line-height: 24px;
    }

    .course--bottom__info--item{
        margin-bottom: 16px;
    }

    .course--bottom__info--item span{
        font-size: 18px;
        line-height: 21px;
    }

    .course--bottom__info--item p{
        font-size: 16px;
        line-height: 19px;
    }

    .course--bottom__consult {
        padding: 16px 20px;
        font-size: 16px;
        line-height: 19px;
        margin-top: 12px;
    }
}

/* Course End */


/* Rate Start*/

.rate{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 170px;
}

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

.rate--head img{
    width: 280px;
    height: auto;
}

.rate--descr{
    margin: 34px 0 170px;
    font-size: 28px;
    line-height: 36px;
    color: var(--color-black);
    text-align: center;
    max-width: 1020px;
}

.rate--descr span{
    color: var(--color-blue);
}

.rate--cards{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
    height: 100%;
}

.rate--card{
    width: calc(50% - 18px);
    border: 2px solid var(--color-blue);
    border-radius: 64px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.rate--card__name{
    background-color: var(--color-blue);
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    border-radius: 48px;
    align-items: center;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 24px;
}

.rate--card__name span{
    font-size: 42px;
    line-height: 48px;
}

.rate--card__content{
    display: flex;
    align-items: stretch;
}

.rate--card__content--img{
    width: 200px;
    border-radius: 48px;
    overflow: hidden;
}

.rate--card__content--img img{
    width: 100%;
    height: auto;
    object-position: 50% 50%;
    object-fit: contain;
}

.rate--card__content--list{
    width: calc(100% - 230px);
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.rate--card__content--list__wrap{
    margin-bottom: 24px;
}

.rate--card__content--list p{
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
}

.rate--card__content--list p span{
    color: var(--color-blue);
}

.rate--card__content--btn{
    cursor: pointer;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 72px;
    padding: 16px 24px;
    font-size: 18px;
    line-height: 21px;
    transition: var(--transition-base);
    width: max-content;
    margin: auto 0 0 0;
}

.rate--card__content--btn:hover{
    background-color: var(--color-blue--hover);
}

@media screen and (min-width: 1600px){
    .rate--head img{
        width: 336px;
    }

    .rate--descr{
        font-size: 36px;
        line-height: 43px;
    }

    .rate--cards{
        padding: unset;
    }
}

@media screen and (max-width: 1250px){
    .rate--card__content--img{
        width: 169px;
    }

    .rate--card__content--img img{
        height: 100%;        
    }

    .rate--card__content--list{
        width: calc(100% - 202px);
    }

    .rate--card__content--list ul li span{
        font-size: 16px;
        line-height: 19px;
    }
}

@media screen and (max-width: 1170px){
    .rate--card__content--img{
        width: 119px;
    }

    .rate--card__content--list{
        width: calc(100% - 152px);
    }

    .rate{
        margin-bottom: 128px;
    }

    .rate--head img{
        width: 254px;
    }

    .rate--card__content--img img{
        object-position: 50% calc(50% - 51px);
    }

    .rate--descr{
        margin: 36px 0 128px;
        font-size: 24px;
        line-height: 29px;
        max-width: 666px;
    }

    .rate--cards{
        padding: unset;
    }

    .rate--card{
        padding: 16px;
        width: calc(50% - 12px);
    }

    .rate--card__content--img{
        border-radius: 36px;
        width: 120px;
    }

    .rate--card__content--list{
        width: calc(100% - 145px);
    }

    .rate--card__content--list ul{
        margin-bottom: 16px;
    }

    .rate--card__content--list ul li{
        align-items: center;
        flex-direction: column;
    }

    .rate--card__content--list ul li span{
        text-align: center;
    }

    .rate--card__content--list ul li span:last-child{
        margin-left: unset;
        margin-top: 2px;
    }

    .rate--card__content--btn{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 19px;
    }

    .rate--card__name{
        font-size: 24px;
        line-height: 29px;
    }

    .rate--card__name span{      text-align: center;
        font-size: 36px;
        line-height: 43px;
    }
}

@media screen and (max-width: 768px){
    .rate{
        margin-bottom: 100px;
    }

    .rate--descr{
        margin: 10px 0 100px;
        font-size: 18px;
        line-height: 21px;
    }

    .rate--head img{
        width: 200px;
    }
}

@media screen and (max-width: 850px){
    .rate--card__content--list__wrap{
        text-align: center;
    }

    .rate--cards{
        flex-direction: column;
        padding: 0 75px;
    }

    .rate--card{
        width: 100%;
        position: relative;
        border-radius: 48px;
        overflow: visible;
    }

    .rate--card__content--img{
        position: absolute;
        top: -30px;
        left: 0;
        width: 114px;
        height: 152px;
    }

    .rate--card__content--img img{
        width: 100%;
        height: 100%;
        object-position: 50% 50%;
        object-fit: cover;
    }

    .rate--card__name{
        border-radius: 36px;
    }

    .rate--card__content{
        flex-direction: column;
    }

    .rate--card__content--list{
        width: 100%;
        margin-top: 26px;
    }

    .rate--card + .rate--card{
        margin-top: 48px;
    }

    .rate--card__content--btn{
        width: max-content;
        margin: 0 auto 29px;
        padding: 10px 67px;
    }
}

@media screen and (max-width: 600px){
    .rate--cards{
        padding: unset;
    }

    .rate--card__name,
    .rate--card__content--img{
        min-height: 120px;
    }
}

/* Rate End*/

/* Slovak online Start*/

.slovak--online{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--color-blue);
    padding: 42px 0 50px;
    margin-bottom: 170px;
}

.slovak--online__title{
    font-weight: 700;
    font-size: 42px;
    line-height: 48px;
    color: var(--color-white);
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.slovak--online__wrap{
    width: 100%;
    max-width: 920px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
}

.slovak--online__list li{
    margin-bottom: 10px;
}

.slovak--online__list li:last-child{
    margin-bottom: unset;
}

.slovak--online__list li span{
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: var(--color-white);
}

.slovak--online__list li small{
    font-size: 20px;
    line-height: 23px;
    font-weight: 400;
    color: var(--color-white);
}

.slovak--online__link{
    padding: 15px 45px;
    background-color: var(--color-white);
    border-radius: 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--color-black);
    transition: var(--transition-base);
}

.slovak--online__link:hover,
.slovak--online__link:focus{
    background-color: var(--color-blue--hover);
    color: var(--color-white);
}

@media screen and (max-width: 1170px){
    .slovak--online__title{
        font-size: 36px;
        line-height: 43px;
        margin-bottom: 36px;
    }

    .slovak--online__wrap{
        max-width: 100%;
        padding: 0 150px;
    }
}

@media screen and (max-width: 1024px){
    .slovak--online__wrap{
        padding: 0 85px;
    }
}

@media screen and (max-width: 768px){
    .slovak--online{
        padding: 35px 0;
        margin-bottom: 100px;
    }

    .slovak--online__title{
        font-size: 24px;
        line-height: 29px;
    }

    .slovak--online__wrap{
        padding: 0 20px;
        align-items: center;
    }

    .slovak--online__link{
        margin-top: 50px;
        font-size: 16px;
        line-height: 1;
        padding: 14px 32px;
    }
}

@media screen and (max-width: 600px){
    .slovak--online__title{
        margin-bottom: 24px;
    }

    .slovak--online__wrap{
        flex-direction: column;
        padding: 0;
        align-items: center;
    }

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


/* Slovak online End*/

/* Lodging Start*/

.lodging{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 170px;
}

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

.lodging--picture{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.lodging--picture img{
    position: relative;
    z-index: 1;
    width: 452px;
}

.lodging--picture::after{
    content: '';
    display: block;
    background-color: var(--color-blue);
    width: 100%;
    height: 24px;
    border-radius: 100px;
    position: absolute;
    bottom: 80px;
    left: 0;
}

.lodging--title{
    font-size: 42px;
    line-height: 48px;
    color: var(--color-black);
    text-align: center;
    max-width: 845px;
    margin-bottom: 36px;
}

.lodging--title span{
    color: var(--color-blue);
}

.lodging--consult{
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 72px;
    padding: 16px 24px;
    font-size: 18px;
    line-height: 21px;
    cursor: pointer;
    transition: var(--transition-base);
}

.lodging--consult:hover{
    background-color: var(--color-blue--hover);
}

@media screen and (min-width: 1600px){
    .lodging--title{
        font-size: 48px;
        line-height: 57px;
    }
}

@media screen and (max-width: 1170px){
    .lodging{
        margin-bottom: 128px;
    }

    .lodging--title{
        font-size: 36px;
        line-height: 43px;
        max-width: 666px;
        margin-bottom: 24px;
    }

    .lodging--consult{
        font-size: 16px;
        line-height: 19px;
        padding: 12px 28px;
    }
}

@media screen and (max-width: 768px){
    .lodging{
        margin-bottom: 100px;
    }

    .lodging--picture img{
        max-width: calc(100% - 88px);
    }

    .lodging--title{
        font-size: 24px;
        line-height: 29px;
    }
}

@media screen and (max-width: 600px){
    .lodging--picture::after{
        bottom: 50px;
        height: 16px;
    }
}

/* Lodging End*/

/* FAQ Start*/

.faq{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 170px;
}

.faq--title{
    font-size: 42px;
    line-height: 48px;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}

.faq--title span{
    color: var(--color-blue);
}

.faq__list--item{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.faq__list--item:last-child{
    margin-bottom: unset;
}

.faq__list--item__question{
    width: 100%;
    border: 1px solid var(--color-blue);
    border-radius: 36px;
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq__list--item__question span{
    font-size: 24px;
    line-height: 27px;
    color: var(--color-black);
    padding-right: 10px;
}

.faq__list--item__question svg{
    width: 18px;
    min-width: 18px;
    height: 11px;
    stroke: var(--color-black);
    transition: var(--transition-base);
}

.faq__list--item__question:hover{
    background: rgba(24, 119, 242, 0.2);
}

.faq__list--item.active .faq__list--item__question{
    background-color: var(--color-blue);
}

.faq__list--item.active .faq__list--item__question span{
    color: var(--color-white);
}

.faq__list--item.active .faq__list--item__question svg{
    transform: rotate(180deg);
    stroke: var(--color-white);
}

.faq__list--item__answer{
    padding: 36px;
    font-size: 20px;
    line-height: 23px;
    font-weight: 400;
    color: var(--color-black);
    border: 1px solid var(--color-blue);
    border-radius: 36px;
    margin-top: 8px;
    display: none;
}

.faq__list--item__answer a{
    text-decoration: underline;
    transition: var(--transition-base);
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.faq__list--item__answer a:hover{
    color: var(--color-blue);
}

@media screen and (min-width: 1600px){
    .faq--title{
        font-size: 48px;
        line-height: 57px;
    }

    .faq__list--item__question span{
        font-size: 24px;
        line-height: 29px;
    }
}

@media screen and (max-width: 1170px){
    .faq{
        margin-bottom: 128px;
    }

    .faq--title,
    .faq--title span{
        font-weight: 500;
        font-size: 36px;
        line-height: 43px;
    }

    .faq__list--item__question{
        padding: 16px 36px;
    }

    .faq__list--item__question span{
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
    }

    .faq__list--item__answer{
        font-weight: 400;
        font-size: 18px;
        line-height: 21px;
    }
}

@media screen and (max-width: 768px){
    .faq{
        margin-bottom: 100px;
    }

    .faq--title,
    .faq--title span{
        font-size: 24px;
        line-height: 29px;
    }

    .faq--title{
        margin-bottom: 36px;
    }

    .faq__list--item__question span{
        font-size: 16px;
        line-height: 19px;
    }

    .faq__list--item__question svg{
        width: 16px;
        min-width: 16px;
        height: 8px;
    }

    .faq__list--item__answer{
        font-size: 16px;
        line-height: 19px;
    }
}

/* FAQ End*/

/* Contact Start*/

.contact{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 170px;
}

.contact .container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 75px;
}

.contact--picture{
    width: 500px;
    margin-right: 50px;
}

.contact--picture img{
    width: 100%;
    height: auto;
}

.contact--form__wrap{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.contact--form__title{
    font-size: 42px;
    line-height: 48px;
    color: var(--color-black);
    text-align: center;
}

.contact--form__title span{
    color: var(--color-blue);
}

.contact--form__descr{
    margin: 9px 0 54px;
    max-width: 490px;
    color: #141414;
    opacity: 0.54;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}

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

.contact--form__label--text{
    width: 100%;
    position: relative;
    height: 53px;
    margin-bottom: 27px;
    position: relative;
    border-radius: 36px;
    height: 53px;
}

.contact--form__label--text.error small{
    color: red;
}

.contact--form__label--text:last-child{
    margin-bottom: 29px;
}

.contact--form__label--text input{
    width: 100%;
    height: 53px;
    padding: 0 36px;
    border-radius: 36px;
    border: 1px solid var(--color-blue);
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-black);
    outline: unset;
}

.contact--form__label--text input.error{
    border-color: red;
}

.contact--form__label--text input.error + small{
    color: red;
}

.contact--form__label--text small{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-blue);
    position: absolute;
    padding: 8px 12px;
    background-color: var(--color-white);
    top: 50%;
    transform: translateY(-50%);
    left: 36px;
    transition: var(--transition-base);
}

.contact--form__label--text.focus small{
    top: 0;
}

.contact--form__label--text .iti{
    opacity: 0;
    pointer-events: none;
}

.contact--form__label--text.focus .iti{
    opacity: 1;
    pointer-events: inherit;
}

.contact--form__label--checkbox{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    width: max-content;
    padding-left: 40px;
}

.contact--form__label--checkbox small{
    width: 16px;
    min-width: 16px;
    height: 16px;
    border: 1px solid var(--color-blue);
    border-radius: 2px;
    margin-right: 12px;
}

.contact--form__label--checkbox span{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-black);
    transition: var(--transition-base);
}

.contact--form__label--checkbox input[type="checkbox"]:checked + small{
    background-color: var(--color-blue);
    background-image: url(../images/contact/check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    background-size: 10px 7px;
}

.contact--form__label--checkbox.error span{
    color: red;
}

.contact--form__link--privacy{
    display: flex;
    align-items: center;
    width: max-content;
    margin-bottom: 24px;
    padding-left: 40px;
}

.contact--form__link--privacy svg{
    width: 14px;
    height: 13px;
    fill: var(--color-blue);
    margin-right: 13px;
    transition: var(--transition-base);
}

.contact--form__link--privacy span{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-blue);
    opacity: 0.5;
    position: relative;
    top: 1px;
    transition: var(--transition-base);
}

.contact--form__link--privacy:hover span,
.contact--form__link--privacy:focus span{
    opacity: 1;
}

.contact--form button[type="submit"]{
    width: 100%;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 72px;
    font-size: 16px;
    line-height: 19px;
    padding: 16px;
    border: unset;
    outline: unset;
    cursor: pointer;
    transition: var(--transition-base);
}

.contact--form button[type="submit"]:hover{
    background-color: var(--color-blue--hover);
}

.contact--form__social{
    display: flex;
    align-items: center;
    margin-top: 24px;
    justify-content: center;
}

.contact--form__social--link{
    margin-right: 24px;
    width: 30px;
    height: 30px;
}

.contact--form__social--link:last-child{
    margin-right: unset;
}

.contact--form__social--link svg{
    width: 100%;

    height: 100%;
    fill: var(--color-blue);
    transition: var(--transition-base);
}

.contact--form__social--link:hover svg,
.contact--form__social--link:focus svg{
    fill: var(--color-blue--hover);
}

.contact--form__ok{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.contact--form__ok.show{
    opacity: 1;
    pointer-events: inherit;
}

.contact--form__ok span{
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: var(--color-blue);
}

.contact--form__ok p{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-black);
    margin-top: 16px;
    padding: 0 20px;
    text-align: center;
}

@media screen and (min-width: 1600px){
    .contact .container{
        padding: unset;
    }

    .contact--picture{
        width: 556px;
    }
}

@media screen and (max-width: 1170px){
    .contact--form__wrap{
        width: calc(100% - 610px);
    }

    .contact--picture{
        width: 440px;
    }

    .contact--form__wrap{
        width: calc(100% - 490px);
    }

    .contact{
        margin-bottom: 128px;
    }

    .contact--picture{
        width: 400px;
    }

    .contact--form__wrap{
        width: calc(100% - 460px);
    }

    .contact--form__title{
        font-size: 36px;
        line-height: 43px;
    }

    .contact--form__descr{
        font-size: 18px;
        line-height: 21px;
        margin: 16px 0 34px;
    }

    .contact--form__label--text{
        height: 51px;
    }

    .contact--form__label--checkbox span{
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
    }
}

@media screen and (max-width: 1024px){
    .contact .container{
        padding: 0 20px;
    }

    .contact--picture{
        width: 330px;
        margin-right: 20px;
    }

    .contact--form__wrap{
        margin-left: unset;
        width: calc(100% - 370px);
    }

    .contact--form__label--checkbox{
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .contact{
        margin-bottom: 100px;
    }

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

    .contact--picture{
        width: 60%;
        margin-bottom: 36px;
        margin-right: unset;
    }

    .contact--form__wrap{
        width: 100%;
    }

    .contact--form{
        width: 100%;
    }

    .contact--form__label--checkbox{
        width: 100%;
        padding-left: unset;
    }

    .contact--form__link--privacy{
        padding-left: 0px;
    }
}

@media screen and (max-width: 600px){
    .contact--picture{
        width: 70%;
        margin-bottom: 36px;
    }

    .contact--form__title{
        font-size: 24px;
        line-height: 29px;
    }

    .contact--form__descr{
        font-size: 18px;
        line-height: 21px;
        margin: 12px 0 42px;
    }

    .contact--form__label--text input{
        font-size: 16px;
        line-height: 19px;
    }

    .contact--form__label--text small{
        padding: 6px 12px;
        font-size: 14px;
        line-height: 17px;
    }

}

/* Contact End*/

/* Footer Start*/

.footer.footer{
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer--wrap{
    border: 2px solid var(--color-blue);
    border-bottom: unset;
    border-radius: 36px 36px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 37px 55px;
}

.footer--left{
    display: flex;
    flex-direction: column;
}

.footer--left__logo{
    width: 160px;
    height: 45px;
    margin-bottom: 30px;
}

.footer--left__logo img{
    width: 100%;
    height: 100%;
}

.footer--left__copyright{
    font-size: 12px;
    line-height: 14px;
    color: var(--color-black);
}

.footer--middle__social li{
    margin-bottom: 16px;
}

.footer--middle__social li:last-child{
    margin-bottom: unset;
}

.footer--middle__social li a{
    display: flex;
    align-items: center;
}

.footer--middle__social li a svg{
    width: 22px;
    height: 21px;
    fill: var(--color-blue);
    margin-right: 8px;
    transition: var(--transition-base);
}

.footer--middle__social li a span{
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    transition: var(--transition-base);
    font-weight: 500;
}

.footer--middle__social li a:hover span,
.footer--middle__social li a:focus span{
    color: var(--color-blue--hover);
}

.footer--middle__social li a:hover svg,
.footer--middle__social li a:focus svg{
    fill: var(--color-blue--hover);
}

.footer--right{
    display: flex;
    flex-direction: column;
}

.footer--right__mail{
    display: flex;
    align-items: center;
    margin-bottom: 47px;    
}

.footer--right__mail svg{
    width: 18px;
    height: 15px;
    fill: var(--color-blue);
    margin-right: 8px;
    transition: var(--transition-base);
}

.footer--right__mail span{
    color: var(--color-black);
    font-size: 16px;
    line-height: 19px;
    transition: var(--transition-base);
    font-weight: 500;
}

.footer--right__mail:hover span,
.footer--right__mail:focus span{
    color: var(--color-blue--hover);
}

.footer--right__mail:hover svg,
.footer--right__mail:focus svg{
    fill: var(--color-blue--hover);
}

.footer--right__social{
    display: flex;
    align-items: center;
}

.footer--right__social--link{
    display: flex;
    align-items: center;
    margin-right: 36px;
}

.footer--right__social .footer--right__social--link:last-child{
    margin-right: unset;
}

.footer--right__social--link svg{
    width: 25px;
    height: 24px;
    fill: var(--color-blue);
    transition: var(--transition-base);
}

.footer--right__social--link:hover svg,
.footer--right__social--link:focus svg{
    fill: var(--color-blue--hover);
}

.footer--copyright__mobile{
    display: none;
}

@media screen and (max-width: 1170px){
    .footer--wrap{
        padding: 29px 36px 35px;
        border-width: 1px;
    }

    .footer--middle__social li a span{
        font-size: 14px;
        line-height: 17px;
    }

    .footer--right__mail span{
        font-size: 14px;
        line-height: 17px;
    }

    .footer--right__social--link{
        margin-right: 30px;
    }
}

@media screen and (max-width: 820px){
    .footer--wrap{
        flex-direction: column;
    }

    .footer--left__copyright{
        display: none;
    }

    .footer--left__logo{
        width: 125px;
        height: 33px;
        margin-bottom: 36px;
    }

    .footer--middle__social{
        margin-bottom: 36px;
    }

    .footer--middle__social li{
        margin-bottom: 16px;
    }

    .footer--right{
        align-items: center;
    }

    .footer--right__mail{
        margin-bottom: 36px;
    }

    .footer--right__social{
        margin-bottom: 36px;
    }

    .footer--copyright__mobile{
        display: block;
        font-weight: 500;
        font-size: 12px;
        line-height: 14px;
    }
}

@media screen and (max-width: 650px){
    footer.footer .container{
        padding: unset;
    }

    .footer--wrap{
        border-width: 1px;
    }
}

/* Footer End*/

/* Contact Modal Start*/

.contact--modal{
    position: fixed;
    width: 100%;
    height: calc(var(--vh,1vh) * 100);
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.contact--modal.show{
    opacity: 1;
    pointer-events: inherit;
}

.contact--modal__wrap{
    max-width: 625px;
    max-height: calc(100% - 40px);
    height: auto;
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 10px;
    overflow: auto;
    padding: 24px 34px 14px;
}

.simplebar-track{
    background-color: transparent;
    width: 3px;
    right: 15px;
}

.simplebar-track.simplebar-vertical{
    top: 20px;
    height: calc(100% - 40px);
    width: 4px;
    border-radius: 8px;
}

.simplebar-scrollbar{
    background-color: var(--color-blue);
}

.contact--modal__title{
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    color: var(--color-black);
    text-align: center;
}

.contact--modal__title span{
    color: var(--color-blue);
}

.contact--modal__descr{
    margin: 10px 0 40px;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: var(--color-black);
}

.contact--modal .contact--form{
    width: 100%;
}

.contact--modal .contact--form button[type="submit"]{
    padding: 12px;
}

.contact--modal__bg{
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 1;
}

.contact--modal__bg.show{
    opacity: 1;
    pointer-events: inherit;
}

.contact--modal__close{
    position: absolute;
    right: 30px;
    top: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-blue--light);
    background-color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.contact--modal__close svg{
    width: 12px;
    height: 12px;
}

.contact--modal__close:hover{
    transform: rotate(180deg);
}

@media screen and (max-width: 1170px){
    .contact--modal__wrap{
        margin: 0 20px;
        max-width: 560px;
    }

    .contact--modal__title{
        font-size: 24px;
        line-height: 100%;
    }

    .contact--modal__descr{
        font-size: 18px;
        line-height: 21px;
        margin: 16px auto 42px;
        max-width: 404px;
    }

    .contact--modal__close{
        top: 25px;
        right: 25px;
    }
}

@media screen and (max-width: 768px){
    .contact--modal__wrap{
        padding: 44px 24px 14px;
    }

    .contact--modal__close{
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }

    .contact--modal__title{
        font-weight: 500;
        font-size: 19px;
        line-height: 100%; 
    }

    .contact--modal__descr{
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        margin: 12px 0 36px;
    }

    .simplebar-track{
        background-color: transparent;
        width: 3px;
        right: 10px;
    }
    
    .simplebar-track.simplebar-vertical{
        top: 20px;
        height: calc(100% - 40px);
        width: 4px;
        border-radius: 8px;
    }
    
    .simplebar-scrollbar{
        background-color: var(--color-blue);
    }
}

/* Contact Modal End*/

/* Policy Modal Start*/

.policy--modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh,1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.policy--modal.show{
    opacity: 1;
    pointer-events: inherit;
}

.policy--modal__bg{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 1;
}

.policy--modal__bg.show{
    opacity: 1;
    pointer-events: inherit;
}

.policy--modal__wrap{
    max-width: 796px;
    max-height: calc(100% - 200px);
    height: 100%;
    min-height: auto;
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 36px;
    padding: 66px 24px 66px 64px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.policy--modal__close{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-blue--light);
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
}

.policy--modal__close:hover{
    transform: rotate(180deg);
}

.policy--modal__close svg{
    width: 12px;
    height: 12px;
}

.policy--modal__title{
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: var(--color-black);
}

.policy--modal__text--wrap{
    overflow: auto;
    margin-top: 24px;
    height: calc(100% - 66px);
}

.policy--modal__text{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    margin-right: 26px;
}

@media screen and (max-width: 1024px){
    .policy--modal__wrap{
        padding: 48px 18px 48px 48px;
        margin: 0 20px;
    }

    .policy--modal__title{
        font-size: 24px;
    }

    .policy--modal__text{
        font-size: 16px;
        line-height: 19px; 
        height: calc(100% - 48px);
    }
}

@media screen and (max-width: 600px){
    .policy--modal__wrap{
        padding: 39px 8px 24px 24px;
        margin: 0 20px;
        max-height: calc(100% - 100px);
    }

    .policy--modal__close{
        top: 12px;
        right: 12px;
    }

    .policy--modal__title{
        max-width: 200px;
        font-size: 20px;
        line-height: 24px;
    }

    .policy--modal__text{
        font-size: 16px;
        line-height: 19px; 
        height: calc(100% - 24px);
    }
}


/* Policy Modal End*/


/* Others Start*/

.iti{
    width: 100%;
    transition: var(--transition-base);
}

.iti--allow-dropdown .iti__flag-container, 
.iti--separate-dial-code .iti__flag-container{
    left: 36px;
}

.iti--allow-dropdown input, 
.iti--allow-dropdown input[type=text], 
.iti--allow-dropdown input[type=tel]{
    padding-left: 90px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
    background-color: unset;
}

body:not(.iti-mobile) .iti__country-list{
    width: 390px!important;
}

@media screen and (max-width: 1024px){
    body:not(.iti-mobile) .iti__country-list {
        width: 335px!important;
    }
}

@media screen and (max-width: 500px){
    body:not(.iti-mobile) .iti__country-list {
        width: 260px!important;
    }
}

.iti-mobile .iti--container{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
}

.iti-mobile .iti--container::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.5;
}

.iti-mobile .iti__country-list{
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin: 30px;
}

/* Others End*/

/* Modal Form Ok Start*/

.modal--form__ok{
    width: 100%;
    height: calc(var(--vh,1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.modal--form__ok.show{
    opacity: 1;
    pointer-events: inherit;
}

.modal--form__ok--wrap{
    padding: 84px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 24px;
    margin: 0 20px;
}

.modal--form__ok--wrap span{
    color: var(--color-blue);
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
}

.modal--form__ok--wrap p{
    margin-top: 18px;
    color: var(--color-black);
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
}


.slovak--cat .slovak--online__link {
    cursor: pointer;
}
.slovak--cat .slovak--online__wrap{
    max-width: 870px;
    align-items: center;
    
}
.slovak--cat{
    padding-bottom: 30px;
}
@media screen and (max-width: 600px){
    .slovak--online__list{
        transform: translateX(20px);
    }
}
/* Modal Form Ok End*/

button[type="submit"].disabled{
    pointer-events: none;
    opacity: 0.5;
}



.rud--cards{
    display: flex;
    justify-content: center;
    width: 100%;
}

.rud--cards .container{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.rud--card{
    display: flex;
    justify-content: space-between;
    width: 50%;
    padding: 39px 25px 48px 48px;
    border-radius: 48px;
}

.rud--cards .container .blue{
    margin-right: 36px;
    background: linear-gradient(82deg, #F2AE41 -3.09%, #1877F2 -3.08%, #72E6FF 96.01%);
}

.rud--cards .container .blue .rud--card--info{
    width: 55%;
}

.rud--cards .container .blue  .rud--card--img{
    width: 40%;
}

.rud--cards .container .orange .rud--card--info{
    width: 55%;
}

.rud--cards .container .orange .rud--card--img{
    width: 45%;
}

.rud--card--info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.rud--card--img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rud--card--info__title{
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 8px;
}

.rud--card--info__subtitle{
    color: #fff;
    font-size: 48px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}

.rud--card--info__skill{
    color: #1877F2;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 36px;
    padding: 4px 10px;
}

.rud--info__item{
    display: flex;
    align-items: center;
    padding: 8px 8px;
    border-bottom: 1px solid #96C7FA;
}

.rud--info__item:last-child{
    margin-bottom: 23px;
}

.rud--info__item span{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    min-width: 150px;
    margin-right: 8px;
    
}

.rud--info__item small{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.rud--card--info a{
    display: flex;
    justify-content: center;
    color: #2182F4;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 16px 24px;
    text-decoration: unset;
    background-color: #fff;
    border-radius: 72px;
    transition: .3s all ease-in-out;
    cursor: pointer;
}

.rud--card--info a:hover{
    background-color:  #1877F2;
    color: #fff;
}

.rud--cards .container .orange{
    background: linear-gradient(82deg, #F2AE41 -3.09%, #F0831E -3.08%, #F2AE41 96.01%);
}

.rud--cards .container .orange .rud--card--info .rud--card--info__skill{
    color: #F18923;
}

.rud--cards .container .orange .rud--card--info .rud--card--info__list .rud--info__item{
    border-bottom: 1px solid #F8C995;
}

.rud--cards .container .orange .rud--card--info a{
    background-color: #1877F2;
    color: #fff;
}

.rud--cards .container .orange .rud--card--info a:hover{
    color: #1877F2;
    background-color: #fff;
}

@media screen and (max-width: 1350px){
    .rud--card{
        flex-direction: column-reverse;
    }

    .rud--cards .container .blue .rud--card--info{
        width: 100%;
        align-items: center;
    }
    
    .rud--cards .container .blue  .rud--card--img{
        width: 100%;
    }
    
    .rud--cards .container .orange .rud--card--info{
        width: 100%;
        align-items: center;
    }
    
    .rud--cards .container .orange .rud--card--img{
        width: 100%;
    }

    .rud--cards .container .blue  .rud--card--img img{
        height: 400px;
        margin-bottom: 30px;
    }

    .rud--cards .container .orange .rud--card--img img{
        height: 400px;
        margin-bottom: 20px;
    }

    .rud--card{
        padding: 48px 48px;
    }
}

@media screen and (max-width: 1024px){
    .rud--card--info__subtitle{
        font-size: 42px;
    }

    .rud--cards .container{
        flex-direction: column;
    }

    .rud--card{
        display: flex;
        flex-direction: unset;
        width: 100%;
    }

    .rud--cards .container .blue{
        margin-right: unset;
        margin-bottom: 30px;
    }

    .rud--cards .container .blue  .rud--card--img img{
        height: 400px;
    }

    .rud--cards .container .orange .rud--card--img img{
        height: 400px;
    }

    .rud--cards .container .blue .rud--card--info{
        align-items: flex-start;
    }
    
    .rud--cards .container .orange .rud--card--info{
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px){
    .rud--card--info__title{
        font-size: 18px;
    }

    .rud--card--info__subtitle{
        font-size: 32px;
    }

    .rud--info__item span{
        font-size: 14px;
    }

    .rud--info__item small{
        font-size: 14px;
    }

    .rud--card--info a{
        font-size: 16px;
        padding: 14px 20px;
    }

    .rud--card{
        padding: 30px 30px;
    }
}



@media screen and (max-width: 680px){
    .rud--card{
        flex-direction: column-reverse;
    }

    .rud--cards .container .blue .rud--card--info{
        width: 100%;
        align-items: center;
    }
    
    .rud--cards .container .blue  .rud--card--img{
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
       
    }
    
    .rud--cards .container .orange .rud--card--info{
        width: 100%;
        align-items: center;
    }
    
    .rud--cards .container .orange .rud--card--img{
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .rud--card--img img{
        height: 300px!important;
        margin-bottom: 30px!important;
    }
    
}

@media screen and (max-width: 500px){
    .rud--card{
        padding: 30px 20px;
    }
}









.sale {
  width: 100%;
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 650px) {
    .sale__top--left__title span  {
        font-size: 45px !important;
        font-weight: 700 !important;
        line-height: 90% !important;
    }
}
@media screen and (max-width: 650px) {
  .sale {
    padding-bottom: 1px;
  }
}
.sale__top {
  margin: 65px 0 36px;
  border-radius: 60px;
  border: 3px solid #1875EE;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  .sale__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .sale__top--link {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .sale__top {
    padding: 36px 24px;
  }
}
.sale__top--left {
  width: calc(50% - 12px);
}
@media screen and (max-width: 860px) {
  .sale__top--left {
    width: 100%;
    margin: 0 0 36px;
  }
}
.sale__top--left__title {
  margin: 0 0 24px;
  font-size: 64px;
    font-weight: 700;
    line-height: 90%;
}
@media screen and (max-width: 650px) {
  .sale__top--left__title {
    margin: 0 0 16px;
    font-size: 45px;
  }
}
.sale__top--left__title span {
  color: #FF900F;
  font-size: 64px;
    font-weight: 700;
    line-height: 90%;
}
.sale__top--left__descr {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  display: flex;
}
.sale__top--left__descr img {
  width: 25px; 
  margin-left: 10px;
}
@media screen and (max-width: 650px) {
  .sale__top--left__descr {
    font-size: 18px;
  }
  .sale__top--left__descr img {
    width: 20px; 
  margin-left: 10px;
  }
}
.sale__top--right {
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 860px) {
  .sale__top--right {
    width: 100%;
    align-items: flex-start;
  }
}
.sale__top--right__info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-width: 342px;
  margin: 0 0 20px;
}
@media screen and (max-width: 650px) {
  .sale__top--right__info {
    min-width: 100%;
  }
}
.sale__top--right__info--price {
  padding: 18px;
  width: calc(50% - 24px);
  height: auto;
  border-radius: 24px;
  background: linear-gradient(81deg, #1875EE 4.13%, #18BBEE 102.13%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.sale__top--right__info--price .p_old {
    font-size: 20px;
    text-decoration: line-through;
    text-decoration-color: red;
}
@media screen and (max-width: 650px) {
  .sale__top--right__info--price {
    width: calc(50% - 18px);
  }
}
.sale__top--right__info--price span {
  color: #FFF;
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
}
.sale__top--right__info--content {
  width: calc(50% - 24px);
  height: auto;
  color: #000;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  line-height: 120%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 650px) {
  .sale__top--right__info--content {
    width: calc(50% - 18px);
  }
}
.sale__top--right__info--content span {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  margin: 8px 0 0;
}
@media screen and (max-width: 650px) {
  .sale__top--right__info--content span {
    font-size: 24px;
  }
}
.sale__top--right__buy {
  padding: 16px 24px;
  width: 100%;
  border-radius: 72px;
  background: #FF900F;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  width: 342px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.sale__top--right__buy a {
  color: #FFF;
}
@media screen and (max-width: 650px) {
  .sale__top--right__buy {
    width: 100%;
  }
}
.sale__top--right__buy:hover {
  opacity: 0.7;
}
.sale__content {
  border-radius: 60px;
  background: #79C5F7;
  width: 100%;
  padding: 24px;
}
@media screen and (max-width: 650px) {
  .sale__content {
    position: relative;
    width: calc(100% + 48px);
    left: -24px;
    border-radius: 48px;
  }
}
.sale__content--head {
  width: 100%;
  padding: 16px 36px;
  border-radius: 36px;
  background: linear-gradient(81deg, #1875EE 4.13%, #18BBEE 102.13%);
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}
@media screen and (max-width: 650px) {
  .sale__content--head {
    padding: 16px;
  }
}
.sale__content--head::after, .sale__content--head::before {
  content: "";
  display: block;
  width: calc(50% - 137px);
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 650px) {
  .sale__content--head::after, .sale__content--head::before {
    width: calc(50% - 50px - 16px - 8px);
  }
}
.sale__content--head::after {
  left: 36px;
}
@media screen and (max-width: 650px) {
  .sale__content--head::after {
    left: 16px;
  }
}
.sale__content--head::before {
  right: 36px;
}
@media screen and (max-width: 650px) {
  .sale__content--head::before {
    right: 16px;
  }
}
.sale__content--head span {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 650px) {
  .sale__content--head span {
    font-size: 18px;
  }
}
.sale__content--list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sale__content--list.active .sale__content--list__item:nth-child(n+4) {
  display: block;
}
.sale__content--list__item {
  padding: 0 36px;
  background-color: #fff;
  border-radius: 60px;
  transition: 0.3s all ease-in-out;
  margin: 0 0 22px;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item {
    padding: 16px;
    border-radius: 36px;
  }
}
.sale__content--list__item:nth-child(n+4) {
  display: none;
}
.sale__content--list__item.active {
  padding: 36px 36px 12px 36px;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item.active {
    padding: 16px;
  }
}
.sale__content--list__item.active .sale__content--list__item--btn {
  width: 100%;
  left: 0;
  background-color: #FF900F;
  color: #FFF;
  padding: 16px 16px 16px 24px;
}
.sale__content--list__item.active .sale__content--list__item--btn span {
  color: #fff;
}
.sale__content--list__item.active .sale__content--list__item--btn__arrow {
  background-color: #fff;
}
.sale__content--list__item.active .sale__content--list__item--btn__arrow svg {
  stroke: #FF900F;
  transform: rotate(180deg);
}
.sale__content--list__item--btn {
  display: flex;
  align-items: center;
  padding: 16px 52px;
  width: calc(100% + 72px);
  left: -36px;
  position: relative;
  color: #060606;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border-radius: 48px;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--btn {
    padding: 16px 16px 16px 24px;
    width: 100%;
    left: unset;
    font-size: 16px;
  }
}
.sale__content--list__item--btn span {
  color: #FF900F;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0 24px 0 0;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--btn span {
    font-size: 36px;
    margin: 0 12px 0 0;
  }
}
.sale__content--list__item--btn__arrow {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  background: #FF900F;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--btn__arrow {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
}
.sale__content--list__item--btn__arrow svg {
  width: 16px;
  height: 11px;
  transition: 0.3s all ease-in-out;
  stroke: #fff;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--btn__arrow svg {
    width: 14px;
    height: 8px;
  }
}
.sale__content--list__item--btn:hover {
  background-color: #FF900F;
  color: #fff;
}
.sale__content--list__item--btn:hover span {
  color: #fff;
}
.sale__content--list__item--btn:hover .sale__content--list__item--btn__arrow {
  background-color: #fff;
}
.sale__content--list__item--btn:hover .sale__content--list__item--btn__arrow svg {
  stroke: #FF900F;
}
.sale__content--list__item--info {
  display: none;
  margin: 72px 0 0;
  position: relative;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--info {
    margin: 48px 0 0;
  }
}
.sale__content--list__item--info::after {
  content: "";
  display: block;
  position: absolute;
  top: -37px;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../img/border.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--info::after {
    top: -25px;
  }
}
.sale__content--list__item--info__blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sale__content--list__item--info__block {
  border-radius: 26px;
  background: #F3F3F3;
  padding: 36px;
  display: flex;
  width: calc(50% - 12px);
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--info__block {
    padding: 24px;
    width: 100%;
    margin: 0 0 24px;
    border-radius: 24px;
  }
  .sale__content--list__item--info__block:last-child {
    margin: unset;
  }
}
.sale__content--list__item--info__block.full {
  width: 100%;
}
.sale__content--list__item--info__block--head {
  display: flex;
  align-items: center;
  color: #060606;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 12px;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--info__block--head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sale__content--list__item--info__block--head svg {
  min-width: 22px;
  width: 22px;
  height: 16px;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--info__block--head svg {
    margin: 0 0 12px;
  }
}
.sale__content--list__item--info__block--content ul {
  list-style: disc;
}
@media screen and (max-width: 650px) {
  .sale__content--list__item--info__block--content ul {
    padding: 0 0 0 20px;
  }
}
.sale__content--list__item--info__block--content p,
.sale__content--list__item--info__block--content ul li {
  color: #060606;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  opacity: 0.8;
}
.sale__content--list__item--info__block--content p::marker,
.sale__content--list__item--info__block--content ul li::marker {
  color: rgba(0, 0, 0, 0.8);
}
.sale__content--more {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  border-radius: 72px;
  background: linear-gradient(81deg, #1875EE 4.13%, #18BBEE 102.13%), #FFF;
  padding: 16px 24px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 650px) {
  .sale__content--more {
    width: 100%;
    justify-content: center;
  }
}
.sale__content--more:hover {
  opacity: 0.7;
}
.sale__content--more.active svg {
  transform: rotate(180deg);
}
.sale__content--more span {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  margin: 0 10px 0 0;
}
.sale__content--more svg {
  width: 16px;
  height: 11px;
  transition: 0.3s all ease-in-out;
}