@font-face {
    font-family: "Montserrat";
    src:
        url("../fonts/Montserrat-Bold.woff2") format("woff2"),
        url("../fonts/Montserrat-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src:
        url("../fonts/Montserrat-Medium.woff2") format("woff2"),
        url("../fonts/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src:
        url("../fonts/Montserrat-Regular.woff2") format("woff2"),
        url("../fonts/Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src:
        url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
        url("../fonts/Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Inter";
    src:
        url("../fonts/Inter-Regular.woff2") format("woff2"),
        url("../fonts/Inter-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Inter";
    src:
        url("../fonts/Inter-SemiBold.woff2") format("woff2"),
        url("../fonts/Inter-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src:
        url("../fonts/Gilroy-Bold.woff2") format("woff2"),
        url("../fonts/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src:
        url("../fonts/Gilroy-Medium.woff2") format("woff2"),
        url("../fonts/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src:
        url("../fonts/Gilroy-Regular.woff2") format("woff2"),
        url("../fonts/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Gilroy";
    src:
        url("../fonts/Gilroy-Semibold.woff2") format("woff2"),
        url("../fonts/Gilroy-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
:root {
    --font-family: "Gilroy", sans-serif;
    --second-family: "Montserrat", sans-serif;
    --third-family: "Inter", sans-serif;
}
body {
    overflow-x: hidden;
    background: #fff;
    margin: 0;
}
.wrapper {
    width: 1200px;
    margin: 0 auto;
}
.nav-bar-background {
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
}
.nav-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.image-logo {
    background-image: url("../img/logo.svg");
    width: 192px;
    height: 71px;
}
.nav-link-block {
    display: flex;
    gap: 48px;
    align-items: center;
    padding-top: 15px;
}
.nav-link-item {
    text-decoration: none;
    display: flex;
    gap: 10px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #fff;
}
.language-switch-block {
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.language-switch-button {
    border: none;
    cursor: pointer;
    background: transparent;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 157%;
    color: #fff;
    opacity: 0.2;
}
.language-switch-button.active {
    opacity: 1;
}
.slash {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 157%;
    color: #fff;
    opacity: 0.05;
}
.nav-link-item:hover img,
.language-switch-button:hover,
.nav-link-item:hover,
.policy-item:hover {
    filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(2673%) hue-rotate(201deg) brightness(99%)
        contrast(97%);
    opacity: unset;
}
.language-switch-button:active,
.nav-link-item:active,
.request-button:active,
.slide-item-button:active,
.leave-request-button:active,
.footer-bottom-button:active {
    transform: scale(0.96);
}
.swiper-button-prev:active {
    transform: scale(1.1);
}
.swiper-button-next:active {
    transform: rotate(180deg) scale(1.1);
}
.title-background {
    position: relative;
    background-image: url("../img/title-background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -70px;
    z-index: 1;
}
.rectangle-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url("../img/rectangle1.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.title-block {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 150px;
    padding-bottom: 280px;
    position: relative;
    z-index: 3;
}
.title {
    width: 80%;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 96px;
    line-height: 100%;
    text-transform: uppercase;
    color: #091049;
}
.title span {
    color: #72c763;
}
.check-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.check-item {
    display: flex;
    gap: 14px;
    align-items: center;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    color: #626262;
}
.request-button {
    border: none;
    cursor: pointer;
    margin-top: 48px;
    border-radius: 0 0 30px 0;
    padding: 14px 32px;
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    width: fit-content;
}
.map-background {
    background-image: url("../img/map-background.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: -150px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 915px;
}
.return-money-background {
    background-image: url("../img/return-money-background.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
}
.return-money-block-top {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.return-money-block-top-title {
    width: 80%;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 48px;
    text-transform: uppercase;
    color: #091049;
}
.return-money-block-top-description {
    width: 70%;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    color: #626262;
}
.return-money-block-top-description span {
    font-weight: 700;
}
.return-money-block-slider {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 20px 0;
}
.swiper {
    width: 100%;
    padding: 10px 0;
}
.swiper-wrapper {
/*    gap: 10px;*/
}
.swiper-slide {
    /*flex: 0 0 25%;
    max-width: 25%;*/
    border-radius: 0 24px 0 0;
    background: rgba(99, 126, 199, 0.4);
}
.slide-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 528px;
    padding: 64px 46px;
}
.slide-item-title {
    margin-top: 64px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    color: #101650;
}
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0;
}
.slide-item-description {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #101650;
}
.slide-item-description span {
    font-weight: 600;
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.slide-item-button {
    cursor: pointer;
    margin-top: auto;
    border: none;
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
    border-radius: 0 0 20px 0;
    padding: 14px 24px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    cursor: pointer;
}
.swiper-button-prev {
    margin-left: -70px;
    background-image: url("../img/slider-prev.svg");
}
.swiper-button-next {
    margin-right: -70px;
    background-image: url("../img/slider-prev.svg");
    transform: rotate(180deg);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
    display: block !important;
}
.return-money-block-bottom {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.return-money-block-bottom-description {
    width: 60%;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    color: #091049;
}
.return-money-block-bottom-description-color {
    font-weight: 500;
    color: #626262;
}
.return-money-block-bottom-description-font {
    font-weight: 600;
    color: #626262;
}
.return-money-block-bottom-description-underline {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #626262;
}
.chief-lawyer-block {
    background: linear-gradient(10deg, #040629 0%, #091049 100%);
    display: flex;
    height: 400px;
    margin-top: 30px;
    padding-top: 23px;
}
.chief-lawyer-block-image {
    width: 33%;
    background-image: url("../img/lawyer.svg");
    background-repeat: no-repeat;
    border-radius: 0 24px 0 0;
}
.chief-lawyer-block-text {
    width: 63%;
    padding: 0 74px 28px 49px;
    display: flex;
    flex-direction: column;
}
.chief-lawyer-block-text-top {
    display: flex;
    justify-content: space-between;
}
.statistic-block {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.statistic-block:first-child {
    width: 32%;
}
.statistic-block-top {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 96px;
    line-height: 111%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.statistic-block-center {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    text-transform: uppercase;
    color: #fff;
}
.statistic-block-bottom {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 144%;
    color: #fff;
    opacity: 0.7;
}
.chief-lawyer-block-text-bottom {
    border-top: 2px solid #637ec7;
    margin-top: 48px;
    padding-top: 24px;
}
.chief-lawyer-block-text-bottom-text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 18px;
    color: #637ec7;
}
.return-money-block {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
}
.return-money-block-title {
    width: 70%;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 48px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #091049;
}
.return-money-container {
    background-image: url("../img/return-money-background-item.svg");
    background-repeat: no-repeat;
    background-position: right 150px top 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    margin-top: 24px;
}
.return-money-item {
    border-radius: 0 24px 0 0;
    padding: 64px 48px;
    background: rgba(114, 199, 99, 0.5);
    display: flex;
    flex-direction: column;
}
.full-width {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background: rgb(170, 225, 160);
}
.image {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background-image: url("../img/return-money-image.svg");
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
}
.return-money-item-number {
    border-radius: 100px;
    width: 84px;
    height: 84px;
    background: #72c763;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.return-money-item-title {
    margin-top: 48px;
    margin-bottom: 14px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: #101650;
}
.return-money-item-description {
    margin-top: 14px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    color: #101650;
}
.review-background {
    background-image: url("../img/return-money-background-img.svg");
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 120px;
    background-color: #637ec7;
    margin-top: -230px;
}
.review-block {
    padding-top: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.review-block-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 48px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
}
.review-swiper-slide {
    /*flex: 0 0 20%;
    max-width: 20%;*/
    border-radius: 0 24px 0 0;
	/*padding: 37px 35px;*/
    background: rgba(255, 255, 255, 0.5);
}
.swiper-slide-active.review-swiper-slide {
/*    flex: 0 0 40%;*/
/*    max-width: 40%;*/
    background: #fff;
}
.review-slide-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 212px;
    padding: 37px 35px;
}
.swiper-slide-active.review-slide-item-title {
/*    flex: 0 0 40%;*/
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    color: #0b0b0b;
}
.review-slide-item-title {
    margin-top: 10px;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    color: #637ec7;
}
.review-slide-item-title span {
    font-weight: 500;
}
.review-person-block {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}
.person-block {
    display: flex;
    flex-direction: column;
}
.person-block-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 158%;
    text-transform: uppercase;
    color: #fff;
}
.person-block-city {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}
.swiper-slide-active .review-slide-item-title {
    color: #0b0b0b;
}
.swiper-slide-active .person-block-name,
.swiper-slide-active .person-block-city {
    color: #828282;
}
.swiper-slide-active .apostrophe {
    filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(2673%) hue-rotate(201deg) brightness(99%)
        contrast(97%);
}
.leave-request {
    width: 50%;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
}
.leave-request span {
    text-decoration: underline;
}
.leave-request-button {
    cursor: pointer;
    border: none;
    border-radius: 0 0 30px 0;
    padding: 14px 32px;
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.why-us-block {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
.why-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}
.why-us-title {
    margin-top: 15px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.why-us-title-sm {
    width: 80%;
    margin-top: 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
.why-us-container {
    margin-top: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.review-block-description {
    margin-top: 15px;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #fff;
}
.form-block {
    margin-top: 50px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.form-input {
    background: transparent;
    border: none;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}
.form-input:focus {
    outline: none;
    border: none;
}
.input-container {
    width: 100%;
    position: relative;
    padding: 15px 0;
}
.input-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(270deg, #040629 0%, #091049 100%);
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    text-align: center;
}
.modal-message {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 22px;
    color: #828282;
}
.footer-block {
    background: linear-gradient(10deg, #040629 0%, #091049 100%);
    display: flex;
    background-size: cover;
    flex-direction: column;
    position: relative;
}
.footer-block-image {
    position: absolute;
    height: 100%;
    width: 19%;
    opacity: 0.2;
}
.footer-block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-left: 1px solid rgba(219, 219, 219, 0.2);
    border-right: 1px solid rgba(219, 219, 219, 0.2);
}
.footer-block-title-text {
    padding-top: 70px;
    padding-bottom: 50px;
    padding-left: 30px;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 140%;
    text-transform: uppercase;
    color: #f7faff;
}
.footer-block-title-img {
    width: 15%;
}
.footer-block-main {
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(219, 219, 219, 0.2);
}
.footer-main-img {
    width: 35%;
}
.footer-block-main-left {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 34px;
    padding-left: 33px;
}
.footer-block-main-left-top {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 19px;
    line-height: 153%;
    text-transform: uppercase;
    color: #dbdbdb;
}
.footer-block-main-left-center {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 156%;
    color: #dbdbdb;
    margin-top: 27px;
}
.footer-block-main-left-bottom {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 22px;
    line-height: 155%;
    text-transform: uppercase;
    color: #dbdbdb;
}
.phone-img {
    width: 58px;
    height: 58px;
}
.footer-block-phone-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 50px;
    padding-bottom: 39px;
}
.footer-block-phone-number {
    display: flex;
    gap: 50px;
}
.policy-block {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.messenger {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 156%;
    color: #f2f2ef;
}
.messenger:hover span {
    filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(2673%) hue-rotate(201deg) brightness(99%)
        contrast(97%);
}
.policy-item {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 200%;
    color: #dbdbdb;
    opacity: 0.7;
    text-decoration: none;
}
.line-divider {
    height: 1px;
    background: #dbdbdb;
    opacity: 0.2;
}
.footer-bottom-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 1px solid rgba(219, 219, 219, 0.2);
    border-right: 1px solid rgba(219, 219, 219, 0.2);
    padding: 10px 43px 24px 33px;
}
.footer-bottom-button {
    border: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    display: inline-block;
}
@media (min-width: 1025px) and (max-width: 1400px) {
    .wrapper {
        width: 960px;
    }
    .title {
        font-size: 90px;
    }
    .map-background {
        height: 600px;
    }
    .swiper-slide {
        /*flex: 0 0 42%;
        max-width: 42%;*/
    }
    .slide-item {
    	padding: 30px;
    }
    .swiper-wrapper {
        width: 94%;
    }
    .return-money-block-slider {
        width: 90%;
        margin: 0 auto;
    }
    .return-money-block-bottom-description {
        width: 80%;
    }
    .chief-lawyer-block-image {
        width: 30%;
        background-size: cover;
    }
    .chief-lawyer-block-text {
        width: 61%;
        padding: 0 40px 28px 40px;
    }
    .statistic-block-top {
        font-size: 80px;
    }
    .statistic-block-center {
        font-size: 16px;
    }
    .statistic-block-bottom {
        font-size: 14px;
    }
    .review-swiper-slide {
        /*flex: 0 0 32%;
        max-width: 32%;*/
    }
    .swiper-slide-active.review-swiper-slide {
        /*flex: 0 0 52%;
        max-width: 52%;*/
    }
    .why-us-title {
        font-size: 22px;
    }
    .footer-block-main-left {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
    }
    .footer-main-img {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .wrapper {
        width: 720px;
    }
    .nav-link-block {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .title {
        font-size: 60px;
    }
    .title-block {
        padding-bottom: 200px;
    }
    .map-background {
        height: 500px;
    }
    .return-money-block-top-title {
        width: 100%;
        font-size: 40px;
    }
    .return-money-block-top-description {
        width: 90%;
    }
    .swiper-slide {
        /*flex: 0 0 42%;
        max-width: 42%;*/
    }
    .slide-item {
    	padding: 20px;
    }
    .return-money-block-slider {
        width: 80%;
        margin: 0 auto;
    }
    .return-money-block-title {
        width: 100%;
        font-size: 40px;
    }
    .return-money-block-bottom-description {
        width: 80%;
    }
    .slide-item-title {
        font-size: 20px;
        margin-top: 30px;
    }
    .chief-lawyer-block-image {
        width: 70%;
        background-size: cover;
    }
    .chief-lawyer-block-text {
        width: 50%;
        padding: 0 40px 28px 40px;
    }
    .statistic-block-top {
        font-size: 60px;
    }
    .chief-lawyer-block-text-top {
        flex-direction: column;
    }
    .statistic-block {
        width: 100%;
    }
    .statistic-block-center {
        font-size: 16px;
    }
    .statistic-block-bottom {
        font-size: 14px;
    }
    .chief-lawyer-block-text-bottom {
        display: none;
    }
    .return-money-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .review-slide-item-title {
        font-size: 16px;
    }
    .review-block-title {
        font-size: 40px;
    }
    .review-swiper-slide {
       /* flex: 0 0 32%;
        max-width: 32%;*/
    }
    .swiper-slide-active.review-swiper-slide {
        /*flex: 0 0 52%;
        max-width: 52%;*/
    }
    .leave-request {
        width: 80%;
    }
    .why-us-block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
    }
    .why-us-item {
        width: 100%;
    }
    .why-us-title {
        font-size: 22px;
    }
    .footer-block-main-left {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
    }
    .footer-main-img {
        display: none;
    }
    .footer-block-main-left-top {
        font-size: 16px;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    .wrapper {
        width: 460px;
        padding: 0 10px;
    }
    .nav-bar-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }
    .nav-bar-container div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    .nav-bar-container div:nth-child(2) {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-content: center;
        flex-direction: row;
    }
    .nav-bar-container div:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
    .nav-link-block {
        gap: 15px;
    }
    .title {
        width: 100%;
        font-size: 46px;
    }
    .title-block {
        padding: 50px 0;
        gap: 30px;
    }
    .check-item {
        width: 65%;
        font-size: 20px;
    }
    .request-button {
        font-size: 22px;
        margin-top: 0;
    }
    .map-background {
        margin-top: 0;
        height: 300px;
    }
    .return-money-block-top-title {
        width: 100%;
        font-size: 30px;
    }
    .return-money-block-top-description {
        width: 90%;
        font-size: 18px;
    }
    .swiper-slide {
        /*flex: 0 0 87%;
        max-width: 87%;*/
    }
    .slide-item {
    	padding: 20px;
    }
    .swiper-button-prev {
        margin-left: -50px;
    }
    .swiper-button-next {
        margin-right: -50px;
    }
    .return-money-block {
        margin-top: 50px;
    }
    .return-money-block-slider {
        width: 80%;
        margin: 0 auto;
    }
    .return-money-block-title {
        width: 100%;
        font-size: 30px;
    }
    .return-money-block-bottom {
        margin-top: 50px;
    }
    .return-money-block-bottom-description {
        width: 80%;
        font-size: 18px;
    }
    .slide-item-title {
        font-size: 20px;
        margin-top: 30px;
    }
    .chief-lawyer-block-image {
        display: none;
    }
    .chief-lawyer-block {
        height: auto;
    }
    .chief-lawyer-block-text {
        width: 100%;
        padding: 0 40px 28px 40px;
    }
    .statistic-block-top {
        font-size: 60px;
    }
    .chief-lawyer-block-text-top {
        flex-direction: column;
        gap: 20px;
    }
    .statistic-block {
        width: 100%;
    }
    .statistic-block-center {
        font-size: 16px;
    }
    .statistic-block-bottom {
        font-size: 14px;
    }
    .return-money-item {
        padding: 30px;
    }
    .return-money-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .review-slide-item-title {
        font-size: 16px;
    }
    .review-block {
        padding-top: 290px;
    }
    .review-block-title {
        font-size: 24px;
    }
    .review-swiper-slide {
        /*flex: 0 0 32%;
        max-width: 32%;*/
    }
    .swiper-slide-active.review-swiper-slide {
       /* flex: 0 0 89%;
        max-width: 89%;*/
    }
    .leave-request {
        width: 90%;
        font-size: 18px;
    }
    .why-us-block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
    }
    .why-us-container {
        margin-top: 70px;
    }
    .why-us-item {
        width: 100%;
    }
    .why-us-title {
        font-size: 18px;
    }
    .leave-request-button {
        font-size: 20px;
    }
    .footer-block-title-text {
        padding-top: 40px;
        padding-bottom: 20px;
        padding-left: 20px;
        font-size: 24px;
    }
    .footer-block-main {
        flex-direction: column;
    }
    .footer-block-main-left {
        padding: 20px;
    }
    .footer-main-img {
        display: none;
    }
    .footer-block-phone-block {
        padding: 20px;
        align-items: center;
    }
    .footer-block-main-left-top {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .wrapper {
        width: calc(100% - 30px);
        padding: 0 15px;
    }
    .nav-bar-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-link-block {
        flex-direction: column;
        gap: 15px;
    }
    .title {
        width: 100%;
        font-size: 30px;
    }
    .title-block {
        padding: 50px 0;
        gap: 30px;
    }
    .check-item {
        width: 65%;
        font-size: 16px;
    }
    .check-item img {
        width: 20px;
    }
    .request-button {
        font-size: 16px;
        margin-top: 0;
    }
    .map-background {
        margin-top: 0;
        height: 200px;
    }
    .return-money-block-top {
        padding-top: 60px;
    }
    .return-money-block-top-title {
        width: 100%;
        font-size: 24px;
    }
    .return-money-block-top-description {
        width: 90%;
        font-size: 16px;
    }
    .slide-item {
        height: 480px;
    }
    .slide-item img {
        width: 50px;
    }
    .swiper-slide {
        /*flex: 0 0 93%;
        max-width: 93%;*/
    }
    .slide-item {
    	padding: 10px;
    }
    .slide-item-title {
        font-size: 16px;
    }
    .slide-item-description {
        font-size: 14px;
    }
    .slide-item-button {
        font-size: 13px;
    }
    .swiper-button-prev {
        margin-left: -50px;
    }
    .swiper-button-next {
        margin-right: -50px;
    }
    .return-money-block {
        margin-top: 50px;
    }
    .return-money-block-slider {
        width: 80%;
        margin: 0 auto;
    }
    .return-money-block-title {
        width: 100%;
        font-size: 24px;
    }
    .return-money-block-bottom {
        margin-top: 50px;
    }
    .return-money-block-bottom-description {
        width: 80%;
        font-size: 16px;
    }
    .return-money-item-title {
        font-size: 22px;
        margin-top: 25px;
    }
    .return-money-item-description {
        font-size: 16px;
    }
    .slide-item-title {
        font-size: 20px;
        margin-top: 30px;
    }
    .chief-lawyer-block-image {
        display: none;
    }
    .chief-lawyer-block {
        height: auto;
    }
    .chief-lawyer-block-text {
        width: 100%;
        padding: 0 40px 28px 40px;
    }
    .statistic-block-top {
        font-size: 60px;
    }
    .chief-lawyer-block-text-top {
        flex-direction: column;
        gap: 20px;
    }
    .statistic-block {
        width: 100%;
    }
    .statistic-block-center {
        font-size: 16px;
    }
    .statistic-block-bottom {
        font-size: 14px;
    }
    .return-money-item {
        padding: 30px;
    }
    .return-money-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .review-block {
        padding-top: 290px;
    }
    .review-block-title {
        font-size: 24px;
        text-align: center;
    }
    .review-swiper-slide {
        /*flex: 0 0 32%;
        max-width: 32%;*/
    }
    .swiper-slide-active.review-swiper-slide {
        /*flex: 0 0 93%;
        max-width: 93%;*/
    }
    .leave-request {
        width: 90%;
        font-size: 16px;
    }
    .review-background {
        padding-bottom: 60px;
    }
    .review-slide-item {
        justify-content: space-between;
    }
    .review-slide-item-title {
        font-size: 14px;
    }
    .review-block-description {
        font-size: 16px;
    }
    .why-us-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .why-us-container {
        margin-top: 70px;
    }
    .why-us-item {
        width: 100%;
    }
    .why-us-title {
        font-size: 18px;
    }
    .leave-request-button {
        font-size: 16px;
    }
    .footer-block-title-text {
        padding-top: 40px;
        padding-bottom: 20px;
        padding-left: 20px;
        font-size: 24px;
    }
    .footer-block-main {
        flex-direction: column;
    }
    .footer-block-main-left {
        padding: 20px;
    }
    .footer-main-img {
        display: none;
    }
    .footer-block-phone-block {
        padding: 20px;
        align-items: center;
    }
    .footer-block-main-left-top {
        font-size: 14px;
    }
    .footer-block-main-left-center {
        font-size: 14px;
    }
    .footer-block-main-left-bottom {
        font-size: 18px;
    }
    .footer-block-main-left-bottom img {
        width: 30px;
    }
    .footer-bottom-block {
        flex-direction: column;
        gap: 20px;
    }
    .footer-bottom-button img {
        width: 50px;
    }
}
