@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Roboto-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}

:root {
    --contrast-color: rgba(255, 195, 62, 1);
    --contrast-color2: rgba(113, 186, 222, 1);
    --dark-color: rgba(16, 58, 110, 1);
    --dark-color2: rgba(8, 28, 64, 1);
    --light-color: rgba(245, 249, 253, 1);
    --light-color2: rgba(248, 248, 248, 1);
    --light-color3: rgba(243, 243, 243, 1);

    --text-color-medium: rgba(69, 72, 75, 1);
    --text-color: rgba(157, 155, 155, 1);
    --text-color-main: rgba(36, 38, 39, 1);
    --text-color-light: rgba(150, 157, 163, 1);
    --text-color-light2: rgba(113, 186, 222, 1);
    --text-color-light3: rgba(76, 177, 243, 0.3);
    --text-color-contrast: rgba(95, 70, 17, 1);
    --text-color-contrast2: rgba(250, 178, 22, 1);

    --link-hover: rgba(20, 20, 20, 1);

    --btn-contrast-hover: rgba(255, 211, 115, 1);
    --btn-contrast-pressed: rgba(255, 226, 163, 1);

    --btn-dark-hover: rgba(28, 86, 158, 1);
    --btn-dark-pressed: rgba(62, 107, 164, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    line-height: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    padding-top: 141px;
}


.g-1,
.g-2,
.g-3,
.g-4,
.g-5 {
    padding-left: 0;
    padding-right: 0;
}

h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
}

a {
    text-decoration: none;
}

.header {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
    transition: all .3s ease-in-out;
}

#main-navbar {
    display: none;
}

.header.hidden {
    box-shadow: 0px 4px 20px 0px rgba(69, 72, 75, 0.15);
    top: -47px;
}

.header.hidden .navbar-info {
    display: none;
}

.header.hidden #main-navbar {
    display: flex;
}

.navbar {
    padding: 0;
}

.navbar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-top {
    padding-left: 16px;
    padding-right: 16px;
    background-color: var(--light-color3);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color-medium);
}

#main-navbar {
    font-size: 15px;
    gap: 40px;
}

.offcanvas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 33px;
}

.navbar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color-medium);
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
}

.nav-link:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.nav-link:active {
    color: var(--text-color-light);
}

.nav-pills .nav-link {
    font-size: 15px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent;
    color: var(--link-hover);
    text-decoration: underline;
}

.nav-icon {
    width: 20px;
    height: 20px;
}

.icon {
    width: 100%;
    height: 100%;
}

.navbar-main {
    padding: 20px 16px;
}

.navbar-main__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.navbar-brand {
    display: inline-block;
    padding: 0;
}

.icon-stroke {
    stroke: var(--text-color-medium);
}

.navbar-toggler {
    border: none;
    float: right;
    margin-top: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-info,
.navbar-info__box {
    display: flex;
    align-items: center;
    gap: 40px;
}


.info-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.info-item__title {
    color: var(--text-color-main);
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
}

.info-item__descr {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-color-light);
    font-weight: 400;
}

.info-item__icon {
    width: 15px;
    height: 15px;
    aspect-ratio: 1/1;
}

.info-item__icon.icon-stroke {
    stroke: var(--text-color-light);
}

.info-item__icon.icon-fill {
    fill: var(--text-color-light);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    padding: 14px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    line-height: 100%;
    width: 215px;
    min-height: 54px;
    transition: all .15s ease-in-out;
    border: none;
}



.btn-contrast {
    position: relative;
    background-color: var(--contrast-color);
    color: var(--text-color-contrast);
}

.btn-contrast::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 94px;
    height: 17px;
    background-image: url("../images/ellipse.png");
    background-repeat: no-repeat;
    background-size: cover;

}

.btn-contrast:hover {
    background-color: var(--btn-contrast-hover) !important;
    color: var(--text-color-contrast) !important;
}

.btn-contrast:active {
    background-color: var(--btn-contrast-pressed) !important;
    color: var(--text-color-contrast) !important;
    border: none;
}

.btn-dark {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 1);
    padding: 7px 7px 7px 18px;
}

.section-dark .btn-dark {
    background-color: rgba(255, 255, 255, 1);
    color: var(--text-color-medium);
}

