/*-----------------------------
    1. GENERIC CSS AND RESET
    2. LP CSS
    3. SECTION PRESENTATION
    4. SECTION FEATURES
    5. SECTION PLANS
    6. SECTION NEWSLETTER
    7. SECTION LEGALS
    8. MEDIA QUERIES
-----------------------------*/

/*-----------------------------
    1. GENERIC CSS AND RESET
-----------------------------*/

*,
*:before,
*:after {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
	color:#48484A;
	background:#fff;
	font-family: 'Montserrat', sans-serif;
	font-size:10px;
}

input[type="submit"], input[type="text"], input[type="tel"] {
    -webkit-appearance: none;
}

input[type="submit"]:focus, input[type="tel"]:focus, button:focus {
    outline:none;
}

a {
	color:inherit;
}

img {
	border:none;
}

html {
	scroll-behavior: smooth;
}

/*-----------------------------
    2. LP CSS
-----------------------------*/

.lp_wrapper {
    position:relative;
    width:100%;
    margin:0 auto;
}

/*-----------------------------
    3. SECTION PRESENTATION
-----------------------------*/

.presentation_wrapper {
    background-color: #F82056;
    width:100%;
}

.header {
    height:90vh;
    max-width:1320px;
    width:70%;
    margin:0 auto;
}

.header_nav {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:10px;
}

.logo img {
    max-width:185px;
    width:100%;
}

.menu_mobile {
    display:none;
}

.menu_list {
    display:flex;
    list-style: none;
}

.menu_item {
    margin-right: 45px;
}

.menu_link:link, .menu_link:visited {
    color:#FFD9E3;
    text-decoration: none;
    font-size: 18px;
    font-weight:500;
    transition: all 0.3s;
    padding: 5px 15px;
    border-radius:8px;
}

.menu_link:hover {
    background-color:#AC002A;
    color:#fff;
    
}

.presentation {
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin:80px 0;
}

.presentation_text {
    color:#fff;
    text-align:left;
    margin-right:30px;
}

.presentation_text h1 {
    font-size: 55px;
}

.presentation_text p {
    font-size: 22px;
    margin: 40px 0 50px 0;
    line-height: 35px;
}

.presentation_text .submit_bt {
    font-size: 28px;
    background-color: #F82056;
    color:#fff;
    padding:20px 40px;
    border-radius:20px;
    outline:none;
    border:2px solid #fff;
    transition: all 0.3s;
}

.presentation_text .submit_bt:hover {
    background-color: #fff ;
    color:#F82056;
    border:2px solid #F82056;
    cursor:pointer;
}

.presentation_images {
    text-align: center;
    width: 100%;
}

.presentation_images img.mobile, .features_extra_images img.mobile, .newsletter_images img.mobile {
    max-width: 720px;
    width:100%;
    text-align: center;
    animation:bounce 1s ease-in-out 0s infinite alternate;
}

@keyframes bounce {
    0% {
        transform:translateY(0);
    }
    100% {
        transform:translateY(-50px);
    }
}

.presentation_images img.shadows, .features_extra_images img.shadows, .newsletter_images img.shadows {
    max-width: 920px;
    width:100%;
    text-align: center;
    animation:bounce_shadow 1s ease-in-out 1s infinite alternate;
}

@keyframes bounce_shadow {
    0% {
        opacity:0.3;
    }
    100% {
        opacity:1;
    }
}

/*-----------------------------
    4. SECTION FEATURES
-----------------------------*/

.features_wrapper {
    width:100%;
    background-color:#fff;
    background-image: url('../images/bg1.png');
    background-repeat: no-repeat;
    background-position: top center;
    padding-top:5%;
}

