*, *::before, *::after {
    box-sizing: border-box;
  }
  
body, h1, h2, h3, h4, p, ul, ol, figure {
    margin: 0;
    padding: 0;
  }

.rd {
    font-family: 'Inter', sans-serif;
}

.rd__dropdown-toggle {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.rd__dropdown-menu {
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    min-width: unset !important;
}

.rd__dropdown-menu li a {
    padding: 3px 0px !important;
}

.rd__dropdown-menu li a:hover {
    background-color: transparent !important;
}

.rd__hero {
    font-family: 'Inter', sans-serif;
    position: relative;
    background:
        linear-gradient(90deg, #1c344d 10%, rgba(28, 52, 77, 0) 75%),
        linear-gradient(180deg, #1c344d 0%, rgba(28, 52, 77, 0) 25%), url('/assets/images/basen.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: bottom;
}

@media screen and (min-width: 1024px) {
    .rd__hero {
        background-position:
            0 calc(-7vw),
            0 calc(0vw),
            0 calc(-6vw);
    }
}

@media screen and (min-width: 1500px) {
    .rd__hero {
        background-position:
            0 calc(-7vw),
            0 calc(0vw),
            0 calc(-10vw);
    }
}

.rd__hero .rd__container {
    padding-bottom: 16vw;
}

@media screen and (min-width: 1024px) {
    .rd__hero .rd__container {
        padding-bottom: 17vw;
    }
}

.rd__logo img {
    height: 40px;
}

@media screen and (min-width: 1024px) {
    .rd__logo img {
        height: 55px;
    }
}

.rd__wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.rd__navbar {
    display: flex;
    padding-top: 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .rd__navbar {
        flex-direction: row;
        margin-bottom: 8vw;
        padding: 16px 0;
    }
}

.rd__menu {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
    gap: 20px;
    display: none;
}

@media screen and (min-width: 1024px) {
    .rd__menu {
        display: flex;
    }
}

.rd__menu a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.rd__btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border-width: 1px;
    color: #fff;
    background-color: #e80085;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

@media screen and (min-width: 1024px) {
    .rd__btn {
        padding: 16px 32px;
        font-size: 16px;
        line-height: 24px;
    }
}

.rd__btn:hover,
.rd__btn:focus,
.rd__btn:active {
    color: #fff;
    text-decoration: none;
    background-color: #e80085;
}

.rd__btn img {
    height: 14px;
}

@media screen and (min-width: 1024px) {
    .rd__btn img {
        height: 18px;
    }
}

.rd__btn--navbar {
    padding: 16px;
    display: none;
}

@media screen and (min-width: 1024px) {
    .rd__btn--navbar {
        display: block;
    }
}

.rd__btn--section {
    margin-top: 32px;
    justify-self: center;
}

@media screen and (min-width: 1024px) {
    .rd__btn--section {
        margin-top: 48px;
    }
}

.rd__btn--hero-mobile {
    display: flex;
    align-self: flex-start;
}

@media screen and (min-width: 1024px) {
    .rd__btn--hero-mobile {
        display: none;
    }
}

.rd__hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    height: 100%;
    padding: 76px 0 0;
}

@media screen and (min-width: 1024px) {
    .rd__hero-content {
        height: 100%;
        padding: 0;
    }
}

.rd__hero-content h1 {
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -2%;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .rd__hero-content h1 {
        font-size: 72px;
        line-height: 72px;
    }
}

.rd__hero-content h2 {
    color: #e80085;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .rd__hero-content h2 {
        font-size: 36px;
        line-height: 44px;
    }
}

.rd__hero-content p {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    max-width: 498px;
}

.rd__badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-82%);
    width: 80px;
    display: none;
}

@media screen and (min-width: 1024px) {
    .rd__badge {
        width: 181px;
        display: block;
    }
}

.rd__advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    line-height: 14px;
    padding: 16px 0;
    margin-top: 10vw;
}

@media screen and (min-width: 1024px) {
    .rd__advantages {
        display: flex;
        align-self: start;
        flex-wrap: wrap;
        font-size: 18px;
        line-height: 24px;
        gap: 32px;
        margin-top: unset;
        margin-left: 40px;
    }
}

.rd__advantage {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.rd__advantage img {
    width: 60px;
}

@media screen and (min-width: 1024px) {
    .rd__advantage img {
        width: 90px;
    }
}

.rd__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    z-index: 2;
    padding: 0 16px;
}

.rd__section-header--center {
    text-align: center;
}

