body {
    background: #aaa;
    font-family: Roboto, sans-serif;
}

body, p {
    margin: 0;
    padding: 0;
}


.body {
    font-family: 'Roboto', sans-serif;
    max-width: 1440px;
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section {
    width: 90%;
    padding: 0 5%;
}

/* ↓ Fonts ↓ */

.logo-text {
    font-size: clamp(1.125rem, 1.667vw + 0.75rem, 2.25rem);
    color: #03056D;
}

.h1 {
    font-size: clamp(1.5rem, 2.222vw + 1rem, 3rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #189DFF;
}

.h2 {
    font-size: clamp(1.375rem, 2.037vw + 0.917rem, 2.75rem);
    font-style: normal;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #189DFF;
}

.h4 {
    font-size: clamp(0.625rem, 0.926vw + 0.417rem, 1.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #189DFF;
}

.body-xl {
    font-size: clamp(0.563rem, 0.833vw + 0.375rem, 1.125rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #03056D;
}

.body-l {
    font-size: clamp(0.5rem, 0.741vw + 0.333rem, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #03056D;
}

.body-m {
    font-size: clamp(0.469rem, 0.694vw + 0.313rem, 0.938rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1px;
    color: #03056D;
}

/* ↑ Fonts ↑ */

#header {
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 20px;
}

#header img {
    margin-right: 2%;
    width: 20%;
    max-width: 120px;
    border-radius: 15%;
    min-width: 90px;
    margin-left:-20px;
}


/* ↓ Top section ↓ */

#top-section {
    display: flex;
    max-height: 550px;
    padding: 120px 5%;
    width: 90%;
}

#top-section .con-half {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#top-section .body-xl {
    margin-top: 14px;
}

.hero-phone {
    width: 100%;
}

.buttons {
    margin-top: 48px;
    display: flex;
}

.buttons a:first-child {
    margin-right: 12px;
}

@media screen and (max-width: 1024px) {
    .con-half:has(.hero-phone) {
        align-items: flex-start;
    }

    .hero-phone {
        width: 130%;
    }

    #top-section .con-half {
        width: 65%;
    }
}

@media screen and (max-width: 760px) {
    #top-section .con-half {
        width: 90%;
    }

    .buttons a {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .buttons a:nth-child(2) {
        margin-bottom: 20px;
    }

    #top-section {

    }
}

.btn-black, .btn-white {
    padding: 14px 24px;
    border-radius: 6px;
    width: fit-content;
    display: flex;
    align-items: center;
}

.btn-black img, .btn-white img {
    margin-right: 5px;
}

.btn-black, .btn-white:hover {
    background: #189DFF;
    color: white;
}

.btn-white img, .btn-black:hover img {
    filter: invert(54%) sepia(26%) saturate(6794%) hue-rotate(183deg) brightness(101%) contrast(103%);
}

.btn-black img  {
    filter: invert(95%) sepia(100%) saturate(0%) hue-rotate(246deg) brightness(108%) contrast(101%);
}


.btn-white:hover img {
    filter: invert(100);
}

.btn-black {
    border: 2px solid #189DFF;
}

.btn-white, .btn-black:hover {
    background: #FFF;
    border: 2px solid #189DFF;
    color: #189DFF;
}

@media screen and (max-width: 760px) {
    .buttons {
        display: flex;
        flex-direction: column;
    }

    .buttons button {
        width: fit-content;
    }
}

/* ↑ Top section ↑ */


/* ↓ Features ↓ */

#features {
    background: #F0F1F4;
    padding: 120px 5%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#features p.h2 {
    text-align: center;
    margin-bottom: 60px;
    max-width:525px;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
}

.cards-con {
    display: flex;
    width: 100%;
}

.feature-card {
    width: 50%;
    background: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4% 3% 2%;
    margin: 0 2.5%;
}

.feature-card img {
    width: 30%;

}

.feature-card p.h4 {
    margin: 16px 0 12px;
}


@media screen and (max-width: 1024px) {
    .feature-cards {
        flex-direction: column;
    }

    .cards-con:first-child {
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 500px) {
    .cards-con {
        flex-direction: column;
    }

    .feature-card {
        width: 85%;
        margin: 5%;
    }

    .cards-con:first-child {
        margin-bottom: 5%;
    }
}

/* ↑ Features ↑ */


/* ↓ How it works ↓ */
#how-it-works {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: auto;
    margin: 120px 0;
    justify-content: center;
}

#swiper-container {
    max-height: 456px;
    height: auto;
}

.swiper-wrapper {
    height: auto;
}


.selectors {
    display: flex;
    flex-direction: column;
    min-width: 270px;
}

.selector-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    padding: 0 20px 10px 0;
    border: 0;
    border-right: 2px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    color: #686C7C;
    text-align: left;
}

.selector-button.active {
    border-color: rgba(0, 0, 0, 1);
    color: #3B4054;
}

.selector-button svg {
    margin-right: 10px;
}

.selector-button svg path {
    fill: #686C7C;
}

.selector-button.active svg path {
    fill: #3B4054;
}

.selected-info {
    display: flex;
    align-items: center;
    height: auto;
}

.the-info {
    max-width: 440px;
}

.the-info p.h2 {
    margin-bottom: 10px;
}


.selected-info img {
    max-height: 456px;
    width: 40%;
}

.swiper-slide {
    display: flex;
}


@media screen and (max-width: 1024px) {
    #how-it-works {
        flex-direction: column;
    }

    .selectors {
        flex-direction: row;
        background: #fff;
        margin-bottom: 40px;
        z-index: 2;
        width: 100%;
        justify-content: center;
        padding-top: 10px;
    }

    .selector-button {
        border: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    #swiper-container {
        overflow: hidden;
        max-height: 400px;
    }
}


@media screen and (max-width: 720px) {
    #swiper-container {
        overflow: hidden;
        max-height: 320px;
    }
}

/* ↑ How it works ↑ */


/* ↓ Why FaxJet ↓ */

#why-faxjet {
    text-align: center;
    padding: 120px 5%;
    width: 90%;
}

#why-faxjet .h2 {
    margin-bottom: 10px;
}

.reasons-con {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reasons {
    display: flex;
    gap: 30px;
}

.reason {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    width: 50%;
}

.check {
    height: 52px;
    width: 52px;
}

.reason .h4 {
    margin-bottom: 7px;
}

@media screen and (max-width: 767px) {
    .reasons {
        flex-direction: column;
    }

    .reason {
        width: 100%;
    }

    .check {
        height: 42px;
        width: 42px;
    }
}


/* ↑ Why FaxJet ↑ */


/* ↓ FAQ ↓ */

.accordion-container {
    display: flex;
    flex-wrap: wrap;
}

.accordion-column {
    flex: 1;
    max-width: 50%;
}

.accordion {
    overflow: hidden;
    margin-bottom: 16px;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.accordion.active .accordion-content {
    display: block;
}

.accordion-header {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
    text-align: left;
    font-weight: bold;
}

/* ↑ FAQ ↑ */


/* ↓ Footer ↓ */

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

footer {
    margin: 0 0 5%;
    width: 100%;
}

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

#footer-logo {
    margin-bottom: 10px;
    width: 30%;
    min-width: 80px;
    max-width: 130px;
    border-radius: 15%;
    margin-left:-20px;
}

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


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

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

.anchor {
    text-decoration: none;
}


@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;
    }
}


/* ↑ Footer ↑ */