.sectors {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sectors__title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.sectors__title h2 {
    margin-top: 10px;
}
.sectors__title p {
    flex-basis: 51%;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}
.sectors ul::after,
.sectors ul::before {
    content: "";
    background: url(../images/border-white.svg);
    background-repeat: repeat-x;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -2px;
    max-height: 24px;
}
.sectors ul::before {
    top: -2px;
    transform: rotate(180deg);
    z-index: 2;
}
.sectors ul a:hover img {
    transform: scale(1.2);
}
@media screen and (min-width: 600px) {
    .sectors ul a:hover .card {
        transform: translateY(-120px);
    }
}
.sectors ul a:hover .card__hover {
    opacity: 1;
    transform: translateY(0);
}
.sectors ul li {
    gap: 0;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.sectors ul li::before {
    content: "";
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 47.48%);
    width: 100%;
    height: 100%;
    max-width: initial;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    z-index: 1;
}
.sectors ul li img {
    object-fit: cover;
    height: 400px;
    transition: transform 0.6s ease-in-out;
}
@media screen and (min-width: 600px) {
    .sectors ul li img {
        height: 713px;
    }
}
.sectors ul li .card {
    position: absolute;
    z-index: 2;
    padding: 43px 32px 40px 32px;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

@media screen and (min-width:768px) {
    .sectors ul li .card {
        padding: 43px 32px 54px 32px;
    }
}

.sectors ul li .card p {
    font-family: "Roboto Slab";
    font-weight: 200;
    font-size: 16px;
    line-height: 120%;
    color: #d8b465;
}
@media screen and (min-width: 600px) {
    .sectors ul li .card p {
        font-size: 28px;
    }
}
.sectors ul li .card p span {
    font-family: "Roboto Slab";
    font-weight: 100;
    font-size: 32px;
    line-height: 120%;
    color: white;
    margin-right: 6px;
}
@media screen and (min-width: 600px) {
    .sectors ul li .card p span {
        font-size: 61px;
    }
}
.sectors ul li .card h3 {
    font-family: "Roboto Slab";
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: white;
    display: flex;
    margin: 16px 0 0 32px;
    position: relative;
    max-width: 395px;
}
@media screen and (min-width: 600px) {
    .sectors ul li .card h3 {
        font-size: 32px;
    }
}
.sectors ul li .card h3::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #d8b465;
    position: absolute;
    left: -32px;
}
.sectors ul li .card__hover {
    display: none;
}
@media screen and (min-width: 600px) {
    .sectors ul li .card__hover {
        display: flex;
        align-items: center;
        gap: 55px;
        margin-top: 24px;
        transform: translateY(120px);
        position: absolute;
        opacity: 0;
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    }
}
.sectors ul li .card__hover p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: white;
    flex-basis: 60%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.sectors .-sectors {
    margin-top: 40px;
}
@media screen and (min-width: 600px) {
    .sectors .-sectors {
        margin-top: 26px;
    }
}
.sectors__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}
@media screen and (min-width:992px) {
    .sectors__arrow {
        flex-direction: row;
        justify-content: center;
    }
}
.sectors__arrow .link {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
@media screen and (min-width:992px) {
    .sectors__arrow .link{
        flex-direction: row;
    }
}
.sectors__arrow .link::after {
    content: "";
    display: block;
    height: 1px;
    width: 80px;
    background-color: #d8b465;
}
.sectors__arrow .link a{
    font-family: "Roboto Slab";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
}
.sectors__arrow .link a strong{
    font-weight: 700;
}
.sectors__arrow .arrow{
    margin-top: 0;
}
