.section-header{
	text-align: left;
    margin-left: 30px;
    margin-top: 20px;
}

.main-banner-cont {
    padding: 3rem;
    margin-top: 3rem;
    background-color: #DCF8D8;
}
.main-banner-cont_content {
    min-width: 0;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}
.main-banner-cont_city {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.main-banner-cont_main-info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
}
.main-banner-cont_main-info_owner {
    font-size: 1.5rem;
    margin: 2rem 0;
}
.main-banner-cont_main-info_buttons-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    margin-top: 6rem;
}
.main-banner-cont_main-info_buttons-cont a {
    color: #fff;
}
.main-banner-cont_main-info_buttons-cont_pack {
    display: flex;
    align-items: center;
}
.main-banner-cont_main-info_buttons-cont_pack img {
    width: 55px;
    margin-right: .7rem;
}
.main-banner-cont_img {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex: 0 1 36%;
    min-width: 280px;
}
.main-banner-cont_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.main-banner-cont_reviews-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
}
.main-banner-cont_reviews-cont_review {
    flex: 1 1 0;
}
.main-banner-cont_reviews-cont_review img {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
}

.show-all-goods-btn-cont{
    display: flex;
    justify-content: center;
    position: relative;
}
.show-all-goods-btn-primary{
    border: 1px solid #FF99FC;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    font-weight: bolder;
    text-transform: uppercase;
}

.show-all-goods-btn-primary::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: hsla(302, 100%, 80%, 0.7);
    z-index: -1;
    transition: .6s ease-in-out;
}

.show-all-goods-btn-primary:hover{
    color: #fff;
}
.show-all-goods-btn-primary:hover::before{
    width: 100%;
}

.show-all-goods-btn-secondary{
    border-color: #09D600;
}

.show-all-goods-btn-secondary::before{
    background-color: rgba(9, 214, 0, 0.7);
}

/* Guarantees block */
.guarantees-cont {
    padding: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
}

.guarantee{
    padding: 10px;
    position: relative;
    max-width: 30%;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.img-cont{
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.img-cont img{
    width: 50px;
    height: 50px;
    max-height: 80px;
}

.guarantee__content{
    width: 60%;
}

.guarantee-name{
    font-weight: 600;
    font-size: 16px;
}

.guarantee-desc{
    margin-top: 15px;
}


/* Subscribe Form */
.subscribe-form{
    position: relative;
    background-color: #09d60030;
    height: 500px;
    padding: 10% 25%;
    margin-top: 2rem;
    text-align: center;
}

.subscribe-form-header{
    font-size: 26pt;
    margin-bottom: 17px
}

.subscribe-form-desc{
    margin-bottom: 50px;
}

.subscribe-cont{
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    position: relative;
}

.email-input{
    width: 100%;
    border: none;
    outline: none;
    transition: 0.6s;
    padding-left: 7px;
    padding-right: 60px;
    border-radius: 5px;
    height: 45px;
    font-size: 15pt;
}

.email-input:hover, .email-input:focus{
    box-shadow: inset 0 0 0 2px #09D600;
}

.email-btn-cont{
    display: block;
    border: none;
    background: none;
    position: absolute;
    width: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    cursor: pointer;
}

.arrow-right-icon{
    height: 20px;
    width: 20px;
}

/* Carousel */
.carousel {
	position: relative;
	display: flex;
	justify-content: center;
    width: 100%;
}
.carousel_img { 
	max-width: 60%;
    border-radius: 20px;
}

.work-process {
    margin: 0 auto;
    padding: 40px 20px;
}

.work-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.work-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3498db;
    height: 60px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Цвета для разных шагов */
.step:nth-child(1) .step-number {
    background-color: #e74c3c;
}

.step:nth-child(1) .step-icon {
    color: #e74c3c;
}

.step:nth-child(2) .step-number {
    background-color: #f39c12;
}

.step:nth-child(2) .step-icon {
    color: #f39c12;
}

.step:nth-child(3) .step-number {
    background-color: #2ecc71;
}

.step:nth-child(3) .step-icon {
    color: #2ecc71;
}

.step:nth-child(4) .step-number {
    background-color: #9b59b6;
}

.step:nth-child(4) .step-icon {
    color: #9b59b6;
}

@media screen and ( max-width: 800px) {
    .carousel{
        justify-content: flex-start;
    }
    .carousel_img {
        max-width: 100%;
        max-height: 65%;
    }

    .main-banner-cont_reviews-cont {
        flex-direction: column;
        align-items: center;
    }

    .main-banner-cont_reviews-cont_review img {
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .guarantees-cont{
        display: block;
    }

    .guarantee{
        width: 100%;
        max-width: unset;
    }

    .main-banner-cont_main-info {
        flex-direction: column;
    }
    .main-banner-cont_content {
        width: 100%;
    }
    .main-banner-cont_main-info_buttons-cont {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    .main-banner-cont_img {
        min-width: 0;
        padding: 0;
        margin-top: 2rem;
    }
    .main-banner-cont_img img {
        width: 100%;
        height: auto;
    }

    .step {
        max-width: 100%;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .work-title {
        font-size: 28px;
    }
}
