body {
	background-color: rgb(3, 16, 23);
	margin: 0;
    padding: 0;
    height: 100%;
    font-family: Nunito;
    color: #FFFFE3;
    font-size: 16px;
}

html {
    height: 100%;
}

h2 {
	font-size: 25px;
    color: #FFFFE3;
    font-weight: 300;
    margin: 0;
}

h3 {
	font-size: 18px;
    color: #c6c6b7;
    font-weight: 300;
}

a {
    font-size: 18px;
    color: #c6c6b7;
    font-weight: 300;
    text-decoration: none;
}

.teal-reveal {
    display: flex;
    justify-content: center;
    align-items: center;

    /* position the div in center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 250px;
    margin: 0;
    padding: 0;
    z-index: 250;
    opacity: 0;
    animation: teal-reveal;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;

}


@keyframes teal-reveal {
    0% {
        opacity: 0;
        top: 52%;
    }
    25% {
        opacity: 100%;
        top: 50%;
    }
    75% {
        opacity: 100%;
        top: 50%;
    }
    100% {
        opacity: 0;
        top: 48%;
    }
}

.anchor-button {
    margin: 0 auto;
    display: block;
    width: 221px;
    opacity:0;
    animation: anchor-btn;
    animation-delay: 4.2s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes anchor-btn {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }
    100% {
        opacity: 100%;
        transform: translate(0, 0);
    }
}

@font-face {
  font-family: "Nunito";
  src: url("Nunito.ttf");
  }

#all-wrapper {
  	overflow-x: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.power-icon {
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 12px rgb(45 200 215 / 0.2));
}

.circles-outline {
    height: 630px;
    width: 548px;
    position: absolute;
    margin: 39.5% auto 0;
    top: 0;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
    opacity: 100%;
    z-index: -50;
    filter: saturate(100%);
    opacity:0;
    animation: circles-outline;
    animation-delay: 2.5s;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes circles-outline {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}

.circle-outline {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 121% 128% 125% 124% / 125% 120% 127% 125%;
}

.circle-outline:nth-child(1) {
    transform-origin: 50% 50%;
    animation: spin1-outline 52s linear infinite;
    border: 1px solid #094b55;
}

.circle-outline:nth-child(2) {
    transform-origin: 50% 50.6%;
    animation: spin2-outline 62s linear infinite;
    border: 1px solid #094b55;
}

.circle-outline:nth-child(3) {
    transform-origin: 50.3% 50%;
    animation: spin3-outline 41s linear infinite;
    border: 1px solid #094b55;
}
@keyframes spin1-outline {
    0% {
        transform: rotate(-0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin2-outline {
    0% {
        transform: rotate(-144deg);
    }
    100% {
        transform: rotate(216deg);
    }
}

@keyframes spin3-outline {
    0% {
        transform: rotate(267deg);
    }
    100% {
        transform: rotate(-93deg);
    }
}

.circles-bg {
    height: 1630px;
    width: 2470px;
    position: absolute;
    margin: 0 auto;
    top: -520px;
    left: 50%;
    transform: translate3D(-50%, -45%, 0);
    opacity: 0%;
    filter: saturate(3.5);
    animation: bg-reveal;
    animation-delay: 2s;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes bg-reveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 40%;
    }
}

.circle-bg {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 121% 128% 125% 124% / 125% 120% 127% 125%;
}

.circle-bg:nth-child(1) {
    transform-origin: 50% 50%;
    animation: spin1 22s linear infinite;
    background: #0067ff;
}

.circle-bg:nth-child(2) {
    transform-origin: 50% 50.3%;
    animation: spin2 22s linear infinite;
    background: #ff0084;
}

.circle-bg:nth-child(3) {
    transform-origin: 50.3% 50%;
    animation: spin3 22s linear infinite;
    background: #00a8ff;
}

.top-blur {
	backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    height: 880px;
    width: 100%;
    position: relative;
    left: 50%;
    z-index: 50;
    transform: translate3D(-50%, 0%, 0);
    margin: 0;
    padding: 0;
}

.logo {
    width: 147px;
    height: 20px;
    margin: 0 auto;
    padding: 48.4px;
    opacity:0;
    animation: logo-reveal;
    animation-delay: 2.5s;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes logo-reveal {
    0% {
        transform: translate(0, 5px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 100%;
    }
}

.circles {
	height: 1300px;
    width: 1300px;
    position: absolute;
    margin: 0 auto;
    left: 50%;
    transform: translate3D(-50%, 0%, 0);
    filter: drop-shadow(0 -0 30px rgb(3, 16, 23, 30%));
    z-index: 50;
}

.circle-blocker {
	box-sizing: border-box;
    position: absolute;
    width: 100.5%;
    height: 102%;
    background-color: #031017;
    border-radius: 100% / 100%;
    margin: 0 auto;
    left: 50%;
    transform: translate3D(-50%, 0.2%, 0);
    padding: 200px 295px 0;
    overflow: hidden;
    animation: circles-reveal-three 3s ease-out;
}

@keyframes circles-reveal-three {
    0% {
            transform: translate3D(-50%, -1%, 0);
    }
    100% {
            transform: translate3D(-50%, 0.2%, 0);
    }
}

.circle-blocker-outline {
    box-sizing: border-box;
    position: absolute;
    width: 110.5%;
    height: 102%;
    border-radius: 100% / 100%;
    margin: 0 auto;
    left: 50%;
    transform: translate3D(-50%, -60%, 0);
    background: linear-gradient(0deg, rgba(3, 15, 23, 1) 61%, rgba(3, 16, 23, 0)) 100%;
    overflow: hidden;
    z-index: -40;
}

.circle-blocker h1 {
    text-align: center;
    font-weight: 300;
    font-size: 82px;
    line-height: 92px;
    background: -webkit-linear-gradient(55deg, #FFFFE3 50%, #92d5c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 -170px 160px #0AAACE);
    opacity:0;
    animation: circle-blocker-headline;
    animation-delay: 3s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes circle-blocker-headline {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }
    100% {
        opacity: 100%;
        transform: translate(0, 0);
    }
}

.circle {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100% / 100%;
}

.circle:nth-child(1) {
    transform-origin: 50% 50.1%;
    animation: spin1 3s linear infinite;
    background: #c028e9;
    filter: saturate(4);
}

.circle:nth-child(2) {
    transform-origin: 50% 50.2%;
    animation: spin2 7s linear infinite;
    background: #f6ef85;
    filter: saturate(4);
}

.circle:nth-child(3) {
    transform-origin: 50.01% 50%;
    animation: spin3 4s linear infinite;
    background: #09D0C7;
    filter: saturate(4);
}

.circles-bubble {
    height: 36px;
    top: 87px;
    width: 127px;
    position: absolute;
    margin: -2px auto;
    left: 50%;
    transform: translate3D(-50%, 0%, 0);
    filter: saturate(400%);
}

.circles-bubble img {
    animation: bubble;
    animation-delay: 1.4s;
    animation-duration: 1.5s;
    transform-origin: bottom;
    animation-timing-function: ease-in-out;
    transform: scaleX(0) scaleY(0.2);
    animation-fill-mode: forwards;
}

@keyframes bubble {
    0% {
        transform: scaleX(0) scaleY(0.2);
    }
    25% {
        transform: scaleX(0) scaleY(0.2);
    }
    50% {
        transform: scaleX(0.05) scaleY(1);
    }

    100% {
        transform: scaleX(1) scaleY(1);
    }
}

@keyframes spin1 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin2 {
    0% {
        transform: rotate(-144deg);
    }
    100% {
        transform: rotate(216deg);
    }
}

@keyframes spin3 {
    0% {
        transform: rotate(216deg);
    }
    100% {
        transform: rotate(-144deg);
    }
}

.text-seperator {
    height: 1px;
    width: 200px;
    background: linear-gradient(90deg, rgba(12, 12, 14, 1) 0%, rgb(29 155 142) 50%, rgba(12, 12, 14, 1) 100%);
    margin: -5px auto;
    opacity:0;
    animation: text-seperator;
    animation-delay: 3.4s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes text-seperator {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }
    100% {
        opacity: 100%;
        transform: translate(0, 0);
    }
}

h2.top {
	width: 550px;
    margin: 48px auto;
    text-align: center;
    opacity:0;
    animation: headline-two;
    animation-delay: 3.8s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes headline-two {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }
    100% {
        opacity: 100%;
        transform: translate(0, 0);
    }
}

.csms-section {
    width: 1300px;
    text-align: center;
    position: relative;
    z-index: 100;
    margin: 0 auto;
}

.csms-section-first-text {
    width: 400px;
    text-align: left;
    position: absolute;
    z-index: 100;
    left: 0;
    top: 100px;
}

.csms-section-second-text {
    width: 400px;
    text-align: left;
    position: absolute;
    z-index: 100;
    right: 0;
    top: 532px;
}

.challenges-section {
    max-width: 1300px;
    text-align: center;
    position: relative;
    display: flex;
    flex-wrap:wrap;
    z-index: 100;
    margin: 70px auto 0;
}

.challenges-left {
    position: relative;
    height: 120px;
    width: 50%;
    opacity:0;
    animation: challenges-lines;
    animation-delay: 4.6s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.challenges-right {
    position: relative;
    height: 120px;
    width: 50%;
    opacity:0;
    animation: challenges-lines;
    animation-delay: 4.6s;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}


@keyframes challenges-lines {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }
    100% {
        opacity: 100%;
        transform: translate(0, 0);
    }
}

.challenges-left::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 0 30px 0;
    border: 2px solid transparent;
    background: linear-gradient(167deg, #031017 54%, #1C5D56) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    right: -1px;
}

.challenges-right::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 0 0 30px;
    border: 2px solid transparent;
    background: linear-gradient(-167deg, #031017 54%, #1C5D56) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    left: -1px;
}

.challenges-left-end {
    position: relative;
    height: 120px;
    width: 50%;
}

.challenges-right-end {
    position: relative;
    height: 120px;
    width: 50%;
}

.challenges-left-end::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0 30px 0 0;
    border: 2px solid transparent;
    background: linear-gradient(10deg, #031017 54%, #1C5D56) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    right: -1px;
}

.challenges-right-end::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px 0 0 0;
    border: 2px solid transparent;
    background: linear-gradient(-10deg, #031017 54%, #1C5D56) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    left: -1px;
}

.challenges-text-left {
    width: 50%;
    text-align: center;
    padding: 100px 0;
    position: relative;
    margin-top: 100px;
}

.challenges-text-left img {
    position: absolute;
    top: 59px;
    right: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.challenges-text-left h3 {
    width: 80%;
    margin: 18px auto 0;
}

.challenges-text-right {
    width: 50%;
    text-align: center;
    padding: 100px 0;
    position: relative;
    margin-top: 100px;
}

.challenges-text-right img {
    position: absolute;
    top: 59px;
    right: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.challenges-text-right h3 {
    width: 80%;
    margin: 18px auto 0;
}

.challenge-large-headline-left {
    text-align: center;
    font-weight: 300;
    font-size: 77px;
    line-height: 92px;
    background: -webkit-linear-gradient(90deg, #031017 30%, #924f9c 60%, #dcbcc6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 -5px;
    text-shadow: #c700ff 1px 0 130px;
}

.challenge-large-headline-right {
    text-align: center;
    font-weight: 300;
    font-size: 77px;
    line-height: 92px;
    background: -webkit-linear-gradient(90deg, #031017 30%, #3c9a87 60%, #d1cd58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px 0px -5px;
    text-shadow: #0077ff 1px 0 130px;
}

.growth-section {
    width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.growth-section h1{
    text-align: center;
    font-weight: 300;
    font-size: 77px;
    line-height: 92px;
    background: -webkit-linear-gradient(90deg, #FFFFE3, #a0b8b1 50%, #eae0b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 35px;
}

.climate-container {
    width: 660px;
    margin: 30px auto 190px;
    text-align: center;

}

.climate-container h2 {
    margin: 0 auto;
    width: 400px;
}

.success-section {
    width: 100%;
    background: linear-gradient(0deg, rgba(3, 16, 23, 1) 0%, rgb(0 21 33) 50%, rgba(3, 16, 23, 1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    display: flex;
    padding: 0;
}

.success-section h3 {
    margin-bottom: 0;
}

.success-container {
    width: 710px;
    margin: 60px auto 0px;
    text-align: center;
    z-index: 100;
}

.success-section ul {
    text-align: left;
    font-size: 18px;
    color: #c6c6b7;
    font-weight: 300;
    margin-top: 70px;
    display: flex;
    list-style-type: none;
    padding: 0;
    z-index: 150;
}

.success-section li {
    width: 290px;
    box-shadow: inset 0 0 10px #00ffe11f;
    margin: 0 20px;
    border: 1px solid #00ff9c1c;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    background: linear-gradient(185deg, rgb(0 255 226 / 5%) 0%, rgb(37 146 153 / 0%) 50%, rgb(0 255 204 / 0%) 100%);
}

.success-section li::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: linear-gradient(45deg, #ffffff00, #ffffff54 50%, #ffffff00);
    top: -1px;
    right: 20px;
    transition: all 1.4s ease;
}
.success-section li::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: linear-gradient(45deg, #ffffff00, #ffffff54 50%, #ffffff00);
    bottom: -1px;
    left: 20px;
    transition: all 1.4s ease;
}

.success-section li img {
    margin-bottom: 30px;
}

.success-section h1{
    text-align: center;
    font-weight: 300;
    font-size: 77px;
    line-height: 92px;
    background: -webkit-linear-gradient(90deg, #FFFFE3, #a0b8b1 50%, #eae0b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 35px;
}

.flying-object-one {
    width: 180px;
    height: 30px;
    filter: blur(40px);
    position: absolute;
    background-color: #144d4f;
    animation: flying-object-one 2s infinite linear;
}

@keyframes flying-object-one {
  0%   {left:100%;}
  100%  {left:-100%;}
}

.flying-object-two {
    width: 180px;
    height: 30px;
    filter: blur(40px);
    position: absolute;
    background-color: #144d4f;
    animation: flying-object-two 3s infinite linear;
}

@keyframes flying-object-two {
  0%   {left:100%; top:36%;}
  100%  {left:-100%; top:36%;}
}

.flying-object-three {
    width: 180px;
    height: 30px;
    filter: blur(40px);
    position: absolute;
    background-color: #144d4f;
    animation: flying-object-three 3.7s infinite linear;
}

@keyframes flying-object-three {
  0%   {left:100%; bottom:50%px;}
  100%  {left:-100%; bottom:50%;}
}

.flying-object-four {
    width: 180px;
    height: 15px;
    filter: blur(40px);
    position: absolute;
    background-color: #144d4f;
    animation: flying-object-four 1.3s infinite linear;
}

@keyframes flying-object-four {
  0%   {left:100%; bottom:31%;}
  100%  {left:-100%; bottom:31%;}
}

.flying-object-five {
    width: 180px;
    height: 15px;
    filter: blur(40px);
    position: absolute;
    background-color: #144d4f;
    animation: flying-object-five 1.5s infinite linear;
}

@keyframes flying-object-five {
  0%   {left:100%; top:22%;}
  100%  {left:-100%; top:22%;}
}


.contact-section {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    margin: 160px 0;
}

.contact-section h1 {
    text-align: center;
    font-weight: 300;
    font-size: 77px;
    width: 690px;
    top: 220px;
    margin: 0 auto;
    position: absolute;
    line-height: 92px;
    background: -webkit-linear-gradient(90deg, #FFFFE3, #a0b8b1 50%, #eae0b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact-section h2 {
    text-align: center;
    width: 690px;
    margin: -10px auto 50px;
    display: block;
}

.contact-container {
    position: relative;
    width: 900px;
}

.contact-fade {
    width: 280px;
    background: linear-gradient(0deg, rgb(76 1 90) 10%, rgba(10, 193, 186, 0.3) 60%, rgba(3, 16, 23, 1) 100%);
    height: 520px;
    margin: 0 auto;
}

.contact-circle-wrapper {
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-circle-fade {
    width: 230px;
    height: 230px;
    border-radius: 270px;
    background: radial-gradient(circle, rgba(3, 16, 23, 0) 0%, rgba(10, 193, 186, 1) 100%);
    animation: puls 1s ease-in-out infinite alternate;
    -webkit-animation: puls 1s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 34px #00FFEE);
}

@keyframes puls {
        0% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
        100% {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
        }
    }

.contact-blur {
    width: 100%;
    height: 500px;
    position: absolute;
    bottom: -500px;
    z-index: 50;
    backdrop-filter: blur(40px);
}

.contact-blur img {
    display: block;
    margin: 50px auto;
}

.contact-options{
    width: 390px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

.email {
    text-align: center;
    margin: 0 0 40px;
}

.email img {
    text-align: center;
    margin: 0 auto 10px;
}

.phone {
    text-align: center;
    margin: 0 0 40px;
}

.phone img {
    text-align: center;
    margin: 0 auto 10px;
}

@media only screen and (max-width: 767px) {
h2 {
    font-size: 23px;
}
.circle-blocker {
    padding: 54px 486px 0;
	}
.circle-blocker h1 {
    font-size: 34px;
    line-height: 42px;
	}
h2.top {
    width: 300px;
    margin: 0 auto 70px;
    font-size: 20px;
	}
.circles-bubble::before {
    height: 95px;
}
.circles-outline {
    height: 590px;
    width: 348px;
    margin: 16.5% auto 0;
    filter: saturate(100%);
	}
.text-seperator {
    height: 1px;
    width: 150px;
    margin: 30px auto;
	}
.top-blur {
    height: 570px;
	}
.csms-illustration {
	display: none;
	}
.csms-section {
    position: relative;
    z-index: 100;
    margin: 20px;
    width: auto;
	}
.csms-section-first-text {
    position: relative;
    float: left;
    width: 100%;
    top: 0;
    bottom: 0;
    margin-top: 40px;
	}
.csms-section-second-text {
    position: relative;
    float: left;
    width: 100%;
    top: 0;
    margin-top: 50px;
	}
.csms-illustration-insight {
    width: 100%;
    margin: 0 auto 40px;
    display: block;
}
.csms-illustration-car {
    width: 100%;
    margin: 0 auto 40px;
    display: block;
	}
.climate-container {
    width: auto;
    margin: 40px 20px 20px;
    text-align: left;
    float: left;
}

.climate-container h2 {
    margin: 0;
    width: auto;
}
.challenges-section {
    margin: 135px 20px 0 20px;
    }
.challenges-text-left {
    width: 100%;
    text-align: left;
    padding: 20px 0 0;
    margin-top: 120px;
    }
.challenges-text-right {
    width: 100%;
    text-align: left;
    padding: 40px 0 70px;
    }
.challenges-text-left h3 {
    width: 100%;
    }
.challenges-text-right h3 {
    width: 100%;
    }
.challenges-left::before {
    background: linear-gradient(150deg, #031017 54%, #1C5D56) border-box;
    }
.challenges-right::before {
    background: linear-gradient(-150deg, #031017 54%, #1C5D56) border-box;
    }
.challenges-left-end::before {
    background: linear-gradient(30deg, #031017 54%, #1C5D56) border-box;
    }
.challenges-right-end::before {
    background: linear-gradient(-30deg, #031017 54%, #1C5D56) border-box;
    }
.challenge-large-headline-left {
    font-size: 40px;
    text-align: left;
    z-index: 500;
    position: relative;
}
.challenge-large-headline-right {
    font-size: 40px;
    text-align: left;
    z-index: 500;
    position: relative;
}
.challenges-text-right img {
    top: 24px;
}

.challenges-text-left img {
    top: 9px;
}
.growth-section {
    margin: 30px 0;
    text-align: center;
    padding: 0 20px;
    width: auto;
}
.growth-section h1 {
    font-size: 34px;
    line-height: 42px;
    margin: 0 0 35px;
}
.breaker-section-top {
    max-width: 1300px;
    text-align: center;
    position: relative;
    display: flex;
    flex-wrap:wrap;
    z-index: 100;
    margin: -10px auto 0;
}
.success-section {
    background: linear-gradient(0deg, rgba(3, 16, 23, 1) 0%, rgb(2 28 37) 89%, rgba(3, 16, 23, 1) 100%);
}
.success-section h1 {
    font-size: 34px;
    line-height: 42px;
    margin: 0 30px 35px;
}
.success-container {
    margin: 100px auto 0px;
    width: 100%;
}
.success-container h3 {
    margin: 0px 20px;
}
.success-section ul {
    flex-direction: column;
    padding: 0;
    margin-top: 40px;
    width: 100%;
    z-index: 150;
}
.success-section li {
    flex-direction: column;
    margin-top: 20px;
    width: auto;
    padding: 20px;
}
.success-section li img {
    margin-bottom: 20px;
    height: 60px;
}
.flying-object-one {
    display:none;
}
.flying-object-two {
    display:none;
}
.flying-object-three {
    display:none;
}
.flying-object-four {
    display:none;
}
.flying-object-five {
    display:none;
}
.contact-section {
    margin: 40px 0;
    height: 550px;
}
.contact-container {
    width: 100%;
}
.contact-section h1 {
    font-size: 34px;
    line-height: 42px;
    width: 100%;
    top: 8pc;
    margin: 0 auto;
}
.contact-fade {
    width: 198px;
    height: 310px;
    margin: 0 auto;
}
.contact-circle-fade {
    width: 180px;
    height: 180px;
    bottom: -90px;
}
.contact-section h2 {
    width: 85%;
}
.contact-blur {
    height: 200px;
    bottom: -200px;
}
.contact-options {
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
}

@media only screen and (min-width: 768px) {
.circle-blocker {
    padding: 130px 310px 0;
	}
.circle-blocker h1 {
    font-size: 77px;
    line-height: 88px;
	}
h2.top {
	width: 580px;
    margin: 48px auto 70px;
	}
.circles-outline {
    margin: 32% auto 0;
    height: 1240px;
    width: 708px;
    top: 0;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
    filter: saturate(100%);
	}
.csms-section-first-text {
    width: 330px;
}
.csms-section {
    width: 1080px;
	}
.challenges-section {
    max-width: 1080px;
    margin: 100px auto 80px;
    }
.csms-illustration-insight {
	display:none;
	width: 100%
	}
.csms-illustration-car {
	display:none;
	width: 100%
	}
.breaker-section-top {
    display:none;
}
}


@media only screen and (min-width: 1200px) {
.circle-blocker {
    padding: 180px 295px 200px;
	}
.circles-outline {
    height: 1130px;
    width: 2248px;
    margin: 66% auto 0;
    filter: saturate(100%);
	}
.csms-section {
    width: 1300px;
	}
.challenges-section {
    max-width: 1300px;
    margin: 160px auto 80px;
}
.csms-section-first-text {
        width: 400px;
    }
}







:root {
  --shiny-cta-bg: #031017;
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #FFFFE3;
  --shiny-cta-highlight: #0f7f73;
  --shiny-cta-highlight-subtle: #00c9b3;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

.shiny-cta {
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.4);
    display: block;
  --animation: gradient-angle linear infinite;
  --duration: 8s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.25rem 2.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
      padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      )
      border-box;

  &::before,
  &::after,
  span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
  }

  &:active {
    translate: 0 1px;
  }
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    )
    padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;

  &::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
  }
}

/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;

  &,
  &::before,
  &::after {
    animation: var(--animation) var(--duration),
      var(--animation) calc(var(--duration) / 0) reverse paused;
    animation-composition: add;
  }

  span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
  }
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);

  &,
  &::before,
  &::after {
    animation-play-state: running;
  }

  span::before {
    opacity: 1;
  }
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}
