@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@1&family=Fira+Sans:wght@300;400&family=Inter:wght@100;400;600&family=Oswald:wght@300&family=Playfair+Display:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pridi:wght@300&family=Rubik&display=swap');
html,
body {
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none!important;
    color: white;
}

body {
    background-image: url('./images/body-background.png');
    /* background-repeat: no-repeat; */
    background-size: cover;
    color: white!important;
    padding: 0px 104px 0px 104px;
    font-family: 'Roboto', sans-serif;
}


/* ================================================== */


/* LOADING SCREEN */


/* ================================================== */

.loading-screen {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: #785CCF;
    left: 0;
    top: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-sceen-logo {
    transition: all 0.5s ease-in-out;
    z-index: 10;
}

.circle {
    position: absolute;
    height: 3em;
    width: 3em;
    border-radius: 50%;
    z-index: 9;
}

.circle-1 {
    background-color: #4c30a1;
    animation: loading-screen-circles 2s ease-in-out 0s infinite;
}

.circle-2 {
    background-color: #6c48da;
    animation: loading-screen-circles 2s ease-in-out 0.3s infinite;
}

.circle-3 {
    background-color: #8561f3;
    animation: loading-screen-circles 2s ease-in-out 0.6s infinite;
}

@keyframes loading-screen-circles {
    0% {
        opacity: 0;
        /* transform: scale(0); */
    }
    35% {
        opacity: 1;
        /* transform: scale(3); */
    }
    50% {
        opacity: 1;
        /* transform: scale(4); */
    }
    75% {
        opacity: 0;
        transform: scale(5);
    }
    100% {
        opacity: 0;
        /* transform: scale(5); */
    }
}


/* ================================================== */


/* CONNECT WALLET */


/* ================================================== */

.connect-wallet-lg {
    display: inline;
    width: 170px;
    transform: scale(0.9);
}

.connect-wallet-lg button {
    /* position: fixed;
    bottom: 1.5em;
    right: 1.5em; */
    /* z-index: 9; */
    border: none;
    display: flex;
    visibility: hidden;
    align-items: center;
    padding: 0.5em 0.7em;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    color: white;
    font-size: medium;
    background: linear-gradient(99.99deg, #B936F5 -21.45%, #C64C85 100%, #F1005B 100%);
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.connect-wallet button {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    padding: 0.5em 0.7em;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    color: white;
    font-size: medium;
    background: linear-gradient(99.99deg, #B936F5 -21.45%, #C64C85 100%, #F1005B 100%);
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar-background {
    height: 5.4rem;
    width: 100vw;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.navbar-background.active {
    transition: all 0.4s ease-in-out;
    background: #2d2563;
    box-shadow: #393074 0px 5px 15px;
}

.navbar {
    width: 110%;
    position: fixed!important;
    z-index: 99999;
}

.nav-svg svg {
    margin-right: 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.nav-svg svg:hover {
    transform: scale(1.3);
}

.nav-text p {
    margin-right: 24px;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.nav-text p:hover {
    color: #cac9c9
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999999;
    top: 0;
    display: none;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.1s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #ffffff;
    display: block;
    transition: 3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.hamburger-icon {
    font-size: 40px;
    cursor: pointer;
    display: none;
}


/* ---------------------------------------------------------------- */

.header-div {
    margin-top: 10em;
}

.sub-header-1 p:nth-child(1) {
    font-family: 'Rubik', sans-serif;
    font-size: 50px;
    width: 19.5em;
}

.sub-header-1 p:nth-child(2) {
    font-size: 20px;
    width: 30em;
    font-family: 'Pridi', serif;
    font-weight: 300;
}

.sub-header-btn button:nth-child(1) {
    color: white;
    background-color: #6f48e4;
    padding: .7em 1.5em .7em 1.5em;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    border: none;
    border-radius: 3.5px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.sub-header-btn button:nth-child(2) {
    color: white;
    background: transparent;
    padding: .7em 1.5em .7em 1.5em;
    font-family: 'Roboto', sans-serif;
    outline: none;
    border: none;
    font-weight: 600;
    border-radius: 3.5px;
    position: relative;
}

.sub-header-btn button:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 0px;
    background-color: white;
    transition: all 0.2s ease-in-out;
}

.sub-header-btn button:nth-child(2):hover::before {
    width: 85px;
}

.sub-header-btn button:nth-child(1):hover {
    background-color: #633AE0;
}

.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
}

.arrows path {
    stroke: #7A5DD1;
    fill: transparent;
    stroke-width: 1px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
    0% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow
/*Safari and Chrome*/

{
    0% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
    /* Safari 和 Chrome */
}

.arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
    /* Safari 和 Chrome */
}

.arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    /* Safari 和 Chrome */
}


/* ================================================================ */


/* VISION SECTION */


/* ================================================================ */

.vision-div {
    width: 110vw;
    position: relative;
    background: linear-gradient(180deg, #7A5DD1 0%, #674DB7 100%);
    left: -7rem;
    padding: 7rem 20vw 7rem 10rem;
    margin-top: 10em;
}

.vision-div::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 8em;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.vision-div p {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #E2E2E2;
}

.vision-div h1 {
    font-family: 'Inter', sans-serif;
    text-underline-offset: 7px;
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
}

.why_wog_section {
    margin-top: calc(5rem + 1vw);
}

.why_wog_section h1 {
    font-family: 'Inter', sans-serif;
}

.why_wog_section_content {
    width: 20em;
    z-index: 3;
    text-align: center;
    font-family: 'Inter', sans-serif;
    margin: 0 2em;
    margin-top: calc(2rem + 1vw);
}

.why_wog_section_1_head {
    font-size: calc(1.2rem + 1vw);
}

.why_wog_section_1_desc {
    font-size: calc(1rem + 0.3vw);
    margin-bottom: 1em;
}

.why_wog_section_footer {
    height: 10em;
    width: 10em;
    background-color: #fff;
    border-radius: 50%;
}


/* ================================================================ */


/* COLLECTION SECTION */


/* ================================================================ */


/* 
.our_collection {
    width: 30em;
    position: absolute;
    right: 0;
    margin-top: 10em;
} */


/* ================================================================ */


/* TIMELINE SECTION */


/* ================================================================ */

#content {
    margin-top: 50px;
    text-align: center;
}

.timeline {
    border-left: 4px solid #B936F5;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Source Sans Pro', sans-serif;
    margin: 50px auto 10em auto;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.4em;
    font-size: 1.03em;
    padding: 50px;
    list-style: none;
    text-align: left;
    font-weight: 100;
    max-width: 50%;
}

#content h1 {
    position: relative;
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.timeline h2,
.timeline h3 {
    letter-spacing: 1.5px;
    font-weight: 100;
    color: white;
}

.timeline .event {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    margin-bottom: 50px;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.event::before {
    content: attr(data-date);
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
    left: -8.5em;
    color: white;
}

.timeline .event:after {
    box-shadow: 0 0 0 4px #C64C85;
    left: -57.85px;
    background: #313534;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
    top: 5px;
}


/* ***************************************************************** */

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.timeline-container::-webkit-scrollbar {
    width: 10px;
    background: #a800f7;
}

.timeline-container::-webkit-scrollbar-track {
    background: linear-gradient(273.49deg, #B936F5 -6.16%, #C64C85 102.38%, #F1005B 102.38%);
}

.timeline-container::-webkit-scrollbar-thumb {
    background-color: #B936F5;
}

.timeline-container h1 {
    color: white;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline;
    left: 1em;
}

.timeline-container h1::before {
    content: '';
    height: 3px;
    background-color: white;
    width: 100%;
    position: absolute;
    bottom: -0.5em;
}

.timeline-container {
    position: relative;
    height: 100rem;
    color: #000;
    overflow-y: visible;
    overflow-x: hidden;
    padding-top: 10rem;
}

.timeline-container::after,
.timeline-container::after {
    content: "";
    position: absolute;
    left: -0.2em;
    right: 0;
    top: -3em;
    bottom: 3em;
    border-radius: 5em;
    width: 12px;
    background: linear-gradient(273.49deg, #B936F5 -6.16%, #C64C85 102.38%, #F1005B 102.38%);
}

.timeline-container .timeline-content,
.timeline-container .timeline-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 4em;
}

.timeline-container .timeline-content span,
.timeline-container .timeline-content span {
    position: relative;
    padding: 0.5em 1em;
    margin-left: 0em;
    z-index: 3;
    background: linear-gradient(273.49deg, #B936F5 -6.16%, #C64C85 102.38%, #F1005B 102.38%);
    color: white;
    border-radius: 50px;
    border: 3px solid #0a0a0a;
    font-weight: bold;
}

.timeline-container .timeline-content span::before,
.timeline-container .timeline-content span::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid;
    background: rgb(0, 0, 0);
    left: calc(-2em - 6px);
    z-index: 2;
    border-radius: 20px;
}

.timeline-container .timeline-content article,
.timeline-container .timeline-content article {
    margin-top: 1.5em;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 2em;
    position: relative;
    border: 3px solid #C64C85;
    ;
    padding: 0.5em 0.7em;
    transform-style: preserve-3d;
}

.timeline-container .timeline-content article::before,
.timeline-container .timeline-content article::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 4px;
    top: 4px;
    height: 100%;
    background: #0a0a0a;
    border: 3px solid;
    transform: translateZ(-1px);
}


/* ================================================================ */


/* AUCTION CARDS */


/* ================================================================ */

.auction-cards {
    align-items: center;
}

.sub-auction-cards-1 h2 {
    font-size: calc(1.3em + 1vw);
    font-family: 'Roboto', sans-serif;
}

.sub-auction-cards-1 p {
    font-size: calc(0.5em + 1vw);
    width: 25em;
    font-family: 'Roboto', sans-serif;
}

.sub-auction-cards-2 button {
    color: white;
    background: transparent;
    padding: .7em 3em .7em 3em;
    font-family: 'Roboto', sans-serif;
    outline: none;
    border: 1px solid white;
    font-weight: 600;
    border-radius: 3.5px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.sub-auction-cards-2 button:hover {
    background-color: white;
    color: #C64C85;
}

.sub-auction-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.auction-card {
    position: relative;
    width: 380px;
    height: 550px;
    border: 2px solid #EBA9FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 4em 0.5em;
}

.auction-details {
    margin-top: 3rem;
    text-align: center;
    position: absolute;
    bottom: 4em;
}

.auction-details .price {
    font-size: xx-large;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.auction-details>div:nth-child(2) {
    font-size: 15px;
    color: rgb(214, 214, 214);
}

.place-bid-btn button {
    padding: 0.5rem 6rem;
    /* margin-top: 1rem; */
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(99.99deg, #B936F5 -21.45%, #C64C85 100%, #F1005B 100%);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    outline: none;
    border: none;
    border-radius: 2px;
}

.place-bid-btn button:hover {
    background: linear-gradient(279.27deg, #B936F5 -10.2%, #C64C85 113.95%, #F1005B 113.95%);
}

.auction-card::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    margin: -20px;
    width: 40px;
    height: 40px;
    transform: rotate(45deg) scale(1.6);
    background-color: #000;
    border-bottom: 2px solid #EBA9FF;
    /* to see where it is */
}

.auction-card-img {
    -webkit-clip-path: polygon(86% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(86% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
    /* transform: scale(1.2); */
    width: 98%;
    height: 350px;
    position: absolute;
    top: 7px;
    left: 2px;
}


/* ======================================= */


/* OUR TEAM */


/* ======================================= */

.our_team {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: #6E53C1;
    width: 100vw;
    position: relative;
    left: -7em;
    padding: 5em 0em;
    clip-path: ellipse(100% 70% at 50% 70%);
}

.our_team .person {
    width: 20em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5em;
}

.our_team .person .big_circle_detail {
    height: 15em;
    width: 15em;
    border-radius: 50%;
    position: relative;
    margin-bottom: 2em;
}

.our_team .person .small_circle_detail {
    height: 5em;
    width: 5em;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}


/* ======================================= */


/* COMMUNITY NEW SECTION  */


/* ======================================= */

.community_new {
    height: 60em;
    width: 100vw;
    left: -7em;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Oswald', sans-serif;
    background-position-x: 17em;
    background-position-y: -12em;
    font-weight: 800;
}

.community_new::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 1;
}


/* .community_new_heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
} */

.community_new_heading {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-left: 5rem;
}

.community_new_heading h1 {
    font-size: calc(3rem + 1vw);
    color: #4a28ad;
}

.community_new_heading h1 span {
    font-size: calc(2rem + 1vw);
    color: #a384ff;
}

.community_new_heading h5 {
    font-size: calc(0.5rem + 1vw);
    font-weight: 300;
    color: #9e88e0;
}

.community-links {
    display: flex;
    margin-top: 2em;
    margin-left: 0;
    flex-wrap: wrap;
}

.community-links div {
    display: flex;
    align-items: center;
    margin: 0.5em 0;
}

.community-links div a {
    color: #9b7aff;
    font-weight: 300;
    border-radius: 50px;
    border: 2px solid #9b7aff;
    /* height: 3em;
    width: 3em; */
    padding: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.1em;
    transition: all 0.3s ease-in-out;
}

.community-links div a:hover {
    background-color: #8761fa;
    color: white;
}


/* .community-links div:nth-child(1) a {
    border: 2px solid #5865F2;
}

.community-links div:nth-child(2) a {
    border: 2px solid #116191;
}

.community-links div:nth-child(3) a {
    border: 2px solid #C13584;
} */


/* ======================================= */


/* NEW TO  */


/* ======================================= */

.new_to_section {
    padding: 5em 20px 0 20px;
    background-color: #6E53C1;
    width: 100vw;
    position: relative;
    left: -7em;
}

.new_to_section>div h2 {
    font-size: 4em;
    font-family: 'Oswald', sans-serif;
    /* font-weight: 600; */
    color: #4a28ad;
}

.new_to_section>div h2 span {
    color: #9d84e7;
}

.new_to_section>div p {
    font-size: calc(0.9rem + 0.7vw);
    font-weight: 100;
    font-family: 'Oswald', sans-serif;
    color: #9e88e0;
}


/* =============================================================


 FAQs


 =============================================================  */

.faq-container {
    margin: 5em auto;
    padding: 4rem;
    width: 48rem;
}

.accordion .accordion-item {
    border: 1px solid #332970;
    background-color: #332970;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #bbb0ff;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 23px 1em 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #bbb0ff;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #000000;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: #bbb0ff;
    border: none;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 20em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
    /* .faq {
        position: relative;
        background-color: #6E53C1;
        width: 100vw;
        left: -7em;
        padding-top: 10em;
        padding-bottom: 10em;
    }
    
    .faq h3 {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
    }
    
    .faq h4 {
        font-size: calc(0.8rem + 0.7vw);
        font-family: 'Inter', sans-serif;
        font-weight: 200;
    }
    
    .ques {
        width: 50%;
    } */
    /* ======================================= */
    /* COMMUNITY */
    /* ======================================= */
}

.community-header p {
    font-size: calc(1.3em + 1vw);
    font-family: 'Roboto', sans-serif;
    margin-top: 5em;
}

.community-people {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2em;
    justify-content: space-around;
    overflow: hidden;
    padding: 2.5em 0em;
}

.community-profile {
    height: 15em;
    width: 15em;
}

.community-profile img {
    height: 100%;
    width: 100%;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.2s ease-in-out;
    border: 2px solid white;
}

.community-profile img:hover {
    transform: scale(1.1);
}


/* ==================================== */

.benefits-section {
    font-family: 'Roboto', sans-serif;
}

.img-benefits-section {
    display: flex;
    justify-content: center;
}

.img-benefits-section img {
    height: calc(12px + 9vw);
}


/* ==================================== */

.who-div {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 115vw;
    position: relative;
    background: linear-gradient(180deg, #7A5DD1 0%, #674DB7 100%);
    left: -8rem;
    padding: 7rem 20vw 7rem 10rem;
    clip-path: ellipse(100% 100% at 48% 100%);
}

.who-div p {
    max-width: 40em;
    font-size: calc(1vw + 10px);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: rgb(226, 226, 226);
}

.who-div h2 {
    font-size: 2.5rem;
    font-family: 'Roboto', sans-serif;
    text-underline-offset: 7px;
    margin-bottom: 20px;
    position: relative;
}

.who-div h2::before {
    content: '';
    height: 3px;
    background-color: white;
    width: 100%;
    position: absolute;
    bottom: -10px;
}


/* SWIPER */

.container-swiper {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    margin-bottom: 4em;
    margin-top: 10em;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide .card {
    padding: 0 1em;
    background-color: #6f48e4;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-slide .card-body {
    line-height: 2px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.swiper-slide .card-body svg:hover {
    transform: scale(1.2);
}

.swiper-slide {
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
}

.swiper-slide img {
    border-radius: 100%;
    height: 15em;
    margin-top: 1em;
}

.swiper-slide-next {
    transform: scale(1.2);
}

.circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15em;
}

.circles>div {
    border-radius: 150px;
    border-style: solid;
    border-width: 1px;
    margin: 0px;
    width: 200px;
    margin: 1em 1em;
    padding: 1em;
    height: 9em;
    width: 9em;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    outline: 0;
    position: relative;
}

.circles>div::after {
    content: "";
    position: absolute;
    background: #6F48E4;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 45%;
    transition: all 1s ease-in-out;
    transform: translateY(100%) rotate(0deg);
    color: white;
    z-index: -1;
}

.circles>div:hover::after {
    transform: translateY(0%) rotate(500deg);
}

.circles>div:hover {
    color: #fff;
}

.circles div p {
    margin: 0;
}


/* .circles>div:before {
    content: '';
    position: absolute;
    border-radius: 100%;
    border: 2px solid red;
    top: 0;
    left: 0;
    transform: scale(20);
} */

.circles div p:nth-child(1) {
    font-size: large;
}

.circles div p:nth-child(2) {
    font-size: smaller;
}


/* SWIPER */


/* FOOTER */


/* ================================== */

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

.main-footer {
    position: relative;
    left: -7em;
    width: 100vw;
    background: #6E53C1;
}

.main-footer::before {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-content {
    position: relative;
    padding: 40px 15px 20px;
}

.footer-content .logo-widget {
    position: relative;
    margin-top: -5px;
}

.footer-content .logo-widget .footer-social li {
    position: relative;
    display: inline-block;
    margin-right: 9px;
}

.footer-content .logo-widget .footer-social li:last-child {
    margin-right: 0px;
}

.footer-content .logo-widget .footer-social li a {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: #7559CA;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
}

.footer-content .logo-widget .footer-social li a:hover {
    color: #ffffff;
}

.footer-content .logo-widget .logo-box {
    margin-bottom: 25px;
    height: 100px;
}

.footer-social {
    padding-left: 0!important;
}

.footer-content .logo-widget .text p {
    color: #c0b1ed;
    margin-bottom: 32px;
}

.footer-content .footer-title {
    position: relative;
    font-size: 24px;
    line-height: 35px;
    font-family: 'Inter', serif;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 27px;
}

.footer-content .service-widget .list li {
    display: block;
    margin-bottom: 12px;
}

.footer-content .service-widget .list li a {
    position: relative;
    display: inline-block;
    color: #d3c6fa;
    transition: all 0.2s ease-in-out;
}

.footer-content .service-widget .list li a:hover {
    color: #8d67ff;
}

.footer-content .contact-widget p {
    color: #9ea0a9;
    margin-bottom: 15px;
}

.footer-content .contact-widget {
    margin-left: 90px;
}

.footer-content .contact-widget .footer-title {
    margin-bottom: 29px;
}

.footer-column>div>ul {
    color: #000;
}


/** footer-bottom **/