*, *::before,*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

input:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
} 

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1;
    font-family: Manrope;
    color: #333333;
}

.wrapper {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.title {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.375;
}
.title_center{
	text-align: center;
}

/* Rating */

.simple-rating {
	position: relative;
	font-size: 24px;
	display: inline-block;
}

.simple-rating::before {
	content: "★★★★★";
	display: block;
}

.simple-rating__items {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row-reverse;
	overflow: hidden;
}

.simple-rating__item {
	position: absolute;
	width: 0%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	top: 0;
	left: 0;
}

.simple-rating__label {
	flex: 0 0 20%;
	height: 100%;
	cursor: pointer;
	color: #f0dbbb;
}

.simple-rating__label::before {
	content: "★";
	display: block;
	transition: color 0.3s ease 0s;
}

.simple-rating__item:checked,
.simple-rating__item:checked~.simple-rating__label {
	color: #FBB040;
}

.simple-rating__label:hover,
.simple-rating__label:hover~.simple-rating__label,
.simple-rating__label:checked~.simple-rating__label:hover {
	color: #ffef9f;
}

@media (max-width: 767.98px) {
    .title {
        font-size: 30px;
        line-height: ;
    }
}

.page {
    flex: 1 1 auto;
}

[class*="__container"] {
    max-width: 1170px;
    margin: 0 auto;
}

@media (max-width: 1199.98px) {
    [class*="__container"] {
        max-width: 970px;
    }
}

@media (max-width: 990.98px) {
    [class*="__container"] {
        max-width: 750px;
    }
}

@media (max-width: 767.98px) {
    [class*="__container"] {
        max-width: none;
        padding: 0px 15px;
    }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}
.header__container {
    min-height: 103px;
    padding-top: 10px;
    display: flex;
    padding-bottom: 10px;
    column-gap: 10px;
    row-gap: 15px;  
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .header__container {
        min-height: 0;
        flex-direction: column;
    }
}
.header__logo {
    font-weight: 800;
    font-size: 23px;
    color: inherit;
}
.header__menu {}

/* Menu-SLider */
.menu {
}
.menu__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 46px;
    row-gap: 15px;
}
.menu__item {
}
.menu__link {
    font-size: 13px;
    font-weight: 700;
    color: inherit;
}
.menu__link:hover {
    text-decoration: underline;
}
@media (max-width: 767.98px) {
    .menu__list {
        justify-content: center;
    }
    .menu__link {
        font-size: 18px;
    }
}
/* ===================== */

.main-block {
    padding-bottom: 110px;
}
.main-block__container {
    position: relative;
    padding-top: 183px;
}
.main-block__container::after {
    background-color: #c4dfe6;
    content: "";
    position: absolute;
    width: 200%;
    top: 0;
    left: 68%;
    height: 100%;
}
.main-block__body {
    margin-bottom: 14px;
}
.body-main-block {
    position: relative;
    display: flex;
    align-items: flex-start;
}
.body-main-block__content {
    flex: 0 1 50%;
}

.content-main-block {
    padding-top: 40px;
    position: relative;
    z-index: 2;
}
.content-main-block__body {
    padding-right: 80px;
}
.content-main-block__sub-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    color: #003b46;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.content-main-block__title {
    font-weight: 800;
    font-size: 54px;
    line-height: 73px;
    margin-bottom: 20px;
}
.content-main-block__text {
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 0.01em;
    margin-bottom: 45px;
}
.content-main-block__form {
}
.form-main-block {
    position: relative;
    z-index: 2;
    display: flex;
    margin-right: -188px;
    min-height: 86px;
    background:#fff url('../img/main/home.svg') 33px 32px no-repeat;

}
.form-main-block__input {
    height: 86px;
    border: 1px solid #003b46;
    padding: 0px 0px 0px 74px;
    background-color: transparent;
    width: 100%;
    font-size: 20px;
    flex: 1 1 auto;
}
.form-main-block__input::placeholder {
    color: rgba(49, 53, 59, 0.3);
}
.form-main-block__button {
    height: 86px;
    cursor: pointer;
    width: 188px;
    flex: 0 0 188px;
    font-weight: 600;
    color: #fff;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 0.01em;
    padding: 5px 15px;
    transition: all 0.3s ease 0s;
    background-color: #003b46;
}
.form-main-block__button:hover{
    background-color: #07575b;
}

