@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Comfortaa&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&family=Montserrat:wght@200;300&family=Poppins&display=swap');
/* font-family: 'Alata', sans-serif; */
/* font-family: 'Comfortaa', cursive; */

:root {
    --main-color: #ecccf4;
    --blue: #b7b7e5;
    --blue-dark: #1f2f42;
    --orange: #b5a483;
    --green-yellow: #c8d472;
    --pink-light: #e990a5;
    --cyan-light: #948fe6;
    --white: #8567ac;
    --white-alpha-40: rgba(189, 163, 163, 0.4);
    --white-alpha-25: rgba(233, 184, 184, 0.25);
    --backdrop-filter-blur: blur(5px);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background:  linear-gradient(to bottom right,rgb(8, 8, 8), var(--cyan-light)); */
    color: hsl(0, 2%, 79%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    padding: 35px 15px;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

body.hide-scrolling {
    overflow-y: hidden;
}

body::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background:url(./images/back-1-purple.png); */
    background: rgb(14, 13, 13);
    z-index: -1;
    opacity: 1;
}


/* VIDEO */

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

video {
    min-width: 100%;
    min-height: 100%;
}

#background-video {
    position: relative;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    /* Adjust the alpha (last value) to control darkness */
    z-index: 2;
}

/* VIDEO */

.container {
    height: 600px;
    width: 490px;
    position: absolute;
    top: -426px;
    right: -1034px;
    display: none;
    /* background-color: white; */
    /* box-shadow: 8px 8px 20px rgb(128, 128, 128); */
    position: relative;
    overflow: hidden;
    /* position: absolute; */
    /* top: 156px;
    left: 901px; */
    /* width: 400px;
    height: 440px; */
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(243, 241, 241, 0.5);
    /* display: flex;
    justify-content: center;
    align-items: center; */
    transition: height .2s ease;
}

.btn {
    height: 60px;
    width: 300px;
    margin: 20px auto;
    box-shadow: 10px 10px 30px rgb(251, 188, 254);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    color: whitesmoke;
    text-align: center;
}

.login,
.signup {
    font-size: 22px;
    color: white;
    border: none;
    outline: none;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}


.slider {
    height: 55px;
    width: 138px;
    border-radius: 50px;
    background-image: linear-gradient(to right,
            rgb(18, 17, 19),
            rgb(61, 50, 66));
    /* background-image: transparent; */
    position: absolute;
    top: 20px;
    left: 100px;
    transition: all 0.5s ease-in-out;
}

.moveslider {
    left: 250px;
}

.form-section {
    height: 500px;
    width: 1000px;
    padding: 10px 0;
    display: flex;
    position: relative;
    transition: all 0.5s ease-in-out;
    left: 0px;
}

.form-section-move {
    left: -500px;
}

.login-box,
.signup-box {
    height: 100%;
    width: 500px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
}

.login-box {
    gap: 40px;
}

.signup-box {
    gap: 10px;
}

.ele {
    height: 60px;
    width: 400px;
    outline: none;
    border: none;
    border-bottom: 2px solid whitesmoke;
    background: transparent;
    /* border: none; */
    outline: none;
    font-family: 'Alata', sans-serif;
    color: #b7b7e5;


    color: rgb(77, 77, 77);
    background-color: transparent;
    border-radius: 50px;
    padding-left: 30px;
    font-size: 18px;
}

.clkbtn {
    height: 60px;
    width: 150px;
    border-radius: 50px;
    background-image: linear-gradient(to right,
            rgb(233, 167, 253),
            rgb(144, 36, 211));
    font-size: 22px;
    border: none;
    cursor: pointer;
}

/*----------------------
Custom Scrollbar 
------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: rgb(103, 52, 169);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(184, 138, 237);
}

/* section{
    background-color: var(--white-alpha-25);
    border: 1px solid var(--white-alpha-40);
    min-height: calc(100vh - 70px);
    border-radius: 30px;
    backdrop-filter: var(--backdrop-filter-blur);
    display: none;
}
section.active{
    display: block;
    animation: fadeIn 0.5s ease-in-out forwards;
}
section.fade-out{
    animation: fadeOut 0.5s ease-in-out forwards;
} */

