:root {
    --max-width:1440px;
    --medium-cont:1130px;
    --small-cont:900px;

    --base-color:#F8F8F8;
    --blue:#322CDD;
    --purple:#8480EB;
    --green:#90D02F;
    --body-font_color:#8C8C8C;
    --body-font_size:16px;
    --blue-header-font_color:#1E1A85;
    --whitish-header-font_color:#FBFDF7;
    --clean-white-header-font_color:#F8F8F8;
    --header-gry-color:#545454;

    --blue_btn:#322CDD;
    --blue_btn-hover:#5B56E4;
    --blue_btn-color:#FBFBFF;
    --greenbtn-color:#22300B;
    --green_btn:#90D02F;
    --green_btn-hover:#A5D957;

    --first-lvl-menu-color:#707070;
    --second-lvl-menu-color:#8C8C8C;
    --dropdown-color: #FDFDFD;

    --grey-border:#D8D8D8;
}
/*my-reset*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    color: var(--body-font_color);
}
/*basic*/
body{
    background: var(--base-color);
    overflow-x: hidden;
    max-width: 100%;
}
html{
    overflow-x: hidden;
    scroll-padding-top: 96px;
}
a,p,span,div,li,ul,ol{
    font-size:var(--body-font_size);
}
a{
    text-decoration: none;
}
h1{
    font-size: 82px;
    line-height: 96%;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
    color: var(--whitish-header-font_color);
    font-weight: 400;

}
h2{
    font-size: 61px;
    line-height: 98%;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    font-weight: 400;
}
h3{
    font-size: 45px;
    line-height: 100%;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    font-weight: 400;
    color:var(--header-gry-color) ;
}
h4,h5,h6{
    font-weight: 400;

}
.ty-btn{
    padding: 12px 16px;
    border-radius: 12px;
    transition: 0.4s linear;
    cursor: pointer;
    display: inline-block;
    border: none;
}
.btn-blue{
    background: var(--blue_btn);
    color:  var(--blue_btn-color);
}
.btn-blue:hover{
    background: var(--blue_btn-hover);
}
.btn-green{
    background: var(--green_btn);
    color:  var( --greenbtn-color);
}
.btn-green:hover{
    background: var(--green_btn-hover);
}
.body-container{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
}
.header-cont{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
}
.small-cont{
    max-width:var(--small-cont);
    margin: 0 auto;
}
.medium-cont{
    max-width:var(--medium-cont);
    margin: 0 auto;
}
.blue-header{
    color: var(--blue-header-font_color);
}
.full-width-bg{
    position: relative;
}
.full-width-bg:before{
    background: #EEEEEE;
    content: "";
    position: absolute;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw;
    display: block;
    height: 100%;
    content: "";
    top: 0;
    z-index: -1;
}
.only-mobile{
    display: none;
}
.body-container{
    margin-top:96px;
}
html.scroll-locked{
    height: 100%;
}
html.scroll-locked body{
    height: 100%;
}
/*header*/
.mobile-menu-cont{
    display: none;
}
header{
    position: absolute;
    top: 0;
    width: 100%;
    background: var(--base-color);
    z-index: 10;
    box-shadow: 0px 0px 9px #8c8c8c;
}

