@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

::selection {
    color: white;
    background: rgba(181, 66, 248, 0.2);
}

:root {
    --primary-pink: #f8a6f0;
    --primary-blue: #51b4fa;
    --primary-purple: #854aeb;
    --primary-yellow: #f8d997;
    --secondary-pink: #FF4576;
    --primary-text: #333;
    --secondary-text: #7f8893;
}

@keyframes move {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        left: 0px;
        top: 20px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes fromTop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scaleOut {
    0% {
        transform: scale(1.10);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

body {
    margin: 0;
    padding: 0;
}

/* INFO-NAV */
#info-nav {
    background-color: transparent;
    backdrop-filter: blur(50px);
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    margin: auto;
    box-sizing: border-box;
    z-index: 5;
    overflow: hidden;
}
#info-nav ul {
    padding: 8px 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
#info-nav ul li {
    flex: 1;
    border-right: 1px solid var(--primary-text);
    transition: all .25s;
}
#info-nav ul li:hover{
    transform: scale(1.05);
}
#info-nav ul li a {
    color: var(--primary-text);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
}
#info-nav ul li:hover a{
    color: var(--primary-purple);
}
@media (max-width: 700px) {
    #info-nav{
        width: 90%;
    }
    #info-nav ul li a {
        font-size: 14px;
        font-weight: 600;
        padding: 0 5px;
    }
}
@media (max-width: 500px) {
    #info-nav ul li a {
        font-size: 12px;
        padding: 0 5px;
    }
}
@media (max-width: 430px) {
    #info-nav ul li:nth-of-type(2) {
        display: none;
    }
    #info-nav ul li a {
        font-size: 14px;
        font-weight: 700;
        padding: 0;
    }
}

/*Navbar*/
nav {
    background-color: hsla(0, 0%, 100%, 0.65);
    display: Flex;
    justify-content: center;
    width: 90%;
    margin: auto;
    align-items: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 35px;
    bottom: auto;
    z-index: 999;
    padding: 12px 10px;
    border-radius: 76px;
    backdrop-filter: blur(50px);
    box-sizing: border-box;
    animation: .5s ease-out 0s 1 fadeIn;
}

#desk-nav {
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    z-index: 999;
    width: 90%;
}

#desk-nav div {
    flex: 1;
}

.links ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.links ul li {
    list-style: none;
    margin: 0 10px;
    color: var(--secondary-text);
    position: relative;
    display: flex;
    margin: auto;
}

/*DESK-SERVICE UL*/
#service-down {
    width: auto;
    height: 10px;
    margin-left: 10px;
    transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) .55s;
}
.links ul li:hover #service-down {
    transform: rotate(540deg);
}

#service-ul {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: -50%;
    top: 100%;
    padding-top: 45px;
    transition: all .35s ease;
    width: 200px;
    box-sizing: border-box;
    background-color: transparent;
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 8.9%,
            #fff 0%,
            #fff 100%,
            rgba(255, 255, 255, 0) 85%);
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border: none;
}

#service-ul li {
    padding: 9px 5px;
    border-bottom: 1px solid rgb(221, 219, 219);
    flex: 1;
}

.links ul li:nth-of-type(3):hover #service-down+#service-ul {
    display: flex;
}


.links ul li a,
#service-ul li a {
    list-style: none;
    color: var(--secondary-text);
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
}

.links ul li::before {
    content: '';
    border: 1px solid var(--primary-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    width: 0;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: all 200ms ease-out;
    visibility: hidden;
}

.links ul li:hover:before {
    width: 90%;
    visibility: visible;
}

.logo {
    font-weight: bolder;
    font-size: 26px;
    text-align: center;
    text-decoration: underline;
}

/* MOBILE-NAV */
#mobile-nav {
    display: none;
    z-index: 1;
}

.mobile-links {
    transition: all .35s ease;
    animation: fadeIn .5s;
    margin: 0 auto 41px auto;
    display: flex;
    justify-content: center;
    z-index: 999;

}

.mobile-links ul {
    position: fixed;
    left: 0;
    background: #fff;
    border-radius: 30px;
    width: 95%;
    padding: 30px 20px;
    transition: all .35s ease;
    margin: 14.5% auto 0 auto;
}

