@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/*============= ALIGNES ===============*/
.alignwide {
    width: 100%;
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
    .alignfull {
        width: 100vw !important;
        max-width: unset;
    }
}

/* =========== BASE CONFIG =========== */
::-webkit-scrollbar {
    width: 15px;
    height: 10px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #2C4668;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #183254;
}

html {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

body {
    background-color: #FBFBFD;
    overflow-x: hidden;
    margin: 0 auto;
    width: auto;
	max-width: 1920px;
}

.block__padding {
    padding: 60px 0;
}

.block__margin {
    margin: 60px 0;
}

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

a {
    cursor: pointer;
    text-decoration: none;
    color: #183254;
    transition: all 0.3s ease-in;
}

a:hover {
    color: #fff;
}

a:hover svg path {
    /* fill: #fff; */
}

a svg path {
    transition: all 0.3s ease-in;
}

ul li {
    display: flex;
    align-items: flex-start;
    list-style: none;
    color: #15263C;
    font-size: calc(0.0025 * 100vw + 13.2px);
    line-height: 26px;
    margin-bottom: 10px;
}

ul li::before {
    content: "";
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url("../images/check.svg");
    margin-right: 10px;
}

ol li {
    list-style-position: inside;
    color: #15263C;
    font-size: calc(0.0025 * 100vw + 13.2px);
    line-height: 26px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #15263C;
    font-size: 18px;
    line-height: 26px;
}

h1 {
    font-size: calc(0.0125 * 100vw + 28px);
    line-height: 100%;
    font-weight: 700;
    color: #183254;
}

.title {
    font-size: calc(0.00625 * 100vw + 28px);
    line-height: 100%;
    font-weight: 700;
    color: #183254;
}

h1.page-title {
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    color: #183254;
    margin-bottom: 50px;
}

h2 {
    font-weight: 600;
    font-size: calc(0.005 * 100vw + 22.4px);
    line-height: 100%;
    color: #183254;
}

h3 {
    font-weight: 600;
    font-size: calc(0.0025 * 100vw + 19.2px);
    line-height: 120%;
    color: #183254;
}

h4 {
    font-weight: 500;
    font-size: calc(0.0025 * 100vw + 15.2px);
    line-height: 120%;
    color: #183254;
}

h5 {
    font-weight: 500;
    font-size: calc(0.00125 * 100vw + 13.6px);
    line-height: 120%;
    color: #183254;
}

h6 {
    font-weight: 500;
    font-size: calc(0.00125 * 100vw + 11.6px);
    line-height: 120%;
    color: #15263C;
}

.bodyl {
    font-weight: 400;
    font-size: calc(0.00125 * 100vw + 17.6px);
    line-height: 135%;
    color: #15263C;
}

.bodym,
input,
textarea {
    font-weight: 400;
    font-size: calc(0.0025 * 100vw + 13.2px);
    line-height: 135%;
    color: #15263C;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    font-weight: 400;
    font-size: calc(0.0025 * 100vw + 13.2px);
    line-height: 135%;
    color: #5B6776;
}

input::placeholder,
textarea::placeholder {
    font-weight: 400;
    font-size: calc(0.0025 * 100vw + 13.2px);
    line-height: 135%;
    color: #5B6776;
}

.caption {
    font-weight: 300;
    font-size: calc(0.00125 * 100vw + 11.6px);
    line-height: 135%;
    color: #15263C;
}

.desc {
    font-weight: 300;
    font-size: calc(0.000625 * 100vw + 10.8px);
    line-height: 135%;
    color: #15263C;
}

.text {
    color: #5B6776;
}

.breadcrumbs {
    padding: 20px 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #DFDFDF;
}

.breadcrumbs span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.breadcrumbs span.current-item {
    color: #121212;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    padding: 15px 30px;
    background: #183254;
    border: 1px solid #183254;
    outline: none;
    color: #fff;
    font-weight: 500;
    font-size: calc(0.0025 * 100vw + 11.2px);
    line-height: 135%;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.btn svg {
    transition: all 0.3s ease-in;
    margin-right: 10px;
}

.btn svg path {
    transition: all 0.3s ease-in;
}

.btn:hover,
.btn.active {
    background-color: transparent;
    color: #183254;
}

.btn:hover svg path {
    fill: rgba(18, 223, 236, 0.5);
}

.btn:focus {
    letter-spacing: normal;
}

.btn.invert {
    background-color: transparent;
    color: #183254;
}

.primary {
    background-color: #183254;
}

.disable {
    color: #8A929D;
}

input,
textarea {
    border: none;
    border-bottom: 1px solid #E6E9EE;
    padding: 13px 0;
    transition: 0.3s;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    -moz-transition: 0.3s;
    transition: 0.3s;
}

input::placeholder,
textarea::placeholder {
    transition: 0.3s;
}

input:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: #15263C;
}

input.error,
textarea.error {
    border-color: #D12D26;
    color: #D12D26;
}

input.error::-moz-placeholder,
textarea.error::-moz-placeholder {
    color: rgba(209, 44, 38, 0.7);
}

input.error::placeholder,
textarea.error::placeholder {
    color: rgba(209, 44, 38, 0.7);
}

#main,
#primary {
    min-height: 83vh;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    text-align: center;
}

