@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&family=Poppins&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    border: none;
    font-family: 'Poppins', sans-serif;

}
p {
    padding: 0;
    margin: 0;
}
body {
    line-height: 1;
    background-color: #F6F4FF;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
}
ol, ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    font-family: 'Open Sans', sans-serif;
}

ul {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}
.btn, .btn.show {
    width: 146px;
    height: 40px;
    background-color: #4C2DCB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 110%;
    border-radius: 68px;
    border: none;
}
.btn.cta {
    margin: 24px auto 0;
    width: fit-content;
}
.btn:hover {
    background: #6F58CD;
    color: #fff;
}
.transparent_btn {
    width: 146px;
    height: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 68px;
    border: 1px solid #4C2DCB;
    color: #4C2DCB;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.transparent_btn:hover {
    background-color: #4c2dcb42;
}
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.main_text {
    color: #474747;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.text {
    color: #474747;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.review-list_text {
    color: #1E1E1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.main_title {
    color: #FFF;
    text-align: center;
    /* H1 */
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
    font-family: 'Open Sans', sans-serif;
}
.h2 {
    color: #1E1E1E;
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.h3 {
    color: #1E1E1E;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.h4 {
    font-size: 16px;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: normal;
}
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
        max-width: 767px;
    }
}


@media (max-width: 767px) {
    .main_title {
        font-size: 40px;
    }
    .h2 {
        font-size: 32px;
    }
    .h3 {
        font-size: 18px;
    }
    .container {
        padding: 0 16px;
        max-width: 767px;
    }
}