.body-main-block__slider {
    flex: 0 1 50%;
    min-width: 0;
}

.slider-main-block {}
.slider-main-block__wrapper {}
.slider-main-block__slide {
    position: relative;
    padding-bottom: 95%;
}
.slider-main-block__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-main-block__arrows {
    position: absolute;
    bottom: -52px;
    right: 0;
    display: flex;
    gap: 40px;
    align-items:center
}

.body-main-block__arrow.swiper-button-prev,
.body-main-block__arrow.swiper-button-next {
    position: static;
    height: 20px;
    width: 11px;
    background: url('../img/icons/arrow.svg') 0 0 / 100% no-repeat;
}
.body-main-block__arrow::after {
    display: none;
}

.body-main-block__arrow.swiper-button-prev {
    transform: rotate(-180deg);
}

/* .swiper-button-prev{}
.swiper-button-next{} */

.body-main-block__slider {
    flex: 0 1 50%;
    min-width: 0;
}

.main-block__partners {
}
.partners-main-block {
    max-width: 65%;
}
.partners-main-block__label {
    font-size: 17px;
    margin-bottom: 25px;
}
.partners-main-block__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}
.partners-main-block__item {}
.partners-main-block__item img{
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .main-block__container {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .content-main-block__body {
        padding-right: 0px;
    }
    .body-main-block {
        display: block;
    }
    .form-main-block {
        margin-right: 0;
    }
    .body-main-block__content {
        margin-bottom: 40px;
    }
    .main-block__body {
        margin-bottom: 40px;
    }
    .partners-main-block {
        position: relative;
        z-index: 2;
        max-width: none;
    }
}
@media (max-width: 990.98px) {
    .main-block {
        padding-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .partners-main-block__items {
        justify-content: center;
    }
    .content-main-block__title {
        font-size: 30px;
        line-height: 120%;
    }

    .form-main-block {
        display: block;
    }
    .form-main-block__button {
        width: 100%;
    }
    .main-block {
        padding-bottom: 30px;
    }
    
}
@media (max-width: 479.98px) {
    .form-main-block {
        background: #fff;
    }
    .form-main-block__input {
        padding: 0px 15px;
    }
}

/* Page How */

.how {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media (max-width: 990.98px) {
    .how {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .how {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.how__container {
}
.how__title {
    margin-bottom: 70px;
}
.title {
}
.how__items {
    display: grid;
    align-items: start;
    padding: 0px 35px;
    grid-template-columns: repeat(3, minmax(auto,260px));
    column-gap: 30px;
    row-gap: 45px;
    justify-content: space-between;
}

@media (min-width: 991px) {
    .how__items {
        padding: 0px 35px;
    }
}

@media (max-width: 991px) {
    .how__items {
        padding: 0px 0px;
    }
}

.how__item {
        
}

.item-how {
    text-align: center;
    display: grid;
    justify-items: center;
    position: relative;
}

/* .item-how:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 41px;
    transform: translate(85%, 0px);
    width: 100%;
    height: 11px;
    background: url('../img/how_icon/border_1.svg') 0 0 / auto 100% no-repeat;
    max-width: 210px;
}

.item-how_2:not(:last-child):after {
    transform: translate(86.5%, 0px) rotate(-180deg);
}
.item-how:last-child::after {
    display: none;
} */

.item-how_1 .item-how__icon {
    background: #003b46;
}
.item-how_2 .item-how__icon {
    background: #003b46;
}
.item-how_3 .item-how__icon {
    background: #003b46;
}

.item-how__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin-bottom: 50px;
}


.item-how__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
}
.item-how__text {
    font-size: 16px;
    line-height: 26px;
}

@media (max-width: 1199.98px) {
    .item-how:not(:last-child)::after {
        width: 170px;
        transform: translate(69%, 0px);
    }
    .item-how_2:not(:last-child)::after {
        transform: translate(69%, 0px) rotate(-180deg);
    }
}
@media (max-width: 990.98px) {
    .item-how:not(:last-child)::after {
        width: 130px;
        transform: translate(63%, 0px);
    }
    .item-how_2:not(:last-child)::after {
        transform: translate(63%, 0px) rotate(-180deg);
    }
}

@media (max-width: 767.98px) {
    .how-items {
        grid-template-columns: 1fr  ;
    }
    .item-how:not(last-child)::after {
        display: none;
    }
    .item-how__icon {
        margin-bottom: 20px;
    }
    .how__title {
        margin-bottom: 30px;
    }
}

/* Deals */

.deals {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media(max-width: 990.98px) {
    .deals {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media(max-width: 767.98px) {
    .deals {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.deals__container {
}
.deals__header {
    margin-bottom: 50px;
}
.deals__tabs {
}

.header-deals {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.header-deals__content {
    flex: 1 1 auto;
}
.header-deals__title {
}
.header-deals__title:not(:last-child) {
    margin-bottom: 15px;
}
.header-deals__text {
    max-width: 470px;
    line-height: 24px;
}
.header-deals__link {
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease 0s;
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    color: #fff;
    line-height: 23px;
    padding: 22px 33px;
    background-color: #003b46;
}

@media (max-width: 767.98px) {
    .header-deals__link {
        width: 100%;
    }
}

.header-deals__link:hover{
    background-color: #07575b;
}

.tabs-deals {
}
.tabs-deals__nav {
    display: flex;
    column-gap: 50px;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}
.tabs-deals__button {
    font-size: 19px;
    line-height: 26px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease 0s;
    background-color: transparent;
}
.tabs-deals__button::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 1px;
    transition: width 0.3s ease 0s;
    background-color: #003b46;
}
.tabs-deals__button:hover {
    color: #003b46;
}
.tabs-deals__button:hover::after {
    width: 100%;
}
.tabs-deals__button.active {
    color: #003b46;
}
.tabs-deals__button.active::after {
    width: 100%     ;
}
.tabs-deals__body {
}
.tabs-deals__item {
    display: none;
}
.tabs-deals__item.active {
    display: block;
}

.item-tabs {
}
.item-tabs__items {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.item-tabs__item {
    position: relative;
}
.item-tabs__options {
    position: absolute;
    left: 14px;
    z-index: 2;
    top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.item-tabs__option {
    font-size: 12px;
    background: rgba (0, 0, 0, 0.4);
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    color: #fff;
    padding: 6px 12px;
    transition: background-color 0.3s ease 0s;
}
.item-tabs__option:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.item-tabs__image {
    position: relative;
    display: block;
    padding-bottom: 81%;
    border-radius: 5px; 
    overflow: hidden;
}
.item-tabs__image:hover img{
    transform: scale(1.1);
}
.item-tabs__image img{
    transition: transform 0.3s ease 0s;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* Featured */

.page__featured {
}
.featured {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media (max-width: 990.98px) {
    .featured {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .featured {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.featured__container {
    align-self: end;
}
.featured__title {
    margin-bottom: 95px;
}
.title {
}
.title_center {
}
.featured__body {
    background: #c4dfe6;
    padding: 40px 40px 80px 40px;
    display: grid;
    column-gap: 77px;
    row-gap: 40px;
    align-items: end;
    grid-template-columns: repeat(2,1fr);
}

@media (max-width: 990.98px) {
    .featured__body{
        display: flex;
        flex-direction: column-reverse;
    } 
    .featured__title {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .featured__body {
        margin: 0px -15px;
        padding: 20px 15px 20px 15px;
    }
    .featured__title {
        margin-bottom: 30px;
    }
}

.featured__images {

}
.images-featured {
    display: grid;
    justify-items: center;
}
.images-featured__item img{
    max-width: 100%;
}

.images-featured__item_mini{
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 48px 58px 44px 0px rgba(0, 0, 0, 0.09),0px 3.02px 3.15px 0px rgba(0, 0, 0, 0.01),0px 13.28px 6.52px 0px rgba(0, 0, 0, 0.02),0px 32.6px 13px 0px rgba(0, 0, 0, 0.02),0px 62.79px 25.48px 0px rgba(0, 0, 0, 0.02),0px 105.65px 46.85px 0px rgba(0, 0, 0, 0.03),0px 163px 80px 0px rgba(0, 0, 0, 0.04);
    margin-top: -114px;
}

.featured__content {
    display: flex;
    flex-direction: column;
}
.content-featured {
}
.content-featured__body {
    flex: 1 1 auto;
    padding-top: 40px;
}

.content-featured__title {
    font-weight: 600;
    font-size: 31px;
    line-height: 1.35;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    .content-featured__title {
        font-size: 24px;
    }
}

.content-featured__text {
    line-height: 1.5;
    margin-bottom: 40px;
}
.content-featured__options {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 55px;
}
.options-content-featured {
}
.options-content-featured__item {

}
.options-content-featured__label {
    font-weight: 700;
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 12px;
}
.options-content-featured__value {
    font-size: 17px;
}
.content-featured__link {
    border-radius: 5px;
    
    background: #003b46;
    color: #fff;
    text-transform: uppercase;
    padding: 16px 35px;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 150%;
    max-width: 412px;
    border-radius: 5px;
}
.content-featured__link:hover {
    background: #07575b;
}

@media (min-width: 991px) {
    .content-featured__body {
        flex: 1 1 auto;
        padding-top: 40px;
        max-width: 412px;
    }
    .content-featured__link {
        max-width: 412px;
    }
}

@media (max-width: 479.98px) {
    .content-featured__options {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 35px;
    }
}

/* Reviews */

.reviews {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media (max-width: 990.98px) {
    .reviews {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .reviews {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.reviews__container {
}
.reviews__title {
    margin-bottom: 50px;
    max-width: 570px;
}
.title {
}
.reviews__items {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(290px, 370px));
}
.reviews__item {
}
.item-reviews {
    color: inherit;
    padding: 50px 40px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}
.item-reviews:hover{
    border: 1px solid transparent;
    box-shadow: 3px 44px 54px 0px rgba(0, 0, 0, 0.08),0px 1.85px 3.15px 0px rgba(0, 0, 0, 0.01),0px 8.15px 6.52px 0px rgba(0, 0, 0, 0.01),0px 20px 13px 0px rgba(0, 0, 0, 0.01),0px 38.52px 25.48px 0px rgba(0, 0, 0, 0.02),0px 64.81px 46.85px 0px rgba(0, 0, 0, 0.02),0px 100px 80px 0px rgba(0, 0, 0, 0.03);
}

.item-reviews__raiting {
    margin-bottom: 33px;
}
.simple-rating {
}
.simple-rating__items {
}
.simple-rating__item {
}
.simple-rating__label {
}
.item-reviews__text {
    line-height: 1.5;
    margin-bottom: 50px;
}
.item-reviews__author {
}
.author-item-reviews {
    display: flex;
    gap: 20px;
    align-items: center;
}
.author-item-reviews__avatar {
    flex: 0 0 48px;
    border-radius: 50%;
    overflow: hidden;
}
.author-item-reviews__body {

}
.author-item-reviews__name {
    font-weight: 700;
    line-height: 22px;
}
.author-item-reviews__location {
    color: #666666;
    font-size: 14px;
    line-height: 19px;
}

.reviews__footer {
    padding-top: 85px;
}
.footer-reviews {
    display: flex;
    gap: 100px;
    column-gap: 100px;
}

@media (max-width: 991.98px) {
    .footer-reviews{
        flex-wrap: wrap;
        row-gap: 30px;
    }
}

.footer-reviews__partners {
    flex: 1 1 auto;
}
.partners-footer-reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.partners-footer-reviews__item {}
.footer-reviews__info {
    flex: 0 0 300px;
    line-height: 1.5;
}

.footer-reviews__info a {
    color: #66a5ad;
    text-decoration: underline;
}

.footer-reviews__info a:hover {
    text-decoration: none;
}

/* Subscribe */

.subscribe {
}

.subscribe {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media (max-width: 990.98px) {
    .subscribe {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767.98px) {
    .subscribe {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.subscribe__header {
    text-align: center;
    margin-bottom: 34px;
}
.subscribe__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 144.2%;
    letter-spacing: 2%;
}
.subscribe__sub-title {
    font-weight: 700;
    font-size: 23px;
    line-height: 144.2%;
}

@media (max-width: 991.98px) {
    .subscribe__title {
        font-size: 35px;
    }
    .subscribe__sub-title {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .subscribe__title {
        font-size: 24px;
    }
    .subscribe__sub-title {
        font-size: 18px;
    }
}

.subscribe__form {
    max-width: 686px;
    margin: 0 auto;
}

.form-subscribe {
    padding: 25px 45px;
    box-shadow: 0px 3.02px 3.15px 0px rgba(0, 0, 0, 0.01),0px 13.28px 6.52px 0px rgba(0, 0, 0, 0.02),0px 32.6px 13px 0px rgba(0, 0, 0, 0.02),0px 62.79px 25.48px 0px rgba(0, 0, 0, 0.02),0px 105.65px 46.85px 0px rgba(0, 0, 0, 0.03),0px 163px 80px 0px rgba(0, 0, 0, 0.04);
    background: #FFFFFF;
    display: flex;
    gap: 15px;
}
.form-subcsribe__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.form-subscribe__label {
    display: block;
    margin-bottom: 10px;
    color: rgba(49, 53, 59, 0.2);
}
.form-subscribe__input {
    font-weight: 700;
    flex: 1 1 auto;
    width: 100%;
    min-height: 40px;
    font-size: 20px;
}
.form-subscribe__button {
    height: 72px;
    padding: 10px 40px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    background: #003b46;
    cursor: pointer;
}
.form-subscribe__button:hover {
    background: #07575b;
}

@media (max-width: 767.98px) {
    .form-subscribe {
        padding: 0px 15px;
        flex-direction: column;
    }
}

/* Footer */

.footer {
   
}
.footer__container {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid #DEDFE1;
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 70px;
    column-gap: 20px;
}

@media (max-width: 767.98px) {
    .footer__container {
        padding-top: 30px;
        padding-bottom: 30px;
        grid-template-columns: auto 1fr;
        justify-items: center;
        row-gap: 30px;
    }
    .footer__bottom {
        flex-wrap: wrap;
        gap: 15px;
    }
} 

.footer__logo {
    font-weight: 800;
    font-size: 23px;
    line-height: 31px;
    color: inherit;
}
.footer__menu {
    display: flex;
    justify-content: flex-end;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: span 2;
    
}

.footer__copy {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    
    /* text-align: center; */
}

.footer__icons {
    flex: 0 1 auto;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer__icon {
    display: inline-block;
}

.footer__icon img {
    max-width: 100%;
}

@media (min-width: 768px) {
    .footer__copy {
        grid-column: span 2;
    }
}

.menu-footer {
}
.menu-footer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 45px;
    row-gap: 15px;
}
.menu-footer__item {
}
.menu-footer__link {
    font-size: 700;
    color: inherit;
    font-size: 13px;
    line-height: 17px;
}
.menu-footer__link:hover{
    text-decoration: underline;
}
