* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.image-text-with-icons {
    display: flex;
    width: 100%;
    padding: 80px 64px;
    background-color: white;
}

.image-text-with-icons.image-right .image-text-inner-wrapper {
    flex-direction: row-reverse;
}

.image-text-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    max-width: 536px;
    height: 720px;
}

.image-wrapper img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Montserrat;
    color: white;
    font-size: 16px;
}

.name-tag > span:last-child {
    font-size: 12px;
    opacity: 0.6;
}

.image-wrapper:after {
    content: "";
    position: absolute;
    top: 48px;
    left: 48px;
    width: 80px;
    height: 80px;
    display: block;
    background-color: white;
    border-radius: 50%;
}

.image-text-with-icons.image-right .image-text-inner-wrapper > img {
    margin-left: 112px;
}

.image-text-with-icons.image-left .image-text-inner-wrapper > img {
    margin-right: 112px;
}

.text-content {
    max-width: 424px;
}

.image-text-with-icons.image-right .text-content {
    margin-left: 112px;
}

.image-text-with-icons.image-left .text-content {
    margin-right: 112px;
}

.category-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border: 1px solid #000;
    padding: 10px 16px;
    border-radius: 240px;
    margin-bottom: 32px;
}

.category-label {
    color: var(--Black, #000);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 16.8px */
    letter-spacing: 2.24px;
    text-transform: uppercase;
}

.text-content > h2 {
    color: black;
    font-family: "Montserrat Alternates";
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 48px */
    letter-spacing: -1.6px;
    margin-bottom: 32px;
}

.text-content > p {
    color: black;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 32px */
    letter-spacing: -0.32px;
    opacity: 50%!important;
}

.text-content > ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 32px;
    margin-top: 40px;
}

.text-content > ul > li {
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
    color: black;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 17.6px */
    letter-spacing: -0.16px;
}

.button-container {
    display: flex;
    gap: 16px;
}

@media screen and (max-width: 1320px) {

    .image-text-with-icons.image-right .text-content {
        margin-left: 0px;
    }
    
    .image-text-with-icons.image-left .text-content {
        margin-right: 0px;
    }

}

@media screen and (max-width: 1160px) {

    .image-wrapper{
        width: 100%;
        max-width: 400px;
        min-width: 240px;
        height: 560px;
    }

    .image-text-with-icons.image-right .text-content {
        margin-left: 0px;
    }
    
    .image-text-with-icons.image-left .text-content {
        margin-right: 0px;
    }

    .image-text-with-icons.image-right .image-wrapper {
        margin-left: 64px;
    }
    
    .image-text-with-icons.image-left .image-wrapper {
        margin-right: 64px;
    }

    .image-wrapper:after {
        top: 40px;
        left: 40px;
        width: 64px;
        height: 64px;
    }

    .text-content {
        max-width: 320px;
    }
    
    .text-content > h2 {
        font-size: 32px;
        letter-spacing: -0.6px;
        margin-bottom: 24px;
    }
    
    .text-content > p {
        font-size: 14px;
        letter-spacing: -0.24px;
        margin-bottom: 24px;
    }

    .text-content > ul > li {
        font-size: 14px;
        letter-spacing: none;
    }

    .category-tag {
        gap: 14px;
        padding: 8px 14px;
        margin-bottom: 24px;
    }
    
    .category-label {
        font-size: 12px;
    }
}

@media screen and (max-width: 760px) {

    .image-text-with-icons {
        padding: 80px 24px;
    }

    
    .image-text-inner-wrapper {
        flex-direction: column !important;
        align-items: start;
        gap: 32px;
    }

    .image-wrapper {
        width: 100%;
        height: 480px;
        max-width: unset;
    }

    .image-text-with-icons.image-right .image-wrapper {
        margin-left: 0px;
    }
    
    .image-text-with-icons.image-left .image-wrapper {
        margin-right: 0px;
    }

    .text-content {
        max-width: unset;
    }
    
    .image-text-with-icons.image-right .text-content {
        margin-left: 0px;
    }
    
    .image-text-with-icons.image-left .text-content {
        margin-right: 0px;
    }
}