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

    --base-color:#F7F9FD;
    --blue:#322CDD;
    --purple:#8480EB;
    --green:#90D02F;
    --blue-hovered:#4D71C4;
    --body-font_color:#0D1F48;
    --body-font_size:16px;
    --blue-header-font_color:#1E1A85;
    --whitish-header-font_color:#214EB5;
    --clean-white-header-font_color:#F8F8F8;
    --header-gry-color:#545454;
    --header-color:#071024;

    --primary_btn:#214EB5;
    --primary_btn-hover:#214EB5;
    --primary_btn-color:#F7F9FD;
    --primary_btn-border:#142F6D;
    --primary_btn-hover-color:#D3DCF0;
    --secondary_btn-color:#142F6D;
    --secondary_btn-border:#A6B8E1;
    --secondary_btn-hover-border:#7A95D3;
    --secondary_btn:#F7F9FD;
    --secondary_btn-hover:#F7F9FD;

    --first-lvl-menu-color:#0D1F48;
    --second-lvl-menu-color:#0D1F48;
    --dropdown-color: #FDFDFD;

    --grey-border:#D3DCF0;
}
/*my-reset*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 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: 95px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 104.5px */
    letter-spacing: -5.7px;
    color: var(--whitish-header-font_color);
    font-weight: 400;
    text-shadow: 0px 4px 32px rgba(72, 97, 163, 0.10);
}
h1.small-main-header{
    color: #214EB5;
    text-shadow: 0px 4px 32px rgba(72, 97, 163, 0.10);
    font-size: 71px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -3.55px;
}
h2{
    font-size: 34px;
    line-height: 98%;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    font-weight: 400;
}
h3{
    font-size: 61px;
    line-height: 110%; /* 67.1px */
    letter-spacing: -3.05px;
    font-weight: 500;
    margin-bottom: 32px;
    color:var(--header-color) ;
}
h4,h5,h6{
    font-weight: 400;

}
img {
    max-width: 100%;
}
.ty-btn{
    padding: 8px 12px;
    transition: 0.4s linear;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border: none;
    border-radius: 4px;
}
.deco-header:before{
    content: "";
    width: 96px;
    height: 1px;
    background: #7A95D3;
    display: block;
    margin-bottom: 20px;
}
/*primary*/
.btn-blue, .primary-btn{
    background: var(--primary_btn);
    border: 2px solid var(--primary_btn-border);
    color:  var(--primary_btn-color);
}
.btn-blue:hover, .primary-btn:hover{
    background: var(--primary_btn-hover);
    color: var(--primary_btn-hover-color);
    box-shadow: 0px 2px 16px 0px rgba(20, 46, 104, 0.20);
}
.btn-green,.btn-secondary{
    background: var(--secondary_btn);
    border: 2px solid var(--secondary_btn-border);
    color:  var( --secondary_btn-color);
}
.btn-green:hover,.btn-secondary:hover{
    background: var(--secondary_btn-hover);
    box-shadow: 0px 2px 16px 0px rgba(20, 46, 104, 0.20);
    border: 2px solid var(--secondary_btn-hover-border);
}
.btns-cont {
    margin-top: 32px;
}
.body-container{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
    min-height: calc(100vh - 120px - 353px);
}
.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: #D3DCF0;
    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:120px;
}
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;
}
.home-page header{
    position: fixed !important;
}
.header-cont{
    max-width:var(--max-width);
    padding: 0 40px;
    margin: 0 auto;
}
.about-us-section .flex-cont{
    display: flex;
}
.about-us-section .about-us-image{
    width: 58.4%;
}
.about-us-section  .small-main-header{
    margin-bottom:20px;
}
.about-us-section .about-us-text{
    width: 41.6%;
    padding-right: 64px;
}
.header-cont .flex-cont{
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
    z-index: 10;
    transition: padding 0.4s;
}
.header-section__logo, header-section__logo >a{
    display: block;
    max-height: 40px;
    transition: max-height 0.4s;
}
.header-section__logo img{
    max-height: 40px;
    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:  0;
    justify-content: flex-end;
}
.first-lvl-item{
    position: relative;
    padding:  12px 20px;
    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;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: -0.19px;
}
.first-lvl-item:hover >a{
  color: var(--blue-hovered)
}
.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: 20px;
}
.header-section-login a:not(.ty-btn){
    font-size: 34px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: -0.68px;
}
.header-section-login a:not(.ty-btn) img{
    margin-left:12px;
}
.header-section-login .ty-btn{
    display: inline-block;
    transition: margin 0.4s;
}
.header-section-login:before{
    display: none;
}
.header-stick .contact-header-row{
    display: none;
}
.home-page .header-stick .contact-header-row{
    display: block;
}
.contact-header-row{
    position: relative;
    padding: 12px 40px;
    height: 50px;
    width: 100vw;
    transform: translateX(-50%);
    left: 50%;
    background:#0D1F48;

}
.contact-header-row a{
    color:#D3DCF0;
    font-size: 19px;

}
.contact-header-row strong{
    color:#F7F9FD;
    font-weight: 500;
    margin-left: 16px;
}
.inner-header-contact{
    max-width:1360px;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
}