.features {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.feature_card {
    border-radius:5px;
    background-color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding:30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.feature_card a {
    text-decoration: none;
    text-align: center;
}

.feature_card:not(:last-child) {
    margin-right:20px;
}

.feature_card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.feature_card img {
    max-width:100px;
    margin:30px 0;
}

.feature_card_title {
    font-size:28px;
    font-weight:bold;
    margin:30px 0;
}

.feature_card_text {
    font-size:18px;
    line-height:30px;
    text-align:center;
    margin:30px 0;
}

.more_link {
    font-size:14px;
    margin:30px 0 60px 0;
    transition: all 0.3s;
    text-decoration: none;
    padding:5px 10px;
    border-radius:5px;
}

.more_link:hover {
    color:#fff;
    background-color: #F82056
}

.features_extra {
    padding: 200px 0 100px 0;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

.features_extra_images  {
    max-width:500px;
}

.features_extra_text {
    padding: 60px 20px;
    margin-left:30px;

}

.features_extra_text h1 {
    font-size: 55px;
}

.features_extra_text_highlight {
    color:#F82056;
    font-size:22px;
    margin: 40px 0 30px 0;
}

.features_extra_text_p {
    font-size: 22px;
    margin: 40px 0 50px 0;
    line-height: 35px;
}

.features_extra_text .submit_bt.inverted {
    font-size: 28px;
    background-color: #fff;
    color:#F82056;
    padding:20px 40px;
    border-radius:20px;
    outline:none;
    border:2px solid #F82056;
    transition: all 0.3s;
}

.features_extra_text .submit_bt.inverted:hover {
    background-color: #F82056;
    color:#fff;
    border:2px solid #fff;
}

/*-----------------------------
    5. SECTION PLANS
-----------------------------*/

.plans_wrapper {
    width:100%;
    background-image: url('../images/bg3.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-color:#F82056; 
    margin-top:-100px;
}

.plans {
    padding:300px 0 100px 0;
    color:#fff;
    max-width:1320px;
    margin:50px auto 0px auto;
    width:80%;
}

.plans h1 {
    font-size: 55px;
    text-align:center;
    margin:50px 0 20px 0;
}

.plans h3 {
    font-size: 28px;
    text-align:center;
    color:#FFD9E3;
    font-weight:100;
}

.plans_cards {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top:100px;
    gap:50px;
}

.plans_card.platinum {
    display: none;
}

.plans_card {
    border-radius: 10px;
    background-color: #F82056;
    border:2px solid #fff;
    padding: 60px;
    text-align: center;
    cursor:pointer;
    transition: all 0.3s;
}

.plans_card a {
    text-decoration:none;
}

.plans_card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.plans_card h2 {
    font-size: 28px;
}

.plans_card .sub_h2{
    color:rgb(255, 167, 190);
    font-size:18px;
    font-weight:100;
    margin:20px 0;
}

.plans_card img {
    margin:40px 0;
}

.plans_card_list {
    text-align: left;
}

.plans_card_list li {
    font-size:18px;
    margin:10px 0;
}

.go_link {
    font-size: 28px;
    margin:40px 0 20px 0;
    padding:10px 20px;
    border-radius: 10px;
    border:2px solid #fff;
    display:inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.go_link:hover {
    background-color: #fff;
    color: #F82056;
}

/*=============================================
FAQ
==============================================*/
.faq_wrapper {
    width: 100%;
    background-color: #4D4D4D;
    padding-top: 40px;
}


.faq {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}
.faq_intro h1 {
    color: #fff;
    font-size: 55px;
    text-align: center;
}

.faq_intro hr {
    border: 1px solid #F82056;
    width: 400px;
    border-radius: 3px 3px 3px 3px;
    margin: 20px auto 60px auto;
}

.faq_text {
    font-size: 22px;
    color: #fff;
}

summary {
    padding: 15px 30px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    transition: height 1s ease;
    align-items: center;
    background-color: #232323;
    margin-bottom: 20px;
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: "\002B";
    font-size: 42px;
}

details[open] summary {
    border-bottom: 1px solid #F82056;
    margin: 0 auto 20px auto;
}

details[open] summary:after {
    content: "\00D7";
    font-size: 42px;
}

details[open] div {
    padding: 10px 30px 30px 30px;
    font-size: 18px;
}

/*-----------------------------
    6. SECTION NEWSLETTER
-----------------------------*/

.newsletter_wrapper {
    width:100%;
    background-image: url('../images/bg1.png');
    background-repeat: no-repeat;
    background-position: top center;
}

.newsletter {
    padding:300px 0 50px 0;
    max-width:1320px;
    width:70%;
    margin:0 auto;
}

.newsletter h1 {
    font-size: 55px;
    text-align:center;
    margin:150px 0 20px 0;
}

.newsletter h3 {
    font-size: 28px;
    text-align:center;
}

.newsletter_form {
    margin:60px 0;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

form > * {
    display: block;
}

form > input {
    padding:10px 20px;
    font-size:28px;
    outline:none;
    border:none;
    border-bottom:1px solid #ACACAC;
    margin:60px;
    width:100%;
}

form > input::placeholder {
    color: #ACACAC;
}

.newsletter_images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter_images img {
    display: block;
}

.newsletter_images img.mobile {
    max-width:350px;
}

.newsletter_form .submit_bt.inverted {
    font-size: 28px;
    background-color: #fff;
    color:#F82056;
    padding:20px 40px;
    border-radius:20px;
    outline:none;
    border:2px solid #F82056;
    transition: all 0.3s;
    margin-top:100px;
    
}

.newsletter_form .submit_bt.inverted:hover {
    background-color: #F82056;
    color:#fff;
    border:2px solid #fff;
}

/*-----------------------------
    7. SECTION LEGAL
-----------------------------*/

.footer_wrapper {
    width:100%;
}

.footer_support {
    width:100%;
    background-color:#D9D9D9;
}

.footer_support_items {
    max-width:1320px;
    margin:0 auto;
    width:70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:60px 0;
}

.footer_support_items img {
    max-width: 185px;
    width: 100%;
}

.footer_support_items p {
    font-size:18px;
}

.footer_legal {
    width:100%;
    background-color:#4D4D4D;
    color:#fff;
    padding:20px 0;
    font-size:14px;
}

.footer_legal_items {
    max-width:1320px;
    margin:0 auto;
    width:70%;
    text-align: center;
}

.privacy_text, .terms_text {
    display:none;
    background-color:rgba(0, 0, 0, 0.4);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	text-align: left;
    z-index:110;
}

.privacy_wrapper, .terms_wrapper {
    position:absolute;
    width:90%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:111;
    background:#fff;
    color:#000;
    padding:50px;
    max-height:60%;
    overflow: auto;
}

.privacy_wrapper p, .terms_wrapper p {
    margin-bottom:15px;
}

.show_privacy_btn, .show_terms_btn {
    text-decoration: underline;
}

.privacy_wrapper img, .terms_wrapper img {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 112;
    padding: 5px;
    max-width: 30px;
}

/*-----------------------------
    8. MEDIA QUERIES
-----------------------------*/

@media screen and (max-width: 1370px) and (max-height: 800px) {
    .presentation_text h1, .features_extra_text h1, .plans h1, .newsletter h1  {
        font-size: 35px;
    }

    .presentation_text p, .features_extra_text_p {
        font-size: 18px;
        margin: 30px 0 50px 0;
        line-height: 30px;
    }

    .presentation_text .submit_bt, .features_extra_text .submit_bt.inverted {
        font-size: 22px;
    }

    .features_wrapper {
        padding-top: 5%;
    }

    .features {
        padding-top: 50px;
    }

    .feature_card {
        padding: 0 30px;
    }

    .feature_card img {
        margin: 10px 0;
    }

    .feature_card_title {
        font-size: 22px;
        margin: 10px 0;
    }

    .feature_card_text {
        font-size: 14px;
        line-height: 25px;
        text-align: center;
        margin: 10px 0;
    }

    .plans h3, .newsletter h3 {
        font-size: 22px;
    }

    .plans_card {
        padding: 28px;
    }

    .plans_card h2 {
        font-size: 22px;
    }

    .plans_card .sub_h2 {
        font-size: 16px;
        margin: 10px 0;
    }

    .plans_card img {
        margin: 20px 0;
        width: 60%;
    }

    .plans_card_list li {
        font-size: 16px;
    }

    .go_link {
        font-size: 20px;
        margin: 20px 0 0px 0;
        padding: 10px 20px;
    }

    .newsletter_wrapper {
        background-size: contain;
    }

    .newsletter {
        padding: 150px 0 50px 0;
    }

    .newsletter_images img {
        max-width:300px !important;
    }

    form > input {
        padding: 10px 20px;
        font-size: 18px;
        margin: 40px;
    }

    .newsletter_form .submit_bt.inverted {
        font-size: 22px;
        padding: 20px 20px;
        margin-top: 60px;
    }

}

@media screen and (max-width: 480px) {

    .logo img {
        max-width: 135px;
    }

    .menu {
        display:none;
    }

    .menu_mobile {
        display:block;
    }

    .header {
        max-width: 480px;
        width: 90%;
        margin: 0 auto;
    }

    .presentation_wrapper {
        background-color: #F82056;
        width: 100%;
        padding-bottom: 350px;
    }

    .presentation {
        flex-direction: column;
        margin: 40px 0;
    }

    .presentation_images {
        text-align: center;
        width: 100%;
        order: -1;
    }

    .presentation_text {
        width: 90%;
    }

    .presentation_text .submit_bt {
        font-size: 18px;
        padding: 20px 20px;
    }

    .presentation_images img.mobile, .features_extra_images img.mobile, .newsletter_images img.mobile {
        width:90%;
        animation:none;
    }
    
    .presentation_images img.shadows, .features_extra_images img.shadows, .newsletter_images img.shadows {
        display:none;
    }

    .features_wrapper {
        width: 100%;
        background-image: none;
        padding-top: 0px;
    }

    .features {
        padding-top: 20%;
        display: block;
        width: 100%;
        text-align: center;
    }

    .feature_card:not(:last-child) {
        margin-right: 0px;
    }

    .feature_card {
        padding: 0; 
    }

    .feature_card_text {
        margin: 10px auto;
        width: 90%;
    }

    .features_extra {
        padding: 10px 0 10px 0;
        max-width: 480px;
        margin: 0 auto;
        width: 90%;
        flex-direction: column;
    }

    .features_extra_text {
        padding: 40px 0px;
        margin-left: 10px;
    }

    .plans_wrapper {
        margin-top: 0px;
        background-image: none;
    }

    .plans {
        padding: 20px 0;
        width: 90%;
    }

    .plans_cards {
        display: block;
        margin-top: 30px;
        flex-direction: column;
    }

    .newsletter_wrapper {
        background-image: none;
    }

    .newsletter {
        padding: 0px 0 20px 0;
        max-width: 480px;
        width: 90%;
        margin: 0 auto;
    }

    .newsletter h1 {
        margin: 50px 0 20px 0;
    }

    .newsletter h3 {
        font-size: 18px;
    }

    .newsletter_images {
        display: none;
    }

    .newsletter_form {
        display: block;
    }

    form > input {
        margin: 40px 0;
    }

    .footer_support_items {
        max-width: 480px;
        margin: 0 auto;
        width: 90%;
        padding: 30px 0;
        text-align: center;
        display: block;
    }

    .footer_support_items img {
        max-width: 135px;
    }

    .footer_support_items p {
        font-size: 14px;
    }

    .footer_legal_items {
        max-width: 480px; 
        margin: 0 auto;
        width: 90%;
        text-align: center;
    }

    .footer_legal_items p {
        font-size: 12px;
    }

    .menu_checkbox {
        display: none;
    }
    
    .menu_icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index:1600;
    }
    
    .menu_button {
        width: 55px;
        height: 55px;
        position: relative;
        z-index: 1500;
        cursor: pointer;
        text-align: justify!important;
        right: 0px;
        top: 0px;
        display: block;
    }
    
    .menu_button:hover .menu_icon::before {
        top:-10px;
    }
    
    .menu_button:hover .menu_icon::after {
        top:10px;
    }
    
    .menu_icon,
    .menu_icon::before,
    .menu_icon::after {
        width:30px;
        height: 2px;
        background-color:#fff;
        display: inline-block;
    }
    
    .menu_icon::before,
    .menu_icon::after {
        content: "";
        position: absolute;
        transition: all .2s;
    }
    
    .menu_icon::before {
        top:-8px;
    }
    
    .menu_icon::after {
        top:8px;
    }
    
    .menu_section_mobile {
        width: 90%;
        position: absolute;
        top: 60px;
        right: 0;
        background-color:rgba(255,255,255,0.5);
        visibility:hidden;
        opacity:0;
        width:0;
    }
    
    .menu_list_mobile {
        position: relative;
        list-style-type: none;
        text-align: left;
        width: 100%;
    }
    
    .menu_item_mobile {
        margin:0px 0px;
    }
    
    .menu_link_mobile:link,
    .menu_link_mobile:visited {
        display: inline-block;
        text-decoration: none;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        padding: 10px;
        transition: all .3s;
    }
    
    
    .menu_checkbox:checked ~ .menu_section_mobile {
        opacity: 1;
        width:100%;
        visibility: visible;
    }
    
    .menu_checkbox:checked + .menu_button .menu_icon {
        background-color: transparent;
    }
    
    .menu_checkbox:checked + .menu_button .menu_icon::before {
        transform: rotate(135deg);
        top:0;
    }
    
    .menu_checkbox:checked + .menu_button .menu_icon::after {
        transform: rotate(-135deg);
        top:0;
    }

}