.mobile-links ul li {
    list-style: none;
    color: var(--secondary-text);
    padding: 10px;
    position: relative;
    border-bottom: 1px solid rgb(221, 219, 219);
}

/*MOBILE-SERVICE UL*/
#service-down {
    width: auto;
    height: 10px;
    margin-left: 10px;
}

#mobile-service-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 0;
    transition: all .35s ease;
    width: 100%;
    box-sizing: border-box;
    animation: 0.5s fadeIn;
}

#mobile-service-dropdown a {
    margin: 0;
    padding: 3px;
    list-style: none;
    color: var(--secondary-text);
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
    margin: 7px 0 0 25px;
    transition: all .55s ease;
    border-bottom: 1px solid rgb(221, 219, 219);
}

.mobile-links ul li a {
    list-style: none;
    color: var(--secondary-text);
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
    margin: 100px 10px;
}

.hide {
    display: none;
}

@media (max-width: 1020px) {

    #desk-nav {
        display: none;
    }

    #mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
    }
}

@media (max-width: 680px) {
    .mobile-links ul {
        width: 89%;
    }
}

/*HERO*/
.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    min-height: 1620px;
    padding-top: 170px;
    margin: auto;
}

.gradients-bg {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    width: 100%;
    height: 1220px;
    background-image: none;
    background-size: auto;
    background-repeat: repeat;
    z-index: -999;
    margin: auto;
}

.gradient-circle-pink {
    position: absolute;
    top: 11%;
    right: -14%;
    width: 45vw;
    height: 45vh;
    border-radius: 50%;
    background-color: var(--primary-pink);
    filter: blur(120px);

}

.gradient-circle-blue {
    position: absolute;
    left: -14%;
    top: 10%;
    width: 46vw;
    height: 46vh;
    border-radius: 50%;
    background-color: var(--primary-blue);
    filter: blur(120px);
}

.gradient-circle-purple {
    position: absolute;
    top: 30%;
    width: 52vw;
    height: 52vh;
    border-radius: 50%;
    background-color: var(--primary-purple);
    filter: blur(120px);
}

.gradient-circle-yellow {
    position: absolute;
    left: 46%;
    top: auto;
    right: 0%;
    bottom: 31%;
    width: 44vw;
    height: 44vh;
    border-radius: 50%;
    background-color: var(--primary-yellow);
    filter: blur(120px);
}

.gradient-circle-yellow._2 {
    width: 30vw;
    height: 30vh;
    background-color: rgba(248, 217, 151, 0.5);
}

/*HERO Text*/
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    text-align: center;
    width: 90%;
    animation: 1s ease-out scaleOut;
    animation-delay: .200ms;
}

.hero-text {
    max-width: 540px;
}

.hero-text h5 {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-text h1 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-text);
    font-size: 62px;
    line-height: 66px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.hero-text p:nth-of-type(1) {
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    max-width: 374px;
    margin: auto;
}

/*HERO-FORM*/
.hero-form {
    background-color: hsla(0, 0%, 100%, 0.65);
    backdrop-filter: blur(50px);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    width: 85%;
    margin: 40px auto 0 auto;
}


.hero-form .heading h2 {
    font-weight: 900;
    font-size: 30px;
    line-height: 42px;
    color: var(--primary-text);
    margin: 0;
}

.highlight {
    color: var(--primary-purple);
}

.hero-form div input,
select,
button {
    padding: 15px;
    border-radius: 12px;
    border-right: none;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid var(--secondary-pink);
    margin: 15px 20px 0 0;
    font-size: 16px;
    transition: all .35s ease;
    cursor: pointer;
}

.hero-form div input:hover,
select:hover,
button:hover {
    box-shadow: 0 0 5px #aaaaaa;
}

.hero-form div button:hover {
    transform: scale(1.02);
}

.hero-form div input {
    width: 28%;
    /* width: 288px; */
    background: white(128, 128, 128, 0.123);
}

.hero-form div select {
    width: 31%;
    /* width: 322px; */
    background: white(128, 128, 128, 0.123);
}

.hero-form div button {
    width: 31%;
    /* width: 322px; */
    background-color: var(--secondary-pink);
    color: white;
}

@media (max-width: 1180px) {
    .hero-form div input {
        width: 26%;
    }

    .hero-form div select {
        width: 29%;
    }

    .hero-form div button {
        width: 29%;
    }
}