.navigation.pagination .page-numbers {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1C0130;
    margin: 0 10px;
}

.navigation.pagination .page-numbers.current {
    font-weight: 750;
}

.navigation.pagination a.prev {
    margin-right: 100px;
    margin-left: -100px;
}

.navigation.pagination a.next {
    margin-right: -100px;
    margin-left: 100px;
}

/*============ HEADER =================*/
/*================ MOBILE MNU =============*/
#header {
    position: sticky;
    top: 0;
    background: #ffff;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0px 10px 60px -20px rgba(21, 71, 132, 0.2);
}

#header a:hover {
    color: #183254;
}

#header .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
}

#header .header__wrapper .logo__wrapper {
    margin-right: 105px;
}

#header .header__wrapper .logo__wrapper img {
    max-width: 160px;
}

#header .header__wrapper .btn {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-top: 5px;
    text-align: right;
    color: #183254;
}

#header .header__wrapper ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

#header .header__wrapper ul li {
    flex-shrink: 0;
}

#header .header__wrapper ul li a{
    font-weight: 600;
    /* font-family: "Fatal", sans-serif; */
    /* font-size: 25px; */
    /* letter-spacing: 2px; */
    font-size: calc(0.0025* 100vw + 14.2px);
}

#header .header__wrapper .phone__wrapper h3{
    font-size: calc(0.0025* 100vw + 14.2px);

}

#header .header__wrapper ul li::before {
    content: none;
}

#header .header__wrapper .phone__wrapper {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    /* margin-left: 105px; */
    text-align: right;
}

#header .header__wrapper .phone__wrapper *{
    color: #183254;
}

#header .burger.open_menu {
    display: none;
    flex-direction: column;
    background-color: transparent;
    height: 40px;
    width: 40px;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 2px;
    flex-shrink: 0;
}

#header .burger.open_menu span {
    background-color: #15263C;
    width: 30px;
    height: 4px;
    transition: all 0.3s ease-in;
    pointer-events: none;
}

#header .burger.open_menu.clicked {
    background-color: #15263C;
}

#header .burger.open_menu.clicked span {
    background-color: #fff;
}

#header #mobile-mnu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 320px;
    background-color: #f1f2f3;
    padding: 30px;
    transition: all 0.3s ease-in;
    transform: translateX(-350px);
    z-index: 9999;
}

#header #mobile-mnu #close-mnu {
    font-size: 45px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: block;
    color: #15263C;
}

#header #mobile-mnu a {
    font-size: 16px;
    line-height: 1;
    color: #374957;
    font-weight: 450;
}

#header #mobile-mnu a:hover {
    color: #15263C;
}

#header #mobile-mnu .logo__holder {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#header #mobile-mnu .logo__holder img {
    max-height: 60px;
}

#header #mobile-mnu .menuTop {
    list-style-type: none;
    margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
    margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
    font-size: 16px;
    line-height: 1;
    color: #374957;
    font-weight: 450;
}

#header #mobile-mnu .menuTop li a:hover {
    color: #15263C;
}

#header #mobile-mnu .menuTop li.active a {
    color: #15263C;
}

