/*Обнуление*/
*{
    padding: 0;
    margin: 0;
    border: 0;
}
*,*:before,*:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
    height: 100%;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
input,button,textarea{
    font-family:inherit;
    outline: none;
    border: none;
}
button,select{cursor: pointer;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {  display: none;}
input::-webkit-outer-spin-button,   /* убрать стрелочки у type: number */
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/
@font-face {
    font-family: Calibri;
    src: url("../fonts/calibri.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: Calibri;
    src: url("../fonts/calibri_bold.ttf") format("truetype");
    font-weight: 700;
}
@font-face {
    font-family: Oswald;
    src: url("../fonts/Oswald-ExtraLight.ttf") format("truetype");
    font-weight: 200;
}
@font-face {
    font-family: Oswald;
    src: url("../fonts/Oswald-Regular.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: Oswald;
    src: url("../fonts/Oswald-SemiBold.ttf") format("truetype");
    font-weight: 600;
}
@font-face {
    font-family: Oswald;
    src: url("../fonts/Oswald-Bold.ttf") format("truetype");
    font-weight: 700;
}
@font-face {
    font-family: Gilroy;
    src: url("../fonts/gilroy-bold.ttf") format("truetype");
    font-weight: 700;
}

:root {
    --font-family: Calibri;
    --second-family: Oswald;
    --third-family: Gilroy;
}

body{
    font-family: Calibri, sans-serif;
    font-weight: 400;
    background:#F8FFFF;
}
.container{
    max-width: 1160px;
    margin: 0 auto;
}
.container.container-big{
    max-width: 1300px;
}


.header {
    background-image: url(../images/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}
.search-form{
    display: flex;
    opacity: 0;
    transition: .3s all ease;
}
.search-form.active{
    opacity: 1;
}
.search-button.active{
    border-radius: 0 4px 4px 0 !important;
}
.search-input{
    background: transparent;
    border: 2px solid #f1f4f4;
    border-radius: 4px 0 0 4px;
    border-right: none;
    width: 200px;
    height: 35px;
    padding: 0 11px;

    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: justify;
    color: #f1f4f4;
    opacity: 1;
}
.search-input::placeholder{
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: justify;
    color: #f1f4f4;
    opacity: 0.7;
}
.search-open .search-button{
    border-radius: 4px;
    cursor: pointer;
}
.search-button{
    /*pointer-events: none;*/
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 0 4px 4px 0;
    border: 2px solid #f1f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-actions{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    /*column-gap: 15px;*/
}


.language-switcher {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 70px;
    height: 35px;
    margin-left: 15px;
}
.selected-lang {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    background: #f1f4f4;
    border-radius: 20px;
}
.selected-lang span{
    font-family: var(--font-family),sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: justify;
    color: #2b2a29;
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f1f4f4;
    border-radius: 0 0 20px 20px;
    overflow: hidden;

    font-family: var(--font-family),sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: justify;
    color: #2b2a29;
}
.dropdown div {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    width: 70px;
    height: 35px;
    cursor: pointer;
    transition: background 0.3s;
}
.dropdown div:hover {
    background: #d8d8d8;
}
.flag {
    width: 20px;
    height: 15px;
}

.header-slogan{
    margin-left: 300px;
    font-family: var(--second-family),sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 130%;
    color: #3a6ead;
    margin-top: 0px;
    margin-bottom: 10px;
}

.menu-items{
    display: flex;
    column-gap: 35px;
    align-items: center;
}
.menu-item a{
    font-family: var(--font-family),sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 312%;
    text-transform: uppercase;
    color: #aa4b46;
    position: relative;
    cursor: pointer;
}
.menu-item a:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #AA4B46;
    height: 1px;
    width: 100%;
}
.main{
    margin-top: 20px;
}
.section{
    margin-bottom: 100px;
}
.section-header{
    max-width: 1300px;
    margin: 0 auto;
}
.open-section{
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 10px 0 rgba(170, 75, 70, 0.4);
    background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 25px;
    cursor: pointer;
}
.open-section > img{
    margin-top: 12px;
}
.section-title{
    font-family: var(--second-family),sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #aa4b46;
}
.section-subtitle{
    font-family: var(--font-family),sans-serif;
    font-weight: 400;
    font-size: 39px;
    text-align: justify;
    color: #000;
    margin-top: 50px;
    margin-bottom: 20px;
}
.section-describe{
    display: block;
    
    font-family: var(--font-family),sans-serif;
    font-weight: 400;
    font-size: 28px;
    text-align: justify;
    color: #000;

    margin-bottom: 50px;

    text-indent: 50px;
    line-height: 1.3;
}

.section-body{
    /*display: none;*/
    margin-top: 15px;
}
.active.section-header .section-describe{
    display: block;
}
.active.section-header .open-section img{
    transition: 0.3s all ease;
    transform: rotate(90deg);
}

.section-weCan-items {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 77px;
}

.section-weCan-item {
    box-shadow: 0 5px 10px 0 rgba(161, 55, 50, 0.4);
    background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
    border-radius: 4px;
    padding: 30px;
    margin-top: 10px;
}

.section-weCan-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-weCan-item-icon {

}

.section-weCan-item-title {
    font-family: var(--third-family),sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    color: #aa4b46;
}

.section-weCan-item-text {
    font-family: var(--font-family),sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-align: right;
    color: #000;
}

.section-blocks {
}

.section-block {
    margin-bottom: 80px;
}
.section-block:last-child {
    margin-bottom: 0;
}
.section-block:nth-child(even) .section-block-content {
    flex-direction: row-reverse;
}
.section-block:nth-child(even) .section-block-content .section-block-text{
    text-align: justify;
}
.section-block:nth-child(even) .section-block-link{
    left: 0;
    right: unset;
}

.section-block-title {
    text-align: center;
    font-family: var(--second-family),sans-serif;
    font-weight: 400;
    font-size: 54px;
    color: #231f20;
    margin-bottom: 30px;
}
.section-block-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 80px;
    position: relative;
}
.section-block-image {
    width: 50%;
}
.section-block-image img{
    border-radius: 4px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.section-block-text {
    width: 50%;
    font-family: var(--font-family),sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-align: justify;
    color: #000;
}

.section-block-link{
    font-family: var(--font-family),sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: rgba(87, 120, 160, 0.8);
    display: block;
    margin-top: 50px;
    position: absolute;
    right: 0;
    bottom: 20px;
}
.pre-footer-line {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}
.pre-footer-line img{
    width: 100%;
}
.footer-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.footer-socials{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 40px;
}
.footer-menu{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 80px;
}
.footer-menu-column{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5px;
}
.footer{
    padding: 40px 0;
}
.footer-menu-link{
    font-family: var(--second-family),sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #231f20;
}
.footer-copyright{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 80px;
}
.footer-copyright p{
    font-family: var(--second-family),sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #231f20;
}
.go-back{
    padding-top: 22px;
    margin-bottom: 40px;
}

.new-page-title{
    font-family: var(--second-family),sans-serif;
    font-weight: 700;
    font-size: 58px;
    color: #231f20;
    margin-bottom: 80px;
}

.new-page-items{
    display: flex;
    align-items: flex-start;
    column-gap: 80px;
    margin-bottom: 70px;
}
.new-page-text{
    width: 50%;
    font-family: var(--font-family),sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #000;
}
.new-page-gallery{
    width: 50%;
}
.new-page-video{
    border-radius: 4px;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}
.new-page-image img{
    border-radius: 4px;
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}


.load-btn{
    background: transparent;
}
.search{
    display: flex;
    align-items: center;
    justify-content: center;
}
