.home-banner {
    position: relative;
    padding: 60px;
    max-width: 100%;
}

.home-banner-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.home-banner-title {
    font-size: 64px;
    color: #1F222D;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    background: none;
}
.home-banner-title span {
    margin-top: 8px;
    display: block;
}
.home-banner-link {
    color: #F24D68;
    background-color: #FBC4CD;
    padding: 0 20px 8px 20px;
    border-radius: 10px;
    transition: all .2s linear;
    cursor: pointer;
    font-family: GTEestiProP;
    font-weight: 500;
}

.home-banner-link:hover {
    color: #fff;
    background-color: #f24d68;
}

.home-banner-list {
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#content .home-banner .home-banner-list li {
    position: relative;
    padding-left: 30px;
    background: none ;
    display: flex;
    padding-left: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    font-family: GTEestiProP;
    font-weight: 400;
}

.home-banner-list li::before {
    content: "•"; 
    color: #F24D68;
    font-size: 1.2em; 
    width: 30px;
    text-align: center;
}

.home-banner-btns-container {
    display: flex;
    gap: 24px;
}

.home-banner-btn-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-banner-btn-item-title {
    font-size: 18px;
}

.home-banner-btn {
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 46px;
    transition: .1s;
    text-align: center;
}

.home-banner-btn-item {
    max-width: 230px;
}
.home-banner-btn.primary {
    background: #f24d68;
    color: #fff;
    border: 2px solid #f24d68;
}

.home-banner-btn.primary:hover {
    background: #fff;
    color: #f24d68;
}

.home-banner-btn.secondary {
    background: #fff;
    color: #f24d68;
    border: 2px solid #f24d68;
}

.home-banner-btn.secondary:hover {
    background: #f24d68;
    color: #fff;
}

.home-banner-btn-desc {
    text-align: center;
}

.home-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 520px;
}

@media screen and (max-width: 991px) {
    .home-banner {
        padding: 46px 24px;
    }
    .home-banner-title {
        font-size: 32px;
    }
    .home-banner-title span {
        margin-top: 4px;
    }
    .home-banner-link {
        padding: 0 14px 4px 14px;
    }
    #content .home-banner .home-banner-list li {
        font-size: 16px;
    }
    .home-banner-list {
        gap: 6px;
    }
    .home-banner-list li::before {
        width: 10px;
        min-width: 10px;
        text-align: left;
    }
    .home-banner-img {
        top: 40px;
        right: 0;
        max-width: 330px;
    }
}

@media screen and (max-width: 768px) {
    .home-banner {
        overflow: hidden;
        padding: 46px 16px 15px;
    }
    .home-banner-img {
        top: 60px;
        right: -60px;
    }
    .home-banner-btns-container {
        gap: 8px;
        margin-top: 0;
    }
    .home-banner-btn-item {
        max-width: 50%;
        align-items: center;
    }
    .home-banner-btn {
        font-size: 16px;
        padding: 6px 26px;
    }
    .home-banner-btn-desc {
        font-size: 13px;
    }
}

@media screen and (max-width: 500px) {
    .home-banner-img {
       max-width: 190px;
       top: 80px;
        right: -10px;
    }
}