.btn-dark:hover {
    background-color: var(--btn-dark-hover) !important;
}

.section-dark .btn-dark:hover {
    background-color: rgba(255, 255, 255, 1) !important;
}

.btn-dark:hover .btn__icon-box .btn__icon.icon-stroke {
    stroke: var(--btn-dark-hover);
}

.section-dark .btn-dark:hover .btn__icon-box .btn__icon.icon-stroke {
    stroke: rgba(255, 255, 255, 1);
}

.section-dark .btn-dark:hover .btn__icon-box {
    background-color: var(--dark-color);
}

.btn-dark:active {
    background-color: var(--btn-dark-pressed) !important;
}

.section-dark .btn-dark:active {
    color: var(--text-color-medium);
}

.btn-dark:active .btn__icon-box .btn__icon.icon-stroke {
    stroke: var(--btn-dark-pressed);
}


.section-dark .btn-dark:active .btn__icon-box {
    background-color: var(--btn-dark-pressed) !important;
}

.btn-light {
    gap: 10px;
    justify-content: center;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
}

.btn-light:hover {
    border: 1px solid var(--dark-color) !important;
    background-color: var(--dark-color) !important;
    color: rgba(255, 255, 255, 1) !important;
}

.btn-light:active {
    border: 1px solid var(--btn-dark-pressed) !important;
    background-color: var(--btn-dark-pressed) !important;
    color: rgba(255, 255, 255, 1) !important;
}

.btn-light .icon-fill {
    fill: var(--dark-color);
}

.btn-light:hover .icon-fill,
.btn-light:active .icon-fill {
    fill: rgba(255, 255, 255, 1);
}


.btn .btn__icon-box {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease-in-out;
}

.btn .btn__icon {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    transition: all .15s ease-in-out;
}

.btn-dark .btn__icon-box {
    background-color: rgba(255, 255, 255, 1);
}

.section-dark .btn-dark .btn__icon-box {
    background-color: var(--contrast-color2);
}

.btn-dark .btn__icon.icon-stroke {
    stroke: var(--dark-color);
}

.btn-link {
    padding: 8px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: rgba(113, 186, 222, 1);
    text-decoration: none;
    background-color: transparent;
    border: none;
    transition: all .15s ease-in-out;
}

.btn-link:hover {
    color: rgba(56, 154, 202, 1);
    text-decoration: underline;
}

.btn-link:active {
    color: rgba(62, 107, 164, 1);
    text-decoration: underline;
}

.section-dark .btn-dark .btn__icon.icon-stroke {
    stroke: rgba(255, 255, 255, 1);
}

.section {
    margin-top: 130px;
    margin-bottom: 130px;
    padding-left: 16px;
    padding-right: 16px;
}

.section:last-of-type {
    margin-bottom: 0;
}

.map.section {
    padding: 0;
}

.section__container {
    margin: 0 auto;
    max-width: 1312px;
    width: 100%;
}


