@import url('fonts.css');

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: unset;
}

.wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 100%;
    position: relative;
}

.hamburger {
    display: none;
}

.footer {
    display: none;
}

aside {
    max-width: 290px;
    width: 100%;
    background-color: #01312D;
    min-height: 100vh;
    position: relative;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.aside__wrapp {
    background: #01211e;
    position: fixed;
    top: 0;
    bottom: 0;
    max-width: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0;
}

.aside__top {
    width: 100%;
}

.aside__top > div:not(.aside__menu) {
    margin-left: 30px;
    margin-right: 30px;
}

.aside__menu {
    margin-top: 30px;
    width: 100%;
}

.aside__menu .menu__item {
    display: block;
    text-transform: uppercase;
    padding: 15px 30px;
    font-size: 14px;
    line-height: 120%;
}

.aside__menu .menu__item.active {
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    border-right: 2px solid #D99147;
}

.aside__info {
    margin-top: 20px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.aside__lang .lang__item {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 120%;
    color: rgba(255,255,255,0.7);
}

.aside__lang {
    color: rgba(255,255,255,0.7);
}

.aside__lang .lang__item.active {
    color: rgba(255,255,255,0.4);
}

.aside__contact {
    margin-top: 25px;
}


.aside__contact .contact__item {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.aside__contact .contact__item:not(:first-child) {
    margin-top: 15px;
}

.aside__contact .contact__item img {
    margin-right: 10px;
    padding-top: 5px;
}

.aside__social {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.aside__social .social__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}

.aside__social .social__link:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.aside__social .social__link img {
    display: block;
}

.aside__bottom {
    font-size: 14px;
    line-height: 115%;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 15px;
}

.aside__ilab {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    margin-top: 20px;
}

.aside__ilab img {
    display: block;
    margin-top: -5px;
    margin-right: 12px;
}

.main {
    display: block;
    width: 100%;
}

section {
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
}

h1 {
    font-size: 56px;
    line-height: 120%;
    max-width: 765px;
    font-family: 'YesevaOne', serif;
}

h2.section__header {
    font-size: 20px;
    line-height: 120%;
    color: #01211e;
    text-transform: uppercase;
    position: relative;
    padding-left: 75px;
}

h2::before {
    content: '';
    background: #01211E;
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    width: 55px;
    height: 2px;
}

h2.gold::before {
    background: linear-gradient(90deg, #FCCC82 50%, #D99147);
}



h1, h2, h3, h4, h5 {
    font-weight: 400;
    color: #fff;    
}

.greet {
    background: url('/img/first__bg.jpg') top center/100% no-repeat;
    background-size: 100% auto;
    padding-top: 130px;
    padding-bottom: 60px;
    width: 100%;
}


.header__descr {
  font-size: 26px;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 25px;
}

.gold {
    background: linear-gradient(90deg, #FCCC82 50%, #D99147);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
}

.pluses {
    margin-top: 140px;
    background-color: #FAFFFF;
    box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.1);
    padding: 50px 100px 50px 110px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.pluses__item {
    width: 100%;
    max-width: calc(50% - 59px);
}

.pluses__item:first-child {
    margin-bottom: 50px;
}

.pluses__item-title {
    font-size: 14px;
    line-height: 120%;
    font-weight: 700;
    color: #01211e;
    text-transform: uppercase;
    position: relative;
    padding-left: 56px;
}

.pluses__item-title::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #01211e;
    display: block;
    left: 0;
    top: 7px;
}

.pluses__item-body {
    margin-top: 20px;
    color: rgba(1, 33, 30, 0.7);
    font-size: 16px;
    line-height: 150%;
}

.about .more__btn {
    margin-top: 23px;
}

.more__btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0.7;
}

.more__btn:hover img {
    transform: translateX(3px);
}

.more__btn img {
    margin-left: 6px;
    transition: 0.5s ease;
}

.about__left {
    padding: 40px;
    background-color: #FAFFFF;
    border-left: 2px solid;
    border-top: 2px solid;
    border-bottom: 2px solid;
    width: 100%;
    border-image-slice: 1;
    border-image-source: linear-gradient(to left, #FCCC82, #D99147);
}

.about__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__right {
    flex-shrink: 0;
}

.about__img {
    height: 450px;
}

.about__img img {
    box-shadow: rgba(0, 0, 0, 0.1);
    display: block;
    position: relative;
}

.about__left-text {
    font-size: 16px;
    line-height: 150%;
}

.about__left-text p {
    color: #01211E;
    opacity: 0.7;
}

.about__left-text p:not(:first-child) {
    margin-top: 10px;
}

.about__left-text p b {
    text-transform: uppercase;
    font-weight: 500;
}

.green__bg {
    background-color: #01312D;
}

.action {
    padding-top: 145px;
    padding-bottom: 100px;
}

.action__links {
    margin-top: 50px;
}

ol {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 120px;
    list-style-type: none;
    counter-reset:  item;
}

li {
    max-width: 300px;
    position: relative;
    display: block;
    padding-left: 25px;
}

li:not(:nth-child(3n-2)) {
    margin-top: 30px;
}

li::before {
    content: '0' counter(item) '. ';
    counter-increment: item; 
    color: #fff;
    font-size: 14px;
    line-height: 140%;
    position: absolute;
    left: 0;
    top: 1px;
}

.action__link-item {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
}

li:hover .action__link-item {
    background: linear-gradient(90deg, #FCCC82 50%, #D99147);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
}

li:hover::before {
    background: linear-gradient(90deg, #FCCC82 50%, #D99147);
    -webkit-background-clip: text;
    top: 0;
    font-weight: 500;
    -webkit-text-fill-color: transparent;
    color: red;
    display: table;
}

.news {
    padding-top: 70px;
    padding-bottom: 80px;
    background-color: #fff;
}

.news__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-top: 50px;
}

.news__item {
    width: calc(25% - 27px);
    display: block;
}

.news__item:not(:last-child) {
    margin-right: 35px;
}

.slider__dots {
    display: none;
}

.news .slider__dots {
    display: none;
}

.news__item-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.news__item-date {
    margin-top: 15px;
    font-size: 14px;
    line-height: 140%;
    color: #01211e;
    opacity: 0.7;
}

.news__item-title {
    margin-top: 15px;
    height: 80px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
    color: #01211e;
}

.news__item .more__btn {
    margin-top: 20px;
}

.contacts {
    padding-top: 100px;
    padding-bottom: 50px;
}

.contacts__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;  
    margin-top: 50px; 
}

.contacts__info-item {
    width: 100%;
    max-width: 33.333%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contacts__info-item:not(:last-child)::after {
    content: '';
    background: rgba(255, 255, 255, 0.3);
    height: 82px;
    width: 1px;
    display: block;
    position: absolute;
    top: 23px;
    right: 0;

}

.contacts__item-img img {
    display: block;
}

.contacts__item-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}

.contacts__item-text {
    font-size: 16px;
    line-height: 130%;
    margin-top: 25px;
    text-align: center;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.map {
    position: relative;
    overflow: hidden;
    height: 615px;
}

.map iframe {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 155%;
}

.question__wrapp {
    width: 100%;
    padding: 60px 75px;
    box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.1);
    background-color: #faffff;
    z-index: 5;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.question__left {
    max-width: 400px;
}

.question__title {
    color: #01211E;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 120%;
    font-weight: 600;
}

.question__text {
    font-size: 16px;
    line-height: 150%;
    color: rgba(1, 33, 30, 0.7);
    margin-top: 15px;
}

.question__right {
    flex-shrink: 0;
    max-width: 460px;
    width: 100%;
}

.question__form {
    width: 100%;
    position: relative;
}

.form__elem {
    width: 100%;
}

.form__elem input {
    width: inherit;
    border: none;
    padding-bottom: 14px;
    border-bottom: 2px solid #01211e;  
    outline: none;
}

.form__elem:not(:first-child) {
    margin-top: 25px;
}

.form__elem input::placeholder {
    color: rgba(1, 33, 30, 0.7);
    font-family: 'Inter', sans-serif;
}

.question__form button {
    max-width: 230px;
    text-transform: uppercase;
    cursor: pointer;
    height: 58px;
    margin-top: 40px;
    width: 100%;
    background-color: #01211E;
    color: #fff;
    border: none;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

.question__form button:hover {
    background-color: #012c28;
}

.page__header {
    padding-top: 140px;
    padding-bottom: 140px;
}

.about__header {
    background: url('../img/about__header.jpg') top center/100% no-repeat; 
    background-size: 100% auto;
}

.services__header {
    background: url('../img/services__header.jpg') top center/100% no-repeat; 
    background-size: 100% auto;
}

.service__header {
    background: url('../img/services__header.jpg') top center/100% no-repeat; 
    background-size: 100% auto;
    padding-top: 110px;
    padding-bottom: 110px;
}

.news__header {
    background: url('../img/news__header.jpg') top center/100% no-repeat; 
    background-size: 100% auto;
}

.news__single-header {
    background: url('../img/news__single-header.jpg') top center/100% no-repeat; 
    background-size: 100% auto;
    padding-top: 110px;
    padding-bottom: 110px;    
}

.contacts__header {
    background: url('../img/contacts__header.jpg') top center/100% no-repeat; 
    background-size: 100% auto;
}

.news__single-header h1,
.service__header h1 {
    max-width: 100%;
}

.breadcrumbs {
    padding: 30px 0 40px;
    color: #01211E;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
}

.breadcrumbs__active {
    opacity: 0.4;
}

.breadcrumbs__link {
    opacity: 0.7;
    
}

.breadcrumbs__slash {
    opacity: 0.7;
    margin: 0 8px;    
}

.about__block {
    padding-bottom: 45px;
}

.about__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.about__item:not(:first-child) {
    margin-top: 50px;
}

.about__item-title {
    flex-shrink: 0;
    padding-left: 75px;
    position: relative;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #01211E;
    max-width: 350px;
    width: 100%;
    margin-right: 20px;
}

.about__item-title::before {
    width: 55px;
    height: 2px;
    content: '';
    background: #01211E;
    display: flex;
    position: absolute;
    left: 0;
    top: 12px;
}

.about__body-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 141.02%;
    color: #01211E;
}

.about__body-text {
    margin-top: 20px;
}

.about__body-text p:not(:first-child) {
    margin-top: 10px;
}

.about__body-text p {
    font-size: 16px;
    line-height: 23px;
    color: rgba(1, 33, 30, 0.7);
}

.about__body-block:not(:first-child) {
    margin-top: 30px;
}

.about__body-text p b {
    font-weight: 500;
    text-transform: uppercase;
}

.about__body-list {
    margin-top: 20px;
    font-size: 16px;
    line-height: 171.02%;
    color: rgba(1, 33, 30, 0.7);
}

.about__list-item {
    padding-left: 25px;
    position: relative;
}

.about__list-item::before {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 12px;
    left: 10px;
    background-color: #01211E;
    opacity: 0.7;
    border-radius: 100%;
}

.about__item-cols {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.about__col-items {
    margin-top: 20px;
}

.about__col-item {
    opacity: 0.7;
    color: #01211e;
    font-size: 16px;
    line-height: 140%;
    padding-left: 26px;
    position: relative;
}

.about__col-item::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    display: block;
    width: 15px;
    height: 1px;
    background-color: #01211e;
    opacity: 0.7;
}

.about__col-item:not(:first-child) {
    margin-top: 15px;
}

.about__item-team {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.about__team-item {
    width: 100%;
    max-width: calc(33.333% - 14px);
    margin-bottom: 40px;
}

.about__team-item:not(:nth-child(3n)) {
    margin-right: 20px;
}

.about__team-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about__team-info {
    margin-top: 15px;
    padding-left: 15px;
    border-left: 1px solid #01211E;
}

.about__team-name {
    font-weight: 600;
    color: #01211e;
    font-size: 16px;
    line-height: 120%;
}

.about__team-pos {
    margin-top: 10px;
    color: #01211E;
    opacity: 0.7;
    font-size: 14px;
    line-height: 120%;
}

.about__team-spec {
    margin-top: 15px;
    margin-left: 15px;
}

.about__spec-title {
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    color: #01211e;
}

.about__spec-value {
    margin-top: 5px;
    font-size: 12px;
    line-height: 120%;
    color: #01211e;
}

.services__block{
    color: #01211e;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
}

.services {
    padding-bottom: 70px;
}

.services__block {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    max-width: 100%;
    padding-left: 0;
    border-bottom: 1px solid rgba(1, 33, 30, 0.2);
}

.services__block:hover {
    color: #01211e;
}

.services__block::before {
    display: none;
    content: '';
}

.services__block:hover::before {
    background: #01211e;
    -webkit-background-clip: text;
}

.services__block-list {
    padding-left: 25px;
    transform: translateY(-130%);
    padding-bottom: 25px;
    transition: 0.5s ease;
    position: absolute;
}

.services__block.open .services__block-list {
    position: relative;
    transform: translateY(0%);
}

.services__list {
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    list-style: none;
}


.services__list-col {
    width: calc(50% - 15px);
    flex-shrink: 0;
}

.services__list-col .services__block:first-child {
    border-top: 1px solid rgba(1, 33, 30, 0.2);
}

.services__block-top {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 5;
}

.services__block-plus {
    height: 19px;
    width: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__block-plus span {
    position: absolute;
    width: 18px;
    height: 2px;
    margin-top: -2px;
    background-color: #01211e;
}

.services__block-plus span:last-child {
    transform: rotate(90deg);
    transition: 0.5s ease;
}

.services__block.open .services__block-plus span:last-child {
    opacity: 0;
}

.services__block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services__list-item {
    margin-top: 10px;
    display: block;
    text-transform: none;
    font-size: 14px;
    line-height: 141.02%;
    color: #01211e;
    opacity: 0.7;
}

.services__list-item:first-child {
    margin-top: 0;
}

.services__list-item:hover {
    opacity: 1;
    font-weight: 500;
}

.services__block:not(:nth-child(3n-2)) {
    margin-top: 0;
}

.service {
    padding-bottom: 70px;
}

.service__text p {
    font-size: 16px;
    line-height: 150%;
    color: #01211e;
}

.service__text p:not(:first-child) {
    margin-top: 22px;
}

.service__title {
    font-size: 20px;
    line-height: 140%;
    color: #01211e;
    font-weight: 600;
    margin-top: 22px;
}

.service__list {
    margin-top: 15px;
}

.service__list-item {
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #01211e;
}

.service__list-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #01211e;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
}

.service__cards {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.service__card:not(:last-child) {
    margin-right: 20px;
}

.service__card {
    width: calc(25% - 25px);
    background-color: #FAFFFF;
    padding: 25px;
    border: 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #FCCC82, #D99147);
    display: flex;
    flex-direction: column;
}

.service__card-text {
    margin-top: 15px;
    color: #01211e;
    opacity: 0.7;
    font-size: 14px;
    line-height: 150%;
}

.service__card-title {
    margin-top: 15px;
    font-weight: 600;
    color: #01211e;
    font-size: 16px;
    line-height: 150%;
}

.news__page {
    padding-bottom: 80px;
}

.news__page .news__list {
    flex-wrap: wrap;
    margin-top: 0;
}

.news__page .news__item:nth-child(4n) {
    margin-right: 0;
}

.news__page .news__item {
    margin-bottom: 40px;
}

.more__news-btn {
    max-width: 230px;
    width: 100%;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    background-color: #01211E;
    margin-left: auto;
    margin-right: auto;
}

.more__news-btn:hover {
    background-color: #01302b;
}

.single__news-more .news__item-title {
    height: unset;
}

.single__news-more {
    margin-left: 50px;
    flex-shrink: 0;
    max-width: 270px;
    margin-bottom: 50px;
}

.single__wrapp {
    flex-direction: column;
}

.single__news-more .news__item {
    margin-top: 30px;
    margin-right: 0;
    width: 100%;
}

.single__news-more .news__item:nth-child(4) {
    display: none;
}

.single__news-title {
    text-transform: uppercase;
    color: #01211e;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
}

.single__news {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.single__body {
    font-size: 16px;
    line-height: 150%;
    color: #01211e;
}

.single__body p {
    margin-bottom: 22px;
}

.share {
    border-top: 1px solid rgba(1, 33, 30, 0.2);
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.share__text {
    margin-right: 30px;
}

.share__link {
    margin-right: 15px;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(1, 33, 30, 0.05);
}

.share__link:hover {
    background-color: rgba(1, 33, 30, 0.08);
}

.single__bottom {
    padding-bottom: 70px;
}

.single__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.single__picture {
    position: relative;
    width: 100%;
    height: 270px;
    max-width: 390px;
    float: right;
}

.single__picture img {
    width: 100%;
    display: block;
}

.single__picture-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    font-size: 14px;
    line-height: 150%;
    color: #01211E;
    padding: 10px 15px;
    background-color:  rgba(255, 255, 255, 0.9);
}

.contacts__page .contacts__item-title {
    color: #01211e;
    opacity: 0.7;
}

.contacts__page .contacts__item-text {
    color: #01211e;
}

.contacts__page .contacts__info-item:not(:last-child)::after {
    background: rgba(1, 33, 30, 0.3);
}

.contacts__page {
    padding-bottom: 40px;
    padding-top: 0;
}

.contacts__page .contacts__info {
    margin-top: 0;
}

.contacts__header ~ .map {
    margin-top: 60px;
}

@media(max-width: 1599px) {
    aside {
        max-width: 100%;
        min-height: unset;
        position: fixed;
        top: 0;
        z-index: 10;
        height: 60px;
    }
    .wrapper {
        display: block;
    }
    .aside__wrapp {
        padding: 13px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100vw;
        bottom: unset;
        z-index: 20;
    }
    .aside__top > div:not(.aside__menu) {
        padding: 0;
        border-top: none;
        margin: 0;
    }
    .aside__info {
        display: flex;
    }
    .aside__contact {
        margin-top: 0;
        margin-left: 30px;
    }
    .aside__social {
        display: none;
    }
    .aside__contact .contact__item:not(:first-child) {
        display: none;
    }
    .aside__menu .menu__item.active {
        background-color: unset;
        border-right: none;
        width: unset;        
        border-bottom: 2px solid #D99147;
    }
    .aside__menu .menu__item {
        padding: 8px 0;
        margin: 0 17px;
        flex-shrink: 0;
    }
    .aside__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .aside__menu {
        width: unset;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-shrink: 0;
        margin-top: 0;
    }
    .aside__logo img {
        width: 120px;
    }
    .aside__bottom {
        display: none;
    }
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #01211E;
        padding: 13px 20px;
    }

    .footer .aside__social {
        display: flex;
        margin-top: 0;
    }

    .footer .aside__copy {
        font-size: 14px;
        line-height: 115%;
        color: #fff;
        opacity: 0.4;
    }

    .footer .aside__copy br {
        display: none;
    }

    .footer .aside__ilab {
        color: rgba(255,255,255,0.4);
        font-size: 14px;
        line-height: 115%;
        margin-top: 0;
    }

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: 46px;
    }

    .greet h1 {
        max-width: 615px;
    }

    .header__descr {
        font-size: 22px;
    }

    .pluses {
        margin-top: 80px;
        padding: 50px 40px;
    }

    .about__img {
        height: 470px;
    }

    .action {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .contacts {
        padding-top: 80px;
    }

    .question__wrapp {
        padding: 60px 40px;
    }

    .page {
        margin-top: 60px;
    }
    
    .page__header {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .about__item-title {
        margin-right: 30px;
        max-width: 312px;
    }

    .about__block {
        padding-bottom: 20px;
    }

    .service__text p {
        font-size: 14px;
    }

    .service__title {
        font-size: 18px;
        margin-top: 10px;
    }

    .service__text p:not(:first-child) {
        margin-top: 10px;
    }

    .service__list-item {
        font-size: 14px;
    }

    .service__list {
        margin-top: 10px;
    }

    .service__cards {
        flex-wrap: wrap;
    }
    
    .service__card {
        width: calc(50% - 30px);
        margin-bottom: 60px;
        padding: 40px;
    }

    .service__card:nth-child(2n - 1) {
        margin-right: 60px;
    }

    .service__card:nth-child(2n ) {
        margin-right: 0;
    }

    .service {
        padding-bottom: 0;
    }

    .news__item:not(:nth-child(4n)) {
        margin-right: 20px;
    }

    .single__wrapp {
        flex-direction: row;
    }

    .single__news-more .news__item:nth-child(4) {
        display: block;
    }

    .news__item {
        width: calc(25% - 15px);
    }
    
    .news__item-title {
        overflow: hidden;
    }

    .service__header {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .news__single-header {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .single__news-more {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-left: 0;
        max-width: 100%;
    }

    .single__news-more .news__item {
        width: calc(25% - 15px);
    }

    .single__news-more .news__item:nth-child(5) {
        display: block;
    }
    
    .single__news {
        flex-wrap: wrap;
    }

    .single__news-title {
        width: 100%;
    }

    .single__news-more .news__item:not(:nth-child(5n)) {
        margin-right: 20px;
    }

    .single__news-more .news__item:nth-child(5n) {
        margin-right: 0;
    }

    .single__news-more .news__item-title {
        height: 80px;
    }
    .single__news-more {
        margin-bottom: 80px;
    }
    .contacts__page {
        padding-top: 0;
    }

    .news__index {
        padding-right: 0;
    }

    .news__container  {
        padding-right: 20px;
    }

    .news .slider__dots {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35px;
        padding-top: 10px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        border-radius: 0;
        margin: 0 10px;
    }

    .swiper-pagination-bullet-active {
        background: linear-gradient(94.44deg, #FCCC82 1.62%, #D99147 99.93%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .swiper-pagination-bullet-active::after {

        content: '';

        width: 17px;
        height: 17px;
        display: block;
        flex-shrink: 0;

        border: 1px solid;
        border-image-slice: 1;
        border-image-source: linear-gradient(to left, #FCCC82, #D99147);
        
    }
}


@media(max-width: 1023px) {
    .aside__menu {
        flex-direction: column;
        transition: 0.5s ease;
        position: fixed;
        transform: translateY(-150%);
    }
    .aside__menu.active {
        transform: translateY(0);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        justify-content: center;
        background-color: #01312D;
    }
    .hamburger {
        width: 40px;
        height: 40px;
        background-color: rgba(255,255,255,0.05);
        display: block;
        order: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 40px;
        z-index: 25;
    }
    .aside__logo,
    .aside__info {
        z-index: 25;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
        background-color: #fff;
        border-radius: 15px;
        display: block;
        margin: 3px;
        transition: 0.5s ease;
    }
    .hamburger.open span:last-child {
        opacity: 0;
    }
    .hamburger.open span {
        position: absolute;

    }
    .hamburger.open span:first-child {
        transform: rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        transform: rotate(-45deg);

    }
    .aside__contact {
        order: 2;
        margin-left: 40px;
    }
    .aside__info {
        align-items: center;
    }

    .greet {
        padding-top: 140px;
        padding-bottom: 60px;
        background-size: 120% 460px;
    }

    .greet h1 {
        font-size: 36px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        font-size: 36px;
    }

    .header__descr {
        margin-top: 30px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .action ol {
        height: 220px;
        justify-content: unset;
    }

    .main {
        margin-top: 60px;
    }

    .pluses {
        margin-top: 100px;
        padding: 30px;
    }

    .pluses__item {
        max-width: calc(50% - 20px);
    }

    .pluses__item:nth-child(2n - 1) {
        margin-right: 40px;
    }

    .pluses__item:nth-child(2n) {
        margin-right: 0;
    }

    .pluses__item-body {
        font-size: 14px;
        margin-top: 10px;
    }

    .pluses__item-title {
        line-height: 150%;
    }

    .pluses__item:nth-child(3),
    .pluses__item:nth-child(4) {
        margin-top: 30px;
    }

    .about__left {
        padding: 0;
        border: none;
        margin-top: 55px;
    }

    .about__body {
        align-items: flex-start;
        padding-bottom: 58px;
    }

    .about h2.section__header {
        position: absolute;
    }

    .about__img {
        height: 370px;
        margin-left: 40px;
    }

    .about__img img {
        width: 345px;
        height: 100%;
    }

    .about__left-text {
        font-size: 14px;
    }

    .action {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    li:not(:nth-child(3n-2)) {
        margin-top: 0;
    }

    .action__links li:not(:first-child):not(:nth-child(6)) {
        margin-top: 30px;
    }

    .action__links li {
        width: 100%;
        max-width: calc(50% - 55px);
    }

    .news {
        padding-bottom: 70px;
    }

    .contacts__info-item:not(:last-child)::after {
        display: none;
    }

    .contacts__item-text a {
        display: block;
    }


    .question__left,
    .question__right {
        max-width: calc(50% - 20px);
    }

    .question__wrapp {
        padding: 60px 30px;
    }
    
    .contacts {
        padding-top: 70px;
    }

    .page__header {
        background-size: cover;
    }

    .about__item {
        flex-direction: column;
    }

    .about__item-title {
        margin-bottom: 30px;
    }

    .about__item:not(:first-child) {
        margin-top: 70px;
    }

    .services__list-col {
        width: 100%;
    }

    .services__list {
        flex-direction: column;
    }

    .service__card:nth-child(2n - 1) {
        margin-right: 40px;
    }

    .service__card {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }

    .service__cards {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .news__page .news__item:nth-child(1n) {
        margin-right: 18px;
    }
    .news__page .news__item:nth-child(3n) {
        margin-right: 0;
    }
    
    .news__page {
        padding-bottom: 70px;
    }

    .news__page .news__item {
        margin-bottom: 30px;
        width: calc(33.333% - 12px);
    }

    .single__picture {
        max-width: 344px;
        height: 217px;
        overflow: hidden;
        margin-left: 20px;
    }

    .single__text {
        font-size: 14px;
    }

    .share {
        margin-top: 20px;
    }

    .single__bottom {
        padding-bottom: 60px;
    }

    .single__news-more .news__item:nth-child(5n) {
        display: none;
    }

    .single__news-more .news__item {
        width: calc(33.333% - 12px);
    }

    .single__news-more .news__item:nth-child(1),
    .single__news-more .news__item:nth-child(2) {
        margin-right: 17px;
    }
    .single__news-more .news__item:nth-child(3) {
        margin-right: 0;
    }

    .single__news-more .news__item {
        margin-top: 20px;
    }

    .single__news-more .news__item:nth-child(4) {
        display: none;
    }

    .news__single-header h1 br {
        display: none;
    }

    .contacts__page {
        padding-top: 0;
    }
}


@media(max-width: 767px) {
    .aside__contact .contact__item {
        display: none;
    }
    .hamburger {
        margin-left: -20px;
    }
    .aside__lang {
        margin-left: auto;
    }
    .aside__info {
        justify-content: flex-end;
        align-items: center;
    }
    .aside__lang {
        display: flex;
        flex-shrink: 0;
    }

    .pluses {
        box-shadow: none;
        flex-direction: column;
        position: relative;
        padding: 0;
        margin-top: 150px;
    }

    .pluses__item:nth-child(1n) {
        width: 100%;
        margin-right: 0;
        max-width: 100%;
    }

    .greet h1 {
        font-size: 30px;
    }

    .header__descr {
        font-size: 14px;
    }

    .greet {
        background-size: 190% 360px;
        padding-top: 90px;
        padding-bottom: 30px;
        box-shadow: 0px 10px 25px 5px rgb(0 0 0 / 10%);
    }

    .pluses__item-title {
        padding-left: 35px;
    }

    .pluses__item:nth-child(1n) {
        margin-bottom: 25px;
        margin-top: 0;
    }

    section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about {
        padding-top: 60px;
    }

    .about h2.section__header {
        position: relative;
    }

    .about__body .about__right {
        order: 1;
    }
    .about__body .about__left {
        order: 2;
    }

    .about__body {
        display: flex;
        flex-direction: column;
    }

    .about__img {
        margin-top: 30px;
        margin-left: 0;
        width: 100%;
        height: 238px;
    }

    .about__img img {
        width: 100%;
        height: 238px;
        display: block;
        object-fit: cover;
    }

    .about__body .about__right {
        width: 100%;
    }

    .about__left {
        margin-top: 20px;
    }

    .action ol {
        height: 100%;
    }

    .action__links li {
        max-width: 100%;
    }

    .action__links li:not(:first-child) {
        margin-top: 20px;
    }

    .news__container {
        padding-right: 0;
    }

    .news__index {
        padding-right: 15px;
    }

    .news {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .action__links {
        margin-top: 30px;
    }

    .news__list {
        margin-top: 30px;
    }

    .contacts {
        padding-top: 60px;
        padding-bottom: 35px;
    }

    .contacts__info {
        margin-top: 0;
        flex-direction: column;
    }

    .contacts__info-item {
        margin-top: 30px;
        max-width: 100%;
    }

    h2::before {
        width: 45px;
    }

    h2.section__header {
        padding-left: 55px;
        font-size: 16px;
    }

    .map {
        padding-left: 0;
        padding-right: 0;
    }

    .question__wrapp {
        flex-direction: column;
        padding: 60px 15px;
    }

    .question__left, .question__right {
        max-width: 100%;
    }

    .question__right {
        margin-top: 30px;
    }

    .question__form button {
        max-width: 100%;
    }

    .map {
        height: 800px;
    }

    .map iframe {
        height: 185%;
    }

    .footer {
        flex-direction: column;
        padding: 25px 15px;
    }

    .footer .aside__social {
        margin: 20px 0;
    }

    h1 {
        font-size: 30px;
        text-align: center;
    }

    .page__header {
        padding-top: 86px;
        padding-bottom: 86px;
    }

    .about__team-item {
        max-width: 100%;
    }
    .about__team-item:nth-child(1n) {
        margin-right: 0;
    }

    .about__item-title {
        padding-left: 55px;
        font-size: 16px;
        line-height: 20px;
    }

    .about__item-title::before {
        top: 8px;
        width: 45px;
    }

    .about__body-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .about__body-title {
        font-size: 16px;
    }

    .about__body-list {
        font-size: 14px;
    }

    .about__list-item::before {
        top: 11px;
    }

    .about__item-title br {
        display: none;
    }

    .about__item-cols {
        flex-direction: column;
    }

    .about__item-col:first-child {
        margin-bottom: 20px;
    }

    .service__header {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .breadcrumbs {
        padding-bottom: 30px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .service__card:nth-child(1n) {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
        padding: 25px;
    }

    h2::before {
        top: 8px;
    }

    .service__cards {
        margin-bottom: 50px;
    }

    .news__page .news__item:nth-child(1n) {
        width: 100%;
        margin-right: 0;
    }

    .news__page .news__item-title {
        height: unset;
    }

    .single__picture-text {
        display: none;
    }

    .single__news .slider__dots {
        display: flex;
        justify-content: center;
        height: 35px;
        margin-top: 25px;
    }

    .single__news-more {
        margin-bottom: 60px;
    }

    .news__single-header {
        min-height: 215px;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contacts__page {
        padding-top: 0;
    }

    .consultation {
        padding-left: 0;
        padding-right: 0;
    }

    .contacts__header ~ .map {
        height: 340px;
    }

    .contacts__header ~ .map iframe {
        height: 165%;
    }
}

.success-message {
    padding: 10px;
    background-color: #0080001a;
    color: green;
    border-radius: 5px;
}

.error-message {
    padding: 10px;
    background-color: #ff000029;
    color: red;
    border-radius: 5px;
}