/* normalize */
* {
    box-sizing: border-box;
}
html {
    line-height: 1.3; 
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;    
}
body {
    margin: 0;
}
main {
    display: block;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: 'Montserrat';
    margin: 0;
    outline: none;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit; 
}
/* fonts */
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Light.ttf") format('truetype');
    font-weight: 300;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-SemiBold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal; 
    font-display: swap;
}
/* main */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #19326d;
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #122656;
}
::-webkit-input-placeholder {
    font-family: 'Montserrat';
    color: #999;
}
:-ms-input-placeholder { 
    font-family: 'Montserrat';
    color: #999;
} 
::placeholder {
    font-family: 'Montserrat';
    color: #999;
}
h1,h2,h3 {
    font-family: 'Montserrat';
}
body {
    position: relative;
    background: #fff;
    font-family: 'Montserrat';
    font-size: 16px;
    color: #000;
}
body.locked {
    overflow-y: hidden;
}
.container {
    width: 100%;
    max-width: 1310px;    
    margin: 0 auto;
    padding: 0 15px;
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 55px;
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
    background: #ffbe00;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    cursor: pointer;
    transition: 0.4s ease;
}
.btn:hover {
    background: #f9c324;
}
.section {
    position: relative;
    padding: 60px 0;
}
.section-title {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-title span {
    color: #ffbe00;
}
.section-subtitle {
    margin: 0;
}
.bg-grey {
    background: #f5f5f5;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
header.fixed {
    position: fixed;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: slideDown 0.65s ease-out;
    z-index: 9;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 15px 0;
}
.logo {
    width: 120px;
}
.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.header-menu li a:hover,
.header-menu li a.active {
    color: #ffbe00;
}
.lang-wrap {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
}
.lang-current {
    font-weight: 600;
    line-height: 1;
    padding-left: 10px;
}
.lang-row {
    display: none;
    position: absolute;
    background: #fff;
    color: #000;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    padding: 5px;
    margin-top: 5px;
}
.lang-row a {
    display: block;
    color: #000;
    text-decoration: none;
}
.lang-row a:first-child {
    margin-bottom: 5px;
}
.lang-row a.active {
    color: #838383;
    cursor: default;
}
.burger-menu,
.mobile-nav {
    display: none;
}
.hero {
    position: relative;
    height: auto;
    background: url(../images/hero23.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 40px;
}
.hero .container {
    position: relative;
    height: 100%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    height: 100%;
}
.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
}
.hero-title:last-child {
    align-self: flex-end;
    text-align: right;
}
.about-wrap {
    position: relative;
    display: flex;
    gap: 40px;
}
.about-content {
    flex-basis: 100%;
    flex-shrink: 0;
}
.about-img-mob {
    display: none;
}
.about-img {
    height: 100%;
    width: calc(45% - 40px);
    flex-shrink: 0;
    position: absolute;
    top: 0;
    right: 0;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-pros {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 0;
}
/*.about-pros-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((100% - 20px) / 2);
    flex-grow: 1;
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;    
    cursor: default;
    transition: 0.35s ease;
}*/

.about-pros-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((100% - 20px) / 2);
    flex-grow: 1;
    background: #fff;
    padding: 20px;
    text-align: left; 
    /*text-align: center;  */  
    cursor: default;
    transition: 0.35s ease;
    border: 3px solid #f8c026;
}
.about-pros-item:hover span {
    color: #ffbe00;
}
.about-content .btn {
    margin-top: 40px;
}
.about-blocks {
    margin-top: 50px;
    text-align: center;
}
.about-block-wrap {
    position: relative;
    display: flex;
}
.about-block-wrap-content {
    width: 50%;
    flex-shrink: 0;
    padding: 40px 40px 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
    text-align: left;
}
.about-block-wrap:nth-child(2n) {
    justify-content: flex-end;
}
.about-block-wrap-title {
    font-size: 28px;
    font-weight: 700;
}
.about-block-wrap-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}
.about-block-wrap:nth-child(2n) .about-block-wrap-img {
    right: auto;
    left: 0;
}
.about-block-wrap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.service-item {
    width: calc((100% - 20px) / 2);
    position: relative;
    padding: 25px;
    cursor: pointer;
    overflow: hidden;
}
.service-item:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.service-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.45s ease;
    z-index: 0;
}
.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service-item-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 150px;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}
.service-item-info > span {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.service-item-more {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #fff;
}
.service-item-more svg {
    margin-left: 5px;
    transition: 0.3s ease;
}
.service-item:hover .service-item-more svg {
    margin-left: 10px;
}
.service-item:hover .service-item-img {
    transform: scale(1.2);
}
.advantages-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 30px;
    margin-top: 60px;
}
.advantage-item {
    width: calc((100% - 50px) / 2);
    position: relative;
    border: 1px solid #bbb;
    padding: 20px 20px 20px 40px;
}
.advantage-item-num {
    position: absolute;
    top: -30px;
    left: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffbe00;
    color: #fff;
    font-weight: 600;
    line-height: 1;
}
.advantage-item-title {
    font-weight: 600;
    font-size: 20px;
}
.advantage-item-desc {
    margin-top: 20px;
}
.advantage-item-desc p {
    margin-bottom: 0;
}
.advantage-item-desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.advantage-item-desc ul li:not(:last-child) {
    margin-bottom: 8px;
}
.advantage-item-desc ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.advantage-item-desc ul li:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #ffbe00;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.photos-wrap .btn-more {
    width: 260px;
    margin-top: 25px;
}
.section-cta {
    position: relative;
    background: url(../images/cta-bg2.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}
.section-cta:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.65);
}
.section-cta .container {
    position: relative;
}
.section-cta .section-title,
.section-cta .section-subtitle {
    color: #fff;
}
.cta-form {
    margin-top: 40px;
}
.form-fields-row {
    display: flex;
    gap: 25px;
}
.form-field {
    flex-basis: 0;
    flex-grow: 1;
}
.form-field input {
    width: 100%;
    height: 100%;
    min-height: 55px;
    padding: 10px 15px;
    border: 1px solid #999;
    outline: none;
    transition: 0.3s ease;
}
.form-field input:focus {
    border-color: #ffbe00;
}
.form-field input.error {
    border-color: #eb2d0b;
}
.form-field .iti {
    width: 100%;
}
.form-agreement {
    font-size: 12px;
    margin-top: 15px;
}
.form-agreement a {
    color: inherit;
}
.cta-form .form-agreement {
    color: #fff;
}
.photos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}
.photo-item {
    width: calc((100% - 40px) / 3);
    height: 290px;
    position: relative;
    overflow: hidden;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.photo-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 50%;
}
.photo-view svg {
    display: block;
    transition: 0.4s ease;
}
.photo-item:hover .photo-view svg {
    transform: scale(1.22);
}
.map {
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.contacts-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    justify-content: space-between;
    margin-top: 45px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-basis: 0;
    flex-grow: 1;
}
.contact-item:last-child {
    align-items: flex-start;
}
.contact-item a,
.contact-item span {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.contact-item svg {
    flex-shrink: 0;
}
footer {
    padding: 20px 0;
    background: #000;
}
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-menu li a {
    color: #cbcbcb;
    text-decoration: none;
    transition: 0.3s ease;
}
.footer-menu li a:hover {
    color: #fff;
}
.footer-row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #565656;
    font-size: 12px;
    color: #cbcbcb;
}
.footer-row-bottom a {
    color: #cbcbcb;
}
.modal {
    visibility: hidden;
    display: block;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 99;
    padding: 30px;
    overflow-y: auto;
    transition: opacity .4s;
}
.modal:before {
    content: '';
    display: none;
    background: rgba(0,0,0,0.6);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.modal,
.modal:before {
    position: fixed;
    top: 0;
}
.modal-dialog {
    position: static;
    width: 550px;
    max-width: 95%;
    padding: 60px 40px 40px;
    margin: 0 auto;
    background: #fff;
    z-index: 11;
    transform: translate(0,-500%);
    transition: transform .3s ease-out;
}
.modal-dialog.dialog-wide {
    width: 650px;
}
.modal-header {
    text-align: center;
}
.modal-title {
    font-weight: 700;
    font-size: 24px;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    padding: 0;
    width: 31px;
    height: 31px;
    line-height: 0;
    cursor: pointer;
}
.modal.opened {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.modal.opened .modal-dialog {
    transform: translate(0,0);
}
.modal.opened:before {
    display: block;
}
.modal-body {
    margin-top: 30px;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.modal-form .btn {
    width: 100%;
}
.modal-form .form-agreement {
    text-align: center;
    margin-top: 0;
}
.grecaptcha-badge {
    display: none;
}
.md-hide {
    display: none;
}
.content-modal-btn {
    margin-top: 25px;
}
.modal-body > img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.modal-body > h3 {
    font-weight: 500;
    margin-top: 15px;
}
/* media */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 36px;
    }
    .pros-item-title {
        font-size: 24px;
    }
    .service-item-info {
        gap: 100px;
    }
    .form-fields-row {
        gap: 20px;
    }
    .form-field {
        flex-basis: 25%;
    }
    .contacts-row {
        flex-wrap: wrap;
    }
    .contact-item {
        flex-basis: calc((100% - 25px) / 2);
    }
    .contact-item:last-child {
        align-items: center;
    }
}
@media (max-width: 992px) {
    header-row {
        justify-content: flex-start;
    }    
    .logo {
        width: 90px;
    }
    .header-menu {
        display: none;
    }
    .lang-wrap {
        margin-left: auto;
    }
    .burger-menu {
        display: block;
        background: transparent;
        width: 40px;
        height: 40px;
        padding: 12px 4px;
        line-height: 0;
        cursor: pointer;
    }
    .burger-menu span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        margin: 4px auto;
        transition: .3s ease-in-out;
    }
    .burger-menu span:first-child {
        margin-top: 0;
    }
    .burger-menu span:last-child {
        margin-bottom: 0;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        transform: translateX(-120%);
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.8);
        border-top: 2px solid #000;
        transition: 0.4s ease-in-out;
        backdrop-filter: blur(4px);
        z-index: 9;
    }
    .mobile-nav.shown {
        transform: translateX(0);
    }
    .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .mobile-nav ul li a {
        color: #fff;
        text-decoration: none;
    }
    .hero {
        height: auto;
    }
    .hero-content {
        gap: 0;
        padding: 0;
    }
    .hero-title:last-child {
        align-self: flex-start;
        text-align: left;
    }
    .about-img {
        display: none;
    }
    .about-content {
        flex-basis: 100%;
    }
    .about-img-mob {
        display: block;
        height: 260px;
    }
    .about-img-mob img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .form-fields-row {
        flex-wrap: wrap;
    }
    .form-field {
        flex-basis: calc((100% - 20px) / 2);
        flex-grow: 1;
    }
    .cta-form .btn {
        width: 100%;
    }
    .photo-item {
        height: 240px;
    }
    .map {
        height: 320px;
    }
    .advantage-item {
        width: 100%;
    }
    .about-block-wrap {
        flex-wrap: wrap;
        border: 1px solid #bbb;
        margin-bottom: 20px;
    }
    .about-block-wrap:last-child {
        margin-bottom: 0;
    }
    .about-block-wrap-img {
        position: static;
        width: 100%;
        height: 280px;
    }
    .about-block-wrap-content {
        width: 100%;
        order: 1;
        min-height: auto;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
    .hero-title {
        font-size: 26px;
    }
    .section-title {
        font-size: 22px;
    }
    .photo-item {
        width: calc((100% - 20px) / 2);
    }
    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    .footer-menu,
    .footer-row-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .modal-dialog {
        padding: 50px 20px 20px;
    }
    .pros-item-title {
        font-size: 18px;
    }
    .modal-title {
        font-size: 16px;
    }
    .service-item-info {
        gap: 50px;
    }
    .contacts-row {
        margin-top: 25px;
        gap: 15px;
    }
    .contact-item a, 
    .contact-item span {
        font-size: 14px;
    }
    .section {
        padding: 35px 0;
    }
    .about-block-wrap-content {
        padding: 25px 15px;
    }
    .about-pros {
        gap: 10px;
    }
}
@media (max-width: 570px) {
    body {
        font-size: 14px;
    }
    .hero-title {
        font-size: 22px;
    }
    .advantages-row {
        gap: 35px;
        padding: 0 20px;
    }
    .advantage-item {
        padding: 20px 10px 10px 20px;
    }
    .advantage-item-num {
        top: -20px;
        left: -20px;
        width: 40px;
        height: 40px;
    }
    .advantage-item-title {
        font-size: 16px;
    }
    .advantage-item-desc {
        font-size: 13px;
    }
    .about-pros-item {
        width: 100%;
        padding: 10px;
    }
    .about-pros-item:last-child span br {
        display: none;
    }
    .services-row {
        gap: 15px;
        margin-top: 25px;
    }
    .service-item {
        width: 100%;
    }
    .form-field {
        flex-basis: 100%;
    }
    .form-field input {
        min-height: 40px;
    }
    .service-item-info > span {
        font-size: 20px;
    }
}
@media (max-width: 380px) {
    .section-title {
        font-size: 18px;
    }
    .advantage-item-title {
        font-size: 13px;
    }
    .btn {
        width: 100%;
        height: 40px;
        font-size: 12px;
    }
    .photo-item {
        width: 100%;
        height: 180px;
    }
    .logo {
        width: 60px;
    }
    .lang-wrap > svg {
        width: 20px;
    }
    .about-block-wrap-title {
    font-size: 20px;
}

}