/* Common */
html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
}
input {
    font-family: 'Montserrat', sans-serif;
}
div[tabindex] {
    outline: none;
}
body._overflow {
    overflow: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
ul, li {
    list-style: none;
    font-weight: 300;
}
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-weight: 500;
}
p {
    line-height: 24px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    color: #000;
}
hr {
    border: none;
    height: 1px;
    background-color: #000;
}
a, a:visited, a:active {
    text-decoration: none;
    font-weight: 500;
}

.container {
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* Header */
.header {

}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 32px;
}

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

.header__logo {
    margin-right: 65px;
}

.left-sidebar-mobile, .language-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
    overflow-y: auto;
    transition: left .4s ease-in-out, backdrop-filter .3s ease .1s, background .3s ease .1s;
}

.sidebar__block-social {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.left-sidebar-mobile.opened, .language-mobile-sidebar.opened {
    background: rgba(46, 74, 142, 0.2);
    backdrop-filter: blur(2.5px);
    left: 0;

    transition: left .4s ease-in-out, backdrop-filter .3s ease .3s, background .3s ease .3s;
}

.language-mobile-sidebar {
    z-index: 10000;
}

.header__personal-lang-radio-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(30, 61, 118, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-mobile-wrapper__form input {
    display: none;
}

.language-mobile-wrapper__form-radio {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.language-mobile-wrapper__form-radio span{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1E3D76;
}

.language-mobile-wrapper__form input:checked + .language-mobile-wrapper__form-radio .header__personal-lang-radio-marker {
    background-color: rgba(30, 61, 118, 1);
}

.language-mobile-wrapper__form input:checked + .language-mobile-wrapper__form-radio .header__personal-lang-radio-marker:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

.language-mobile-wrapper {
    background-color: #fff;
    width: 100%;
    min-height: 100%;
}

.language-mobile-wrapper__header {
    padding: 27px 20px;
    border-bottom: 1px solid rgba(30, 61, 118, .2);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.language-mobile-wrapper__header button.language-mobile__btn {
    background-color: transparent;
    border: none;
    outline: none;
    height: 16px;
}

.language-mobile-wrapper__header h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1E3D76;
}

.language-mobile-wrapper__form {
    padding: 32px 20px;
}

.language-mobile-wrapper__form h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #1E3D76;
    margin-bottom: 24px;
}

.language-mobile-wrapper__form .header__personal-lang-radio {

}

.left-sidebar-mobile__wrapper {
    background-color: #fff;
    width: 85%;
    min-height: 100%;
}

.left-sidebar-mobile__wrapper {
    padding-top: 72px;
}

.left-sidebar-mobile__select {
    padding: 24px 20px;
    background-color: rgba(30, 61, 118, .05);
    border-bottom: 1px solid rgba(30, 61, 118, .1);
    display: none;
}

.left-sidebar-mobile__select:after {
    content: url("../images/icons/angle-right.svg");
    position: absolute;
    right: calc(15% + 20px);
}

.left-sidebar-mobile__select span {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}


.left-sidebar-mobile__contacts {
    background-color: rgba(30, 61, 118, .05);
    padding: 24px 20px;
}

.left-sidebar-mobile__contacts h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 28px;
}

.left-sidebar-mobile__contacts .left-sidebar-mobile__contacts-phone {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #333;
    margin-bottom: 21px;
    display: block;
}

.left-sidebar-mobile__contacts .left-sidebar-mobile__contacts-email {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 21px;
    display: block;
}

.left-sidebar-mobile__contacts .left-sidebar-mobile__contacts-email span{
    border-bottom: 1px solid #333;
}

.left-sidebar-mobile__contacts p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
}

@media screen and (max-width: 1060px) {
    .header__logo {
        margin-right: 0px;
    }
}

.header__personal {
    display: flex;
    align-items: center;
    gap: 89px;
}

@media screen and (max-width: 1224px) {
    .header__personal {
        gap: 24px;
    }
}

.header__personal-phone {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
    color: #1E3D76;
}

.header__personal-lang {
    /*display: flex;*/
    display: none;
    align-items: center;
}