/* SECTION 1 */
.section-1 {
    max-width: 1040px;
    margin: auto;
    margin-top: 60px;
    /* margin-bottom: 200px; */
    position: relative;
    padding-top: 10px;
}

.section-1-header {
    max-height: 70px;
    display: flex;
    justify-content: space-between;
    color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background-color: rgba(8, 7, 7, .4);
    /* Adjust the last value (alpha) to control transparency */
    z-index: 210;
}

.section-1-header-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Comfortaa', cursive;
    margin-left: 5px;
    font-weight: 600;
}

.section-1-header-logo img {
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(90, 123, 128, 0.3);
    /* drop shadow effect */
}

.section-1-header-options {
    font-family: 'Alata', sans-serif;
    display: flex;
    align-items: center;
}

.section-1-header-options div a {
    text-decoration: none;
    opacity: .8;
    font-size: 18px;
    line-height: 36px;
    white-space: nowrap;
    margin: 0 20px 0 36px;
    color: white;
    font-family: 'Alata', sans-serif;
    transition: 0.3s ease;
}

.section-1-header-options div a:hover {
    color: #948fe6;
    letter-spacing: 3px;
    cursor: pointer;
}


.section-1-main {
    font-family: 'Alata', sans-serif;
    text-align: center;
    font-weight: bolder;
}

