* {
    color: white;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    background: linear-gradient(to top, rgba(28, 0, 41, 1), rgba(77, 105, 255, 1));
    margin: 0;
}

.wrapper {
    width: 1440px;
    position: relative;
    top: 0;
}

#logo {
    width: 7%;
    min-width: 50px;
    margin-left: 8%;
    margin-top: 4%;
    position: relative;
}

.anchor {
    text-decoration: none;
}

.cta-box {
    position:relative;
    z-index:1;
    margin-left: 8%;
    margin-top: 8%;
}

.btn-box {
    margin-top: 40px;
}


.cta-heading {
    max-width: 36%;
    font-size: clamp(24px, calc(1.5rem + ((1vw - 3.6px) * 2.2222)), 48px);
    min-height: 0vw;
}

.body-copy {
    font-size: clamp(11px, calc(0.6875rem + ((1vw - 3.6px) * 0.463)), 16px);
    min-height: 0vw;
    margin: 0;
}

.body-copy-l {
    font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.6px) * 0.463)), 18px);
    min-height: 0vw;
    margin: 0;
}

.cta-sub-text {
    max-width: 297px;
}


.cta-heading span, .heading1 span {
    color: #73FFFF;
}

.cta-text {
    font-weight: 300;
}

.bg-illustration {
    position: absolute;
    top: 0;
    right: 0;
    width: 73%;
    mix-blend-mode: color-dodge;
}

#phones {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;;
}

.flags {
    width: 100%;
}

#flags-section {
    margin-top: 17%;
    text-align: center;
}


#flags-section-m {
    display: none;
    margin-top: 17%;
    text-align: center;
}

.locations {
    margin-top: 3%;
}

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

     #top-section .cta-heading, #top-section .cta-text {
        width:100%;
        max-width:100%;
    }

    .bg-illustration, #phones {
        width:120%;
        max-width:120%;
    }

    .cta-box {
        margin-top:70%;
    }


    #flags-section {
        display: none;
    }

    #flags-section-m {
        display: block;
    }
}


.btn-blue {
    background-color: #0E1133;
    border: 2px solid #4353D1;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    padding: 15px;
}

.btn-blue:hover {
    background-color: #FFFFFF;
    border: 2px solid #0E1133;
    color: #0E1133;
}

.btn-blue:hover i {
    color: rgba(14, 17, 51, 1);
}

.btn-white {
    color: #0E1133;
    padding: 15px;
    background-color: #FFFFFF;
    border: 2px solid #0E1133;
    border-radius: 6px;
    cursor: pointer;
}

.btn-white i {
    color: #0E1133;
}

.btn-white:hover {
    color: #FFFFFF;
    background-color: #0E1133;
    border: 2px solid #4353D1;
}

.btn-white:hover i {
    color: #FFFFFF;
}


#features {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10% 8%
}


.feature-card {
    width: 32%;
    background-color: rgba(76, 73, 193, 0.8);
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .btn-white, .btn-blue {
        padding: 10px;
    }
}

@media screen and (max-width: 776px) {
    #features {
        flex-direction: column;
    }

    .feature-card {
        width: 80%;
        margin-top: 5%;
        margin-left: 10%;
    }

    .btn-white, .btn-blue {
        padding: 8px;
    }
}


.feature-card-inner {
    padding: 30px;
}


#faq-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#faq-section .body-copy {
    margin-bottom: 3%;
}

.faq-item {
    border: 1px solid #2B70FA;
    margin-bottom: 20px;
    width: 80%;
    max-width: 768px;
}

.accordion {
    background-color: transparent;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border: none;
    display: flex;
    justify-content: space-between;
}

.accordion.active {
    border-bottom: 0;
}

.panel {
    padding: 0 18px;
    background-color: transparent;
    display: none;
    overflow: hidden;
    border-top: 0;
    border: none;
}


#secure-section {
    display: flex;
}

#secure-section .cta-box {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#iphone-img {
    width: 50%;
}

.heading1 {
    font-size: clamp(25px, calc(1.5625rem + ((1vw - 3.6px) * 2.3148)), 50px);
    min-height: 0vw;
    margin: 0 0 3%;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

footer {
    margin: 10% 8% 5%;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#footer-logo {
    width: 7%;
    min-width: 50px;
}

.footer-right table {
    margin-bottom: 10px;
}

.fa-location-dot, .fa-phone, .fa-envelope {
    color: #2B70FA;
    width: 18px;
    height: 18px;
}

.tr td {
    padding-bottom: 10px;
}

.footer-right h3 {
    color: #2B70FA;
}

#secure-section {
    margin: 10% 0;
}


@media screen and (max-width: 800px) {
    .footer-right:has(#copyright) {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 720px) {
    #secure-section {
        flex-direction: column;
    }

    #iphone-img, #secure-section .cta-box {
        width: 80%;
        margin-left: 10%;
    }

    .cta-heading {
        max-width: 46%;
    }

    .cta-text {
        max-width: 35%;
    }

    .footer-btn {
        display: flex;
        flex-direction: column;
    }

    .footer-btn .btn-blue {
        margin-bottom: 10px;
    }
}


@media screen and (max-width:446px) {
    .footer-inner {
        flex-direction: column;
    }

    .footer-btn .btn-blue, .footer-btn .btn-white {
        width:fit-content;
    }

    .footer-btn {
        padding-top:18px;
    }
}

@media screen and (min-width:820px) {
    .footer-privacy {
        display:flex;
    }
}
