.section__districts {
    margin-top: 20px;
}

.section__districts__list {
    margin-top: 30px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.section__districts__list::-webkit-scrollbar {
    height: 4px;
}

.section__districts__list::-webkit-scrollbar-track {
    background: #c4c4c4;
    border-radius: 20px;
}

.section__districts__list::-webkit-scrollbar-thumb {
    margin-top: 10px;
    background: #e65d5d;
    border-radius: 20px;
}

.section__districts__item {
    height: 65px;
    width: 100%;
    border-radius: 7px;
    position: relative;
}

.section__districts__item::after {
    border-radius: 8px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(48, 90, 152, 0.7);
    z-index: 1;
}

.section__districts__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 7px;
}

.section__districts__name {
    position: absolute;
    font-size: 20px;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}

.section__districts__item:hover .section__districts__name {
    color: #000;
}

.section__districts__item:hover::after {
    background-color: rgba(255, 255, 255, 0.7);
}

.section__popular {
    padding-top: 30px;
}

.section__popular__link {
    color: #e65d5d;
    font-family: Inter;
    padding: 0 15px;
    border-radius: 9px;
    border: 1px solid #e65d5d;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 9px;
    -moz-column-gap: 9px;
    column-gap: 9px;
    height: 32px;
}

.section__popular__body {
    padding-top: 30px;
}

.section__popular__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
}

.section__popular__item {
    position: relative;
    max-width: 465px;
}

.section__popular__item a {
    width: 100%;
}

.section__popular__item__slider {
    width: 100%;

}

.section__popular__item__wrapper {
    width: 100%;
}

.section__popular__item__wrapper:hover img{
    transition-duration: 600ms;
    transform: scale(1.1);
}

.section__popular__item__slide {
    width: 100%;
    max-height: 340px;
}

.section__popular__item__slide img {
    max-height: 340px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.section__popular-prev,
.section__popular-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 9%;
}

.section__popular-prev img,
.section__popular-next img {
    width: 100%;
}

.section__popular-prev {
    left: 8px;
}

.section__popular-next {
    right: 8px;
}

.section__popular-next img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.section__blog {
    padding-top: 45px;
}

.section__blog__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 48%;
    grid-template-columns: 50% 48%;
    row-gap: 98px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.map-item {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
}

.section__blog__map {
    height: 93.5%;
    padding-top: 40px;
    position: relative;
}