#header #mobile-mnu .adresses__holder {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-image: url("../images/map.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
    font-size: 16px;
    line-height: 1;
    color: #374957;
    font-weight: 450;
}

#header #mobile-mnu .email__holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: #374957;
    font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
    color: #D12D26;
}

#header #mobile-mnu .email__holder .email__item svg {
    margin-right: 10px;
}

#header #mobile-mnu .email__holder .email__item svg path {
    stroke: #B0A49B;
}

#header #mobile-mnu .phones__holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: #374957;
    font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
    color: #D12D26;
}

#header #mobile-mnu .phones__holder .phone__item svg {
    margin-right: 10px;
}

#header #mobile-mnu .phones__holder .phone__item svg path {
    stroke: #B0A49B;
}

#header #mobile-mnu .soc__holder {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #3A899A;
    transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
    background-color: #609FA8;
}

#header #mobile-mnu.opened {
    transform: translateX(0);
}

.header__socials {
    position: relative;
    display: flex;
    gap: 15px;
    /* flex-direction: column; */
}
.header__socials-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__socials-item svg,
.header__socials-item img {
    width: 30px;
    height: 30px;
}
.header__socials-item span {
    display: none;
}



/*============ FOOTER ===============*/
#footer {
    background-color: #15263C;
    display: flex;
    flex-direction: column;
}

#footer .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid #5B6776;
}

#footer .footer__top .logo {
    margin-right: 105px;
	 filter: brightness(300);
}

#footer .footer__top .menuFooter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

#footer .footer__top .menuFooter li {
    margin: 0;
}

#footer .footer__top .menuFooter li::before {
    content: none;
}

#footer .footer__top .menuFooter li a {
    color: #fff;
    transition: 0.3s;
    font-weight: 600;
    font-size: calc(0.0025* 100vw + 14.2px);
}

#footer .footer__top .menuFooter li a:hover {
    color: #B0A49B;
}

#footer .footer__top .contacts {
    flex-shrink: 0;
    margin-left: 105px;
    text-align: right;
}

#footer .footer__top .contacts .phones a {
    margin-bottom: 10px;
}

#footer .footer__top .contacts .phones a h3 {
    color: #fff;
    transition: 0.3s;
    
    font-size: calc(0.0025* 100vw + 14.2px);
}

#footer .footer__top .contacts .emails a {
    margin-bottom: 10px;
}

#footer .footer__top .contacts .emails a h5 {
    color: #fff;
    transition: 0.3s;
}

#footer .footer__top .contacts a:hover h5,
#footer .footer__top .contacts a:hover h3 {
    color: #8A929D;
}

#footer .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

/* ============== MODAL ============= */
.form__head {
    margin-bottom: 30px;
    padding-right: 15px;
}

.form__inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.form__inputs input {
    width: calc(50% - 20px);
}

.form__inputs textarea {
    resize: none;
    height: 150px;
    width: 100%;
}

.form__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form a:hover {
    color: #2C4668;
}

#modal-policy {
    overflow: auto;
}

.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 .ajax-loader {
    display: none;
}

.wpcf7 .wpcf7-spinner {
    display: none;
}

.theme-modal {
    max-height: 90vh;
    max-width: 90vw;
    width: 600px;
    background-color: #fff;
    position: fixed;
    left: 50%;
    top: 50%;
    padding: 40px;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    transition: transform 0.3s ease-in;
    z-index: 99999;
}

.theme-modal .title {
    margin-bottom: 10px;
}

.theme-modal.modal-open {
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.theme-modal .close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    font-weight: 750;
    color: #374957;
    cursor: pointer;
}

.err-page {
    position: relative;
}

.err-page::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 675px;
    background: #15263C;
    opacity: 0.6;
    z-index: 0;
}

.err-page .block__bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 675px;
    z-index: 0;
}

.err-page .block__front-image {
    position: absolute;
    height: -webkit-fill-available;
    bottom: 0;
    right: 23.1770833333%;
    z-index: 1;
}

.err-page .error-404.not-found {
    padding-left: calc((100% - 1170px) / 2);
    padding-top: 223px;
}

.err-page .error-404.not-found h4 {
    margin-bottom: 20px;
    z-index: 3;
}