@media (max-width: 800px) {
    .hero-text {
        max-width: 340px;
    }

    .hero-text h1 {
        font-size: 50px;
        line-height: 54px;
    }

    .hero-form div input {
        width: 90%;
        display: block;
    }

    .hero-form div select {
        width: 95%;
        display: block;
    }

    .hero-form div button {
        width: 95%;
        display: block;
    }
}

/*INTRO*/
.intro {
    position: relative;
    width: 90%;
    margin-top: -1010px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
    padding-right: 25px;
    padding-left: 25px;
    border-radius: 40px 40px 0px 0px;
    background: linear-gradient(#fff 95%, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: .5s ease-out 0s 1 fromBottom;

}

.intro-text {
    text-align: center;
}

.intro-text h5 {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: -22px 0 32px 0;
}

.intro-text h1 {
    color: var(--primary-text);
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin: -22px 0 15px 0;
}

.intro-text p {
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    max-width: 374px;
    margin: auto;
}

.intro-cards {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.intro-cards div {
    text-align: center;
    margin: 0px auto;
}

.intro-cards h3 {
    margin-top: 25px;
    margin-bottom: -10px;
    font-weight: bold;
    color: var(--primary-text);
    line-height: 27px;
    font-size: 20px;
}

.intro-cards p {
    font-weight: normal;
    font-size: 16px;
    color: var(--secondary-text);
    max-width: 80%;
    margin: 20px auto 0 auto;
}

#intro-product {
    height: 160px;
    width: 160px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#intro-product img {
    height: 180px;
    width: auto;
    transition: all .35s ease;
}

.intro-cards div:hover #intro-product img {
    transform: translateY(-10px);
}

.intro1 {
    padding-bottom: 20px;
    padding-left: 15px;
    box-sizing: border-box;
    background-color: #ffdb8f;
}

.intro2 {
    background-color: #d0b8ea;
}

.intro3 {
    background-color: #addfe5;
}

@media (max-width: 950px) {
    .intro-cards {
        flex-direction: column;
    }

    .intro-cards div {
        margin: 30px auto;
    }
}

@media (max-width: 800px) {
    .intro {
        margin-top: -850px;
        width: 80%;
    }
}

@media (max-width: 600px) {
    .intro {
        margin-top: -750px;
    }

    .intro-text h1 {
        font-size: 35px;
    }
}

/* ABOUT */
#about {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    margin-top: 160px;
}

.about-image {
    position: relative;
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    flex: 1;
}

.intro-bg-aqua {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    margin-right: 29px;
    background-image: url("../../media/about-bg2.png");
    background-position: 50% 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.intro-bg-purple {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    background-image: url("../../media/about-bg1.png");
    background-position: 50% 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.intro-image {
    position: relative;
    bottom: -39px;
}

.image {
    position: absolute;
    left: auto;
    top: auto;
    right: 4%;
    bottom: -3%;
    width: 100px;
}

.about-text {
    text-align: left;
    margin-top: 80px;
}

.about-text h5 {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;

}

.about-text h1 {
    color: var(--primary-text);
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1.5px;
    font-weight: 800;
    max-width: 80%;
    margin-top: 10px;
}

.about-text h4 {
    color: #454545;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: -0.1px;
    word-spacing: -0.1px;
    margin: 20px 0;
}

.about-text p {
    margin-top: -10px;
    margin-bottom: 20px;
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    max-width: 470px;
}

.about-text img {
    vertical-align: middle;
    display: inline-block;
    width: 130px;
}

@media (max-width: 900px) {
    #about {
        flex-direction: column;
        align-items: center;
        margin-top: 70px;
    }

    .intro-bg-purple {
        width: 93%;
    }

    .intro-image {
        width: 50%;
    }

    .about-image {
        width: 100%;
    }

    .about-text {
        margin-top: 50px;
    }
}

/*FEATURES*/
#features {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 150px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-text {
    margin-top: 30px;
}

.features-text h5 {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: -22px 0 32px 0;
}

.features-text h1 {
    color: var(--primary-text);
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin: -22px 0 15px 0;
}

.features-text p {
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    max-width: 374px;
    margin: auto;
}

.features-wrapper {
    padding: 50px;
    margin: auto;
    margin-top: 40px;
}