.header__mobile-burger {
    display: none;
    border: 1px solid rgba(30, 61, 118, .3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.header__mobile-burger > div{
    width: 20px;
    height: 2px;
    background-color: #1E3D76;
    position: relative;
}

.header__mobile-burger > div:after,
.header__mobile-burger > div:before
{
    content: "";
    width: 20px;
    height: 2px;
    background-color: #1E3D76;
    position: absolute;
}

.header__mobile-burger > div:after {
    top: -6px
}

.header__mobile-burger > div:before {
    bottom: -6px
}

@media screen and (max-width: 1060px) {
    .header__personal-lang {
        display: none;
    }

    .header__mobile-burger {
        display: flex;
    }
}

.header__personal-lang input{
    display: none;
}

.header__personal-lang-radio {
    background: #fff;
    border-radius: 2px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__personal-lang input:checked + .header__personal-lang-radio {
    background: #1E3D76;
    border-radius: 2px;
    cursor: pointer;
}

.header__personal-lang input:checked + .header__personal-lang-radio span {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
}

.header__personal-lang-radio span {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000;
}

/* Footer */
.feedback-section {
    background-image: url("images/feedback.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 530px;
    padding: 80px 0 52px;
}
.feedback-section .container {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .feedback-section {
        min-height: auto;
        padding: 44px 0 35px;
    }
    .feedback-section .container {
        display: flex;
        flex-direction: column;
    }
}
.footer {
    background-color: #1D448F;
    color: #fff;
    padding: 68px 0 103px;
    position: relative;
}
@media screen and (max-width: 800px) {
    .footer {
        padding: 28px 0 180px;
    }
}

.footer .container {
    display: flex;
    align-items: flex-start;
    gap: 52px;
}

@media screen and (max-width: 767px) {
    .footer .container {
        flex-direction: column;
        gap: 0;
    }
}

.footer__block {
    width: 25%;
}
.footer__block-company {
    order: 1;
}
.footer__block-partners {
    order: 2;
}
.footer__block-contacts {
    order: 3;
}
.footer__block-soc {
    order: 4;
}

@media screen and (max-width: 768px) {
    .footer__block-contacts {
        order: 1;
    }
    .footer__block-company {
        order: 2;
    }
    .footer__block-partners {
        order: 3;
    }
    .footer__block ul{
        height: 0;
        opacity: 0;
        display: none;
    }

    .footer__block ul.active{
        height: auto;
        opacity: 1;
        display: block;
        padding-top: 20px;
    }

    .footer__block:nth-child(-n + 3) {
        padding: 16px 0;
        border-top: 1px solid rgba(255,255,255, .2);
        width: 100%;
    }

    .footer__block:first-child {
        border-bottom: 1px solid rgba(255,255,255, .2);
    }
}


.footer__block h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 16px;
    position: relative;
}

.footer__agency-logo {
    display: block;
}

@media screen and (max-width: 768px) {
    .footer__block h3{
        margin-bottom: 0;
    }

    .footer__block:nth-child(-n + 3) h3:after {
        content: url("../icons/angle-down.svg");
        position: absolute;
        right: 0;
    }

    .footer__block h3:has(+ ul.active):after {
        transform: rotate(180deg);
    }

    .footer__agency-logo {
        display: none;
    }
}

.footer__block ul li a{
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 17px;
    color: #fff;
    cursor: pointer;
    display: block;
}

/*.footer__block:nth-child(3) {
    margin-right: 110px;
}*/


.footer__block-social {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 38px;
}

.footer__agency-link {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer__agency-link {
        display: block;
        text-align: center;
        position: absolute;
        bottom: 40px;
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        width: calc(100% - 40px);
        text-decoration: underline;
    }

    .footer__block-social {
        position: absolute;
        bottom: 60px;
        width: calc(100% - 40px);
        justify-content: space-between;
        gap: 0;
    }
}

a.footer__phone {
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

@media screen and (max-width: 768px) {
    a.footer__phone {
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
    }
}

a.footer__email span {
    border-bottom: 1px solid #fff;
}
a.footer__email, p.footer__address{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 8px 0;
}

@media screen and (max-width: 768px) {
    a.footer__email, p.footer__address{
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        padding: 16px 0;
    }
}
.green-btn {
    outline: none;
    border: none;
    cursor: pointer;
    background: #B9E362;
    border-radius: 30px;

    padding: 0 55px;

    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    height: 60px;
}
.main-input {
    outline: none;
    background: #FFFFFF;
    border-radius: 5px;
    border: none;
    display: block;
    height: 64px;
    padding: 0 32px;
    width: 100%;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.main-input::placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;

    transition: .3s ease;
}

.main-input:focus::placeholder {
    opacity: 0;
}
.phone_header_block{
	display:flex;
	align-items:center;
}
.phone_header_block > span{
	margin-left:5px;
}
@media screen and (max-width: 768px){
	.phone_header_block > img{
		order:2; 
		margin-right:0;
		margin-left:5px;
	}
	.phone_header_block > a{order:1;}
}
.main-section p{
    text-shadow: 0 0 10px black;
}