.rd__section-title {
    color: #e80085;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.rd__section-subtitle {
    color: #1c344d;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
}

.rd__features-logo {
    height: 48px;
    display: block;
    margin: 16px auto 0;
}

@media screen and (min-width: 1024px) {
    .rd__features-logo {
        height: 80px;
        margin: 32px auto 0;
    }
}

.rd__features-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 2;
    position: relative;
    margin-top: 16px;
}

@media screen and (min-width: 1024px) {
    .rd__features-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 32px;
    }
}

.rd__feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    gap: 16px;
    padding: 32px 16px;
    background-color: #fff;
    height: auto;
    font-family: 'Inter', sans-serif;
}

@media screen and (min-width: 1024px) {
    .rd__feature-card {
        grid-template-columns: repeat(2, 1fr);
        height: 100%;
    }
}

.rd__feature-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #1c344d;
    margin: 0px;
}

.rd__feature-description {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #1c344d;
    margin-bottom: 0;
}

.rd__banner {
    background-color: #fafafa;
    position: relative;
}

.rd__section-badge {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #e80085;
    display: block;
    font-family: 'Inter', sans-serif;
}

.rd__section-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -2%;
    color: #1c334d;
    margin: 0;
    margin-top: 16px;
}

@media screen and (min-width: 1024px) {
    .rd__section-title {
        font-size: 36px;
        line-height: 44px;
        margin-top: 24px;
    }
}

.rd__section-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1c334d;
    margin-bottom: 0;
}

.rd-features {
    background-color: #f6f8fc;
    position: relative;
    overflow: hidden;
    margin-top: 0vw;
}

@media screen and (min-width: 1024px) {
    .rd-features {
        margin-top: -6vw;
    }
}

.rd-features .rd__container {
    padding-bottom: 19vw;
}

@media screen and (min-width: 1024px) {
    .rd-features .rd__container {
        padding-bottom: 4vw;
    }
}

.rd-apartments {
    font-family: 'Inter', sans-serif;
    background-color: #f4f0ed;
    position: relative;
}

.rd-apartments .rd__container {
    padding-bottom: 19vw;
}

@media screen and (min-width: 1024px) {
    .rd-apartments .rd__container {
        padding-bottom: 10vw;
    }
}

.rd-apartments__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rd-apartments__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-basis: 50%;
}

@media screen and (min-width: 1024px) {
    .rd-apartments__content {
        gap: 24px;
    }
}

.rd-apartments__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 8px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media screen and (min-width: 1024px) {
    .rd-apartments__features {
        column-gap: 32px;
        row-gap: 16px;
    }
}

.rd-apartments__feature-icon {
    margin-right: 10px;
    width: 16px;
    align-self: flex-start;
    margin-top: 4px;
}

@media screen and (min-width: 1024px) {
    .rd-apartments__feature-icon {
        align-self: unset;
        margin-top: unset;
    }
}

.rd-apartments__feature-item {
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1c334d;
}

.rd-apartments__swiper {
    border-radius: 12px;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .rd-apartments__swiper {
        width: auto;
        flex-basis: 50%;
    }
}

.rd-apartments__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rd-pool {
    font-family: 'Inter', sans-serif;
    background-color: #eef4ff;
    position: relative;
}

.rd-pool .rd__container {
    padding-bottom: 17vw;
}

@media screen and (min-width: 1024px) {
    .rd-pool .rd__container {
        padding-bottom: 8.5vw;
    }
}

.rd-pool__swiper {
    border-radius: 12px;
    width: 100%;
    order: 2;
}

@media screen and (min-width: 1024px) {
    .rd-pool__swiper {
        width: auto;
        flex-basis: 50%;
        order: 1;
    }
}

.rd-pool__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1024px) {
    .rd-pool__content-wrapper {
        flex-direction: row;
        gap: 48px;
    }
}

.rd-pool__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-basis: 50%;
    order: 1;
}

@media screen and (min-width: 1024px) {
    .rd-pool__content {
        order: 2;
    }
}

.rd-pool__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rd-pool__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .rd-pool__features {
        display: flex;
        gap: 16px;
    }
}

.rd-pool__feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #1c344d;
}

@media screen and (min-width: 1024px) {
    .rd-pool__feature-item {
        padding: 32px 16px;
    }
}

.rd-pool__feature-text {
    font-size: 14px;
    line-height: 18px;
}

.rd-pool__feature-icon {
    height: 44px;
}

@media screen and (min-width: 1024px) {
    .rd-pool__feature-icon {
        height: auto;
    }
}

