
/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a, a:active, a:visited {
    text-decoration: inherit;
    color: inherit;
}

/* Custom CSS - Globals */

html, body {
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    font-style: normal;
    background-color: #230F42;
    color:white;
    overflow-x: hidden;
}

img {
    object-fit:scale-down;
}

a {
    display: flex;
}
a img {
    justify-self: center;
    align-self: center;
}

.purple {
    color:#A557FF;
}

.v {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

main {
    gap: 300px;
    padding: 8vw 8vw 260px;
    align-items: center;
    position: relative;
    z-index: 0;
    isolation: isolate;
}
main::before {
  content: '';
  position: absolute;
  bottom: 0%; left: 50%;
  transform: translate(-40%, 50%);
  width: 400%;
  height: 700px;
  background: radial-gradient(circle, #A557FF 0%, transparent 25%);
  filter: blur(200px);
  z-index: 0;
  pointer-events: none;
}

h1,h2 {
    font-size: 70px;
    line-height: 86px;
    font-family: "Geist", sans-serif
}

.button {
    padding: 8px 20px;
    border: 2px solid white;
    border-radius: 999px;
    transition: all 0.4s;
    font-weight: 500;
    position: relative;
    font-family: "Geist", sans-serif;
    justify-content: center;
    align-items: center;
}
.button:hover {
    background-color: #A557FF;
    border-color: transparent;
}
.button-green {
    background-color: #80ED99;
    color: #230F42;
    border-color: transparent;
}
.button-green:hover {
    background-color: transparent;
    color:#80ED99;
    border-color: #80ED99;
}
.blur {
    position: relative;
}
.blur::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #A557FF 0%, transparent 25%);
  filter: blur(200px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {

    main {
        gap: 124px;
    }

    h1,h2 {
    font-size: 36px;
    line-height: 50px;
    }

}

/* Custom CSS - Header */

header {
    padding: 60px 245px;
    justify-content: space-between !important;
    gap: 110px;
    z-index: 1;
}
#header-menutoggle,#header-menu {
    display: none;
}
#header-linkbar {
    background-color: #3A1A67;
    border-radius: 999px;
    filter: drop-shadow(0 0 35px #00000026);
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin: 15px 0;
    padding: 14px 48px;
    gap: 20px;
    z-index: 1;
}
#header-linkbar a {
    transition: all 0.4s ease;
    transform: translateY(0);
}
#header-linkbar a:hover {
    transform: translateY(-4px);
}

@media (max-width: 1000px) {
    header {
        padding: 60px 20vw;
        gap: 20vw;
        justify-content: space-between !important;
        z-index: 1;
    }

    #header-logo {
        height: 45px;
    }
}

@media (max-width: 768px) {

  #header-linkbar {
    display: none;
  }
  .active {
    display: flex !important;
  }
  #header-menu {
    inset: 0;
    z-index: 10;
    background: #80ED99;
    position: fixed;
    padding: 10vh 10vw;
    justify-content: space-between;

  }
  #header-menu ul {
    justify-content: flex-start;
    gap: 20px;
    color:#230F42;
  }
  #header-menutoggle {
    display: flex;
  }
  #header-menuclose {
    size: inherit;
    width: 20px;
    height: 20px;
  }
}

/* Custom CSS - Footer */

footer {
    position: relative;
    background-color: #FFFFFF;
    color: #230F42;
    font-weight: 700;
    padding: 96px 245px;
    font-size: 20px;
    z-index: 2;
}

#footer-bottom {
    padding-top: 48px;
    gap: 64px;
}

#footer-top {
    justify-content: space-between;
    border-bottom: 2px solid #DCDCDC;
    padding-bottom: 48px;
}

#footer-links {
    gap: 48px;
}
#footer-links img {
    margin-right: 8px;
}
#footer-links a {
    transition: all 0.4s ease;
    transform: translateX(0);
}
#footer-links a:hover {
    transform: translateX(8px);
}

#footer-linkbar {
    display: none;
    gap: 20px;
    justify-content: flex-start;
}

#footer-bottom img {
    display: none;
    height: 45px;
}

@media (max-width: 768px) {
    footer {
        padding: 10vw;
    }

    #footer-logo-desktop {
        display: none;
    }

    #footer-links {
        flex-direction: column;
    }

    #footer-linkbar {
        display: inherit;
    }

    #footer-bottom img {
        display: inherit;
    }

    #footer-bottom p {
        color:#9C9C9C
    }
}

