html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* custom */
*{
    box-sizing: border-box;
}
html{
	touch-action: manipulation;
	touch-action: pan-x pan-y;
	touch-action: manipulation;
}
body{
    font-family: "Geologica", sans-serif;
    font-weight: 400;
}
body p{
    color: #244E67;
    line-height: 1.66;

}
img{
    max-width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    transition: all .3s;
}
button{
    cursor: pointer;
    transition: all .3s;
		border: 0;
}
strong{
	font-weight: 700;
}
.overflow-hidden{
    overflow: hidden;
}
.btn-theme{
    background: #32B3E2;
    color: #fff;
    line-height: 63px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 32px;
    box-shadow: 5px 5px 15px rgba(7, 2, 50, 0.3);
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    letter-spacing: .15em;
    gap: 12px;
    text-transform: uppercase;
}
.btn-theme span{
    font-size: 12px;
}
.btn-theme:hover{
    background: #0593C7;
}
.btn-theme-transparent{
    background: none;
    color: #32B3E2;
    line-height: 59px;
    border: 2px solid #32B3E2;
    font-size: 18px;
    font-weight: 600;
    border-radius: 32px;
    box-shadow: 5px 5px 15px rgba(7, 2, 50, 0.2);
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    letter-spacing: .15em;
    gap: 12px;
    text-transform: uppercase;
}
.btn-theme-transparent:hover{
    background: #32B3E2;
    color: #fff;
}
.btn-theme-transparent:hover svg path{
    fill: #fff;
}

@media screen and (max-width: 1920px){
    .btn-theme,
    .btn-theme-transparent{
        font-size: calc(100vw / 106.6666667);
        padding: 0 calc(100vw / 74);
        border-radius: calc(100vw / 60);
        line-height: calc(100vw / 33);
    }
		.btn-theme svg,
		.btn-theme-transparent svg{
			width: calc(100vw / 64);
		}
}
@media screen and (max-width: 1440px){
    .btn-theme-transparent{
        border: 1px solid #32B3E2;
    }
}
@media screen and (max-width: 991px){
    .btn-theme,
    .btn-theme-transparent{
        font-size: 18px;
        padding: 0 25px;
        border-radius: 32px;
        line-height: 63px;
    }
		.btn-theme svg,
		.btn-theme-transparent svg{
			width: 28px;
		}
}
@media screen and (max-width: 767px){
    .btn-theme,
    .btn-theme-transparent{
        font-size: 16px;
        padding: 0 25px;
        border-radius: 24px;
        line-height: 48px;
    }
}
@media screen and (max-width: 479px){
    .btn-theme,
    .btn-theme-transparent{
        font-size: 14px;
        padding: 0 16px;
        gap: 8px;
    }
}
.hidden{
    display: none;
}