.err-page .error-404.not-found .title {
    margin-bottom: 40px;
    font-size: calc(0.00875 * 100vw + 53.2px);
    z-index: 3;
}

.err-page .error-404.not-found .bodym {
    margin-bottom: 40px;
    z-index: 3;
}

.err-page .error-404.not-found a {
    width: -moz-fit-content;
    width: fit-content;
    z-index: 3;
}

.privacy-policy .site-main {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 15px;

}

.privacy-policy .site-main .content h5 {
    font-size: 26px !important;
    padding: 10px 0;
}

.privacy-policy .site-main .content h4 {
    font-size: 30px !important;
    padding: 10px 0;
}

#form-block {
    margin-top: 35px !important;
}
.privacy-policy .content p{
    font-size: 15px;
}
.privacy-policy h1.page-title {
    margin-bottom: 15px;
}

@media (max-width: 1700px) {
    .err-page .error-404__text {
        position: relative;
        display: flex;
        flex-direction: column;
        width: -moz-fit-content;
        width: fit-content;
        padding: 10px;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.7);
        z-index: 3;
    }
}


/* ============= MEDIA QUERIES =========== */
@media (max-width: 1240px) {
    #header .header__wrapper .logo__wrapper {
        margin-right: 30px;
    }

    #header .header__wrapper .phone__wrapper {
        /* margin-left: 30px; */
    }
}

@media (max-width: 1070px) {
    #header .header__wrapper ul {
        display: none;
    }

    #header .header__wrapper .burger.open_menu {
        display: flex;
    }

    #footer .footer__top {
        flex-wrap: wrap;
    }

    #footer .footer__top .logo {
        margin-right: 20px;
    }

    #footer .footer__top .contacts {
        margin: 0;
    }

    #footer .footer__top .menuFooter {
        order: 3;
    }
}

@media (max-width: 769px) {
    #header .header__wrapper .phone__wrapper .phone {}
}

@media (max-width: 576px) {
    .block-title {
        margin-bottom: 20px;
    }

    .block__margin {
        margin: 20px 0;
    }

    .block__padding {
        padding: 20px 0;
    }

    .privacy-policy h1 {
        font-size: 26px;
    }
}

@media (max-width: 498px) {
    .theme-modal {
        padding: 20px;
    }

    .form__head {
        margin-bottom: 30px;
    }

    .form__inputs {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }

    .form__inputs input {
        width: 100%;
    }

    .form__inputs textarea {
        resize: none;
        height: 150px;
        width: 100%;
    }

    .form__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form__bottom .btn {
        width: 100%;
    }
}
@media (max-width: 508px) {
    #header .header__wrapper .logo__wrapper img{
        max-width: 80px;
    }
    #header .header__wrapper .phone__wrapper .phone h3{
        font-size: 16px;
    }
}
@media (max-width: 384px) {
    #header .header__wrapper .logo__wrapper img{
        max-width: 70px;
    }
    #header .header__wrapper .phone__wrapper .phone h3{
        font-size: 14px;
    }
    #header .header__wrapper .phone__wrapper {
        margin-left: 0px;
    }
}



@media(max-width: 1070px) {
    .header__socials {
        margin-left: auto;
    }
}
@media(max-width: 740px) {
    .header__socials {
        order: 1;
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }
    .header__wrapper {
        flex-wrap: wrap;
    }
    #header .header__wrapper {
        row-gap: 10px;
    }
}
@media(max-width: 550px) {
    .header__socials-item span {
        display: none;
    }
}


@media(max-width: 508px) {
    #header .header__wrapper {
        column-gap: 10px;
    }
    #header .header__wrapper .logo__wrapper,
    .phone__wrapper {
        max-width: calc(50% - 5px);
        margin: 0px;
    }
    #header .header__wrapper .logo__wrapper img {
        width: 100%;
        max-width: none;
        max-height: 35px;
    }
}
@media (max-width: 450px) {
    #header .header__wrapper .logo__wrapper {
        max-width: calc(35% - 5px);
        margin: 0px;
    }
    .phone__wrapper {
        max-width: none;
        flex-grow: 1;
        justify-content: end;
    }
}
@media(max-width: 350px) {
    #header .header__wrapper .phone__wrapper {
        gap: 5px;
    }
}
/*# sourceMappingURL=main.css.map */