/*homepage*/
.homepage-video-banner{
    padding-top: 50px;
}
.homepage-video-banner .deco-header{
   /* padding-top:143px;*/
    padding-bottom:32px;
    padding-top: 40px;
}
/*.video-end .homepage-video-banner .deco-header{
        transition: 0.8s;
    padding-top: 40px;
}*/
.header-video-cont{
    position:fixed;
    z-index: 3;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    overflow: hidden;
}
.header-video-cont video{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}
.header-video-cont:before{
    content: "";
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.4;
}
.video-header-cont{
    height: 100%;
    max-width:var(--max-width);
    padding: 120px 40px 0;
    margin: 0 auto;
    position: relative;
    z-index:1;
}
.homepage-video-banner .video-header-cont  .deco-header{
    padding-top: 90px;
}
.homepage-banner{
    position: relative;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw;
}
body{
    scroll-behavior: smooth;
}
.header-video-cont{
    max-height: 100vh; position: fixed;
    opacity: 1;
}
.video-header-cont h1{
    color: #F7F9FD;
}
.header-video-text{
    margin-top: 100vh;
}
.header-video-text h3{
    color: #0D1F48;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.68px;
}
.header-video-text{
    height:calc(100vh - 120px);
    padding-top: 0px;
    max-height:calc(100vh - 120px);
}
.header-video-text-fixed{
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 2;
    background: #F7F9FD;
    margin-top: 0 !important;
    opacity: 1;
    padding-top: 50px;
    max-height: 415px;
}
.video-end .header-video-text-fixed{
    display: none;
}
.header-video-text-fixed .deco-header,.header-video-text-fixed h3{
    max-width:var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left:40px;
    padding-right: 40px;
}
.header-video-text-static{
    transition: max-height 0.8s;
}
/*.header-video-text-static .deco-header{
    transition: 0.8s ;
}*/
/*.video-end .header-video-text-static{
    max-height:317px !important;
}*/
.video-end .header-video-text-static {
visibility: visible;
}
.header-video-text-static{
    max-height:317px !important;
    visibility: hidden;
}
.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(--primary_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: 350px;
    padding-right: 20px;
}
.personel-info-text h3{
    margin-bottom: 20px;
}
.personel-info-text p{
    margin-bottom:40px;
    line-height: 135%;
}
.personel-info-text a{
    padding: 12px 24px;
}
.personel-carousel-cont{
    width: calc(100% - 350px);
    position: relative;
}
.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:80px;
    border-left: 1px solid #214EB5;
}
.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;
}
.service-info {
    border-left: 1px solid #214EB5;
    padding: 32px;
}
.service-info h2 {
    line-height: 125%;
    letter-spacing: -0.68px;
}
.service-phone {
    margin-top: 32px;
}
.service-phone a {
    color: #1A3E91;
    font-size: 34px;
    font-weight: 500;
    margin-top: 32px;
}
/*footer-cont*/
.footer-cont{
    padding:64px 40px;
    max-width: var(--medium-cont);
}
.footer-cont:before{
    background: #142F6D;
}
.footer-cont .flex-cont{
    display: flex;
    align-items: flex-start;
    gap:123px;
}
.footer-cont .flex-cont h4{
    margin-bottom: 16px;
    font-size: 25px;
    color: #D3DCF0;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
}
.footer-cont .flex-cont h6{
    font-size: 16px;
    line-height: 135%;
    color: #0D1F48;
    margin-bottom: 12px;
}
.footer-cont .flex-cont span{
    color: #A6B8E1;
    display: block;
    margin-bottom: 0px;
}
.contact-footer a{
    display: flex;
    margin-top: 32px;
    color: #F7F9FD;
    font-size: 19px;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: -0.19px;
    align-items: center;
}
.btn-icon{
    margin-left:8px;
}
.footer-cont .flex-cont ul{
    list-style-type: none;
    margin-top:16px;
    margin-bottom: 16px;
}
.footer-cont .flex-cont li{
    margin-bottom: 8px;
}
.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: #F7F9FD;
    font-size: 30px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.2px;
}
.contact-footer ul{
    margin-top:20px;
}
.fa-angle-left,.fa-angle-right{
    width: 40px;
    height: 40px;
    background-image: url('../img/icons/owl-chevron-left.svg');
    background-position: center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    display: block;
}
.fa-angle-right{
    background-image: url('../img/icons/owl-chevron-right.svg');
}
.owl-theme .owl-nav{
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright{
    display: flex;
    justify-content: space-between;
    padding: 0px;
    color: #A8A8A8;
    margin-top: 16px;
}
.copyright span,.copyright a{
    color:#A6B8E1;
}
.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*/

.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 ul{
    margin-bottom: 16px;
    list-style-position: inside;
}
.standard-section p{
    margin-bottom: 16px;
}
.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: 54.2%;
    padding-top: 82px;
    padding-bottom: 82px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    max-width: 580px;
    margin-right: auto;
    padding-left: 40px;
}
.good_to_know_section{
    padding-top: 80px;
    padding-bottom: 80px;
    max-width:890px;
    margin-left: auto;
    margin-right: auto;
}
.good_to_know_section p{
    margin-bottom: 12px;
}
.good_to_know_section .flex-cont{
    margin-top:32px;
    gap:20px;
    display: flex;
}
.good_to_know_section .second-paragraph{
    color: #1A3E91;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: -0.19px;
}
.big-img-section .flex-cont{
    display: flex;
    align-items: stretch;
}
.big-img-section__img{
    width:45.8%;
}
.big-img-section__text p{
    line-height: 140%;
    letter-spacing: -0.16px;
}
.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: 96px;
    padding-bottom: 96px;
}
.small-text-section .deco-header:before{
    margin-bottom: 12px;
}
.small-text-section .flex-cont{
    display: flex;
    align-items: center;
}
.small-text-section__text h3{
   color: #0D1F48;
    font-size: 34px;
    margin-bottom: 12px;
}
.small-text-section p{
    font-weight: 500;
    line-height: 145%;
}
.small-text-section p:last-child{
    margin-bottom: 0;
}
.small-text-section .flex-cont{
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid var(--grey-border);
    background: #F7F9FD;
    box-shadow: 0px 4px 32px 0px rgba(72, 97, 163, 0.10);
    gap: 80px;
}
.small-text-section__text{
    max-width: 621px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0px 40px 40px;
    box-sizing: border-box;
}
.small-img-section__img img{
    width: 100%;
    display: block;
}
.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: #0D1F48;
}
.kor-section .gain-img{
    padding-left: 0;
    padding-right: 139px;
    width: auto;
}
.gallery-section {
    padding-top: 40px;
    padding-bottom: 80px;
}
.gallery-section h3{
    font-size: 52px;
    color: #142F6D;
}
.gallery-cont{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.gallery-cont .owl-stage-outer{
    overflow: visible !important;
    clip-path: inset( -100vw -100vw -100vw 0 );
}
.gallery-single {
    width: 100%;
}
.gallery-single img {
    max-width: 100%;
}
.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;
    margin-top: 40px;
}
.about-us-single-person{
    width: 100%;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 1010px;
    border-top:1px solid #A6B8E1;
}
.single-person-header{
    display: flex;
    flex-wrap: wrap;

}
.single-person-header h4{
    font-size: 34px;
    font-weight: 500;
    line-height: 125%; /* 42.5px */
    letter-spacing: -0.68px;
    margin-bottom: 0px;
}
.single-person-header span{
    color:#142F6D;
    font-size: 16px;
    display: block;
    margin-bottom:20px;
}
.single-person-info{
    margin-left:80px;
    width: calc(77% - 80px);
}
single-person-info span{
    color: #545454;
    font-size: 14px;
    line-height: 140%;
}
.single-person-header > img{
    width:23%;
    object-fit: contain;
}
.about-us-single-person p{
    margin-top: 20px;
    font-size: 16px;
}
.about-us-section{
    padding-top: 40px;
    padding-bottom: 40px;
}
.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 .deco-header{
    padding-top:40px;
}
.prices-section > h5{
    margin-top: 64px;
    font-size: 29px;
    line-height: 110%;
    margin-bottom: 24px;
}
table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 32px;
    border: 1px solid #A6B8E1;
}
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 tr td:last-of-type{
    white-space: nowrap;
}
tbody td h6{
    font-size:19px;
    color: #545454;
}