/* Custom CSS - Section 1 */

#section1 {
    width: 640px;
    text-align: center;
    gap:96px;
    margin-bottom: 400px;
}
#section1::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(10%, -20%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #80ED99 0%, transparent 25%);
  filter: blur(200px);
  z-index: 0;
  pointer-events: none;
}
#section1-header {
    position: relative;
    gap: 48px;
    align-items: center;
}
#section1-header h3 {
    width: 70%;
    font-size: 18px;
}
#section1-header::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(10%, -20%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #80ED99 0%, transparent 25%);
  filter: blur(200px);
  z-index: 0;
  pointer-events: none;
}

#section1 .h {
    gap: 26px;
    padding: 48px 0;
}

.button-arrow {
    padding-right: 24px;
    transition: all 0.4s ease;
}
.button-arrow:hover {
    padding-right: 44px;
}
.button-arrow::after {
  content: "ᐅ";
  font-family: "Geist", sans-serif;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  position: absolute;
  right: 16px;
}
.button-arrow:hover::after {
  opacity: 1;
  transform: translateX(0);
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
#orbit-medium {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: url(../images/orbit-medium.png) center/contain no-repeat;
    animation: spin 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}
#orbit-small {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 874px;
    height: 862px;
    background: url(../images/orbit-small.png) center/contain no-repeat;
    animation: spin 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}
#orbit-large {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 1720px;
    height: 1720px;
    background: url(../images/orbit-large.png) center/contain no-repeat;
    animation: spin 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {

    #section1 {
        width: 80vw;
        gap: 48px;
        margin-bottom: 64px;
    }

    #section1 .h {
        flex-direction: column;
        align-items: center;
    }

    #orbit-large {
        display: none;
    }

}

/* Custom CSS - Section 2 */

#section2 {
    align-items: center;
    gap: 124px;
}

#solutions {
    background-image: url(../images/solution-background.png);
    background-repeat: no-repeat;
    background-position: 50%;
}

.solution {
    margin-bottom: -1px;
    gap:1px;
}

.solution-main, .solution-side {
    padding: 104px 6vw;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start;
    flex-basis: 100%;
}

.solution-main {
    border: 1px solid #A557FF;
    transition: all 0.4s ease;
    color: #A557FF;
    font-size: 20px;
    z-index:1;
}

.solution-main .purple {
    font-size: 24px;
}

.solution-side {
    filter:opacity(0);
    transition: all 0.4s ease;
}

.solution-side p {
    color:#80ED99;
    font-size: 32px;
    line-height: 40px;
}

.solution:hover .solution-main {
    background: #261a45;
    color: inherit;
    filter:opacity(0.9);
}

.solution:hover .solution-side {
    background: #230f42f2;
    filter:opacity(0.9);
}

#mira {
    background-image: url(../images/mira-purple.png);
    width: 270px;
    height: 59px;
    transition: background-image 0.4s ease;
}
#vega {
    background-image: url(../images/vega-purple.png);
    width: 270px;
    height: 57px;
    transition: background-image 0.4s ease;
}
.solution:hover #mira {
    background-image: url(../images/mira.png);
}
.solution:hover #vega {
    background-image: url(../images/vega.png);
}

@media (max-width: 920px) {

    #solutions {
        flex-direction: column;
        padding: 40px;
        gap: 64px;
    }

    #solutions {
        background-image: none;
    }

    .solution:nth-child(2) {
        flex-direction: column-reverse;
    }

    #solutions::before {
        background: none;
        display: none;
    }

    .solution {
        flex-direction: column;
    }

    .solution > div {
        padding: 30px;
    }

    .solution-side {
        background: #ffffff;
        filter:opacity(0.9);
    }

    .solution-side a {
        background: #230F42;
        color: #ffffff
    }

    .solution-side p {
        color:#230F42;
        font-size: 20px;
        line-height: 28px;
    }

    #mira {
        background-image: url(../images/mira.png);
    }
    #vega {
        background-image: url(../images/vega.png);
    }

    .solution-main {
        background: #261a45;
        color: inherit;
        filter:opacity(0.9);
    }

    .solution:hover .solution-main {
        background: #261a45;
        filter:opacity(0.9);
    }

    .solution:hover .solution-side {
        background: #ffffff;
        filter:opacity(0.9);
    }

    .solution a:hover {
        color:#230F42;
        border-color: #230F42;
    }

}