.gradient-text {
    font-family: 'Alata', sans-serif;
    background: linear-gradient(to right, #ffff, #5e4b99), #a397f8;
    /* Replace with your desired gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-1-main-1 {
    margin-top: 100px;
    font-size: 106px;
    letter-spacing: 3px;
    font-weight: 700;
}

.section-1-main-2 {
    font-size: 30px;
    font-family: 'Comfortaa', cursive;
    letter-spacing: -0.2px;
    line-height: 38px;
    margin-top: 35px;
    font-weight: 700;
}

.section-1-main-3 {
    padding: 0.5rem;
}

/* 9 pointer navigation */
/* .main{
    position: relative;
    top: 4rem;
    left: 26rem;
    padding: 10px;
    border-radius: 22px;
    box-shadow: 0 0 20px rgba(166, 164, 164, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 170px;
    background: rgba(255, 255, 255, 0.1);
}
.main .navigation{
    position: relative;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.2);
    cursor:pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: 0.5s;
}

.main .navigation span{
    position: absolute;
    width:7px;
    padding: 2px;
    border-radius: 35%;
    height: 7px;
    background: #fff;
    display: flex;
   transform: translate(calc(14px * var(--x)), calc(14px * var(--y)));
   transition: transform 0.5s, width 0.5s, height 0.5s, background 0.5s;
   transition-delay: calc(0.1s * var(--i));
   display: flex;
   justify-content: center;
   align-items: center;
}

.main .navigation span ion-icon{
transition: 0.5s;
font-size: 0em;
color: #948fe6;
filter: drop-shadow(0 0 2px  #2c2b3c) drop-shadow(0 0 5px  #948fe6) drop-shadow(0 0 15px  hsl(243, 80%, 77%));;

}

.main .navigation.active span{
    width: 45px;
    height: 45px;
    background: whitesmoke;
    color: rgb(0, 0, 0);
   transform: translate(calc(60px * var(--x)), calc(60px * var(--y)));

} 
.main .navigation.active span ion-icon{
    font-size: 1.35em;
}

.main .navigation.active span:hover ion-icon{
    color: #948fe6;
    filter: drop-shadow(0 0 2px  #2c2b3c) drop-shadow(0 0 5px  #948fe6) drop-shadow(0 0 15px  hsl(243, 80%, 77%));;
}
.close{
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #040404;
    transform: 0.5s;
    transition-delay: 0.4s;
    pointer-events: none;
    display: flex;
   justify-content: center;
   align-items: center;
} */
/* .main .navigation span a {
    display: none; 
    font-size: 12px; 
    text-decoration: none;
    color: black;
}
.main .navigation span:hover a {
    display: block; 
}
.main .navigation span:hover{
    background-color: white;
}
.main .navigation.active ~ .close{
    width: 40px;
    height: 40px;
    pointer-events: initial;
    transition-delay: 0.8s;
    background: hsla(240, 7%, 92%, 0.401);
}
.main .navigation ~ .close ion-icon{
    font-size: 2em;
    scale: 1;
    color: black;
    transition: 0.5s;
}
main .navigation.active ~ .close ion-icon{
    scale: 3;
    transition-delay: 1s;
} */


/* service shortcut tools */
.service-tools {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    background-color: rgba(51, 51, 51, 0.75);
    backdrop-filter: blur(15px);
    color: white;
    box-shadow: 0px 0px 40px 2px rgba(122, 121, 121, 0.4);
    position: sticky;
    z-index: 100;
    background-color: #33333375;
    transition: 2s ease;
}

/*.service-tools .fixed {*/
/*    width: 100%;*/
/*}*/
.section-1{
    padding-top: 100px;
}
.service-tools h4 {
    font-family: 'Alata', sans-serif;
    margin-left: 1rem;
}

.service-item {
    flex: 1;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px; /* Add some margin for spacing */
}
.service-item p {
    margin: 0 5px; /* Remove default paragraph margin */
}

.service-item i {
    /*font-size: 2rem;*/
    /*margin-bottom: 1rem;*/
}

.service-item:hover {
    cursor: pointer;
    transform: scale(1.5);
    color: #948fe6;
}

/* Responsive styles for tablets */
@media screen and (max-width: 768px) {
    .service-tools {
        margin-left: 0;
        padding: 7px;
        width: 100%;
        position: static;
    }

    .service-tools.fixed {
        width: 100%;
    }
}

/* Responsive styles for smaller screens if needed */
@media screen and (max-width: 576px) {
    .service-tools {
        /* Additional styles for smaller screens if needed */
    }

    .service-tools.fixed {
        /* Additional styles for smaller screens if needed */
    }
}

/* Responsive styles for tablets */
@media screen and (max-width: 768px) {
    .service-tools {
        width: 100%;
    }

    .service-tools.fixed {
        width: 100%;
    }
}

/* 
.scroll-indicator {
    position: relative;
    top: 1rem;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: moveUpDown 2s infinite;
   }


.scroll-circle {
    width: 60px;
    height: 60px;
    padding: 3px;
    background: radial-gradient(rgba(0, 0, 0, 0.579), rgb(161, 160, 160));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite alternate;
   }

@keyframes pulse {
    0% {
        background-size: 100% 100%;
    }

    100% {
        background-size: 120% 120%;
   }
}



.scroll-indicator:hover .scroll-circle {
    opacity: 1;
} */

/* .scroll-indicator:hover .scroll-text {
    opacity: 1;
    /* Show the text on hover */
    /* color: rgb(255, 255, 255); */
    /* Change the text color on hover */
    /* font-size: larger; */
    /* Change the text font size on hover */
    /* font-weight: 700; */
    /* Change the text font weight on hover */
/* } */

/* Keyframes for moving the scroll indicator up and down */
/* @keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
} */
.scroll-indicator{
    position: relative;
    top: -1rem;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%, -50%);
}

.scroll-circle{
    width: 50px;
    height: 100px;
    border: 2px solid #ffffff65;
    border-radius: 60px;
}
.scroll-circle::before{
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 30px;
    background: #fff;
    left: 1.6%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 1;
    animation: scroll-circle 2s infinite;
}
.scroll-circle a {
    display: block;
    margin: auto;
    font-size: 1px;
    right: 97%;
    text-align: center;
    position: absolute;
    top: 46px;
    text-decoration: none;
    font-family: 'Alata', sans-serif;
    color: #9fadf1;
    font-weight: 700
}
@keyframes scroll-circle {
    from{
        opacity: 1;
        top: 10px;
    }
    to{
        opacity: 0;
        top: 100px;
    }
}

/* CALENDLY SECTION */

.meet {
    position: absolute;
    right: -3rem;
    top: 37rem;
    background-color: rgb(5, 5, 5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    z-index: 100;
    padding: 12px 14px;
    border: none;
    border-radius: 30px;
    box-shadow: 0px 0px 11px 3px rgb(74, 74, 74);
    cursor: pointer;

}

.meet a {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.5s ease-in-out;
    font-family: 'Alata', sans-serif;
    letter-spacing: 2px;


}

.meet a h6 {
    font-size: 12px;
}

.meet img {
    height: 66px;
    margin: -30px;
}

.meet a:hover {
    letter-spacing: 3px;

}


/* CALENDLY SECTION */

/* .section-1-main-3 button {
    padding: 10px 30px;
    font-size: 24px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    background-color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
} */

/*----------------------
Animation Keyframes
------------------------*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1);
    }
}

@keyframes bounceTop {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(0px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*----------------------
Background Circles
-----------------------*/
.bg-circles {
    position: fixed;
    top: 0;
    height: 100%;
    max-width: 1200px;
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
}

.bg-circles div {
    position: absolute;
    border-radius: 50%;
}

.bg-circles .circle-1 {
    height: 60px;
    width: 60px;
    background-color: var(--blue);
    left: 5%;
    top: 10%;
    opacity: 0.3;
    animation: zoomInOut 4s linear infinite;

}

.bg-circles .circle-2 {
    height: 80px;
    width: 80px;
    background-color: var(--main-color);
    left: 30%;
    top: 50%;
    opacity: 0.4;
    animation: bounceTop 2s ease-in-out infinite;
}

.bg-circles .circle-3 {
    height: 120px;
    width: 120px;
    background-color: var(--white);
    top: 40%;
    right: -60px;
    opacity: 0.3;
    animation: bounceTop 2s ease-in-out infinite;
}

.bg-circles .circle-4 {
    height: 50px;
    width: 50px;
    background-color: var(--orange);
    top: 80%;
    left: -30px;
    opacity: 0.6;
    animation: zoomInOut 4s linear infinite;
}

.bg-circles .circle-5 {
    height: 70px;
    width: 70px;
    background-color: rgb(55, 136, 105);
    left: 80%;
    top: 4.5%;
    opacity: 0.2;
    animation: bounceTop 2s ease-in-out infinite;
}

.bg-circles .circle-6 {
    height: 50px;
    width: 50px;
    background-color: rgb(62, 234, 247);
    left: 60%;
    top: 91%;
    opacity: 0.2;
    animation: zoomInOut 2s ease-in-out infinite;
}

/*----------------------
Overlay
-----------------------*/
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    z-index: 200;
    visibility: hidden;
}

.overplay.active {
    visibility: visible;

}

/*----------------------
Page Loader
------------------------*/
/* .page-loader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    background-color: var(--white-alpha-25);
    backdrop-filter: var(--backdrop-filter-blur);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}
.page-loader.fade-out{
    opacity: 0;
}
.page-loader div{
    border: 2px solid transparent;
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    animation: spin 1s linear infinite;
}
.page-loader div:nth-child(1){
    height: 60px;
    width: 60px;
    border-color: var(--main-color);
}
.page-loader div:nth-child(2){
    height: 45px;
    width: 45px;
    border-color: var(--blue);
    animation-duration: 1.2s ;
}
.page-loader div:nth-child(3){
    height: 30px;
    width: 30px;
    border-color: var(--orange);
}
 */

/* SECTION 2 */
.slider2 {
    position: relative;
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); */
    margin-top: 30rem;
    font-family: 'Alata', sans-serif;
    background: linear-gradient(to right, #ffff, #4b2b8a), #a42b88;
    /* Replace with your desired gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: xx-large;
}


.marquee-container {
    background: transparent;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.marquee-container img {
    display: inline-block;
}

.image-in {
    height: 90px;
    margin: 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* INFINITE SLIDER NAMED-LOGOS */

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: rgb(5, 5, 5);
    white-space: nowrap;
    position: relative;
    margin-top: 5rem;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before{
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(203, 181, 247, 0.151));
}
.logos:after{
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(203, 181, 247, 0.151));
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}