.section__blog__map .section__blog__map__img {
    border-radius: 3px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section__blog__map__text {
    border-radius: 0 0 3px 3px;
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    opacity: 0.88;
    background: #e65d5d;
    padding: 17px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.section__blog__map__text img {
    width: 24px;
    height: 40px;
}

.section__blog__map__text:hover {
    opacity: 1;
    text-decoration: underline;
}

.section__blog__map__text:hover P {

}

.section__blog__company__body {
    padding: 13px 17px 16px 34px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e66e6d;
    background: rgba(255, 227, 227, 0.32);
    height: 100%;
}

.section__blog__company__search {
    margin-top: 24px;
    width: 328px;
    height: 40px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e65d5d;
}

.section__blog__company__search input {
    border: 1.219px solid #b0b0b0;
    height: 100%;
    width: 88%;
    border-radius: 3px 0px 0px 3px;
}

.section__blog__company__search img {
    margin-top: 3px;
    width: 12%;
    height: 100%;
    border-radius: 0px 3px 3px 0px;
}

.section__blog__company__list {
    margin-top: 10px;
    padding-top: 56px;
    padding-right: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    height: 425px;
    overflow-y: scroll;
    white-space: nowrap;
}

.section__blog__company__list::-webkit-scrollbar {
    width: 7px;
}

.section__blog__company__list::-webkit-scrollbar-track {
    background: #c4c4c4;
    border-radius: 20px;
}

.section__blog__company__list::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #e65d5d;
}

.section__blog__company__item {
    text-align: center;
    max-width: 175px;
}

.section__blog__company__item img {
    width: 100%;
}

.section__blog__company__list-btn {
    display: none;
    width: 100%;
    background-color: #2a5493;
    height: 50px;
    margin-top: 20px;
    cursor: pointer;
}

.section__blog__company__list-btn img {
    width: 26px;
    height: 12px;
}

.section__blog__company__name {
    margin-top: 4px;
}

.news-item {
    padding-top: 13px;
}

.section__blog__news__item {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #2a5493;
    position: relative;
    margin-top: 15px;
}

.section__blog__news__item img {
    -webkit-filter: blur(1px);
    filter: blur(1px);
    width: 100%;
    height: 83px;
    -o-object-fit: cover;
    object-fit: cover;
}

.section__blog__news__item:first-child {
    margin-top: 26px;
}

.section__blog__news__name {
    font-size: 18px;
    max-width: 537px;
    margin: 5px 0;
    margin-left: 9px;
}

.section__blog__news__text {
    margin-left: 9px;
    max-width: 537px;
    color: #333;
    margin-bottom: 5px;
}

.section__blog__news__date {
    color: #2a5493;
    position: absolute;
    bottom: 0;
    right: 7px;
}

@media (max-width: 1000px) {
    .section__blog__map__text {
        font-size: 22px;
    }

    .section__blog__company__body {
        padding-left: 20px;
    }
}

@media (max-width: 860px) {
    .section__blog {
        padding-top: 30px;
    }

    .section__blog__list {
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
        -webkit-column-gap: 27px;
        -moz-column-gap: 27px;
        column-gap: 27px;
        row-gap: 30px;
    }

    .map-item {
        -ms-grid-column: 1;
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .section__districts__list {
        padding-top: 20px;
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
    }

    .section__districts__item {
        width: 161px;
        height: 224px;
        margin-right: 14px;
        margin-bottom: 21px;
    }

    .section__districts__item::after {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .section__districts__name {
        font-size: 14px;
        bottom: 0;
        top: auto;
    }

    .section__popular__item__slide {
        max-height: 160px;
    }

    .section__blog__map {
        padding-top: 20px;
    }

    .section__blog__map .section__blog__map__img {
        height: 356px;
    }

    .section__blog__map__text {
        padding: 5px;
        font-size: 19px;
    }

    .company-item {
        margin-top: 30px;
    }

    .section__blog__company__search {
        margin-left: 25px;
    }
}

@media (max-width: 610px) {
    .section__blog__company__body {
        background-color: #fff;
        border: none;
        padding: 0;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
    }

    .section__blog__company__search {
        width: 100%;
        margin-left: 0;
    }

    .section__blog__company__list {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        -ms-flex-pack: distribute;
        justify-content: space-around;
        overflow-y: hidden;
        height: auto;
        padding-right: 0;
        justify-items: center;
    }

    .section__blog__company__item {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .section__popular__list {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .section__popular__link {
        height: 46px;
        margin-top: 33px;
        font-size: 22px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .section__popular__list {
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
        row-gap: 24px;
        justify-items: center;
    }

    .section__popular__item__slide {
        max-height: 300px;
    }

    .section__popular-prev,
    .section__popular-next {
        display: none;
    }

    .section__blog__map__text {
        bottom: 35px;
        font-size: 16px;
    }

    .company-item {
        margin-top: 45px;
    }

    .section__blog__company__list {
        max-height: 975px;
        overflow: hidden;
    }

    .section__blog__company__list-btn {
        display: block;
    }
}

@media (max-width: 460px) {
    .section__popular__item__slide {
        max-height: 270px;
    }
}

@media (max-width: 440px) {
    .section__blog__company__list {
        -ms-grid-columns: repeat(2, 124px);
        grid-template-columns: repeat(2, 124px);
    }

    .section__blog__company__item {
        width: 124px;
        height: 43px;
    }

    .section__blog__company__item img {
        width: 124px;
        height: 43px;
    }
}