/* header */
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(100vw / 48) calc(100vw / 21.33333333) 0;
    transition: all .2s;
}
header.header-scroll{
    padding: 10px calc(100vw / 21.33333333);
    background: rgba(255, 255, 255, .38);
    backdrop-filter: blur(12px);
}
header .logo img{
    width: calc(100vw / 9.36);
}
header .nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: calc(100vw / 32);
    position: relative;
}
header .nav .social{
    display: flex;
    align-items: center;
    gap: calc(100vw / 55);
}
header .nav .social li a svg circle{
    stroke: #fff;
    transition: all .2s;
}
header .nav .social li a svg path{
    fill: #fff;
    transition: all .2s;
}
header .nav .social li a:hover svg circle{
    stroke: #32B3E2;
}
header .nav .social li a:hover svg path{
    fill: #32B3E2;
}
header.header-scroll .nav .social li a svg circle{
    stroke: #32B3E2;
}
header.header-scroll .nav .social li a svg path{
    fill: #32B3E2;
}
header.header-scroll .nav .social li a:hover svg circle{
    stroke: #518EB4;
}
header.header-scroll .nav .social li a:hover svg path{
    fill: #518EB4;
}
header .nav button{
    width: 63px;
    height: 63px;
    background: #221D2F;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 99;
    border: 0;
}
header .nav button span{
    height: 3px;
    width: 23px;
    background: #fff;
    transition: all .3s;
}
header .nav button.open span:first-child{
    transform: rotate(45deg);
    position: relative;
    top: 4px;
}
header .nav button.open span:last-child{
    transform: rotate(-45deg);
    position: relative;
    top: -3px;
}
@media screen and (max-width: 1920px){
    header .nav button{
        width: 50px;
        height: 50px;
    }
    header .nav .social li a svg{
        width: calc(100vw / 40.85106383);
    }
}
@media screen and (max-width: 991px){
    header .logo img {
        width: 144px;
    }
    header .nav .social li a svg{
        width: 35px;
    }
    header .nav .btn-theme{
        line-height: 38px;
        font-size: 16px;
    }
    header .nav .btn-theme svg{
        width: 18px;
    }
}
@media screen and (max-width: 767px){
    header .nav .social{
        display: none;
    }
}
@media screen and (max-width: 599px){
    header{
        padding: 10px 15px 0;
    }
    header.header-scroll{
        padding: 10px 15px;
    }
    header .logo img{
        width: 120px;
    }
}
@media screen and (max-width: 479px){
    header .nav button {
        width: 40px;
        height: 40px;
    }
    header .logo img{
        width: 100px;
    }
    header .nav .btn-theme{
        line-height: 38px;
        font-size: 14px;
    }
}
/* -- header */

