:root {
    /*Colors*/
    --white-text: #ffffff;
    --red: #E21818;
    --red-pallete: rgba(226, 24, 24, 0.5);

    --white-bg: #fbfbfe;
    --white-bg-hover: #d1cece;
    --block-bg: #f2efef;

    --black-text: #191618;
    --grey-text: #555;
    --white-low-text: #cbcbcb;

    --coral-bg: #fa9494;
    --coral-bg-opacity: #fa9494c9;

    --spacing-small: 68px;
    --spacing-medium: 16px;
    --spacing-large: 75px;

    --font-family: "Monda", sans-serif;
    --second-family: "Montserrat", sans-serif;

    --white: #f2f1f1;
    --gold: #ffd700;
    --grey-white: #7c828d;
    --grey: #292b2f;
    --bg: #1b1c1d;
    --purple: #48467d;
    --yellow-white: #ffee93;
}

.main-section {
    padding: 0;
    margin: 0;
    width: 100%;
}

.intro h1 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 104px;
    color: #F2F1F1;
    margin-bottom: 20px;
}

.intro p {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #7C828D;
    margin-bottom: 50px;
}

.intro a {
    color: var(--gold);
}

.intro a:hover {
    color: var(--gold);
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 0 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    margin-top: 50px;
    margin-bottom: 70px;
}

.why-escort-club {
    width: 100%;
    max-width: calc(100% - 140px);
    margin: 0 auto 70px auto;
    background: rgba(41, 43, 47, 1);
    backdrop-filter: blur(23.299999237060547px);
    padding: 50px 0;
    border-radius: 100px;
}

.why-escort-club .container {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    row-gap: 20px;
}

.why-escort-club .text-block {
    flex: 0 0 50%;
    padding-right: 60px;
}

.why-escort-club h2 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 54px;
    line-height: 88px;
    color: #F2F1F1;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
}

.why-escort-club .features-section {
    flex: 0 0 50%;
    display: flex;
    flex-flow: column;
    gap: 20px;
    margin: 0;
}

.text-block {
    flex: 1;
    width: 100%;
}

.text-block h2 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 54px;
    line-height: 88px;
    color: #F2F1F1;
    margin-bottom: 15px;
}

.text-block p {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #7C828D;
}

.text-block p a {
    color: var(--gold);
}

.text-block li::before {
    position: absolute;
    left: -20px;
    top: 9px;
    content: '';
    display: block;
    border: 2px solid rgba(255, 215, 0, 1);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.image-block {
    width: 100%;
    flex: 0 0 460px;
    display: flex;
    padding-left: 40px;
    position: relative;
}

.image-block::before {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 40px);
    background: var(--grey);
    z-index: 0;
}

.image-block img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 50px;
    z-index: 1;
}

.features-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.feature {
    flex: 0 0 calc(33.3334% - 20px);
    width: 100%;
}

.feature h3 {
    position: relative;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 39px;
    color: #FFEE93;
    padding-left: 16px;
    margin-bottom: 10px;
}

.feature h3::before {
    position: absolute;
    left: 0;
    top: 17px;
    content: '';
    display: block;
    border: 2px solid rgba(255, 215, 0, 1);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.feature p {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7C828D;
}


.text-block ul {
    padding-left: 20px!important;
    margin-bottom: 20px;
}

.text-block li {
    margin-bottom: 10px;
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #7C828D;
    position: relative;
}

.text-block li strong {
    color: var(--gold);
}

/*Purple theme*/


@media (max-width: 1300px) {
    .why-escort-club {
        max-width: calc(100% - 40px);
        border-radius: 50px;
    }
    .content-section{
        gap: 0 50px;
    }
}

@media (max-width: 1024px) {
    .text-block ul {
        padding-left: 15px;
        margin-bottom: 0;
    }

    .text-block li {
        font-size: 15px;
        margin-bottom: 15px;
    }
    .content-section{
            gap: 0 20px;
    }
    .image-block {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .why-escort-club .text-block{
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .text-block ul {
        padding-left: 10px;
    }

    .text-block li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .image-block img {
        width: 50%;
        border-radius: 5px;
        display: flex;
        justify-content: center;
    }

    .image-block {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1024px) {

    .content-section {
    }
    .intro{
        margin-top: 20px;
    }
    .why-escort-club .container {
        padding: 0;
    }

    .why-escort-club {
        max-width: 100%;
        border-radius: 0;
        padding: 30px 20px;
    }

    .why-escort-club .text-block,
    .why-escort-club .features-section {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .why-escort-club h2 {
        font-size: 44px;
        line-height: 72px;
    }
    .content-section{
        gap: 20px!important;
    }
    .text-block h2{
        font-size: 54px;
        line-height: 88px;
    }
    .text-block,
    .image-block {
        width: 100%;
    }

    .image-block {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .image-block {
        margin-top: 20px;
    }

    .why-escort-club .features-section {
        flex-flow: row;
        margin-bottom: 0!important;
    }

    .features-section {
        flex-direction: column;
        padding: 50px;
    }

    .feature {
        line-height: 1.2;
        flex: 0 0 calc(33.3334% - 20px);
        width: 100%;
    }
}


@media (max-width: 900px) {
        .text-block h2{
        font-size: 44px;
        line-height: 72px;
    }
}
@media (max-width: 768px) {
    .intro {
        flex-flow: row wrap;
        gap: 20px;
        margin-top: 15px;
        margin-bottom: 50px;
    }

    .intro .image-block,.content-section .image-block {
        margin-top: 0;
        flex: 0 0 49%;
        max-width: 354px;
        padding-left: 20px;
        aspect-ratio: 1;
    }
.why-escort-club{
    margin-bottom: 50px!important;
}
    .why-escort-club .features-section {
        flex-flow: column;
    }

    .image-block img {
        display: flex;
        justify-content: center;
        width: 100%;
        border-radius: 50px;
    }

    .intro h1 {
        font-size: 54px;
        line-height: 88px;
        flex: 0 0 100%;
        margin: 0 auto 0 0;       
    }

    .intro p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .text-block h2 {
        font-size: 24px;
    }

    .text-block p {
        font-size: 16px;
        line-height: 28px;
    }
    .content-section {
        flex-flow: row wrap;
        gap: 20px!important;
    }
    .content-section h2{
        flex: 0 0 auto;
        width: 100%;
        font-size: 44px;
        line-height: 72px;
    }
    .why-escort-club .features-section{
    margin-top: 0!important;
}
    .features-section {
        padding: 30px;
        margin-top: 30px!important;
        margin-bottom: 50px!important;
    }

    .feature h3 {
        font-size: 18px;
    }

    .feature p {
        font-size: 16px;
        line-height: 28px;
    }

}

@media (max-width: 560px) {
    .why-escort-club {
        padding: 20px 15px;
        margin-bottom: 40px;
    }
    .intro{
        flex-flow: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    .text-block *:last-child{
        margin-bottom: 0;
    }
    .intro h1{
        font-size: 32px;
        line-height: 52px;
    }
    .content-section{
        flex-flow: column-reverse;
        gap: 15px;
    }
    .features-section{
        padding: 0;
    }
    .why-escort-club h2,.content-section h2 {
        font-size: 32px;
        line-height: 52px;
    }
    .content-section h2{
        order: 1;
    }
    .image-block::before{
        display: none;
    }
    .image-block{
        padding-left: 0!important;
        margin: 0 auto;
    }
}

@media (max-width: 425px) {
    .image-block img {
        width: 100%;
    }

    .content-section {
        padding: 0;
    }
}