.hero {
    padding: 85px 0;
    padding-top: 160px;
}

.hero_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 44px;
}

.hero_left {}

.hero_left_line_box {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hero_left_line_box p {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.08em;
    text-align: left;
}

.hero_left_line {
    width: 56px;
    height: 2px;
    background: #D9D9D9;
}

.hero_title {
    font-family: Bebas Neue;
    font-size: 56px;
    font-weight: 400;
    line-height: 76.16px;
    text-align: left;
    color: #2D487D;
    margin-bottom: 12px;
}

.hero_left_text {
    font-family: Montserrat;
    font-size: 25px;
    font-weight: 400;
    line-height: 37.5px;
    text-align: left;
    margin-bottom: 100px;
}

.hero_left_btn {
    max-width: 400px;
    text-align: center;
}


.hero_btn {
    padding: 21px 50px;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    cursor: pointer;
    transition: .5s;
}

.hero_btn:active {
    transform: scale(0.9);
}


.hero_left_aloqa {
    margin-top: 8px;
}

.hero_left_aloqa a {
    text-decoration: none;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #2D487D;
}

.hero_reight {
    position: relative;
    max-width: 461px;
    max-height: 489px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
}

.hero_reight_img_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 30%;
    background: #fff;
    z-index: 2;
    border-radius: 0 36px 0 0;
}

.hero_reight::before,
.hero_reight::after {
    content: "";
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 40px;
    height: 40px;
    z-index: 3;
    background: transparent;
}

.hero_reight::before {
    background: transparent;
    border-radius: 0 0 0 61px;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    margin-bottom: -25px;
    margin-left: -25px;
}

.hero_reight::after {
    bottom: 0;
    left: 30%;
    border-radius: 0 0 0 61px;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    margin-bottom: -25px;
    margin-left: -25px;
    background: transparent;
}

.hero_reight img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 36px;
}

@media (max-width:1024px) {
    .hero_title {
        font-size: 40px;
        line-height: 55px;
    }

    .hero_btn {
        padding: 18px 10px;
        width: 100%;
        text-align: center;
    }

    .hero_left_text {
        font-size: 24px;
    }
}

@media (max-width:750px) {
    .hero_box {
        grid-template-columns: repeat(1, 1fr);
        position: relative;
        gap: 0;
        padding-bottom: 50px;
    }

    .hero_left_text {
        margin-bottom: 30px;
    }

    .hero_reight {
        margin: 0 auto;
        width: 100%;
        text-align: center;
        display: block;
        /* justify-content: flex-start; */
    }

    .hero_reight img {
        width: 100%;
    }

    .hero_left_btn {
        position: absolute;
        bottom: -70px;
        max-width: none;
        width: 100%;
        left: auto;
        right: auto;
        margin: 0 auto;
    }

    .hero_left_btn button {
        width: 70%;
    }

    .hero_left_line_box p {
        font-size: 14px;
    }

    .hero_btn {
        font-size: 16px;
        line-height: 20px;
    }

}

@media (max-width:525px) {
    .hero_title {
        text-align: center;
        font-size: 30px;
        line-height: 35px;
    }

    .hero_left_text {
        font-size: 18px;
        line-height: 25px;
    }

    .hero_left_btn button {
        width: 100%;
    }

    .hero_left_line_box p {
        font-size: 12px;
    }
}

@media (max-width:380px) {}