/* -XS- */
/* FONTS */
h1 {
    font-size: 3rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.25rem;
}

html,
body,
main {
    overflow-x: hidden;
}


.standard-text {
    font-size: 1rem;
    color: white;
    font-weight: 400;
}



.gradient-heading {
    background: -webkit-linear-gradient(left, #007AFF, #AF52DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button-gradient {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    width: 100%;
    height: 3.625rem;
    transition: background-position 0.5s ease-out;
    background-image: linear-gradient(to right, #009aff, #af52de, #009aff, #af52de);
    border-radius: 0.25rem;
    border: solid 0.18rem transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-size: 400% 100%;
    background-position: right;
}

.button-gradient:hover {
    transition: background-position 0.5s ease-in;
    background-position: 12%;
}

.gradient-heading {
    background: -webkit-linear-gradient(left, #007AFF, #AF52DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HEADER */
@media(max-width: 1023px) {
    .header-logo-element {
        display: flex;
        justify-content: center;
        width: 35%;
    }

    .tint {
        transition: all 0.4s ease-in-out;
        position: absolute;
        z-index: -99;
    }

    .tint .active {
        background-color: rgba(0, 0, 0, 0.7);
        transition: all 0.4s ease-in-out;
        z-index: 99 !important;
        width: 100vw;
        height: 100vh;
    }

    .header-logo {
        width: 100%;
    }

    .hamburger {
        width: 12.7%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger-icon {
        width: 100%;
        max-width: 3.5rem;
    }

    .hamburger-close {
        width: 12.7%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        min-height: 4.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 1.25rem 1rem 1.25rem;

    }

    .header-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .nav-link {
        transition: 0.7s ease;
        color: white;
        font-weight: 400;
        font-size: 1.25rem
    }

    .nav-menu {
        height: max-content;
        padding: 1.5rem 1.25rem 1rem 1.25rem;
    }

    .bar {
        display: block;
        width: 2rem;
        height: 0.1875rem;
        margin: 0.25rem;
        background-color: white;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;

    }

    .nav-links-bg {
        background-color: #161616;
        width: max-content;
        height: max-content;
    }

    .nav-links {
        display: flex;
        align-items: center;
        position: fixed;
        top: -100%;
        right: 0;
        left: 0;
        gap: 2.75rem;
        flex-direction: column;
        background-color: black;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: max-content;
        padding: 1.5rem 1.25rem 2.5rem 1.25rem;
        transition: all 0.7s ease-in-out;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-items {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu .active {
        top: 0;
        transition: all 0.4s ease-in-out;
    }

    .send {
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 0.0625rem transparent;
        border-radius: 0.25rem;
        background-image: linear-gradient(black, black), linear-gradient(90deg, #009aff 50%, #af52de);
        background-origin: border-box;
        background-clip: content-box, border-box;
        width: 15.2%;
        max-width: 3.5rem;
        max-height: 3.5rem;
        aspect-ratio: 1/1;
    }

    .send:hover {
        background-image: linear-gradient(to right, #009aff, #af52de);
        background-origin: padding-box;
        border-radius: 0.25rem;
    }

    .send-icon {
        width: 50%;
    }

    .button-contact-us {
        display: none;
    }
}

/* UNIVERSAL */
.hidden-on-mobile {
    display: none;
}

/* HERO SECTION */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 7.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.img-hero {
    width: 100vw;
}

.hero-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    place-items: center;

}

.hero-heading {
    display: flex;
    flex-direction: column;
}

.wrapper {
    box-sizing: content-box;
    height: 4.25rem;
    display: flex;
    justify-content: center;
}

.words {
    overflow: hidden;
}

.word {
    display: block;
    height: 100%;
    font-size: 3rem;
    animation: spin_words 7s infinite;
    background: -webkit-linear-gradient(left, #007AFF, #AF52DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@keyframes spin_words {
    10% {
        transform: translateY(-124%)
    }

    25% {
        transform: translateY(-112%)
    }

    35% {
        transform: translateY(-224%)
    }

    50% {
        transform: translateY(-212%)
    }

    60% {
        transform: translateY(-324%)
    }

    75% {
        transform: translateY(-312%)
    }

    85% {
        transform: translateY(-424%)
    }

    100% {
        transform: translateY(-412%)
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 3.5rem;
    gap: 0.8125rem;
}

.button-what-we-do {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3.625rem;

    border: solid 0.0625rem transparent;
    border-radius: 0.25rem;
    background-image: linear-gradient(black, black), linear-gradient(90deg, #009aff, #af52de);
    background-origin: border-box;
    background-clip: content-box, border-box;
    overflow: hidden;
}

.button-what-we-do::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: linear-gradient(90deg, #009aff, #af52de, #009aff, #af52de);
    background-size: 400% 100%;
    background-position: right;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    z-index: 1;
}

.button-what-we-do:hover::before {
    opacity: 1;
}

.button-what-we-do-text {
    color: white;
    font-size: 1rem;
    z-index: 2;
}





/* BUILD YOUR BUSINESS SECTION */

.build-your-business-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.build-your-business-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    padding-bottom: 4.875rem;
}

.build-your-business-cards {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    min-width: 20rem;
}

.build-your-business-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12.5rem;
    width: 45%;


    border: solid 0.1rem transparent;
    border-radius: 1rem;
    background-image: linear-gradient(black, black), linear-gradient(120deg, #875be5 30%, #875be544, #161616);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.build-your-business-card-text {
    font-size: 1rem;
    padding-left: 24px;
    padding-right: 24px;
}

/* ANALYSIS SECTION */

.analysis-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 7.5rem;
    padding: 4rem 1.25rem 7.5rem 1.25rem;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.img-analysis {
    width: 100vw;
    padding-bottom: 1rem;
}

.analysis {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.analysis-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.analysis-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    padding-bottom: 2.5rem;
}

/* WORKFLOW SECTION */

.workflow-section {
    display: flex;
    flex-direction: column;

}

.workflow-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin: auto;
}

/* SWIPER */
.swiper {
    width: 100%;
    height: 35.25rem;
    padding-top: 5.25rem !important;
    padding-bottom: 7.5rem !important;
    margin: auto !important;
    position: relative !important;
}

.swiper-slide {
    font-size: 0.875rem;
    width: 21rem !important;
    font-weight: 400;
    background-color: #1e1e1e80;
    display: flex;
    flex-direction: column;
    position: relative;

    border: solid 0.04rem transparent;
    border-radius: 1rem;
    background-image: radial-gradient(circle at 3.6rem 0.25rem, #2a1f3b 0.1%, black 15%), linear-gradient(120deg, #875be5 30%, #875be544, #161616);
    background-origin: border-box;
    background-clip: content-box, border-box;

}

.swiper-slide-content {
    padding: 4.5rem 1.5rem 3.875rem 1.5rem;
    text-align: left;
}


.swiper-slide:nth-child(1n) {
    margin-left: 1.25rem;
}

.swiper-slide:nth-child(3n) {
    margin-right: 1.25rem;
}

.swiper-texts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.swiper-texts p {
    opacity: 0.7;
    font-size: 1rem;
}

.swiper-texts h4 {
    font-size: 1.5rem;
}

.swiper-heading {
    font-size: 1.25rem;
}

.workflow-icon {
    position: absolute;
    width: fit-content;
    height: fit-content;
    left: 1.5rem;
    transform: translateY(-50%);
}

.workflow-icon-num-1 {
    aspect-ratio: 61/57;
    width: 4rem;
}

.workflow-icon-num-2 {
    aspect-ratio: 34/57;
    width: 2.75rem;
    transform: translateX(25%);

}

.workflow-icon-num-3 {
    width: 4.25rem;
    transform: translateX(-2.5%);
}

.swiper-pagination {
    position: absolute !important;
    bottom: 2.75rem !important;
    left: 0 !important;
    right: 0 !important;


}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: auto;
    left: auto;
    width: auto !important;
}

.swiper-pagination-bullet {
    margin: 0.5rem !important;
    height: 0.75rem !important;
    width: 0.75rem !important;
    background-color: #323232 !important;
}

.swiper-pagination-bullet-active {
    background-color: #7F60E9 !important;
    box-shadow: 0 0 1.25rem 0.3rem #7F60E9;
}

.swipe-icon {
    width: 2.375rem;
    aspect-ratio: 1/1;
    position: absolute;
    right: 1.5rem;
    bottom: 3rem;
}

/* ABOUT US SECTION */

.about-us-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 7.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.about-us-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    padding-bottom: 3.875rem;
}

.about-us-cards {
    display: flex;
    flex-direction: column;
    gap: 3.25rem;
}

.about-us-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 29.4375rem;
    width: 100%;

    border: solid 0.04rem transparent;
    border-radius: 1rem;
    background-image: linear-gradient(black, black), linear-gradient(135deg, #595959 50%, black);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.about-us-card-texts {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 1.25rem;


    padding: 2rem 1.5rem 0rem 1.5rem
}

.about-us-card-img {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-end;
}

.img-personalized-experience {
    padding-bottom: 2rem;
}

.img-personalized-experience-desktop {
    display: none;
}

.about-us-card-img-desktop {
    display: none;
}

/* PARTNERSHIPS SECTION */

.partnerships-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 7.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.partnerships-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    padding-bottom: 3.875rem;
}

.partners {
    display: flex;
    flex-direction: column;
    gap: 3.25rem;
}

.partner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: max-content;
    width: 100%;

    border: solid 0.04rem transparent;
    border-radius: 1rem;
    background-image: linear-gradient(black, black), linear-gradient(120deg, #875be5 30%, #875be544, #161616);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.partner-content {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
}

.partner-logo {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 3.25rem;
}

.partner-first-logo-size {
    width: 47.5%;
    aspect-ratio: 159/45;
}

.partner-second-logo-size {
    width: 30%;
    aspect-ratio: 83/79;
}

.partner-texts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 3.25rem;
}

.partner-texts p {
    opacity: 0.7;
}

.partner-text {
    font-size: 0.875rem;
    font-weight: 400;
}

.partner-work {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.partner-work-element {
    padding: 0.625rem 0.875rem 0.625rem 0.875rem;
    background-image: linear-gradient(to right, #009aff, #af52de), linear-gradient(90deg, #009aff, #af52de);
    border-radius: 1.5625rem;
    width: max-content;
}

.partner-work-text {
    font-size: 0.75rem;
}


/* GET IN TOUCH SECTION */

.get-in-touch-section {
    display: flex;
    flex-direction: column;
}

.get-in-touch-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    min-width: 20rem;
    padding-bottom: 3.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* FOOTER */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 16.25rem;
    gap: 2.25rem;
    line-height: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;

}

.footer-logo-element {
    display: flex;
    justify-content: center;
    width: 37.5%;
}

.footer-logo {
    aspect-ratio: 113/19;
    width: 100%;
}

input,
textarea {
    background: none;
    outline: none;
    box-shadow: none;
    border: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 300px black inset;
}

input:-webkit-autofill {
    -webkit-text-fill-color: white !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*FORM*/

form {
    width: 100%;
}

form .button-gradient {
    cursor: pointer;
    height: 3.5rem !important;
    font-family: "Geomanist";
}

.form-wrapper {
    background-color: transparent;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 32px;

    color: #A0A0A0;

    width: 100%;

    border: solid 0.04rem transparent;
    border-radius: 1rem;
    background-image: linear-gradient(black, black), linear-gradient(135deg, #595959 50%, black);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.form-wrapper-content {
    padding: 2.25rem 1.75rem;
}

.form-input {
    display: flex;
    flex-direction: column;

    gap: 10px;
    padding-bottom: 2rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 300px black inset;
}

input:-webkit-autofill {
    -webkit-text-fill-color: white !important;
}

.form-input input[type="text"],
.form-input input[type="email"],
textarea {
    appearance: none;
    border: none;
    outline: 1px solid #A0A0A0;
    color: white;
    border-radius: 4px;
    background: transparent;
    padding: 14px;
    font-family: "Geomanist";
    font-size: 1rem;
    font-weight: 400;
}

.form-input input:focus {
    outline: 2px solid white;
}

.form-error {
    color: white;
}

.form-radio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input:focus {
    color: white;
}

input[type="radio"] {
    cursor: pointer;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;

    background: #313131;

    position: relative;
    border: solid 7px #313131;


    transition: all 0.15s;
}

input[type="radio"]+label {
    font-weight: 400;
}

input[type="radio"]:checked+label {
    font-weight: bold;
}


input[type="radio"]:checked {

    position: relative;

    background: linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #007AFF 0%, #AF52DE 100%) border-box;

    border: 7px solid transparent;

    transition: all 0.15s;
}

.radio-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    color: white;
}

textarea {
    resize: none;
}

/* FOOTER */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 16.25rem;
    gap: 2.25rem;
    line-height: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}



/* HOME PAGE */

/* PRODUCTS PAGE */
/* HERO SECTION */
.product-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 8.5rem;
    color: white;
    position: relative;

}

.product-name {
    font-size: 1.125rem;
    font-weight: 400;
    padding-bottom: 1.25rem;
}

.product-hero-texts {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.product-heading {
    font-size: 2rem;
}

.light-left-product {
    position: absolute;
    top: 17rem;
    left: 0;
}

.light-right-product {
    position: absolute;
    right: 0;
    top: 1rem;
}

/* ABOUT PRODUCT SECTION */
.about-product-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #EEEEEE;
    position: relative;
    margin-bottom: 9.5rem;
}

.about-product-content {
    padding: 2rem 2.5rem 8.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-product-heading {
    color: black !important;
}

.about-product-subtext {
    color: black;
    font-size: 1rem;
    font-weight: 400;
}

.product-page-img {
    position: absolute;
    bottom: -7rem;
    margin: auto;
    left: 0;
    right: 0;
}

/* CONTACT PAGE */
.contact-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 8.5rem;
    color: white;
    position: relative;
}

.contact-hero-texts {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.contact-heading {
    font-size: 2rem;
}

.contact-logos {
    display: flex;
    flex-direction: row;
    gap: 4.25rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.logos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.light-left-contact {
    position: absolute;
    top: 10rem;
    left: 0;
}

.light-right-contact {
    position: absolute;
    right: 0;
    top: 1rem;
}

.contact-form-wrapper {
    background-color: #EEEEEE;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    padding: 1.75rem 1.25rem;

    color: #2F2F2F;

    width: 100%;
}

.contact-radio-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    color: 2F2F2F;
}

/* -SMALL- */
@media screen and (min-width: 640px) {

    /* FONTS */
    h1 {
        font-size: 3.25rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.75rem !important;
    }

    .standard-text {
        font-size: 1.2rem !important;
    }

    /* UNIVERSAL */
    .button-gradient {
        font-size: 1.25rem !important;
        height: 4.5rem !important;
    }

    /* HEADER */
    .navbar {
        width: 40rem;
        margin: auto;
    }

    .header-content {
        width: 37.5rem !important;
        margin: auto;
    }

    .nav-link {
        font-size: 1.5rem !important;
    }

    /* HERO SECTION */
    .hero-section {
        margin: auto;
        width: 40rem;
    }

    .wrapper {
        height: 4.6rem !important;
        transform: translateY(-0.5rem)
    }

    .word {
        font-size: 3.25rem !important;
    }

    .button-what-we-do {
        height: 4.5rem !important;
    }

    .button-what-we-do-text {
        color: white;
        font-size: 1.25rem !important;
        z-index: 2;
    }

    .img-hero {
        width: 40rem;
    }

    /* BUILD YOUR BUSINESS SECTION */
    .build-your-business-section {
        margin: auto;
        width: 40rem;
    }

    .build-your-business-card-text {
        font-size: 1.2rem !important;
    }

    /* ANALYSIS SECTION */
    .analysis-section {
        margin: auto;
        width: 40rem;
    }

    .img-analysis {
        width: 40rem;
    }

    /* WORKFLOW SECTION */
    .workflow-texts {
        width: 40rem !important;
    }

    /* ABOUT US SECTION */
    .about-us-section {
        margin: auto;
        width: 40rem;
    }

    .img-personalized-experience {
        width: 25% !important;
    }

    .img-personalized-experience {
        width: 25% !important;
    }

    .img-support {
        width: 50% !important;
    }

    /* PARTNERSHIPS SECTION */
    .partnerships-section {
        margin: auto;
        width: 40rem;
    }

    .partner-text {
        font-size: 1rem !important;
    }

    .partner-work-text {
        font-size: 0.85rem !important;
    }



    /* GET IN TOUCH SECTION */
    .get-in-touch-section {
        margin: auto;
        width: 40rem;
    }

    /* FOOTER */
    .footer-content {
        margin: auto;
        width: 40rem;
    }



    /* HOME PAGE */


    /* PRODUCTS PAGE */
    /* HERO SECTION */
    .product-hero-section {
        margin: auto;
        width: 40rem;
    }

    /* ABOUT PRODUCT SECTION */
    .about-product-content {
        margin: auto;
        width: 40rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* CONTACT PAGE */
    .contact-hero-section {
        margin: auto;
        width: 40rem;
    }
}

/* -MEDIUM- */
@media screen and (min-width: 768px) {

    /* FONTS */
    h1 {
        font-size: 3.4rem !important;
    }

    h2 {
        font-size: 2.2rem !important;
    }

    h3 {
        font-size: 1.9rem !important;
    }

    .standard-text {
        font-size: 1.3rem !important;
    }

    /* UNIVERSAL */
    .button-gradient {
        font-size: 1.3rem !important;
    }

    /* HEADER */
    /* .navbar {
        width: 48rem !important;
    }

    .header-content {
        width: 45.5rem !important;
    }

    .nav-link {
        font-size: 1.75rem !important;
    } */

    /* HERO SECTION */


    .word {
        font-size: 3.4rem !important;
    }

    .wrapper {
        height: 4.8rem !important;
    }

    .img-hero {
        width: 48rem;
    }

    /* BUILD YOUR BUSINESS SECTION */
    .build-your-business-section {
        width: 48rem;
    }

    .build-your-business-card-text {
        font-size: 1.3rem !important;
    }

    /* ANALYSIS SECTION */

    /* WORKFLOW SECTION */
    .swiper-slide {
        width: 30rem !important;
        height: 23rem !important;
    }

    .swiper-texts h4 {
        font-size: 1.8rem;
    }

    .swiper-texts p {
        font-size: 1.2rem;
    }

    /* ABOUT US SECTION */
    .about-us-section {
        width: 48rem;
    }

    /* PARTNERSHIPS SECTION */
    .partnerships-section {
        width: 48rem;
    }

    .partner-work-text {
        font-size: 1rem !important;
    }

    .partner-text {
        font-size: 1.25rem !important;
    }

    /* GET IN TOUCH SECTION */
    .get-in-touch-section {
        width: 48rem;
    }

    /* FOOTER */
    .footer-content {
        width: 48rem;
    }



    /* HOME PAGE */


    /* PRODUCTS PAGE */
    /* HERO SECTION */
    .product-hero-section {
        width: 48rem !important;
    }

    /* ABOUT PRODUCT SECTION */
    .about-product-content {
        width: 48rem !important;
    }

    /* CONTACT PAGE */
    .contact-hero-section {
        width: 48rem !important;
    }
}