tbody td span{
    color: #0D1F48;
    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{
    padding-top: 40px;
    padding-bottom: 80px;
}
.full-contact-section h1{
    margin-bottom: 40px;
}
section.uslugi-section h1{
    margin-bottom: 32px;
}
.uslugi-section .flex-cont{
    display: flex;
    gap: 64px;
}
.uslugi-section .flex-cont >div{
    width: 50%;
}
.uslugi-section{
    padding-top: 40px;
    padding-bottom: 80px;
}
.full-contact-section .flex-cont{
    display: flex;
    gap: 20px;
}
.full-contact-section .flex-cont >div{
    width: 50%;
}
.full-contact-section h4{
    color: #071024;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 42.5px */
    letter-spacing: -0.68px;
    margin-bottom: 40px;
}
.full-contact-section h5{
    font-size: 25px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #071024;
}

.full-contact-section  span{
    color: #0D1F48;
    display: block;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: -0.19px;
    font-size: 19px;
}
.full-contact-section ul{
    list-style-type: none;
}
.full-contact-section ul:first-of-type{
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.16px;
}
.full-contact-section ul:last-of-type{
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.16px;
}
.full-contact-section ul:last-of-type li:first-of-type{
    color: #142F6D;
    font-weight: 500;
}
.full-contact-section a{
    margin-bottom:8px;
    color:#214EB5;
    font-size: 34px;
    font-style: normal;
    line-height: 125%;
    letter-spacing: -0.68px;
    display: block;
}
.google-map-desc p{
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.16px;
}
.banner-bg img{
  max-height: 900px;
  object-fit: cover;
}
tbody td .price{
    display: none;
}
.person-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media (max-width: 979px){
    .contact-header-row a{
        font-size: 16px;
        line-height: 140%;
        letter-spacing: -0.16px;
        justify-content: space-between;
        display: flex;
    }
    .contact-header-row{
        padding: 12px 20px;
        height: 48px;
    }
    .show-mobile-desc{
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: -0.16px;
        margin-top:12px;
        display: inline-block;
        cursor: pointer;
    }
    .show-mobile-desc span{
        color: #214EB5;
    }
    .show-less{
        display: none;
    }
    .hide-mobile{
        display: none !important;
    }
    .only-mobile{
        display: block;
    }
    .body-container{
        margin-top:140px;
        padding:0 20px;
        min-height: calc(100vh - 106px - 353px);
    }
    h1{
        font-size: 61px;
        font-weight: 500;
    }
    h3{
        font-size: 52px;
        margin-bottom: 20px;
    }
    .header-section__menu,.header-section-login{
        display: none !important;
    }
    .header-section__logo img,.header-section__logo{
        max-height: 34px;
    }
    .good_to_know_section .flex-cont{
        flex-direction: column;
        gap: 16px;
    }
    .about-us-section .flex-cont{
        flex-direction:column-reverse;
    }
    .good_to_know_section .flex-cont .ty-btn{
        justify-content: center;
    }
    .good_to_know_section .flex-cont .btn-icon{
        display: none;
    }
    .show-menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;
        padding:8px;
        transition: padding 0.4s;
    }
    .header-cont{
        padding:0 20px;
    }
    .header-cont .flex-cont{
        height: 58px;
    }
    .banner-desc{
        left: 20px;
        width: calc(100% - 40px);
        justify-content: flex-start;
    }
    .single-person-header{
        align-items: center;
    }
    .single-person-info{
        margin-left: 20px;
        width: calc(77% - 20px);
    }
    .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: 34px;
        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: 48px;
        padding-right: 0;
    }
    .personel-info-text .ty-btn{
        width:100%;
        max-width: 280px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .owl-carousel.personel-carousel{
        width: 100%;

    }
    .personnel-section{
       padding-top: 32px;
        padding-bottom: 32px;
    }
    .personel-info-text p{
        margin-bottom: 20px;
    }

    .personel-single{
        height: calc(100vw/360 * 374);
    }
    .footer-cont{
        max-width: 100%;
        padding:64px 20px 0;
    }
    .footer-cont .flex-cont{
        flex-wrap: wrap;
        gap:48px;
    }
    .footer-cont .flex-cont >div{
        width: 100%;
    }
    .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:25px;
    }
    .footer-cont .flex-cont span{
        font-size: 19px;
    }
    .contact-footer a{
        margin-top:20px;
    }
    .footer-cont .flex-cont  ul{
        margin-top: 32px;
        margin-bottom: 0px;
    }
    .footer-cont ul a{
        font-size:34px;
    }
    .copyright{
        margin-top: 32px;
        padding-bottom: 40px;
    }
    .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*/

    .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: 32px;
        padding-left: 0;
    }
    .big-img-section__text h3{
        font-size: 52px;
        font-weight: 500;
        line-height: 115%;
        letter-spacing: -2.08px;
        margin-bottom: 20px;
    }
    .big-img-section__text .ty-btn{
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }
    .big-img-section__img img{
        width: calc(100% + 40px);
        margin-left: -20px;
        height: auto;
        object-fit: none;
        max-width: none;
    }
    .good_to_know_section{
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .small-text-section{
        padding-top:32px;
        padding-bottom: 32px;
    }
    .small-text-section .flex-cont{
        flex-wrap: wrap;
    }
    .small-img-section__img{
        width: 100%;
    }
    .small-text-section__text{
        max-width: 100%;
        width: 100%;
        padding: 40px 20px;
        order: 1;
    }
    .small-text-section .flex-cont{
        gap:0 ;
        flex-direction: row-reverse;
    }
    .small-text-section h3{
        margin-bottom: 12px;
        font-size:34px;
    }
    .small-text-section.small-img-right .flex-cont  {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .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: 0px;
        padding-bottom: 40px;
    }
    .about-us-section .about-us-image{
        position: relative;
        left: -20px;
        width: calc(100% + 40px);
        margin-bottom: 32px;
        margin-top: -40px;
    }
    .about-us-text p{
        margin-bottom: 16px;
    }
    .btns-cont{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        flex-direction: column;
    }
    .btns-cont .ty-btn{
        justify-content: center;
    }
    .about-us-section .about-us-text{
        padding-right:0;
        width: 100%;
    }
    .about-us-section h2{
        font-size: 61px;
        margin-bottom: 40px;
    }
    .mobile-person-desc{
        margin-top: 20px;
    }
    .about-us-single-person{
        width: 100%;
        margin-bottom: 0px;
    }
    .single-person-header h4{
        font-size:19px;
    }
    .single-person-header span{
        font-size: 14px;
        margin-bottom: 0;
    }
    .about-us-single-person:last-child{
        margin-bottom: 0;
    }
    .about-us-banner{
        padding-top: 62px;
        padding-bottom: 56px;
        height: auto;
    }
    .header-video-text-fixed .deco-header,.header-video-text-fixed h3{
        padding-left:20px;
        padding-right:20px;
    }
    .video-header-cont{
        padding: 120px 20px 0;
    }
    .header-video-text-static{
        max-height:360px;
    }
    .header-video-text h3{
        display: none;
    }
    /*kontakt*/
    .full-contact-section{
        padding-top:0px;
        max-width: 100%;
        padding-bottom: 40px;
    }
    .full-contact-section a{
        font-size: 19px;
        margin-bottom: 12px;
    }
    .full-contact-section ul:first-of-type{
        margin-bottom: 32px;
        font-size: 16px;
        font-weight: 400;
    }
    .full-contact-section ul:first-of-type li:first-of-type{
        font-size: 19px;
        font-weight: 500;
    }
    .full-contact-section h4{
        margin-bottom: 20px;
        font-size: 25px;
    }
    .google-map{
        position: relative;
        left: -20px;
        width: calc(100% + 40px);
    }
    .google-map iframe{
        width: 100%;
        height: 270px;
    }
    .full-contact-section .flex-cont >div{
        width: 100%;
    }
    .full-contact-section h1{
        font-size: 61px;
    }
    .full-contact-section .flex-cont{
        flex-direction: column;
    }
    .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: flex-start;
        padding: 0;
    }
    .mobile-menu-cont .first-lvl-item{
        padding: 0px;
        margin-bottom: 24px;
        font-size: 19px;
        text-align: left;
    }
    .mobile-menu-cont .first-lvl-item a{
        font-size: 34px;
    }
    .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 - 195px - 84px - 32px);
        margin-top: 32px;
    }
    .mobile-menu-cont .header-section-login{
        width: 100%;
        display: flex !important;
        flex-direction: column;
        padding-top: 10px;
        margin-left: 0;
        border-top: 1px solid #A6B8E1;
        align-items: flex-start;
    }
    .mobile-menu-cont .ty-btn{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 32px;
        display: block;
        text-align: center;
        font-size: 19px;
    }
    .mobile-menu-header{
        padding: 12px 0;
    }
    .mobile-menu-header a img{
        height: 34px;
    }
    .mobile-menu-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .close-menu-btn{
        cursor: pointer;
        height: 32px;
        display: flex;
        align-items: center;
    }
    /*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;
    }
    .uslugi-section .flex-cont{
        flex-direction: column;
        gap:32px;
    }
    .service-info{
        padding-left: 0;
        border-left: none;
        padding-top: 32px;
        border-top: 1px solid #214EB5;
    }
    .uslugi-section .flex-cont >div{
        width: 100%;
    }
    table{
        border: 1px solid #A6B8E1;
    }
    table,tr,td{
        display: block;
    }
    .cennik-naglowek td:not(.naglowek-td){
        display: none;
    }
    tbody td{
        padding: 8px 16px;
        border-bottom: none;
    }
    tr{
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #A6B8E1;
        padding-top:16px;
        padding-bottom: 16px;
    }
    tbody td h6{
        font-size:16px;
    }
    tbody td h6 .price{
        display: inline;
        color:#214EB5;
        margin-right: 12px;
        font-size: 16px;
    }
    .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;
      }
}
.page-banner{
    padding-top: 32px;
}
.cennik-naglowek {
  background: #EAEAFC;
}
.naglowek-td {
  font-size: 25px;
  font-weight: 500;
  color: var(--blue);
}
.progres-bar{
    width: calc(100% - 140px);
    box-sizing: border-box;
    padding: 0;
    height: 4px;
    background: #D3DCF0;
    position: relative;
}
.inner-progres-bar{
    padding: 0;
    position: absolute;
    height: 100%;
    left: 0;
    width: 50%;
    background: #142F6D;
    transition: 0.4s;
    transition-duration: 0.4s, 0.6s;
    transition-property: left, clip-path;
    transition-delay: 0s, 1.2s !important;
}
.aktualnosci-homepage .small-img-section__img img{
    height:320px;
    width: 420px;
    object-fit: cover;
}
@media (max-width: 979px) {
    .aktualnosci-homepage .small-img-section__img img {
        width: 100%;
    }
}
.social-footer ul{
    display: inline-flex;
}
.social-footer ul img{
    height: 32px;
}