.home-page-section {
    width: 100%;
    margin: 0;
}

.home-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.img-section {
    width: 100%;
    aspect-ratio: 16 / 6;
    max-height: 560px;
    object-fit: cover;
    opacity: 0.38;
}

.title {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(900px, calc(100% - 2rem));
    text-align: center;
}

.title h1,
.title p {
    margin: 0 0 0.7rem;
}

.title-butten {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.title-butten a {
    text-decoration: none;
    background-color: orange;
    min-width: 150px;
    text-align: center;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid orange;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.title-butten a:hover {
    background-color: #1985dc;
    transition: 0.3s;
}

.servic {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.servic img {
    width: 45px;
    height: 32px;
}

.section2 {
    background: white;
    padding: 2rem 0 1.3rem;
}

.test {
    text-align: center;
    padding-top: 0;
    margin-bottom: 1.2rem;
}

.test2 {
    display: flex;
    background-color: white;
    width: 100%;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.test2 img {
    padding-top: 15px;
    width: 50px;
    height: 50px;
}

.test-border {
    border: 1px solid black;
    border-radius: 8px;
    width: min(230px, 100%);
    background-color: white;
    direction: rtl;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 0.45rem;
}

.test-border a {
    text-decoration: none;
    color: black;
    line-height: 30px;
    display: block;
    width: 100%;
}

.test-border div {
    display: flex;
    background-color: white;
    width: 100%;
    text-align: center;
    min-height: 34px;
    border: 1px solid black;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
}

.section3 {
    width: 100%;
    background-color: aliceblue;
    margin-top: 1.4rem;
    padding: 1.8rem 0 1.2rem;
}

.test3 {
    text-align: center;
    padding-top: 0;
}

.test3-div {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.test3-div img {
    padding-top: 15px;
    width: 50px;
    height: 50px;
}

.textt {
    background-color: #beedff8f;
    width: min(100%, 1000px);
    border: 1px solid #beedff8f;
    border-radius: 8px;
    margin: 1.4rem auto 0;
    text-align: center;
    padding: 1rem 0.75rem;
}

.textt div {
    display: inline-flex;
    width: 120px;
    min-height: 32px;
    border: 1px solid black;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.textt div+div {
    margin-inline-start: 0.4rem;
}

.textt div a {
    display: block;
    text-decoration: none;
    color: black;
    width: 100%;
}

.tasttt {
    background-color: orange;
}

.test2 a:hover,
.test3-div a:hover {
    background-color: orange;
    color: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .title {
        width: calc(100% - 1.2rem);
    }

    .title h1 {
        font-size: 1.4rem;
    }

    .section2,
    .section3 {
        margin-top: 0.9rem;
    }

    .textt div {
        width: 100%;
        max-width: 220px;
        margin: 0.3rem auto;
    }

    .textt div+div {
        margin-inline-start: 0;
    }
}