.section__container-duo {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.section-light .rent__content {
    background: linear-gradient(94.38deg, var(--light-color), #FFFFFF 99.68%);
    border-radius: 20px;
}


.section-dark {
    background-color: var(--dark-color);
    padding-top: 84px;
    padding-bottom: 84px;
}

.feedback.section-dark {
    position: relative;
    background-color: var(--dark-color2);
    background-image: url("../images/feedback-bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}

.uslugi.section {
    position: relative;
}


.banner {
    overflow: hidden;
    position: relative;
    margin-bottom: 224px;
    padding-top: 106px;
    padding-bottom: 200px;
    min-height: 820px;
    background-image: url("../images/banner-bg.webp");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.banner__widjet-box {
    position: absolute;
    bottom: 140px;
    right: 20%;
}


.banner__img {
    position: relative;
}

.banner__widjet-box .img-widjet {
    position: absolute;
    z-index: 0;
}

.banner__widjet-box .img-widjet:first-of-type {
    max-width: 277px;
    left: -165px;
    bottom: 218px;
}

.banner__widjet-box .img-widjet:last-of-type {
    max-width: 403px;
    width: 100vw;
    left: -242px;
    bottom: 60px;
}

.widjet-brands {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px;
    min-height: 45px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
}

.banner__container {
    position: relative;
    margin: 0 auto;
    max-width: 1312px;
    height: 100%;
}

.banner__content {
    width: 100%;
    max-width: 600px;
}

.banner__subtitle {
    max-width: fit-content;
    min-width: 217px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3%;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.subtitle__icon {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.subtitle__icon.icon-fill {
    fill: rgba(255, 255, 255, 1);
}

.subtitle__icon.icon-stroke {
    stroke: rgba(255, 255, 255, 1);
}

.banner__title {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    color: rgba(255, 255, 255, 1);
}

.banner__info-box {
    padding: 50px 60px;
    top: -368px;
    position: absolute;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 20px 0px rgba(69, 72, 75, 0.15);
    border-radius: 20px;
}

.banner__info-item {
    padding: 0 60px;
}

.banner__info-item:not(:last-of-type) {
    border-right: 1px solid rgba(243, 243, 243, 1);
}

.banner__descr {
    max-width: 440px;
    margin-bottom: 44px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.banner__item-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 140%;
    font-weight: 700;
    color: var(--text-color-main);
}

.banner__item-text {
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    color: var(--text-color);
}

.banner__icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
    background-color: rgba(243, 243, 243, 1);
    border-radius: 50%;
}

.banner__icon-box .icon {
    height: 20px;
    width: auto;
    aspect-ratio: auto;
}

.banner__icon-box .icon-stroke {
    stroke: var(--text-color-light);
}

.banner__icon-box .icon-fill {
    fill: var(--text-color-light);
}

.banner__footer {
    max-width: 260px;
    margin-top: 96px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner__footer-list {
    display: flex;
    align-items: center;
}

.banner__footer-item {
    position: relative;
    width: 44px;
    height: 44px;
    aspect-ratio: 1/1;
    border: 2px solid rgba(12, 17, 91, 1);
    overflow: hidden;
    border-radius: 50%;
}

.banner__footer-item:not(:last-of-type) {
    margin-right: -22px;
}

.banner__footer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner__footer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner__footer-title {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
}

.banner__footer-descr {
    font-size: 13px;
    line-height: 100%;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.section__left {
    max-width: 630px;
}

.rent .section__right {
    max-width: 617px;
    padding: 80px;
    padding-left: 0;
}

.rent .section__left {
    max-width: 580px;
}


.faq .section__left {
    max-width: 478px;
}

.faq .section__right {
    width: 100%;
    max-width: 700px;
}

.feedback .section__descr {
    max-width: 440px;
    margin-bottom: 16px;
}

.feedback .section__content {
    margin-top: 80px;
}

.feedback .section__container-duo {
    justify-content: center;
}

.feedback .img-widjet {
    position: static;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    max-width: 286px;
}

.feedback .widjet-inner {
    justify-content: space-between;
}

.feedback .widjet-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feedback .widjet-title {
    font-size: 14px;
    line-height: 135%;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.feedback .widjet-text {
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.feedback .widjet-icon__box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
}

.feedback .widjet-icon__box .icon-stroke {
    stroke: var(--contrast-color2);
}

.feedback .widjet-icon__box .icon-fill {
    fill: var(--contrast-color2);
}

.faq .accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq .accordion-flush>.accordion-item>.accordion-collapse,
.faq .accordion-flush>.accordion-item>.accordion-header .accordion-button,
.faq .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    border-radius: 10px;
}

.faq .accordion-button:not(.collapsed) {
    background: var(--light-color2);
    box-shadow: none;
}

.faq .accordion-header {
    position: relative;
}

.faq .accordion-icon {
    position: absolute;
    top: calc(50% - 13px);
    right: 30px;
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    background-color: var(--dark-color);
    border-radius: 50%;
    z-index: 100;
    transition: background-color .15s ease-in-out;
}

.faq .accordion-button {
    background: var(--light-color2);
    padding: 27px 84px 27px 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: var(--text-color-medium);
}

.faq .accordion-button:hover+.accordion-icon {
    background-color: var(--btn-dark-hover);
}

.faq .accordion-icon:hover {
    cursor: pointer;
    background-color: var(--btn-dark-hover);
}

.faq .accordion-icon span {
    position: absolute;
    transition: 300ms;
    background: rgba(255, 255, 255, 1);
    border-radius: 5px;
}

.faq .accordion-icon span:first-child {
    top: 30%;
    bottom: 30%;
    width: 7%;
    left: 46.5%;
}

.faq .accordion-icon span:last-child {
    left: 30%;
    right: 30%;
    height: 7%;
    top: 46.5%;
}

.faq .accordion-button:not(.collapsed)+.accordion-icon span {
    transform: rotate(90deg);
}

.faq .accordion-button:not(.collapsed)+.accordion-icon span:last-child {
    left: 50%;
    right: 50%;
}


.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:focus-visible {
    outline: none;
}

.faq .accordion-button::after {
    display: none;
}

.faq .accordion-body {
    padding: 0 66px 30px 30px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color-medium);
}

.faq .accordion-item {
    border-radius: 10px;
    background: var(--light-color2);
    border: none;
}

.section__header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section__header-center {
    align-items: center;
    text-align: center;
}

.section__title {
    display: flex;
    flex-direction: column;
    color: var(--text-color-medium);
    font-size: 32px;
    line-height: 132%;
    font-weight: 700;
}

.section__descr {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: var(--text-color);
}

.rent .section__descr {
    font-weight: 500;
}

.section-dark .section__title span {
    line-height: 132%;
}

.section-dark .section__title,
.section-dark .section__title span:first-of-type {
    color: rgba(255, 255, 255, 1);
}

.section-dark .section__title span:last-of-type {
    color: rgba(255, 255, 255, .3);
}

.section-dark .section__descr {
    color: rgba(255, 255, 255, 0.7);
}


.section__content ul {
    padding: 0;
    margin-left: 28px;
}

.section__content ul li {
    padding: 0;
    padding-left: 4px;
    font-size: 15px;
    line-height: 140%;
    color: var(--text-color-medium);
    font-weight: 400;
}

.section__content ul li:not(:first-of-type) {
    margin-top: 3px;
}

.img-box {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.img-box .img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.img-widjet {
    position: absolute;
    bottom: 30px;
    left: 34px;
    padding: 24px;
    border-radius: 10px;
    width: 100%;
    max-width: 317px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px)
    -webkit-backdrop-filter: blur(20px);
}

.widjet-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.widjet-border rect {
    fill: transparent;
    height: 100%;
    width: 100%;

}

.widjet-inner {
    display: flex;
    row-gap: 8px;
    column-gap: 11px;
    align-items: center;
    color: rgba(255, 255, 255, 1);
}

.widjet-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    line-height: 36px;
    font-size: 32px;
}

.widjet-icon {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
}

.widjet-icon.icon-stroke {
    stroke: rgba(255, 255, 255, 1);
}

.widjet-icon.icon-fill {
    fill: rgba(255, 255, 255, 1);
}

.widjet-text {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.widjet-inner-column {
    flex-direction: column;
    align-items: stretch;
}

.widjet-inner-column .widjet-title {
    font-size: 16px;
    line-height: 22px;
}

.widjet-inner-column .widjet-text {
    font-size: 14px;
    line-height: 22px;
}

.card__list {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.card {
    border-radius: 20px;
    background-color: var(--light-color2);
    border: none;
}

.card-img-top {
    background-image: url("../images/card-bg.png");
    aspect-ratio: 1/0.66;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.category-slider .card-img-top {
    background-image: url("../images/pattern.png");
    aspect-ratio: 1/0.63;
    padding: 0;
    padding-top: 53px;
}

.card-img-fluid {
    padding: 0;
}

.card-img {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}

.card-body {
    padding: 30px 34px 40px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.category-slider .card-body {
    padding: 30px 26px 40px;
}


.card-body .btn {
    margin-top: auto;
}

.card-title {
    font-size: 20px;
    line-height: 132%;
    font-weight: 700;
    color: var(--text-color-medium);
    margin: 0;
}

.category-slider .card {
    min-height: 305px;
}

.category-slider .card-title {
    font-size: 16px;
    line-height: 132%;
    font-weight: 600;
    text-align: center;
    min-height: 43px;
}

.card-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: var(--text-color);
}

.category .section__right {
    flex-grow: 1;
    max-width: 532px;
}

.category__info {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.category__info-item {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    justify-content: space-between;
}

.category-info__title {
    font-size: 40px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: 1%;
    color: var(--contrast-color);
}

.category-info__text {
    text-align: right;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.category-slider {
    margin-top: 30px;
}

.swiper-wrapper {
    padding-bottom: 40px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: rgba(204, 204, 204, 0.3);
    opacity: 1;
    transition: background .15s ease-in-out;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background: rgba(204, 204, 204, 1);
}

.category-brands {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 25px;
}

.trust-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.trust-item {
    height: 318px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    padding: 35px;
    padding-bottom: 40px;
    background-color: var(--light-color2);
    border-radius: 20px;
    transition: background-color .15s ease-in-out;
}

.trust-item:hover {
    cursor: pointer;
    background-color: var(--dark-color);
}

.trust-item__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-color-medium);
    margin-bottom: 15px;
    transition: color .15s ease-in-out;
}

.trust-item__text {
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: var(--text-color-light);
    transition: color .15s ease-in-out;
}

.trust-icon__box {
    background-color: rgba(16, 58, 110, 0.05);
    width: 54px;
    height: 54px;
    aspect-ratio: 1/1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s ease-in-out;
}

.trust-icon {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    transition: all .15s ease-in-out;
}

.trust-icon.icon-stroke {
    stroke: var(--dark-color);
}

.trust-icon.icon-fill {
    fill: var(--dark-color);
}

.trust-item:hover .trust-item__title {
    color: rgba(255, 255, 255, 1);
}

.trust-item:hover .trust-item__text {
    color: rgba(255, 255, 255, .7);
}

.trust-item:hover .trust-icon__box {
    background-color: rgba(255, 255, 255, 0.1);
}

.trust-item:hover .trust-icon.icon-stroke {
    stroke: rgba(255, 255, 255, 1);
}

.trust-item:hover .trust-icon.icon-fill {
    fill: rgba(255, 255, 255, 1);
}

.footer {
    background-color: rgba(35, 35, 37, 1);
    padding: 100px 16px 76px;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
}

.footer__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__left {
    flex-shrink: 1;
    max-width: 440px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__descr {
    margin-top: 76px;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 22px;
}

.footer__widjets-list {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer .img-widjet {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    text-decoration: none;
    padding: 20px 30px;
    max-width: 320px;
}

.footer .widjet-title {
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer .widjet-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    color: rgba(255, 255, 255, 1);
}

.footer .widjet-text .widjet-icon {
    margin-right: 8px;
}

.footer .widjet-text .icon-stroke {
    stroke: rgba(255, 255, 255, 1);
}

.footer .widjet-text .icon-fill {
    fill: rgba(255, 255, 255, 1);
}

.footer__right {
    flex-grow: 1;
    max-width: 360px;
    padding: 0 40px 0 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__title {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.footer__nav-item {
    display: block;
    padding: 9px 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

.footer__copyright {
    margin-top: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    font-size: 13px;
}

.footer .social-link {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .navbar-socials {
    gap: 10px;
}

.footer .social-icon {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.modal-content {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(241, 242, 249, 1);
    box-shadow: 0px 3px 12px -2px rgba(170, 170, 190, 0.06), 0px 4px 32px -4px rgba(111, 108, 143, 0.12);
}

.modal.consultation .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    background-image: url("../images/Close.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    opacity: 1;
}

.modal.request .modal-body {
    padding-top: 60px;
}

.modal.request .btn-close {
    z-index: 10;
    position: absolute;
    top: 40px;
    right: 40px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0px -0.94px 0.94px 0px rgba(150, 161, 172, 0.12) inset;
    padding: 0;
    background-image: url("../images/Close-dark.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    opacity: 1;
}

.modal.consultation .btn-close:focus {
    box-shadow: none;
}

.modal.consultation .modal-header {
    border: none;
    padding: 0;
    min-height: 207px;
    background-image: url("../images/modal-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.modal .modal-body {
    padding: 40px 60px;
}

.modal.popup .modal-body {
    padding: 24px 40px;
}

.modal__body-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal__body-title {
    font-size: 24px;
    line-height: 132%;
    font-weight: 700;
    color: var(--text-color-medium);
    margin-bottom: 18px;
}

.modal__body-descr {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    color: var(--text-color);
}

.modal__icon {
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
    fill: rgba(144, 191, 87, 1);
    margin-bottom: 16px;
}

.modal__form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.modal__form-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal__group {
    gap: 10px;
}

.modal__group .btn-link {
    text-align: center;
}

.modal__form-group:not(:last-of-type) {
    margin-bottom: 20px;
}

.modal.request .modal__btn {
    align-self: flex-start;
}

.from {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__label {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 14px;

}

.form__label[data-required="true"] span::after {
    content: "*";
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    color: rgba(228, 0, 4, 1);
}

.form__label span {
    align-self: flex-start;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 112%;
    color: var(--text-color-medium);
}

.form__input {
    position: relative;
    border: none;
    border-radius: 6px;
    padding: 15px 20px;
    background-color: rgba(243, 243, 243, 1);
    font-size: 13px;
    line-height: 140%;
    font-weight: 400;
}

.form__input::placeholder {
    color: rgba(193, 193, 193, 1);
}

.form__input:focus-visible {
    outline: 2px solid var(--contrast-color2);
}

.modal:not(.request) .modal__btn {
    margin-top: 20px;
    width: 100%;
    padding: 19px;
}

.form__checkbox-section .form__label {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(158, 158, 158, 1);
}

.form__checkbox-section .form__label:hover,
.form__radio-section .form__label:hover {
    cursor: pointer;
}

.form__checkbox-section .form__input,
.form__radio-section .form__input {
    position: absolute;
    z-index: -1000;
}

.form__checkbox-section .form__label span {
    align-self: center;
}

.form__checkbox-section .form__input:checked+.form__label .checkbox-custom::before,
.form__radio-section .form__input:checked+.form__label .radio-custom::before {
    opacity: 1;
}

.checkbox-custom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    border-radius: 2px;
    background-color: rgba(243, 243, 243, 1);
}

.radio-custom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid rgba(224, 226, 231, 1);
    transition: border .15s ease-in-out;
}

.form__radio-section .form__input:checked+.form__label .radio-custom {
    border-color: var(--dark-color);
}

.radio-custom::before {
    content: "";
    display: block;
    opacity: 0;
    width: 14px;
    height: 14px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--dark-color);
    transition: opacity .15s ease-in-out;
}

.checkbox-custom::before {
    content: "✔";
    display: block;
    font-size: 12px;
    color: rgba(36, 38, 39, 1);
    opacity: 0;
    transition: opacity .15s ease-in-out;
}

.form__radio-box {
    gap: 30px;
    margin-top: -20px;
    margin-bottom: 24px;
    align-items: center;
}

.form__radio-box span.form__label {
    flex-grow: initial;
}

.form__radio-box .form__label {
    color: var(--text-color-medium);
    font-size: 14px;
    line-height: 132%;
    font-weight: 500;
}

.form__radio-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form__radio-section .form__label {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 28px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 17px 0;
    }
}

@media (max-width: 1199px) {
    .navbar-main {
        gap: 18px;
    }

    .navbar-info {
        gap: 18px;
    }
}

@media(max-width: 1199px) {

    .section__left,
    .rent .section__left {
        max-width: 530px;
        width: 90%;
    }

    .category .section__container-duo {
        gap: 40px;
    }

    .category .section__left {
        flex-grow: 0;
        width: auto;
        max-width: 450px;
    }

    .category__info-item {
        gap: 20px;
    }

    .category-info__text {
        width: 60%;
    }

    .card__list {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 94px;
    }

    .header.hidden {
        top: 0;
    }

    .navbar-nav {
        gap: 0;
        margin-top: 30px;
    }

    .navbar-top {
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: rgba(255, 255, 255, 1);
    }

    .navbar-main {
        display: none;
    }

    .offcanvas {
        padding: 20px 16px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background-color: var(--dark-color);

    }

    .offcanvas .navbar-brand {
        margin-bottom: 20px;
    }

    .offcanvas .navbar-nav .nav-link {
        padding-top: 18px;
        padding-bottom: 18px;
        color: rgba(255, 255, 255, 1);
        font-size: 16px;
        line-height: 100%;
        font-weight: 400;
    }

    .offcanvas .nav-link .icon-stroke {
        stroke: rgba(255, 255, 255, 1);
    }

    .offcanvas .nav-link .icon-fill {
        fill: rgba(255, 255, 255, 1);
    }


    .offcanvas .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offcanvas .navbar-right {
        margin-top: auto;
        padding-top: 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .offcanvas .navbar-right .nav-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .offcanvas .navbar-right .nav-link {
        font-size: 14px;
        line-height: 100%;
        font-weight: 400;
        color: rgba(255, 255, 255, 1);
    }

    .offcanvas .nav-title {
        font-size: 14px;
        line-height: 100%;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.49);
    }

    .offcanvas .social-link {
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .offcanvas .navbar-socials {
        margin-top: 26px;
        gap: 10px;
    }

    .offcanvas .social-icon {
        width: 24px;
        height: 24px;
        aspect-ratio: 1/1;
    }

    .offcanvas .btn-close {
        position: absolute;
        border-radius: 50%;
        top: 20px;
        right: 16px;
        width: 32px;
        height: 32px;
        opacity: 1;
        aspect-ratio: 1/1;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0px -0.94px 0.94px 0px rgba(150, 161, 172, 0.12) inset;

    }

    .banner__widjet-box {
        right: -20%;
    }

    .banner__info-box {
        padding: 40px;
    }

    .banner__icon-box {
        margin: 0 auto 20px;
    }

    .banner__info-item {
        padding: 0 20px;
        text-align: center;
    }

    .section-light,
    .section-dark {
        padding-left: 0;
        padding-right: 0;
    }

    .section-light .section__container,
    .section-dark .section__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section:not(.feedback) .section__container-duo {
        flex-direction: column;
        gap: 40px;
    }

    .section:not(.category, .faq) .section__container-duo .section__right {
        order: -1;
    }

    .section__container-duo .section__right,
    .section__container-duo .section__left {
        width: 100%;
        max-width: none;
    }

    .rent .section__right {
        padding-bottom: 0px;
    }

    .rent .section__container-duo .section__left {
        max-height: 400px;
        width: 100vw;
        margin-left: -16px;
        margin-right: -16px;
    }

    .category .section__container-duo .section__header {
        margin-bottom: 0;
    }

    .trust-item {
        height: 250px;
    }

    .footer {
        padding-left: 64px;
        padding-right: 64px;
    }

    .footer__content {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .footer__left {
        border: none;
        max-width: none;
        padding-right: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .footer__descr {
        margin-top: 0;
        /* text-align: right; */
        max-width: 500px;
    }

    .footer__widjets-list {
        flex-direction: row;
        align-items: stretch;
        padding: 0;
        flex-wrap: wrap;
        column-gap: 40px;
    }

    .footer .img-widjet {
        padding: 20px 16px;
    }

    .footer__right {
        max-width: none;
        border: none;
        padding: 0;
    }
}

@media(max-width: 767px) {

    .banner {
        min-height: 600px;
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 290px;
    }

    .banner__title {
        font-size: 32px;
        line-height: 120%;
    }

    .banner__widjet-box {
        display: none;
    }

    .banner__info-box {
        top: -340px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .banner__info-item:first-of-type {
        padding-left: 0;
    }

    .banner__info-item:first-of-type {
        padding-left: 0;
    }

    .banner__footer {
        margin-top: 60px;
    }

    .card__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-body {
        padding: 20px 16px;
    }

    .footer__left {
        flex-wrap: wrap;
    }

    .category-info__title,
    .category-info__text {
        width: 100%;
    }

    .category__info-item {
        gap: 10px;
        align-items: center;
    }
}

@media(max-width: 575px) {
    .banner {
        min-height: 600px;
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 600px;
    }

    .banner__title {
        font-size: 32px;
        line-height: 120%;
    }


    .banner__info-box {
        top: -620px;
        grid-template-columns: 1fr;
        padding: 30px 40px;
    }

    .banner__info-item {
        padding: 0;
    }

    .banner__info-item:not(:first-of-type) {
        padding-top: 20px;
    }

    .banner__info-item:not(:last-of-type) {
        border: none;
        border-bottom: 1px solid rgba(243, 243, 243, 1);
        padding-bottom: 20px;
    }



    .banner__info-item .banner__footer {
        margin-top: 60px;
    }

    .card__list,
    .trust-list {
        grid-template-columns: 1fr;
    }

    .trust-item {
        align-items: center;
        text-align: center;
    }

    .rent .section__right {
        padding-right: 0;
    }

    .img-widjet {
        left: 16px
    }

    .feedback .section__container-duo {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;

    }

    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .modal .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}