.top-features,
.bottom-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.feature-card {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    margin: auto;
}

.feature-card .img-div {
    height: 170px;
    width: 170px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffdb8f;
    box-sizing: border-box;
    margin: auto;
}

.feature-card .img-div img {
    height: 150px;
    width: auto;
    transition: all .35s ease;
    box-sizing: border-box;
}

.feature-card:hover .img-div img {
    transform: scale(1.07);
}

.feature-card .text-div {
    width: 60%;
    text-align: left;
    padding: 20px 10px;
}

.feature-card .text-div h1 {
    margin-top: 10px;
    margin-bottom: -5px;
    color: var(--primary-text);
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
}

.feature-card .text-div p {
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 17.5px;
    font-weight: 300;
    letter-spacing: -0.3px;
    max-width: 80%;
}

.f1 {
    border: 1px solid #1084e3;
}

.f2 {
    border-right: 1px solid #1084e3;
    border-bottom: 1px solid #1084e3;
    border-top: 1px solid #1084e3;
}

.f3 {
    border-right: 1px solid #1084e3;
    border-left: 1px solid #1084e3;
    border-bottom: 1px solid #1084e3;
}

.f4 {
    border-right: 1px solid #1084e3;
    border-bottom: 1px solid #1084e3;
}

@media (max-width: 1020px) {

    .features-wrapper {
        padding: 15px;
    }

    .top-features,
    .bottom-features {
        flex-direction: column;
    }

    .feature-card {
        flex-direction: column;
        padding: 10px;
    }

    .feature-card .img-div {
        height: 150px;
        width: 150px;
    }

    .feature-card .img-div img {
        height: 130px;
    }

    .feature-card .text-div {
        width: 100%;
        text-align: left;
        padding: 20px 10px;
    }

    .feature-card .text-div p {
        max-width: 100%;
    }

    .f2 {
        border-left: 1px solid #1084e3;
        border-top: none;
    }

    .f4 {
        border-left: 1px solid #1084e3;
    }
}