.logos-slide {
    display: inline-block;
    animation: 20s slide infinite linear;
}

.logos-slide img {
    height: 100px;
    margin: 0 40px;
}

/* INFINITE SLIDER NAMED-LOGOS */



/* SECTION 3 */
.section-3 {
    position: relative;
    padding: 240px 200px 180px;
    background-image: url(./images/back-2-purple.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
}

.section-3-header-1 {
    font-family: 'Alata', sans-serif;
    font-size: 100px;
    letter-spacing: -3.15px;
    opacity: 0.9;
    font-weight: 700;
}

.section-3-header-2 {
    font-family: 'Comfortaa', cursive;
    font-size: 32px;
    letter-spacing: -0.2px;
    line-height: 38px;
    max-width: 630px;
    font-weight: 700;
    margin-top: 16px;
}

.section-3-main-1 {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 28px;
    max-width: 630px;
    font-weight: 500;
    margin-bottom: 40px;
}

.section-3-main-2 {
    width: 22%;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 16px 20px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 18px;
    letter-spacing: 0.4px;
    line-height: 10px;
    border-radius: 22px;
    cursor: pointer;
    font-weight: 300;
    transition: 0.3s ease-in;
}

.section-3-main-2 a {
    text-decoration: none;
    font-family: 'Alata', sans-serif;
    font-size: 18px;
    color: black;
}

.section-3-main-2:hover {
    width: 22%;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: black;
    box-shadow: 0px 0px 10px white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
}

.section-3-main-2 a:hover {
    /* background-color: black; */
    color: white;
}

/* SECTION 4 */
.section-4 {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.section-4-left {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.section-4-left-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-top: 140px;
    align-items: self-start;
}

.section-4-left-heading {
    font-size: 70px;
    font-weight: 700;
    margin-top: 300px;
}

.section-4-left-desc {
    padding: 23px 0px;
    font-family: 'Comfortaa', cursive;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    max-width: 471px;
    width: 90%;
}

.section-4-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-4-right-placeholder {
    max-width: 322px;
    max-height: 480px;
    position: sticky;
    top: 236px;
    box-shadow: rgb(250 250 255 / 16%) 0px -5px 6px 0px inset, rgb(38 37 37 / 24%) 4px 6px 11px 1px inset;
    border-radius: 46px;
    padding: 16px 14px;
}

.section-4-right-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 25px;
}

/* learn more buttons */
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    margin-top: 1rem;
}