/* Custom CSS - Section 3 */

#section3 {
    align-items: center;
    gap: 124px;
}

.bullet-point h3 {
    font-size: 2.5vw;
    line-height: 50px;
    transition: all 0.4s ease;
}

.bullet-point {
    padding: 0 60px;
    gap: 24px;
}

.bullet-point > div {
    justify-content: space-between;
    align-items: center;
}

.icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: 24px;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bullet-point:hover h3 {
    color: #80ED99;
}

.bullet-point .icon-normal {
    opacity: 1;
}
.bullet-point:hover .icon-hovered {
    opacity: 1;
}
.bullet-point:hover .icon-normal {
    opacity: 0;
}
.bullet-point .icon-hovered {
    opacity: 0;
}

.bullet-point:nth-child(2) {
    border-left: 1px solid #A557FF;
    border-right: 1px solid #A557FF;
}

@media (max-width: 1400px) {

    #section3 {
        gap: 64px;
    }

    #bullet-points {
        flex-direction: column;
    }

    .bullet-point {
        padding: 30px 0;
    }

    .bullet-point:nth-child(2) {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #A557FF;
        border-top: 1px solid #A557FF;
    }

    .bullet-point h3 {
        font-size: 28px;
    }

    .bullet-point > div {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .icon-wrapper {
        margin-left: 0;
        margin-right: 24px;
    }

}

/* Custom CSS - Section 4 */

#section4 {
    background: #FFFFFF;
    width: 1140px;
    border-radius: 25px;
}

#carousel-contents {
    padding: 96px 64px 0 96px;
}

.carousel-content {
    display: none;
    flex-direction: column;
    position: absolute;
    filter: opacity(0);
    gap:48px;
}
.carousel-content.active {
    display: flex;
    position: static;
    filter: opacity(1);
}
.carousel-content h3 {
    color: #A557FF;
    font-size: 42px;
    line-height: 50px;
}
.carousel-content p {
    color: #9C9C9C;
}

#carousel-navs {
    align-items: center;
    padding: 48px 96px ;
    gap: 6px;
}
.carousel-nav {
    width: 6px;
    height: 6px;
    background: #DCDCDC;
    border-radius: 999px;
    transition: all 0.4s ease;
}
.carousel-nav.active {
    background: #A557FF;
    width: 26px;
}
#carousel-navs .carousel-arrow {
    color: #DCDCDC;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0 8px;
}
#carousel-navs .carousel-arrow:hover {
    color:#A557FF;
}
#section4-images {
    padding-right: 96px;
    gap: 32px;
}
#section4-images div {
    background-repeat: no-repeat;
    background-size: cover;
    width: 294px;
    height: 211px;
    padding: 48px;
}

#section4-images-top {
    background-image: url(../images/trust.png);
    margin-top: -48px;
    justify-content: end;
}
#section4-images-bottom {
    background-image: url(../images/graph.png);
    margin-bottom: -48px;
    justify-content: space-around;
}
#section4-images-bottom h3 {
    font-size: 70px;
}

@media (max-width: 768px) {

    .carousel-content h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .carousel-content p {
        font-size: 18px;
    }

}

@media (max-width: 1180px) {

    #section4 {
        width: 80vw;
        margin-left: -20vw;
        padding-left: 20vw;
    }

    #carousel-contents {
        padding: 40px 40px 0 40px;
    }

    .carousel-content {
        gap: 24px;
    }

    #section4-images {
        display: none;
    }

    #carousel-navs {
        padding: 24px 64px ;
    }

    

}

/* Custom CSS - Section 5 */

#section5 {
    width: 40vw;
    align-self: flex-start;
    gap:24px;
    align-items: flex-start;
}

#section5 h2 {
    margin-bottom: 24px;
}

#section5 div {
    gap: 48px;
}

#button-community {
    font-size: 20px;
}
#button-community:hover {
    background-color: #80ED99;
    color: #261a45;
}

@media (max-width: 1300px) {
    
    #section5 {
        width:auto;
        align-items: center;
        text-align: center;
    }

    #section5 div {
        flex-direction: column;
    }
}