/*DOTS AND LINE*/
.dot-top-left {
    position: absolute;
    left: -0.8%;
    top: -1.5%;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.dot-middle-left {
    position: absolute;
    left: -0.9%;
    top: auto;
    right: auto;
    bottom: -2.1%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.dot-top-middle {
    position: absolute;
    left: auto;
    top: -1.7%;
    right: -1%;
    bottom: auto;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.dot-middle-center {
    position: absolute;
    left: auto;
    top: auto;
    right: -1%;
    bottom: -2%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.top-left-line {
    position: absolute;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    width: 45px;
    height: 1px;
    margin-top: -1px;
    margin-left: -45px;
    background-color: #1084e3;
}

.bottom-left-line {
    position: absolute;
    left: -45px;
    top: auto;
    right: auto;
    bottom: -1px;
    width: 45px;
    height: 1px;
    background-color: #1084e3;
}

.top-left-vertical {
    position: absolute;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    width: 1px;
    height: 45px;
    margin-top: -45px;
    background-color: #1084e3;
}

.top-right-middle {
    position: absolute;
    left: auto;
    top: 0%;
    right: 0%;
    bottom: auto;
    width: 1px;
    height: 45px;
    margin-top: -45px;
    margin-right: -1px;
    background-color: #1084e3;
}

.dot-top-right {
    position: absolute;
    left: auto;
    top: -2%;
    right: -0.8%;
    bottom: auto;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.dot-middle-right {
    position: absolute;
    left: auto;
    top: auto;
    right: -0.9%;
    bottom: -2%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.top-right-line {
    position: absolute;
    left: auto;
    top: 0%;
    right: -45px;
    bottom: auto;
    width: 45px;
    height: 1px;
    margin-top: -1px;
    margin-left: -45px;
    background-color: #1084e3;
}

.bottom-right-line {
    position: absolute;
    left: auto;
    top: auto;
    right: -45px;
    bottom: -1px;
    width: 45px;
    height: 1px;
    background-color: #1084e3;
}

.top-right-middle {
    position: absolute;
    left: auto;
    top: 0%;
    right: 0%;
    bottom: auto;
    width: 1px;
    height: 45px;
    margin-top: -45px;
    margin-right: -1px;
    background-color: #1084e3;
}

.dot-bottom-left {
    position: absolute;
    left: -0.9%;
    right: auto;
    bottom: -2%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.dot-middle-bottom-2 {
    position: absolute;
    left: auto;
    top: auto;
    right: -0.8%;
    bottom: -2%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.bottom-left-line {
    position: absolute;
    left: -45px;
    top: auto;
    right: auto;
    bottom: -1px;
    width: 45px;
    height: 1px;
    background-color: #1084e3;
}

.bottom-middle-vertical-copy {
    position: absolute;
    left: 0%;
    top: auto;
    right: auto;
    bottom: 0%;
    width: 1px;
    height: 45px;
    margin-bottom: -45px;
    margin-left: -1px;
    background-color: #1084e3;
}

.bottom-middle-vertical {
    position: absolute;
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    width: 1px;
    height: 45px;
    margin-bottom: -45px;
    background-color: #1084e3;
}

.dot-bottom-right {
    position: absolute;
    left: auto;
    top: auto;
    right: -0.8%;
    bottom: -2%;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #1084e3;
    background-color: #fff;
}

.bottom-right-line {
    position: absolute;
    left: auto;
    top: auto;
    right: -45px;
    bottom: -1px;
    width: 45px;
    height: 1px;
    background-color: #1084e3;
}

.bottom-right-vetical {
    position: absolute;
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    width: 1px;
    height: 45px;
    margin-bottom: -45px;
    background-color: #1084e3;
}

@media (max-width: 1020px) {

    .top-left-line,
    .bottom-left-line,
    .top-left-vertical,
    .top-right-middle,
    .top-right-line,
    .bottom-right-line,
    .top-right-middle,
    .bottom-left-line,
    .bottom-middle-vertical-copy,
    .bottom-middle-vertical,
    .bottom-right-line,
    .bottom-right-vetical {
        display: none;
        visibility: hidden;
    }
}


/*ON-BOARDING-PROCESS*/
#board {
    background-color: #f8f9fa;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

.board-text {
    padding-top: 120px;
}

.board-text h1 {
    color: var(--primary-text);
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin: -22px 0 15px 0;
}

.board-text p {
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    max-width: 374px;
    margin: auto;
}

.board-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 50px auto 0 auto;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 5px;
    background-color: white;
    padding: 30px;
    margin: 20px auto;
}

.step .steps-num {
    border-radius: 100%;
    box-sizing: border-box;
    padding: 6px 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #10b7eb;
    color: white;
    font-size: 18px;
    font-weight: 400;
}

.step .steps-text {
    padding: 0 25px;
    width: 90%;
}

.step .steps-text p {
    margin: 0;
    color: var(--secondary-text);
    text-align: left;
    font-size: 16px;
}

.board-image {
    padding: 50px;
}

.board-image img {
    height: 500px;
    width: auto;
}

@media (max-width: 1188px) {
    .board-image img {
        height: 335px;
    }
}

@media (max-width: 900px) {
    .board-content {
        flex-direction: column;
        padding-bottom: 100px;
    }

    .board-image {
        visibility: hidden;
        display: none;
    }

    .step {
        margin: 10px 0px 0px 10%;
        /* flex-direction: column;
        align-items: center; */
    }
}



/*FAQ*/
#faq {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    height: 90vh;
}

#faq .faq-img {
    background-image: url('../../media/faq-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    padding: 0 100px;
}

#faq .faq-img img {
    width: 90%;
    height: auto;
}

/*faq-content*/
.faq-content {
    margin: auto;
}

.faq-content main {
    margin-inline: 15px;
    width: 75%;
    height: 100%;
}

.faq-content main .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content main .container h2 {
    text-align: left;
    padding: 0.525rem;
    color: var(--primary-text);
    font-size: 36px;
    line-height: 42px;
    font-weight: 800;
    margin-bottom: -10px;
}

.faq-content main .container .accordion .accordion-header {
    padding: 0.828rem 0.6rem;
    border-bottom: 1px solid rgb(221, 219, 219);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-text);
    font-size: 19px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

.faq-content main .container .accordion .accordion-header span {
    font-size: 1.5rem;
    font-weight: 600;
}

.faq-content main .container .accordion .accordion-body {
    padding: 0 0.828rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease 0.5s;
}

.faq-content main .container .accordion .accordion-body p {
    border-bottom: none;
    margin: 0.828rem 0;
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 16.5px;
    font-weight: 300;
    letter-spacing: -0.3px;
}

.faq-content main .container .accordion.active .accordion-body {
    border-bottom: 1px solid rgb(221, 219, 219);
}

.close span {
    transition: ease 0.5s;
    display: inline-block;
    height: 12px;
    width: 2px;
    background-color: var(--primary-purple);
}

.close span:nth-child(even) {
    transform: rotate(90deg) translateY(5.2px);
}

.active .close span:nth-child(odd) {
    opacity: 0;
    visibility: hidden;
}

.faq-content main .container .button {
    padding: 0.828rem 0.6rem;
    margin-top: 10px;
}

.faq-content main .container .button a {
    padding: 12px 20px;
    border: 1px solid var(--primary-purple);
    border-radius: 100px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.55s ease;
    box-shadow: 0 0 4px #aaaaaa;
}

.faq-content main .container .button a:hover {
    background-color: var(--primary-purple);
    color: white;
}

@media (max-width: 1020px) {
    #faq {
        flex-direction: column;
        margin: 100px auto;
        width: 95%;
    }

    #faq .faq-img {
        width: 50%;
        margin: auto;
        padding: 60px 80px;
    }

    #faq .faq-img img {
        width: 100%;
        height: auto;
    }

    .faq-content main {
        margin-inline: 0;
        width: 95%;
    }

    .faq-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

/*TESTIMONIALS*/

#testimonials {
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 100px;
}

#testimonials #testi-main {
    width: 90%;
    max-width: 1440px;
    padding: 16px;
    margin: -90px auto 0 auto;
}

#testimonials #testi-main .slider .buttons {
    z-index: 1;
    left: 62%;
    margin-bottom: 27px;
    margin-left: -60px;
    width: 80px;
    height: 40px;
    position: relative;
    border-radius: 50px;
    transform: translateX(50%);
    background-color: rgb(253, 253, 253);
    top: 313px;
}