.rd-region {
    font-family: 'Inter', sans-serif;
    background-color: #f8edf5;
    position: relative;
}

.rd-region .rd__container {
    padding-bottom: 16vw;
}

@media screen and (min-width: 1024px) {
    .rd-region .rd__container {
        padding-bottom: 10.5vw;
    }
}

.rd-region__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 16px;
}

@media screen and (min-width: 1024px) {
    .rd-region__grid {
        display: flex;
        margin-top: 48px;
    }
}

.rd-region__item {
    flex-basis: 25%;
}

.rd-region__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rd-region__card-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    color: #1c344d;
    margin: 0;
}

.rd-region__card-description {
    color: #1c344d;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.rd-region__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
}

@media screen and (min-width: 1024px) {
    .rd-region__image-wrapper {
        height: 160px;
    }
}

.rd-region__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rd-faq {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    position: relative;
}

.rd-faq .rd__container {
    padding-bottom: 15vw;
}

@media screen and (min-width: 1024px) {
    .rd-faq .rd__container {
        padding-bottom: 13vw;
    }
}

.rd-faq__header {
    margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
    .rd-faq__header {
        margin-bottom: 32px;
    }
}

.rd-faq__title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -2%;
    color: #1c344d;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 0;
}

@media screen and (min-width: 1024px) {
    .rd-faq__title {
        font-size: 60px;
        line-height: 72px;
        margin-bottom: 16px;
    }
}

.rd-faq__subtitle {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #1c344d;
}

@media screen and (min-width: 1024px) {
    .rd-faq__subtitle {
        font-size: 30px;
        line-height: 38px;
    }
}

.rd-faq__columns {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1024px) {
    .rd-faq__columns {
        flex-direction: row;
        gap: 16px;
    }
}

.rd-faq__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-basis: 50%;
}

.rd-faq__panel {
    background-color: #fafafa !important;
    margin-top: 8px !important;
}

@media screen and (min-width: 1024px) {
    .rd-faq__panel {
        margin-top: 16px !important;
    }
}

.rd-faq__accordion {
    margin-bottom: 0 !important;
}

.rd-faq__trigger {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #1c344d;
    outline: none !important;
}

@media screen and (min-width: 1024px) {
    .rd-faq__trigger {
        font-size: 18px;
        line-height: 22px;
    }
}

.rd-faq__trigger:hover,
.rd-faq__trigger:focus,
.rd-faq__trigger:active {
    text-decoration: none;
}

.rd-faq__panel-body {
    color: #1c344d;
    font-size: 14px;
    line-height: 18px;
}

.rd-faq__arrow {
    margin-left: auto;
}

.rd-faq__icon {
    margin-right: 8px;
    width: 24px;
}

@media screen and (min-width: 1024px) {
    .rd-faq__icon {
        margin-right: 16px;
        width: 32px;
    }
}

.rd-cta {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    position: relative;
    padding-top: 1px;
}

.rd-cta .rd__container {
    padding: 0 16px 16px 16px;
}

@media screen and (min-width: 1024px) {
    .rd-cta .rd__container {
        padding: 0 16px 64px 16px;
    }
}

.rd-cta__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -2%;
    color: #fff;
    margin: 0;
}

@media screen and (min-width: 1024px) {
    .rd-cta__title {
        font-size: 36px;
        line-height: 44px;
    }
}

.rd-cta__title--highlight {
    color: #e80085;
}

.rd-cta__box {
    width: 100%;
    background-color: #1c344d;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1024px) {
    .rd-cta__box {
        flex-direction: row;
        gap: 32px;
        padding: 32px;
        border-radius: 32px;
    }
}

.rd-cta__description {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    margin: 0;
    color: #fff;
}

.rd-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-basis: 50%;
}

@media screen and (min-width: 1024px) {
    .rd-cta__content {
        gap: 32px;
    }
}

.rd-cta__logo {
    height: 45px;
}

@media screen and (min-width: 1024px) {
    .rd-cta__logo {
        height: 55px;
    }
}

.rd-cta__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    flex-basis: 50%;
}

.rd-cta__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 0 none !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-weight: 600 !important;
    color: #181d27 !important;
    font-size: 14px !important;
}

.swiper-button-next:hover:not(.swiper-button-disabled),
.swiper-button-prev:hover:not(.swiper-button-disabled) {
    background-color: rgba(255, 255, 255, 1) !important;
}

.swiper-button-next {
    right: 16px !important;
}

.swiper-button-prev {
    left: 16px !important;
}