.header-cont{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
}
.header-cont .flex-cont{
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
    z-index: 10;
    transition: padding 0.4s;
}
.header-section__logo, header-section__logo >a{
    display: block;
    max-height: 64px;
    transition: max-height 0.4s;
}
.header-section__logo img{
    max-height: 64px;
    object-fit: contain;
    transition: max-height 0.4s ;
}
.header-section__menu{
    flex: 1;
}
.first-lvl-menu{
    display: flex;
    align-content: center;
    list-style-type: none;
    padding:  5px 0;
    justify-content: flex-end;
}
.first-lvl-item{
    position: relative;
    padding:  16px;
    transition: padding 0.4s;
}
.first-lvl-item img{
    margin-left: 16px;
}
.first-lvl-item, .first-lvl-item > a{
    color:var(--first-lvl-menu-color);
    transition: 0.4s;
}
.first-lvl-item:hover >a{
  color: var(--green)
}
.first-lvl-item:hover .second-lvl-menu{
    display: block;
}
.second-lvl-menu{
    list-style-type: none;
    position: absolute;
    display: none;
    width:247px;
    padding: 8px 12px;
    background: #FDFDFD;
    background: var(--dropdown-color);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    top: 100%;
}
.second-lvl-menu .second-lvl-item:not(:last-child){
    margin-bottom: 16px;
}
.second-lvl-menu .second-lvl-item a{
  transition: 0.4s;
}
.second-lvl-menu .second-lvl-item:hover a{
  color: var(--green)
}
.header-section-login .fb-btn{
    padding: 18px 0px 18px 20px;
    display: inline-block;
    transition: padding 0.4s;
}
.header-section-login{
    display: flex;
    align-items: center;
    margin-left: 16px;
}
.header-section-login .ty-btn{
    display: inline-block;
    margin-right: 5px;
    margin-top:9px;
    margin-bottom: 9px;
    transition: margin 0.4s;
}
.header-section-login:before{
   background: var(--grey-border);
    content: "";
    width: 1px;
    height:32px ;
    margin-right: 32px;

}
.header-stick .header-section__logo img{
    max-height: 48px;
}
.header-stick .header-section__logo, .header-stick header-section__logo >a{
    max-height: 48px;
}
.header-stick .header-cont .flex-cont{
    padding:12px 0;
}
.header-stick .header-section-login .ty-btn{
    margin-top: 1px;
    margin-bottom: 1px;
}
.header-stick .header-section-login .fb-btn{
    padding: 10px 0px 10px 20px;
}
.header-stick .first-lvl-item{
    padding: 9px 16px;
}
/*homepage*/
.homepage-banner{
    position: relative;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw;
}
.homepage-banner .owl-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-top: 0;
}
.banner-desc-cont{
    position: absolute;
    left: 50%;
    height: 100%;
    width: 100%;
    top: 0;
    transform: translateX(-50%);
    max-width: var(--max-width);
    padding:0 40px;
}
.banner-desc{
    position: absolute;
    left: 40px;
    top: 0;
    width: 50%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.banner-desc h2{
    color:#FBFBFF;
    margin-bottom: 20px;
}
.banner-desc h6{
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 115%;
    color:  #EAEAFC;;
}

.single-banner{
    position: relative;
}
.offer-section{
    padding-bottom: 80px;
    padding-top: 80px;
}
.offer-section h1{
    color:#1E1A85;
}
.offer-grid{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 33fr 28fr;
}
.single-offer:first-child,.single-offer:nth-of-type(2){
    grid-column: span 2;
}
.single-offer{
    position: relative;
}
.single-offer img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.single-offer a{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    padding:32px 16px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.27%, rgba(0, 0, 0, 0.6) 100%);
}
.single-offer a:hover{
    background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.single-offer h5{
    color: var(--clean-white-header-font_color);
    font-size: 22px;
    line-height: 115%;
}
.single-offer:first-child h5,.single-offer:nth-of-type(2) h5{
    font-size: 39px;
    line-height: 108%;
    letter-spacing: -0.03em;
}
.places-section{
    padding-top:163px;
    padding-bottom: 124px;
}
.places-section:before{
    background: #EAEAFC;
}
.place-slide_text{
    padding: 32px 16px;
    background: var(--blue_btn);
}
.place-slide_text h4{
    color: #EAEAFC;
    font-weight: 400;
    font-size: 39px;
    line-height: 108%;
    letter-spacing: -0.03em;
    margin-bottom: 1px;
}
.place-slide_text span{
    color: #ADABF1;
}
.owl-item:nth-of-type(2n)  .place-slide .place-slide_text{
    background: var(--purple);
}
.owl-item:nth-of-type(2n)  .place-slide  h4{
    color: var(--blue-header-font_color);
}
.owl-item:nth-of-type(2n)  .place-slide  span{
    color: var(--blue);
}
.personnel-section{
    padding-bottom: 190px;
    padding-top:177px;
}
.personel-inner-section{
    display: flex;
    align-items: center;
}
.personel-info-text{
    width: 325px;
    padding-right: 20px;
}
.personel-info-text h3{
    margin-bottom: 16px;
}
.personel-info-text p{
    margin-bottom:40px;
    line-height: 135%;
}
.personel-info-text a{
    padding: 12px 24px;
}
.personel-carousel-cont{
    width: calc(100% - 325px);
}
.owl-carousel.personel-carousel{
    width: calc(100% + 155px);
}
.personel-single{
    height: 433px;
    position: relative;
}
.personel-single img{
    height: 100%;
    object-fit: cover;
}
.personel-carousel-cont{
    padding-left:20px;
    border-left: 1px solid #CBCBCB;
}
.perso-info{
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 32px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.08%, rgba(0, 0, 0, 0.9) 100%);
}
.perso-info h5{
    color: #F8F8F8;
    margin-bottom: 8px;
    font-size: 29px;
    line-height: 110%;
}
.perso-info p{
    color: #B9B9B9;
    max-width: 210px;
}
/*footer-cont*/
.footer-cont{
    padding:0 40px;
    max-width: calc(var(--medium-cont) + 80px);
    padding-top:48px ;
}
.footer-cont .flex-cont{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-cont .flex-cont h4{
    margin-bottom: 20px;
    font-size: 39px;
    line-height: 108%;
}
.footer-cont .flex-cont h6{
    font-size: 16px;
    line-height: 135%;
    color: #707070;
    margin-bottom: 12px;
}
.footer-cont .flex-cont span{
    color: #A8A8A8;
    display: block;
    margin-bottom: 6px;
}
.footer-cont .flex-cont ul{
    list-style-type: none;
}
.footer-cont .flex-cont li{
    margin-bottom: 14px;
}
.footer-cont ul img{
    margin-right: 16px;
}
.footer-cont ul li{
    display: flex;
    align-items: center;
}
.footer-cont ul a{
    display: flex;
    align-items: center;
    color: #141258;
    font-size: 19px;
    line-height: 115%;
}
.contact-footer ul{
    margin-top:20px;
}
.copyright{
    display: flex;
    justify-content: space-between;
    padding: 13px 0px;
    color: #A8A8A8;
    margin-top: 54px;
}
.footer-cont .address-footer span{
    color: #545454;
    line-height: 135%;
}
.footer-cont .fb-btn{
    margin-top:144px;
    display: flex;
    color: #141258;
}
.footer-cont .fb-btn span{
    color: #141258;
    display: block;
    margin-right: 16px;
    font-size: 19px;
    line-height: 115%;
    text-align: right;
    max-width: 171px;
}
/*standard page*/
.page-banner{
    padding-top:52px;
    padding-bottom: 94px;
    min-height: 302px;
}
.page-banner h1{
    margin-bottom: 0;
}
.page-banner:before{
    background:var(--green);
}
.page-banner img{
    position: absolute;
    right: -112px;
    top: 0;
    height: 100%;
    width: auto;
    z-index: -1;
}
.green-list ul,.blue-list ul{
    list-style-type: none;
}
.green-list li, .blue-list li{
    margin-bottom: 24px;
    padding-left: 48px;
    position: relative;
    display: flex;
    align-items: center;
}
.green-list li:before,.blue-list li:before{
    content: "";
    width: 32px;
    height:28px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/icons/arrow-right.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.blue-list li:before{
    background-image: url('../img/icons/arrow-right-blue.svg');
}
.standard-section p{
    margin-bottom: 32px;
}
.standard-section p:last-child{
    margin-bottom: 0;
}
.gain-section{
    padding-top: 82px;
    padding-bottom: 82px;
}
.gain-img{
    width: calc(100% - 440px);
    padding-left:135px;
}
.gain-img img{
    width: 100%;
    max-width: 440px;
}
.gain-text{
    width: 440px;
}
.gain-section .flex-cont{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.big-img-section .big-img-section__text{
    width: 56.25%;
    padding-top: 82px;
    padding-bottom: 82px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    max-width: 555px;
    margin-left: auto;
    margin-right: auto;
}
.big-img-section .flex-cont{
    display: flex;
    align-items: stretch;
}
.big-img-section__img{
    width:43.75%;
}
.big-img-section__text h3{
    color: #383838;
}
.big-img-section__text p{
    color:#707070;
}
.big-img-section__text strong{
    color: var(--greenbtn-color);
    font-weight: 400;
    font-size: 19px;
}
.big-img-section__img img{
    width: 100%;
    height: 100%;
    position: relative;
    margin-left: -40px;
    object-fit: cover;
}
.small-text-section{
    padding-top: 112px;
    padding-bottom: 112px;
}
.small-text-section .flex-cont{
    display: flex;
    align-items: center;
}
.small-text-section h3{
   color: #383838;
}
.small-text-section p{
    color:#707070;
    line-height: 135%;
}
.small-text-section p:last-child{
    margin-bottom: 0;
}
.small-text-section .flex-cont{
    justify-content: space-between;
}
.small-text-section__text{
    max-width: 555px;
}
.small-img-section__img img{
    width: calc(100%);
}
.kor-section{
    padding-top: 133.5px;
    padding-bottom: 133.5px;
}
.kor-section .flex-cont{
    justify-content: flex-start;
}
.kor-section h4{
    margin-bottom: 32px;
    color:var(--header-gry-color);
    font-size: 39px;
    line-height: 108%;
}
.kor-section p{
    margin-bottom: 24px;
    color: #707070;
}
.kor-section .gain-img{
    padding-left: 0;
    padding-right: 139px;
    width: auto;
}
.gallery-section {
    padding-top: 96px;
    padding-bottom: 96px;
}
.gallery-cont{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
.big-text-section{
    padding-top: 131px;
    padding-bottom: 131px;
}
.big-text-section .gain-text{
    width: 555px;
}
.big-text-section .gain-img{
    width: calc(100% - 555px);
    text-align: right;
}
.big-text-section p{
    margin-bottom: 20px;
}
/*form-section*/
.form-section{
    padding-top: 48px;
    padding-bottom: 80px;
}
.form-section:before{
    background: #EAEAFC;
}
.price-form-info{
    text-align: center;
}
.price-form-info h3{
    margin-bottom: 32px;
}
.price-form-info{
    margin-bottom:80px ;
}
.form-cont{
    padding: 56px 40px;
    background: #FAFAFA;
    box-shadow: 0px 4px 16px rgba(79, 79, 79, 0.2);
    border-radius: 12px;
    max-width:710px;
    margin-left: auto;
    margin-right: auto;
}
form-cont h3{
    margin-bottom: 24px;
}
.form-cont h6{
    font-size: 19px;
    margin-bottom: 16px;
}
.form-column{
    width: 50%;
    margin-bottom: 24px;
}
.form-cont form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-column{
    width: calc(50% - 16px);
}
.radio-inputs-cont{
    max-width: 264px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.radio-inputs-cont label{
    width: 50%;
    font-size: 14px;
    color:#A8A8A8;
    margin-bottom: 18px;
}
.radio-inputs-cont label:nth-last-child(1),.radio-inputs-cont label:nth-last-child(2){
    margin-bottom:0;
}
.radio-inputs-cont label input{
    margin-right:12px;
}
.big-column{
    width: 100%;
}
.inner-form-column{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.inner-form-column input{
    width: 100%;
    display: block;
}
.inner-form-column label,.selectt-form-column label{
    display: block;
    margin-bottom: 20px;
    color: #545454;
    font-size: 12px;
    width: 100%;
}
.inner-form-column input, .selectt-form-column select{
    height: 32px;
    border: 1px solid #CBCBCB;
    border-radius: 8px;
    padding: 6px 8px;
    color:  #A8A8A8;
    font-size: 14px;
    margin-top: 4px;
    width: 100%;
}
.selectt-form-column label:last-child{
    margin-bottom: 0;
}
.inner-form-column label.medium-label{
    width:60%;
}
.inner-form-column label.small-label{
    width: 33.4%;
}
.left-form-colum, .right-form-colum{
    margin-bottom: 0;
}
.button-column{
    display: flex;
    flex-wrap: wrap;
}
.button-column .ty-btn{
    width:176px;
    font-size: 16px;
}
.button-column label{
    width: calc(100% - 176px - 32px);
    margin-left: 32px;
    display: flex;
    font-size: 14px;
    color: #666666;
}
.button-column label input{
    margin-right: 8px;
}
/*o nas*/
.about-us-personnel{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-us-single-person{
    width: calc(50% - 32px);
    margin-bottom: 40px;
}
.single-person-header{
    display: flex;
}
.single-person-header img{
    object-fit: cover;
}
.single-person-header h4{
    font-size: 39px;
    line-height: 108%;
    margin-bottom: 8px;
}
.single-person-info{
    margin-left:20px;
}
single-person-info span{
    color: #545454;
    font-size: 14px;
    line-height: 140%;
}
.about-us-single-person p{
    margin-top: 16px;
    font-size: 14px;
}
.about-us-section{
    padding-top: 112px;
    padding-bottom: 112px;
}
.about-us-banner{
    padding-top:80px;
    padding-bottom: 82px;
}
.about-us-banner:before{
    background:#1E1A85;
}
.about-us-banner h1{
    margin-bottom: 24px;
}
.about-us-banner p{
    max-width: 555px;
}

/*prices*/
.prices-banner:before{
    background: #EAEAFC;
}
.prices-banner{
    padding-top: 48px;
    padding-bottom: 40px;
}
.prices-banner li{
    width: 50%;
    max-width:440px;
    color:#141258;
    display: flex;
    align-items: center;
}
.prices-banner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1012px;
}
.prices-banner h1{
    color: var(--blue);
}
.prices-banner h5{
    color: var(--blue-header-font_color);
    font-size: 29px;
    margin-bottom: 53px;
}
.prices-section{
    padding-top:16px;
}
.prices-section > h5{
    margin-top: 64px;
    font-size: 29px;
    line-height: 110%;
    margin-bottom: 24px;
}
table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 32px;
}
thead th{
    border-bottom:1px solid #B9B9B9;
    padding:12px 10px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    vertical-align: top;
}
tbody th{
    border-bottom:1px solid #B9B9B9;
    padding:16px 10px 16px 0px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
}
tbody td{
    border-bottom:1px solid #B9B9B9;
    padding:16px 10px;
}
tbody td h6{
    font-size:19px;
    color: #545454;
}
tbody td span{
    color: #707070;
    font-size: 14px;
}
thead th:last-child,tbody th:last-child{
    padding-right:0 ;
}
thead th:first-child,tbody th:first-child{
    padding-left:0 ;
}
.table-info{
    color: #8C8C8C;
    font-size: 14px;
}
.price-row{
    font-size: 19px;
    line-height: 115%;
}
.price-row:not(:last-of-type) {
    margin-bottom: 8px;
}
.matplanet-table-cont table{
    max-width: 784px;
}
.edusfera-deals ul{
    list-style-type: none;
}
.edusfera-deals li{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: #8C8C8C;
}
.edusfera-deals ul{
    margin-bottom: 80px;
}
.edusfera-deals h6{
    font-size: 22px;
    line-height: 115%;
    margin-bottom: 16px;
    color: #545454;
}
.harmonogram-cont{
    text-align: center;
    padding-top: 48px;
    padding-bottom: 56px;
}
.harmonogram-cont img{
    margin-left: 11px;
}
/*Kontakt*/
.full-contact-section{
    max-width: 670px;
    margin: 0 auto;
    padding-top: 144px;
    padding-bottom: 120px;
    min-height: calc(100vh - 96px - 147px);
}
.full-contact-section h1{
    font-size: 61px;
    margin-bottom: 32px;
}
.full-contact-section .flex-cont{
    display: flex;
    gap: 20px;
}
.full-contact-section .flex-cont >div{
    width: 50%;
}
.full-contact-section h5{
    font-size: 29px;
    margin-bottom: 16px;
}
.full-contact-section h6{
    color: #707070;
    font-size: 16px;
    margin-bottom: 12px;
}
.full-contact-section .flex-cont >div > span{
    color: #A8A8A8;
    display: block;
    margin-bottom: 6px;
}
.full-contact-section ul{
    list-style-type: none;
    margin-top: 16px;
}
.full-contact-section li a{
    display: flex;
    align-items: center;
    margin-bottom:14px;
    color:#141258;
}
.full-contact-section li a img{
    margin-right:16px;
}
.full-contact-section p{
    font-size: 16px;
    color: #707070;
    margin-bottom: 8px;
}
.full-contact-section .edu-name{
    color: #545454;
    font-size: 22px;
    margin-bottom: 8px;
}
.banner-bg img{
  max-height: 900px;
  object-fit: cover;
}
.grecaptcha-badge{
  z-index: 5;
}
@media (max-width: 1440px){
    .page-banner img{
        right:calc(-112 * (100vw/1440));
    }
}
@media (max-width: 979px){

    .hide-mobile{
        display: none !important;
    }
    .only-mobile{
        display: block;
    }
    .body-container{
        margin-top:82px;
        padding:0 20px;
    }
    h1{
        font-size: 52px;
        line-height: 96%;
    }
    h3{font-size: 39px;
        margin-bottom: 32px;
    }
    .header-section__menu,.header-section-login{
        display: none !important;
    }
    .header-section__logo img,.header-section__logo{
        max-height: 48px;

    }
    .show-menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;
        padding:12px;
        transition: padding 0.4s;
    }
    .header-cont{
        padding:0 20px;
    }
    .header-stick .header-section__logo, .header-stick header-section__logo >a,.header-stick .header-section__logo img{
        max-height: 40px;
    }
    .header-stick .show-menu-btn{
    padding:4px;
    }
    .banner-desc{
        left: 20px;
        width: calc(100% - 40px);
        justify-content: flex-start;
    }
    .banner-desc h2{
        font-size: 45px;
        line-height: 98%;
    }
    .homepage-banner .banner-bg img{
        min-height: calc(100vh - 80px);
        object-fit: cover;
        object-position: center center;
    }

    .offer-section{
        padding-top:64px;
        padding-bottom: 64px;
    }
    .offer-grid{
        grid-template-columns:repeat(1, 1fr);
        grid-template-rows:33fr 33fr 28fr;
    }
    .single-offer:first-child, .single-offer:nth-of-type(2){
        grid-column: span 1;

    }
    .single-offer h5{
        font-size: 34px;
        line-height: 108%;
    }
    .single-offer:first-child h5, .single-offer:nth-of-type(2) h5{
        font-size: 34px;
    }
    .places-section{
        padding-top: 64px;
        padding-bottom: 134px;
    }
    h2{
        font-size: 52px;
        line-height: 96%;
        margin-bottom: 48px;
    }
    .personel-inner-section{
        flex-wrap: wrap;
    }
    .personel-carousel-cont{
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }
    .personel-info-text{
        width: 100%;
        margin-bottom: 40px;
    }
    .owl-carousel.personel-carousel{
        width: 100%;
    }
    .personnel-section{
       padding-top: 64px;
        padding-bottom: 79px;
    }
    .personel-info-text p{
        margin-bottom: 32px;
    }
    .owl-carousel.personel-carousel{
        width: 200%;
    }
    .personel-single{
        height: calc(100vw/360 * 374);
    }
    .footer-cont{
        max-width: 100%;
        padding:0 20px;
        padding-top: 64px;
    }
    .footer-cont .flex-cont{
        flex-wrap: wrap;
    }
    .footer-cont .flex-cont >div{
        width: 100%;
    }
    .contact-footer{
        margin-bottom:58px;
    }
    .address-footer{
        margin-bottom:40px;
    }
    .footer-cont .fb-btn{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
    .footer-section_logo{
        display: none;
    }
    .footer-cont .flex-cont h4{
        font-size:34px;
    }
    .footer-cont .flex-cont span{
        font-size: 14px;
    }
    .copyright{
        margin-top: 32px;
    }
    .footer-cont .fb-btn span{
        font-size: 22px;
        text-align: center;
        margin-right: 0;
        margin-bottom:16px;
        max-width: 200px;
    }
    .copyright span{
        font-size: 12px;
    }
    /*page*/
    .page-banner{
        height: 420px;

        overflow: hidden;
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 56px 20px;
    }
    .page-banner img{
        width: calc(100% + 80px);
        right: -40px;
        bottom: -60px;
        top: unset;
        height: auto;
    }
    .gain-section{
        padding-top:64px;
        padding-bottom: 64px;
    }
    .gain-section .flex-cont{
        display: flex;
        flex-direction: column;
    }
    .gain-text{
        width: 100%;
    }
    .gain-img{
        padding-left: 0;
        width: 100%;
    }
    .mat-gain-section .gain-img{
        display: none;
    }
    .big-img-section .flex-cont{
        flex-wrap: wrap;
    }
    .big-img-section__img{
        width: 100%;
    }
    .big-img-section .big-img-section__text{
        width: 100%;
        max-width: 100%;
        padding-top: 32px;
        padding-bottom: 64px;
    }
    .big-img-section__img img{
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .small-text-section{
        padding-top:64px;
        padding-bottom: 64px;
    }
    .small-text-section .flex-cont{
        flex-wrap: wrap;
    }
    .small-img-section__img{
        width: 100%;
    }
    .small-text-section__text{
        max-width: 100%;
    }
    .small-text-section h3{
        margin-bottom: 24px;
    }
    .small-text-section.small-img-right .flex-cont  {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .small-text-section .small-img-section__img{
        margin-bottom: 48px;
    }
    .small-text-section__text{
        width: 100%;
    }
    .gain-img img{
        max-width: 100%;
    }
    .kor-section .gain-img{
        padding-right: 0;
        width: 100%;
        margin-bottom:48px;
    }
    .kor-section li{
        margin-bottom:20px ;
    }
    .kor-section h4{
        font-size: 34px;
    }
    .kor-section h3, .gallery-section h3{
        font-size:45px;
    }
    .gallery-section{
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .big-text-section .gain-text{
        width: 100%;
    }
    .big-text-section .gain-img{
        width: 100%;
    }
    .big-text-section .flex-cont{
        display: flex;
        flex-direction: column-reverse;
    }
    .big-text-section .gain-img{
        margin-bottom:48px;
    }
    /*about-us*/
    .about-us-section{
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .about-us-section h2{
        font-size: 61px;
        margin-bottom: 40px;
    }
    .about-us-single-person{
        width: 100%;
        margin-bottom: 32px;
    }
    .single-person-header h4{
        font-size:29px;
    }
    .single-person-header span{
        font-size: 14px;
    }
    .about-us-single-person:last-child{
        margin-bottom: 0;
    }
    .about-us-banner{
        padding-top: 62px;
        padding-bottom: 56px;
        height: auto;
    }
    /*kontakt*/
    .full-contact-section{
        padding-top:32px;
        max-width: 100%;
        padding-bottom: 32px;
        min-height:calc(100vh - 82px - 40px);
    }
    .full-contact-section .flex-cont >div{
        width: 100%;
    }
    .full-contact-section h1{
        margin-bottom: 28px;
        font-size: 45px;
    }
    .full-contact-section .flex-cont{
        flex-direction: column;
    }
    .full-contact-section .flex-cont >div > span{
        font-size: 14px;
    }
    .full-contact-section-footer{
        padding-top: 0;
    }
    .full-contact-section-footer .copyright{
        margin-top: 0;
    }
    /*formularz*/
    .form-cont{
        max-width: 100%;
        padding:48px 24px;
    }
    .form-cont h3{
        margin-bottom: 24px;
    }
    .form-cont h6{
        font-size: 19px;
        margin-bottom: 16px;
    }
    .form-column{
        width: 100%;
    }
    .inner-form-column input, .selectt-form-column select{
        font-size: 16px;
    }
    .button-column label{
        width: 100%;
        margin-bottom:24px;
        margin-left: 0;
    }
    .button-column{
        flex-direction: column-reverse;
        margin-bottom: 0;
    }
    .button-column .ty-btn{
        width: 100%;
    }
    /*mobile menu*/
    .mobile-menu-cont{
        position: fixed;
        top: 0;
        left: 100%;
        background: var(--base-color);
        display: block;
        z-index: 20;
        height: 100%;
        width: 100%;
        padding: 0 20px;
        overflow: hidden;
        display: none;
        transition: 0.4s;
    }
    .mobile-menu-cont.menu-open{
        left: 0;
    }
    .mobile-menu-cont .header-section__menu, .mobile-menu-cont .header-section-login{
        display: block !important;
    }
    .mobile-menu-cont .header-section__menu{
        height: 100%;
        overflow-y: auto;
    }
    .mobile-menu-cont .first-lvl-menu{
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .mobile-menu-cont .first-lvl-item{
        padding: 12px;
        margin-bottom: 16px;
        text-align: center;
        font-size: 19px;
    }
    .mobile-menu-cont .first-lvl-item a{
        font-size: 19px;
    }
    .mobile-menu-cont .first-lvl-menu .second-lvl-menu{
        position: static;
        box-shadow: none;
        background: none;
        padding: 0;
        padding-top: 16px;
        display: none;
    }
    .mobile-menu-cont .first-lvl-menu .menu-open .second-lvl-menu{
        display: block;
    }
    .mobile-menu-section{
        width: 100%;
        height: calc(100vh - 270px - 84px - 32px);
        margin-top: 32px;
    }
    .mobile-menu-cont .header-section-login{
        width: 100%;
        display: flex !important;
        flex-direction: column;
        padding-top: 118px;
        margin-left: 0;
        border-top: 1px solid #D8D8D8;
    }
    .mobile-menu-cont .header-section-login:before{
        display: none;
    }
    .mobile-menu-cont .header-section-login .ty-btn{
        margin-top:0;
        margin-bottom: 0;
    }
    .mobile-menu-cont .header-section-login .fb-btn{
        padding: 16px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .mobile-menu-header{
        padding: 16px 0;
    }
    .mobile-menu-header a img{
        height: 48px;
    }
    .mobile-menu-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .close-menu-btn{
        cursor: pointer;
    }
    /*cennik*/
    .prices-banner{
      padding-top: 64px;
      padding-bottom: 56px;
    }
    .prices-banner h1{
      margin-bottom:32px;
      font-size: 45px;
    }
    .prices-banner h5{
      margin-bottom:50px;
    }
    .prices-banner li{
      max-width: 100%;
      width: 100%;
      margin-bottom: 29px;
    }
    .prices-banner li:last-child{
      margin-bottom: 0;
    }
    .prices-section{
      padding-top: 32px;
    }
    .prices-section > h5{
      margin-bottom: 32px;
      font-size: 22px;
      margin-top: 32px;
    }
    table:not(.mobile-table){
      display: none;
    }
    .mobile-table table{
      display: block;
    }
    .mobile-table tr{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-content: center;
    }
    .mobile-table th, .mobile-table td{
      width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
      .mobile-table thead,   .mobile-table tbody{
        display: block;
      }
      .mobile-table thead th:nth-child(1){
        display: none;
      }
      .mobile-table thead th:last-child{
        width: 100%;
        padding-left: 0;
      }
      .mobile-table thead th:last-child br{
        display: none;
      }
      .mobile-table tbody th{
        padding-top: 20px;
      }
      .edusfera-deals ul{
        margin-bottom: 64px;
      }
      .harmonogram-cont{
        padding-top:64px;
        padding-bottom: 64px;
      }
}
@media (max-width: 767px){
    .places-slider{
        width: 200% !important;
    }
    .gallery-cont{
        width: 150% !important;
    }
}