button.learn-more {
    width: 15rem;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #5f5b5b;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    padding-left: 15px;
    font-size: large;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

/* go to service button */
.btn-all {
    display: block;
    margin: auto;
    position: relative;
    /* height: 66px;
    top: 290rem; */
    width: 589px;
    margin-top: 13rem;
    /* margin-left: -7rem; */
    margin-bottom: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: 0.6s;
    box-shadow: 0px 0px 60px #8e56e7;
    letter-spacing: 1px;
    /* margin-top: 100px; */
}

.btn-text {
    font-size: 1.2rem;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(234, 234, 234);
    font-weight: 700;
    width: 30rem;
    font-family: 'Poppins', sans-serif;
}

.btn-all:active {
    scale: 0.92;
}

.btn-all:hover {
    background: rgb(97, 56, 150);
    background: linear-gradient(270deg, rgba(221, 202, 235, 0.681) 0%, rgba(202, 147, 241, 0.681) 60%);
    color: rgb(1, 1, 1);
    transition: 1.3s;
}


/* SECTION 5 */
.section-5 {
    background-image: url(../images/you\ are\ it.png);
    min-height: 500px;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* FOOTER STARTS*/
footer {
    text-align: center;
}

.footer {
    background-color: transparent;
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 50px 0px;
    position: relative;
    box-sizing: border-box;
    float: left;
    width: 100%;
}

.ftitle {
    margin-top: 50px;
    font-family: "Comfortaa", cursive;
    color: #8567ac;
    font-weight: 600;
    font-size: larger;
}

.foot-txt {
    line-height: 25px;
    margin-top: 70px;
}

.footer-col-title {
    padding-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.footer li {
    cursor: pointer;
    list-style: none;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-col {
    text-align: left;
    margin-top: 20px;
}

.social {
    align-items: center;
}

.social i {
    margin-top: 30px;
    padding: 7px;
}

.social li {
    margin-top: -30px;
    font-family: 'Poppins', sans-serif;
}

.social img {
    height: 88px;
}

.footer-icon {
    height: 13%;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(90, 123, 128, 0.3);
}

/* FOOTER ENDS */