#testimonials #testi-main .slider .buttons .previous,
#testimonials main .slider .buttons .next {
    width: 50%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

#testimonials #testi-main .slider .buttons .previous {
    left: 0;
    background-image: url('../../media/previous.svg');
}

#testimonials #testi-main .slider .buttons .previous:hover {
    transform: scale(1.25);
}

#testimonials #testi-main .slider .buttons .next {
    right: 0;
    background-image: url('../../media/next.svg');
}

#testimonials #testi-main .slider .buttons .next:hover {
    transform: scale(1.25);
}

#testimonials #testi-main .slider .slide {
    display: flex;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

#testimonials main .slider .slide .testimonial {
    /* padding: 32px 51px; */
    background-size: 60px;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url('../../media/test-quotation.svg');
}

#testimonials #testi-main .slider .slide .testimonial blockquote {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 36px;
}

#testimonials #testi-main .slider .slide .testimonial .author {
    font-size: 15px;
    font-weight: 700;
}

#testimonials #testi-main .slider .slide .testimonial .author span {
    display: block;
    color: #babacf;
    font-weight: 500;
}

#testimonials #testi-main .slider .slide .slider-img {
    width: 100%;
    padding: 30px;
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../../media/testi-bg.svg');
}

#testimonials #testi-main .slider .slide .slider-img img {
    width: 240px;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 16px 40px 0px rgba(135, 105, 210, 0.4);
}

#testimonials #testi-main .slider .slide .active {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.4s;
}

#testimonials footer {
    font-size: 11px;
    text-align: center;
}

#testimonials footer a {
    color: #3e52a3;
}

#testimonials .hide {
    display: none;
}

@media screen and (min-width: 600px) {
    #testimonials main {
        max-width: 800px;
    }

    #testimonials main .slider .buttons {
        top: 280px;
    }
}

