@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

/* General Styless */
body {
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 375px;
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

/* Typography */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

p {
  line-height: 1.5em;
  color: white;
  opacity: 0.8;
}

.cyan {
  color: #17c3b2;
}

/* Popup Styles */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.popup .show {
  visibility: visible;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Button Styles */
.btn-open-popup,
.btn-submit,
.btn-close-popup {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-open-popup {
  font-size: 18px;
  background-color: green;
  color: #fff;
}

.btn-open-popup:hover,
.btn-submit:hover,
.btn-close-popup:hover {
  background-color: #4caf50;
}

.btn-submit {
  background-color: green;
  color: #fff;
}

.btn-close-popup {
  margin-top: 12px;
  background-color: #e74c3c;
  color: #fff;
}

/* Overlay Styles */
.overlay-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-container.show {
  display: flex;
  opacity: 1;
}

.popup-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 320px;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Styles */
.form-container {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
  text-align: left;
}

.form-input {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Toggle Styles */
.input-check {
  position: absolute;
  right: -70px;
  z-index: 1;
  opacity: 0;
}

.toggle {
  position: absolute;
  top: 20px;
  right: -70px;
  width: 60px;
  height: 120px;
  background: #191919;
  border-radius: 10px;
}

.toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 80%;
  background: #000;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: #333;
  border: 2px solid #191919;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.5s ease;
}

.input-check:checked ~ .toggle::after {
  top: 65px;
}

.toggle .text {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1em;
  z-index: 1;
  text-transform: uppercase;
  pointer-events: none;
  transition: 0.5s ease;
}

.toggle .text.off {
  opacity: 1;
}

.input-check:checked ~ .toggle .text.off {
  top: 76px;
  opacity: 0;
}

.toggle .text.on {
  opacity: 0;
}

.input-check:checked ~ .toggle .text.on {
  top: 76px;
  opacity: 1;
  color: #00f7ff;
  text-shadow: 0 0 15px #00f7ff, 0 0 30px #00f7ff, 0 0 45px #00f7ff, 0 0 60px #00f7ff;
}

/* Navbar Styles */
.navtop {
  background: #0f0c29;
  background: -webkit-linear-gradient(to right, #0f0c29, #24243e, #302b63, #24243e, #0f0c29);
  background: linear-gradient(to right, #0f0c29, #24243e, #302b63, #24243e, #0f0c29);
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 1rem 3rem;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-content: center;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.navtop__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  padding: 0 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navtop__menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navtop__menu-item {
  margin-left: 3.4rem;
}

.navtop__brandlink {
  color: white;
  font-size: 2em;
  transition: all 0.3s ease;
}

.navtop__brandlink:hover {
  color: #17c3b2;
}

.navtop__link {
  color: white;
  opacity: 0.7;
  font-size: 1.15em;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
}

.navtop__link:hover {
  opacity: 1;
  font-weight: 700;
  text-decoration: underline;
}

@media only screen and (max-width: 820px) {
  .navtop {
    padding: 2rem;
  }
  .navtop__brand {
    max-width: 120px;
  }
  .navtop__menu-item {
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 450px) {
  .navtop {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .navtop__menu-item {
    margin-left: 1.6rem;
  }
  .navtop__link {
    font-size: 0.8em;
  }
  .navtop__brandlink{
    font-size: 0.2em;
  }
  .navtop__menu-item {
    margin-left: 1rem;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nod {
  animation: nodding 1200ms infinite ease-in-out;
  display: inline-block;
}

/* Main Content Styles */
.main {
  background-color: #1c2431;
}

.intro,
.intro1,
.intro2 {
  padding-top: 1em;
  padding-bottom: 12em;
  height: 90vh;
  background: #0f0c29;
  background: -webkit-linear-gradient(to right, #0f0c29, #24243e, #302b63, #24243e, #0f0c29);
  background: linear-gradient(to right, #0f0c29, #24243e, #302b63, #24243e, #0f0c29);
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em;
}

.intro__title {
  font-family: "Raleway", sans-serif;
  color: white;
  margin: 0 auto;
  margin-top: 12rem;
  max-width: 860px;
  text-align: center;
  font-size: 4em;
  line-height: 1.2em;
  font-weight: 700;
  
  animation: fade-in 1500ms 200ms backwards ;
  
}

.intro__paragraph {
  margin: 0 auto;
  margin-top: 2.2rem;
  max-width: 580px;
  text-align: center;
  font-size: 1.5em;
  
  animation: fade-in 1500ms 600ms backwards ;
  
}

.intro__action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.8rem;
}
.intro__action--animation{
  
  animation: fade-in 1500ms 1000ms backwards ;
}
.intro__button {
  padding: 0.8em 1.8em;
  border: 2px solid #17c3b2;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 1em;
  transition: 0.3s;
  z-index: 1;
  font-family: inherit;
  color: #17c3b2;
  border-radius: 1rem;
}

.intro__button::before {
  content: "";
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #17c3b2;
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.intro__button:hover::before {
  width: 105%;
}

.intro__button:hover {
  color: #111;
}

.input-group {
  position: relative;
  margin-right: 1rem;
}

.input {
  border: solid 1.5px #9e9e9e;
  background: none;
  padding: 1rem;
  font-size: 1rem;
  color: #f5f5f5;
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1rem;
}

.user-label {
  position: absolute;
  left: 15px;
  color: #e8e8e8;
  pointer-events: none;
  transform: translateY(1rem);
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input:focus,
input:valid {
  outline: none;
  border: 1.5px solid #17c3b2;
}

.input:focus ~ label,
input:valid ~ label {
  transform: translateY(-100%) scale(0.8);
  background-color: transparent;
  padding: 0 0.2em;
  color: #17c3b2;
}

.intro_signup_form {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 820px) {
  .intro__title {
    font-size: 3rem;
    margin-top: -4rem;
  }
  .intro__paragraph {
    font-size: 1.2em;
  }
  .intro_signup_form {
    flex-direction: column;
  }
  .input-group {
    margin-right: 0;
  }
  .intro__button,
  .input {
    width: 100%;
    margin-bottom: 0rem;
  }
  .intro {
    padding-bottom: 0rem;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: space-evenly;
  }
  .intro__button {
    max-width: 170px;
  }
  .navtop__brandlink {
    font-size: 1.5em;
  }
}

@media only screen and (max-width: 768px) {
  .intro__title {
    font-size: 2.5em;
    margin-top: 6rem;
  }
  .intro__paragraph {
    font-size: 1.2em;
  }
  .intro__button {
    padding: 0.8em 1.7em;
    font-size: 14px;
  }
  
}

@media only screen and (max-width: 480px) {
  .intro__title {
    font-size: 3em;
    margin-top: 4rem;
  }
  .intro__paragraph {
    font-size: 1.25em;
  }
  
  .intro{
    justify-content: start;
  }
  .intro__container{
    padding-top: 2rem;
  }
  
}

@media only screen and (max-width: 420px) {
  .intro__paragraph {
    margin-top: 1rem;
    padding: 0 1.4em;
    font-size: 1em;
  }
  
}
/**FEAUTURES***********************************/

.features {
  background: #0f0c29; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
  padding: 6rem 0 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.features h1 {
  color: white;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  width: 30%;
  border-bottom: 1px white solid;
}

.features > .wrapper {
  max-width: 1060px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  row-gap: 5.6rem;
}
.features__list {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin: 2rem;
  padding: 2rem;
  border-radius: 1em;
  transition: all 300ms ease;
}
.features__list:hover{
  scale:1.03
}
.features__list > .image-wrapper > img {
  height: 80px;
}
.features__title {
  font-family: "Raleway", sans-serif;
  color: white;
  margin-top: 2rem;
  font-size: 1.4em;
  font-weight: 700;
  opacity: 1;
}
.features__paragraph {
  margin: 0 auto;
  margin-top: 0.4rem;
  max-width: 340px;
}

@media only screen and (max-width: 820px) {
  .features > .wrapper {
    grid-template-columns: 1fr;
    row-gap: 5.6rem;
  }
}

/****FAQS*****/

.works {
  background: #0f0c29; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
  min-height: 90vh;
  display: grid;
  place-items: center;
}
.works > .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.works__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 4em;
}
.works__title {
  font-family: "Raleway", sans-serif;
  color: white;
  margin-top: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: 3em;
  max-width: 480px;
}
.works__paragraph {
  font-size: 1.15em;
  margin-top: 1.2rem;
}
.works__link {
  color: #65e2d9;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #65e2d9;
}
.works__link:hover {
  color: white;
  border-bottom: 1px solid white;
}
.works__link:hover > svg > g > g > use {
  fill: white;
}

@media only screen and (max-width: 820px) {
  .works {
    padding-top: 12em;
    padding-bottom: 5em;
  }
  .works > .wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  .works__title {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 420px) {
  .works__article {
    padding: 0;
  }
  .works__title {
    font-size: 1.2em;
  }
  .works__paragraph {
    font-size: 1em;
  }
}
/* .review {
  padding: 1.6em 0;
  padding-bottom: 26em;
  background-color: #181f2a;
  background-image: url(../images/backgrounds/bg-quotes.png);
  background-repeat: no-repeat;
  background-position: 14rem 0rem;
}
.review__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  padding: 0 1.5em;
  padding: 0;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;
}

@media only screen and (max-width: 820px) {
  .review {
    padding-left: 2em;
    padding-right: 2em;
  }
  .review__wrapper {
    padding: 0 2em;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 1rem;
  }
}
@media only screen and (max-width: 420px) {
  .review {
    padding-top: 10em;
    padding-bottom: 30em;
    background-image: url(../images/backgrounds/bg-quotes.png);
    background-position: 4rem 8rem;
    background-size: 25px;
  }
} */
.footer {
  position: relative;
  background: #0f0c29; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
}
.footer__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  padding: 0 1.5em;
}
.footer__wrapper > .clear-absolute {
  margin-bottom: 12rem;
  height: 1px;
}
.footer__wrapper > .image-wrapper {
  justify-content: flex-start;
}

@media only screen and (max-width: 820px) {
  .footer__wrapper > .clear-absolute {
    margin-bottom: 18rem;
  }
}
@media only screen and (max-width: 420px) {
  .footer__wrapper > .clear-absolute {
    margin-bottom: 16rem;
  }
  .footer__wrapper > .image-wrapper {
    padding: 0 2em;
  }
}
.signup {
  width: 100%;
  max-width: 860px;
  padding: 3.4em 2em;
  background-color: #1c2431;
  border-radius: 5px;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}
.signup__title {
  font-family: "Raleway", sans-serif;
  color: white;
  font-size: 2.3em;
}
.signup__paragraph {
  margin-top: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.signup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 710px;
}
.signup__input-group {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.signup__label-email {
  display: none;
}
.signup__error-input {
  display: none;
  font-size: 0.8em;
  padding: 0.5em 3.4em;
  position: absolute;
  color: #ff4242;
}
.signup__input-email {
  font-size: 1em;
  width: 100%;
  padding: 1em 2.8em;
  font-family: "Open Sans", sans-serif;
  border: none;
  outline: none;
  border-radius: 50px;
}
.signup__input-email::placeholder {
  color: gray;
  opacity: 0.4;
}
.signup__input-email:not(:placeholder-shown):invalid ~ .signup__error-input {
  display: block;
}

@media only screen and (max-width: 820px) {
  .signup {
    width: 90%;
  }
  .signup__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .signup__input-group {
    position: relative;
    max-width: 480px;
  }
  .signup__input-email:valid {
    margin-bottom: 1.4rem;
  }
  .signup__error-input {
    margin-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
}
@media only screen and (max-width: 420px) {
  .signup {
    top: -15rem;
  }
  .signup__title {
    font-size: 1.4em;
  }
  .signup__paragraph {
    padding: 0 1em;
    font-size: 1em;
  }
}
.contact {
  margin-top: 2.6rem;
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.contact .location {
  grid-column: 1/5;
}
.contact .contact-us {
  grid-column: 5/8;
}
.contact .navfooter {
  grid-column: 8/10;
}
.contact .navinfo {
  grid-column: 10/11;
}
.contact .navsocial {
  grid-column: 11/13;
}

@media only screen and (max-width: 820px) {
  .contact {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact .location {
    grid-column: 1/4;
  }
  .contact .contact-us {
    margin-bottom: 2rem;
    grid-column: 1/4;
  }
  .contact .navfooter {
    margin-top: 2rem;
    grid-column: 1/2;
  }
  .contact .navinfo {
    margin-top: 2rem;
    grid-column: 2/3;
  }
  .contact .navsocial {
    margin-top: 2rem;
    grid-column: 3/4;
  }
}
@media only screen and (max-width: 420px) {
  .contact {
    padding: 0 2em;
    grid-template-columns: 1fr;
  }
  .contact .location {
    grid-column: 1/1;
  }
  .contact .contact-us {
    grid-column: 1/1;
  }
  .contact .navfooter {
    grid-column: 1/1;
  }
  .contact .navinfo {
    grid-column: 1/1;
  }
  .contact .navsocial {
    grid-column: 1/11;
  }
}
.navsocial__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.navsocial__menu-item {
  margin-left: 1rem;
}
.navsocial__link > svg {
  width: 28px;
}
.navsocial__link > svg > path {
  fill: white;
  transition: all 0.3s ease-in-out;
}
.navsocial__link:hover > svg > path {
  fill: #65e2d9;
}

@media only screen and (max-width: 820px) {
  .navsocial {
    margin-top: 4rem;
  }
  .navsocial__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media only screen and (max-width: 420px) {
  .navsocial {
    margin-top: 4rem;
  }
  .navsocial__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  padding: 0 1.5em;
}

.image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.button,
.button--submit,
.button--primary {
  font-family: "Raleway", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  background-image: linear-gradient(90deg, #65e2d9 2%, #339ecc 100%);
  color: white;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  outline: none;
  border: none;
  cursor: pointer;
  margin: 0.2em;
}

.button:hover,
.button--submit:hover,
.button--primary:hover {
  background-image: linear-gradient(45deg, #87f8f0, #65e2d9);
}
.button--primary {
  padding: 1em 5.4em;
}
.button--submit {
  font-size: 1em;
  padding: 1.1em 2.4em;
}

@media only screen and (max-width: 420px) {
  .button,
  .button--primary,
  .button--submit {
    font-size: 1em;
  }
  .button--submit {
    width: 100%;
  }
}
.card {
  margin-top: 0.6rem;
  background-color: #202a3c;
  border-radius: 8px;
  padding-top: 3em;
  padding-left: 2.4em;
  padding-right: 2.4em;
  padding-bottom: 2em;
}
.card__text {
  font-size: 1em;
  opacity: 0.7;
}
.card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 1rem;
}
.card__avatar {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
}
.card__profile {
  margin-left: 0.5rem;
}
.card__name {
  font-family: "Raleway", sans-serif;
  font-size: 0.78em;
  font-weight: 700;
}
.card__position {
  font-size: 0.6em;
  opacity: 0.5;
}

@media only screen and (max-width: 420px) {
  .card {
    padding-top: 2em;
    padding-left: 1.6em;
    padding-right: 1.6em;
    padding-bottom: 2em;
  }
  .card__text {
    font-size: 0.75em;
  }
}
.box-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 1rem;
}
.box-contact__icon {
  margin-right: 1.6rem;
}
.box-contact__text {
  max-width: 340px;
  font-size: 1.1em;
}

@media only screen and (max-width: 420px) {
  .box-contact__text {
    font-size: 1em;
  }
}
.navlist__menu-item {
  margin-bottom: 1.2rem;
}
.navlist__link {
  font-size: 1.1em;
  color: white;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}
.navlist__link:hover {
  font-weight: 700;
  opacity: 1;
}

.attribution {
  padding-bottom: 3rem;
}
.attribution__paragraph {
  color: white;
  opacity: 0.6;
  font-size: 0.8em;
  text-align: center;
}
.attribution__link {
  color: #65e2d9;
}
.attribution__link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */

:root {
  --size-header: 2.25rem;
  --size-accordion-title: 1.25rem;
  --size-accordion-content: 1rem;
  --animation-speed: 100;
  --slide-ease: cubic-bezier(0.86, 0, 0.07, 1);
  --slide-duration: calc(400ms * 100 / var(--animation-speed));
  --slide-delay: calc(450ms * 100 / var(--animation-speed));
  --circle-duration: calc(900ms * 100 / var(--animation-speed));
}

*,
*::before,
*::after {
  position: relative;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

a,
p,
h1 {
  margin: 0;
}

.accordian__title h1 {
  font-size: var(--size-header);
  margin-bottom: 1.25rem;
  color: #fff;
}

::selection {
  background-color: rgba(0, 0, 0, 0.4);
}

.accordion {
  --circle-x: 1.8rem;
  --circle-y: 0;
  --circle-r: 200%;
  --circle-bg: #fff;
  color: #000;

  background-color: var(--circle-bg);
  max-width: 56ch;
  margin-bottom: 1rem;
  border-radius: min(8px, 0.5rem);

  display: grid;
  grid-template-rows: 0fr 0fr;
  transition-timing-function: var(--slide-ease);
  transition-duration: 200ms, 200ms, var(--slide-duration);
  transition-property: opacity, box-shadow, grid-template-rows;
  transition-delay: 0ms, 0ms, var(--slide-delay);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  opacity: 0.9;
  width: 100%;
}


.accordion:not(:target):hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.accordion:not(:target):active {
  opacity: 1;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.3);
}

.accordion,
.accordian__content {
  overflow: hidden;
}

.accordion:target {
  --d: 90deg;
  grid-template-rows: 0fr 1fr;
  transition: grid-template-rows var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
}

.accordian__wrapper {
  padding-block: 0 1.05rem;
  padding-inline: 1.25rem;
}

.accordian__content {
  font-size: var(--size-accordion-content);
  line-height: 140%;
}

.accordian__content p {
  margin-bottom: 1rem;
  color: currentColor;
}

.accordian__content a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
}

main :last-child,
.content :last-child {
  margin-bottom: 0;
}

.accordian__title a {
  padding: 1rem 1.25rem;
  font-size: var(--size-accordion-title);
  font-weight: 800;
  color: currentColor;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  place-items: center;
}

.accordian__title a::before {
  --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
  content: "";
  left: 0;
  top: 0;
  width: 0.65rem;
  aspect-ratio: 320 / 512;
  display: inline-block;
  margin-right: 0.75rem;
  transform: rotate(var(--d, 0deg));
  transition: transform var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
  mask-image: var(--chevron-icon);
  mask-size: 100% 100%;
  -webkit-mask-image: var(--chevron-icon);
  -webkit-mask-size: 100% 100%;
  background-color: currentColor;
}

.accordion::before,
.accordion::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--circle-bg);
  mix-blend-mode: difference;
  transform-style: preserve-3d;
  transition-timing-function: ease;
  transition-property: opacity, clip-path, visibility;
  pointer-events: none;
  clip-path: circle(var(--r) at var(--circle-x) var(--circle-y));
  border-radius: inherit;
  z-index: 4;
}

.accordion::before {
  --r: 0%;
  transition-delay: var(--circle-duration), var(--circle-duration), 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 0;
}

.accordion:target::before {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 1;
}

.accordion::after {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, var(--circle-duration);
  transition-duration: 0ms, var(--circle-duration), 0ms;
  visibility: hidden;
  opacity: 1;
}

.accordion:target:after {
  --r: 0%;
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, 0ms, 0ms;
  visibility: visible;
  opacity: 0;
}

.accordian__title a:focus-visible {
  background-color: hsl(0, 100%, 90%);
  outline: none;
}

.accordion:target .title a:focus-visible {
  background-color: hsl(183, 100%, 93%);
}










.scroller {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.scroller__inner {
  display: inline-flex;
  animation: scroll var(--_animation-duration, 30s) linear infinite;
  padding: 1rem 0;
}

.scroller__inner img {
  margin-right: 30px;
  filter: blur(7px); /* Adds a blur effect to the images */
}

.scroller[data-animated="true"] {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-direction="right"] .scroller__inner {
  animation-direction: reverse;
}

.scroller[data-direction="left"] .scroller__inner {
  animation-direction: normal;
}

.scroller[data-speed="fast"] .scroller__inner {
  --_animation-duration: 15s;
}

.scroller[data-speed="slow"] .scroller__inner {
  --_animation-duration: 45s;
}

.company-design-area {
  padding: 100px 0px;
  background: #0f0c29; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0f0c29,
    #24243e,
    #302b63,
    #24243e,
    #0f0c29
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
}

.company-design-area h2 {
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 5px;
  font-weight: 500;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





/* 

.company-design-area{
  position: relative;
  background: #0f0c29; /* fallback for old browsers */
  /* background: -webkit-linear-gradient(to right, #0f0c29, #24243e, #302b63, #24243e, #0f0c29); /* Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(to right, #0f0c29, #24243e, #302b63, #24243e, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /* background-size: 300% 300%; */
  /* animation: gradient 15s ease infinite; */

/* } */


.blurred {
  filter: blur(6px); /* Adjust the blur level as needed */
}

/* INTRO 1 */