/* footer */
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 28px;
    padding: 28px;
}
.footer-wrapper-button{
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-wrapper-button button{
    background: #32C6FD;
}
.footer-wrapper-button .location-link{
    background: #89C7E4;
}
.footer-wrapper-button .location-link:hover{
    background: #0593C7;
}
.footer-wrapper-button .phone-footer-button{
    padding-left: 50px;
    background-image: url(../images/phone-footer.svg);
    background-repeat: no-repeat;
    background-position: 35px center;
}
footer .footer-social{
    display: flex;
    gap: 30px;
}
footer .footer-social li a svg circle{
    stroke: #32B3E2;
    transition: all .2s;
}
footer .footer-social li a svg path{
    fill: #32B3E2;
    transition: all .2s;
}
footer .footer-social li a:hover svg circle{
    stroke: #518EB4!important;
}
footer .footer-social li a:hover svg path{
    fill: #518EB4!important;
}
footer .copyright{
    font-size: 12px;
    letter-spacing: .3em;
    color: #98C8DE;
    font-weight: 600;
}
footer .footer-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
footer .footer-menu li{
    padding: 0 15px;
}
footer .footer-menu li a{
    font-size: 12px;
    line-height: 45px;
    letter-spacing: .1em;
    color: #244E67;
    text-transform: uppercase;
}
footer .footer-menu li a:hover{
    color: #32B3E2;
}
footer .footer-bottom-menu{
    display: flex;
    align-items: center;
}
footer .footer-bottom-menu a{
    color: #32B3E2;
}
footer .footer-bottom-menu a:hover{
    color: #244E67;
}
footer .footer-bottom-menu a:after{
    content: '';
    display: block;
    border-bottom: dashed #32B3E2;
    transition: all .3s;
}
footer .footer-bottom-menu a:hover:after{
    opacity: 0;
}
footer .footer-bottom-menu p{
    padding: 0 30px;
    color: #244E67;
}
footer .footer-bottom-menu a,
footer .footer-bottom-menu p{
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}
.footer-wrapper-button > *{
    min-width: 280px;
    justify-content: center;
}
@media screen and (max-width: 991px){
    .footer-wrapper-button{
        flex-direction: column;
    }
    .footer-wrapper-button > *{
        min-width: 355px;
        text-align: center;
        justify-content: center;
    }
    .footer-wrapper-button .phone-footer-button{
        background-position: 55px center;
    }
    .footer-bottom-menu{
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom-menu a{
        order: 2;
    }
    footer .footer-menu{
        display: none;
    }
}
@media screen and (max-width: 479px){
    footer .copyright{
        font-size: 11px;
        text-align: center;
    }
    .footer-wrapper-button > *{
        min-width: 290px;
    }
}
/* -- footer */

/* headers */

h2{
    font-weight: 500;
    line-height: 1.2;
    font-size: calc(100vw / 24);
}
/* -- headers */

/* swiper */
.swiper-pagination-bullet{
    width: 5px;
    height: 5px;
    background: #221D2F;
    opacity: .3;
    transition: all .2s;
}
.swiper-pagination-bullet-active{
    width: 7px;
    height: 7px;
    opacity: 1;
}
.swiper-pagination,
.swiper-pagination-bullets.swiper-pagination-horizontal{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: auto;
    bottom: 0;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0;
}
.swiper-navigation{
    display: flex;
    gap: 33px;
    align-items: center;
}
.button-prev,
.button-next{
    width: 69px;
    height: 69px;
    border: 2px solid #98C8DE;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer;
}
.button-prev svg path,
.button-next svg path{
    fill: #98C8DE;
    transition: all .3s;
}
.button-prev:hover,
.button-next:hover{
    border-color: #244E67;
}
.button-prev:hover svg path,
.button-next:hover svg path{
    fill: #244E67;
}
@media screen and (max-width: 1920px){
    .button-prev,
    .button-next{
        width: calc(100vw / 27.82608696);
        height: calc(100vw / 27.82608696);
    }
}
@media screen and (max-width: 991px){
    .button-prev,
    .button-next{
        width: 48px;
        height: 48px;
    }
}
@media screen and (max-width: 599px){
    .swiper-pagination, .swiper-pagination-bullets.swiper-pagination-horizontal{
        gap: 9px;
    }
}
/* -- swiper */

/* separator */
.separator{
    height: 84px;
    padding: 0 calc(100vw / 21.33333333);
    position: relative;
}
.separator:after{
    content: '';
    position: absolute;
    top: 0;
    left: calc(100vw / 21.33333333);
    right: calc(100vw / 21.33333333);
    height: 84px;
    background-image: url(../images/separator.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 84px;
}
/* -- separator */

/* menu */

.menu{
    position: absolute;
    border-radius: 32px;
    background-image: url(../images/bg_menu.jpg);
    background-position: center;
    background-size: cover;
    padding: calc(100vw / 24) calc(100vw / 25) calc(100vw / 48) calc(100vw / 25);
    top: -100%;
    right: 0;
    min-width: calc(100vw / 3.4);
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
}
.menu.open{
    opacity: 1;
    visibility: visible;
    top: 0px;
}
.menu:after{
    content: '';
    position: absolute;
    z-index: 50;
    width: calc(100vw / 9.6);
    height: 100%;
    left: calc(-100vw / 9.6);
    top: 0;
    background-image: url(../images/menu-tree.png);
    background-repeat: no-repeat;
    background-size: calc(100vw / 6);
    background-position: 0;
    opacity: 0;
    transition: all .3s;
    pointer-events: none;
}
.menu.open:after{
    opacity: 1;
}
.menu ul.main-menu{
    position: relative;
    z-index: 20;
}
.menu ul.main-menu li a{
    display: block;
    line-height: calc(100vw / 43.63);
    font-size: calc(100vw / 80);
    font-weight: 500;
    color: #244E67;
    position: relative;
    display: flex;
    align-items: center;
}
.menu ul.main-menu li .sub-menu{
    display: flex;
    gap: 5px;
    padding-left: calc(100vw / 80);
    margin-bottom: 10px;
}
.menu ul.main-menu li .sub-menu li{
    padding-left: 0px;
}
.menu ul.main-menu li .sub-menu li a{
    background: #518EB4;
    color: #fff;
    padding: 0 10px;
    border-radius: 40px;
    font-size: calc(100vw / 120);
    line-height: 2;
}
.menu ul.main-menu li .sub-menu li a:hover{
    background: #244E67;
}
.menu ul.main-menu li a:before{
    content: '';
    display: inline-block;
    height: 4px;
    width: 0;
    background: #518EB4;
    transition: all .2s;
    margin: 0;
}
.menu ul.main-menu li .sub-menu a:before{
    display: none;
}
.menu ul.main-menu li a:hover:before{
    width: calc(100vw / 40);
    margin-right: 8px;
}
.menu ul.main-menu li a:hover{
    color: #518EB4;
}
.menu ul.menu-social{
    display: flex;
    align-items: center;
    margin-top: 30px;
    max-width: 330px;
    position: relative;
    z-index: 20;
    gap: calc(100vw / 43);
}
.menu ul.menu-social li a svg path{
    fill: #518EB4;
    transition: all .2s;
}
.menu ul.menu-social li a svg circle{
    stroke: #518EB4;
    transition: all .2s;
}
.menu ul.menu-social li a:hover svg path{
    fill: #32B3E2;
}
.menu ul.menu-social li a:hover svg circle{
    stroke: #32B3E2;
}
@media screen and (max-width: 1920px){
    .menu{
        border-radius: 25px;
    }
    .menu ul.menu-social{
        gap: calc(100vw / 43);
    }
    .menu ul.menu-social li a svg{
        width: calc(100vw / 40.85106383);
    }
}
@media screen and (max-width: 991px){
    .menu ul.main-menu li a{
        font-size: 20px;
        line-height: 2.4;
    }
    .menu{
        padding: 50px 20px 40px 80px;
        min-width: 480px;
    }
    .menu ul.menu-social li a svg{
        width: 45px;
    }
    .menu ul.menu-social {
        gap: 45px;
    }
    .menu ul.main-menu li .sub-menu{
        padding-left: 0;
    }
    .menu ul.main-menu li .sub-menu li a{
        font-size: 14px;
    }
}
@media screen and (max-width: 599px){
    .menu{
        width: calc(100vw - 30px);
        padding: 24px 40px;
        min-width: 0;
    }
    .menu.open{
        top: 55px;
        overflow-y: auto;
        max-height: calc(100vh - 75px);
    }
    .menu ul.menu-social{
        gap: 16px;
        justify-content: space-between;
    }
    .menu ul.main-menu li a:hover:before{
        display: none;
    }
    .menu ul.main-menu li a{
        line-height: 2;
    }
}
/* -- menu */

/* modal */
.modal{
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(152,200,222,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
    z-index: 999;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
    top: -20px;
}
.modal.show{
    opacity: 1;
    visibility: visible;
    top: 0px;
}
.modal .content{
    background: #fff;
    border-radius: 30px;
    width: 100%;
    max-width: calc(100vw / 2.24);
    padding: 45px 20px;
    position: relative;
}
.modal .content .form-wrapper{
    max-width: 530px;
    margin: auto;
    position: relative;
}
.modal .content .managers{
	display: flex;
	gap: 40px;
	justify-content: center;
  max-width: 390px;
  margin: auto;
}
.modal .content .title-managers{
	text-align: center;
	font-size: 16px;
	color: #518EB4;
	margin-bottom: 15px;
}
.modal .content .manager{
    text-align: center;
		width: 45%;
}
.modal .content .manager .image{
    width: 175px;
    text-align: right;
    position: relative;
		margin-left: auto;
		margin-right: auto;
}
.modal .content .manager .image:before{
    content: '';
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #98C8DE;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.modal .content .manager .image img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.modal .content .manager .text{
    width: calc(100% - 175px);
    padding-left: 25px;
    padding-top: 20px;
}
.modal .content .manager .text .name{
    font-size: 25px;
    line-height: 36px;
    color: #244E67;
		line-height: 1.4;
}
form input{
    width: 100%;
    margin-bottom: 42px;
    line-height: 70px;
    border: 1px solid #D9D9D9;
    border-radius: 37px;
    padding: 0 30px;
    color: #221D2F;
    font-size: 18px;
}
form input:hover,
form input:focus{
    outline: none;
    border-color: #32B3E2;
}
form input:active{
    border-color: #0593C7;
}
form input.error{
    border-color: #ff0101;
}
form input::-webkit-input-placeholder {color:#C2C2C2;}
form input::-moz-placeholder          {color:#C2C2C2;}/* Firefox 19+ */
form input:-moz-placeholder           {color:#C2C2C2;}/* Firefox 18- */
form input:-ms-input-placeholder      {color:#C2C2C2;}
form button{
    border: 0;
    margin: auto;
    display: block!important;
}
form + .success{
    display: none;
}
form.success-form + .success{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
form.success-form + .success p{
    color: #221D2F;
    font-size: 24px;
    line-height: 1.3;
}
form.success-form{
    opacity: 0;
}
.close-modal{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    transition: all .3s;
}
.close-modal:hover{
    opacity: .7;
}
.phone-error{
    display: none;
    padding: 10px;
    text-align: center;
    color: red;
    font-weight: 600;
}
.modal .phone-error{
    margin-bottom: 20px;
    margin-top: -20px;
}
@media screen and (max-width: 1920px){
    form input{
        margin-bottom: calc(100vw / 45.71428571);
        line-height: calc(100vw / 27.42857143);
        border-radius: calc(100vw / 51.89189189);
        font-size: calc(100vw / 106.6666667);
    }
    .modal .content .manager{
        margin-bottom: 20px;
    }
    .modal .content .manager,
    .modal .content .form-wrapper{
        max-width: calc(100vw / 3.622641509);
    }
    .modal .content .manager .image{
        width: calc(100vw / 10.97142857);
    }
    .modal .content .manager .image:before{
        width: calc(100vw / 13.71428571);
        height: calc(100vw / 13.71428571);
    }
    .modal .content .manager .image img{
        width: calc(100vw / 13.71428571);
    }
    .modal .content .manager .text{
        width: calc(100% - (100vw / 10.97142857));
        padding-top: 10px;
    }
    .modal .content .manager .text .supname{
        font-size: 14px;
        max-width: 80%;
        margin-bottom: 7px;
    }
    .modal .content .manager .text .name{
        font-size: calc(100vw / 76.8);
        line-height: calc(100vw / 53.33333333);
    }
}
@media screen and (max-width: 1440px){
    .modal .content{
        max-width: 600px;
    }
    .modal .content .manager .image{
        width: 130px;
    }
    .modal .content .manager .image:before{
        width: 100px;
        height: 100px;
    }
    .modal .content .manager .image img{
        width: 100px;
    }
    .modal .content .manager, .modal .content .form-wrapper{
        max-width: 400px;
    }
    .modal .content .manager .text .name{
        font-size: 18px;
        line-height: 1.3;
    }
    form input{
        margin-bottom: 20px;
        line-height: 50px;
        border-radius: 25px;
        font-size: 16px;
    }
    form button{
        line-height: 50px!important;
        font-size: 16px!important;
        border-radius: 25px!important;
        padding: 0 30px!important;
    }
}
@media screen and (max-width: 991px){
    .form-wrapper.success-form .success p{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px){
    .modal{
        align-items: flex-start;
    }

}
@media screen and (max-width: 479px){
    .modal .content{
        padding: 30px 15px;
    }
    .modal .content .manager .image{
        width: 80px;
				margin-left: auto;
				margin-right: auto;
    }
    .modal .content .manager .image:before{
        width: 70px;
        height: 70px;
    }
    .modal .content .manager .image img{
        width: 70px;
    }
    .modal .content .manager .text{
        padding-left: 12px;
        width: calc(100% - 80px);
    }
    .modal .content .manager .text .supname{
        font-size: 12px;
        line-height: 1.2;
        max-width: 100%;
    }
    form button{
        font-size: 12px !important;
				padding: 0 15px!important;
    }
		.close-modal{
			top: 5px;
			right: 5px;
		}
		.modal .content .manager .image:before{
			left: -10px;
		}
}

/* -- modal */