@media screen and (min-width: 900px) {
    #testimonials main {
        width: 100%;
        max-width: 1054px;
        /* padding: 64px 64px 64px 0; */
    }

    #testimonials #testi-main .slider .buttons {
        right: 43%;
        top: 500px;
    }

    #testimonials #testi-main .slider .slide {
        position: relative;
        text-align: left;
        display: flex;
        flex-direction: row;
    }

    #testimonials #testi-main .slider .slide .testimonial {
        padding: 32px 0 0 0;
        background-size: 80px;
        background-position: 19% -7%;
        transform: translateX(100px);
    }

    #testimonials #testi-main .slider .slide .testimonial blockquote {
        font-size: 24px;
        line-height: 30px;
    }

    #testimonials #testi-main .slider .slide .testimonial .author span {
        display: contents;
    }

    #testimonials #testi-main .slider .slide .slider-img {
        padding: 55px;
    }

    #testimonials #testi-main .slider .slide .slider-img img {
        width: 400px;
    }
}

/*BRAND*/
#brand {
    display: flex;
    flex-direction: column;
    margin: 0 auto 100px auto;
    width: 95%;
    background-color: #f1f5f9;
    border-radius: 10px;
    border-top-right-radius: 100px;
    padding: 20px;
    overflow: hidden;
}

.brand-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 10px;
    margin-top: 70px;
}

.brand-text h5 {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-text div h1 {
    color: var(--primary-text);
    font-size: 42px;
    line-height: 40px;
    letter-spacing: -1.5px;
    font-weight: 800;
    max-width: 80%;
    margin: 10px 0 12px 0;
}

.brand-text div p {
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    max-width: 400px;
}

.brand-text div img {
    width: 160px;
    margin-bottom: 20px;
    position: relative;
    animation-name: move;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.brand-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.brand-content div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(196, 196, 196, 0.5);
    flex: 1;
    transition: all 0.55s ease;
}

.brand-content div img {
    width: auto;
    height: 160px;
    filter: grayscale(100%);
    transition: all 0.25s ease;
}

.brand-content div img:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.brand3 {
    width: 50%;
    height: auto;
}

@media (max-width: 1020px) {
    #brand {
        width: 90%;
    }

    .brand-content {
        flex-direction: column;
        justify-content: center;
    }

    .brand-content div {
        border-right: none;
        border-bottom: 1px solid rgba(196, 196, 196, 0.5);
        margin-top: 80px;
    }

    .brand-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-text div h1 {
        max-width: 90%;
    }
}

/*FOOTER*/
#footer {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    /* max-width: 1440px; */
    height: 75vh;
}

.footer-content {
    background-color: #fff;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 94%;
    height: 55vh;
    box-sizing: border-box;
}

.footer-content div {
    flex: 1;
    padding: 30px;
}

.company img {
    width: 105px;
}

.company h4 {
    margin-bottom: 12px;
}

.company p {
    margin-bottom: 10px;
    color: var(--secondary-text);
    font-size: 16.5px;
    font-weight: 300;
    letter-spacing: -0.3px;
}

.menu h3,
.services h3,
.info h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 20px 0;
}

.menu a,
.services a {
    display: block;
    text-decoration: none;
    color: var(--secondary-text);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin: 15px 0;
    position: relative;
}

.menu a::before {
    content: '';
    border: 1px solid var(--primary-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    width: 0;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: all 200ms ease-out;
    visibility: hidden;
}

.menu a:hover:before {
    width: 20%;
    visibility: visible;
}

.services a::before {
    content: '';
    border: 1px solid var(--primary-purple);
    border-radius: 50px;
    color: var(--primary-purple);
    width: 0;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: all 200ms ease-out;
    visibility: hidden;
}

.services a:hover:before {
    width: 20%;
    visibility: visible;
}

.info p {
    transition: color 200ms ease;
    color: var(--primary-purple);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.icons a {
    text-decoration: none;
    padding: 10px;
    border-radius: 100px;
    margin: 0 10px;
}

.icons img {
    width: auto;
    height: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all .25s ease;
}

.icons img:hover {
    transform: translateY(-5px);
}

.fb {
    background-color: #067aeb;
}

.insta {
    background-image: linear-gradient(1030deg, #e71e4c, #fb774e);
}

.twitter {
    background-color: #1da1f2;
}

@media (max-width: 1020px) {
    #footer {
        height: 100%;
        /* height: 108vh; */
        padding-top: 100px;
    }

    .footer-content {
        flex-direction: column;
        height: 90%;
        /* height: 98vh; */
    }

    .footer-content div {
        padding-top: 5px;
        padding-bottom: 0px;
    }
}