@import url(../settings.css);

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 116px;
}

header .logo a {
  font-family: var(--almnb3-font);
  color: var(--main-color);
  font-size: 64px;
}

header .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

header .buttons .button {
  font-size: 20px;
  font-weight: normal;
  color: rgba(30, 30, 30, 0.9);
}

header .buttons .button.active {
  color: var(--white-color);
  background-color: var(--main-color);
  width: 155px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  header {
    margin: 32px;
  }

  header .logo a {
    font-size: 50px;
  }

  header .buttons .button {
    font-size: 18px;
  }

  header .buttons .button.active {
    width: 113px;
    height: 31px;
  }
}

/* Start Terms */
.terms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 75px;
}

.terms .terms-head {
  position: relative;
  background: rgb(201, 86, 255);
  background: linear-gradient(
    45deg,
    rgba(201, 86, 255, 1) 0%,
    rgba(238, 9, 121, 1) 79%
  );
  min-width: 1400px;
  height: 229px;
  margin: 0 50px;
  border-radius: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-right: 100px;
}

.terms .terms-head::before {
  content: "";
  background-image: url(../../images/glass.svg);
  background-repeat: no-repeat;
  display: block;
  width: 355px;
  height: 269px;
  position: absolute;
  right: -7em;
}

.terms .terms-head::after {
  content: "";
  background-image: url(../../images/glass.svg);
  background-repeat: no-repeat;
  display: block;
  width: 355px;
  height: 269px;
  position: absolute;
  left: -7em;
  bottom: -6em;
  transform: rotate(140deg);
}

.terms .terms-head h1 {
  background: rgb(200, 192, 248);
  background: linear-gradient(
    90deg,
    rgba(200, 192, 248, 1) 0%,
    rgba(248, 238, 255, 1) 10%,
    rgba(244, 244, 245, 1) 50%,
    rgba(248, 238, 255, 1) 88%,
    rgba(200, 192, 248, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 0;
}

.terms .terms-head p {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 1500px) {
  .terms .terms-head {
    min-width: 1300px;
  }
}

@media screen and (max-width: 1400px) {
  .terms .terms-head {
    min-width: 1200px;
  }
}

@media screen and (max-width: 1300px) {
  .terms .terms-head {
    min-width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  .terms .terms-head {
    min-width: 1000px;
  }
}

@media screen and (max-width: 1100px) {
  .terms .terms-head {
    min-width: 900px;
  }
}

@media screen and (max-width: 1000px) {
  .terms .terms-head {
    min-width: 800px;
  }
}

@media screen and (max-width: 900px) {
  .terms .terms-head {
    min-width: 700px;
  }
}

@media screen and (max-width: 800px) {
  .terms .terms-head {
    min-width: 600px;
  }
}

@media screen and (max-width: 700px) {
  .terms .terms-head {
    min-width: 500px;
    margin: 0;
  }

  .terms .terms-head h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 600px) {
  .terms .terms-head {
    min-width: 400px;
  }
}

@media screen and (max-width: 500px) {
  .terms .terms-head {
    min-width: 300px;
  }
  .terms .terms-head::after,
  .terms .terms-head::before {
    width: 250px;
  }
}

@media screen and (max-width: 400px) {
  .terms .terms-head {
    min-width: 200px;
  }
}

.terms .terms-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.terms .term-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-color: #f4f4f4;
  /* width: 1440px; */
  margin: 0 100px;
  padding-right: 37px;
  padding-bottom: 40px;
  padding-top: 30px;
  border-radius: 25px;
}

.terms .term-container .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--main-color);
}

.terms .term-container .title i {
  font-size: 30px;
}

.terms .term-container .title h1 {
  font-size: 30px;
  font-weight: bold;
}

.terms .term-container p {
  font-size: 24px;
  color: var(--dark-color);
  font-weight: 600;
  line-height: 36px;
  margin-right: 10px;
  margin-left: 40px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .terms .term-container {
    margin: 0 15px;
  }

  .terms .term-container p {
    font-size: 20px;
    margin: 0;
    margin-left: 20px;
    margin-right: 0;
  }
}
/* End Terms */

/* Start Getting Started */
.getStarted {
  margin: 0 40px;
  margin-bottom: 100px;
  margin-top: 80px;
}

.getStarted .card {
  /* background-color: var(--main-color); */
  background: rgb(254, 166, 255);
  background: linear-gradient(
    45deg,
    rgba(254, 166, 255, 1) 0%,
    rgba(229, 87, 106, 1) 50%,
    rgba(243, 88, 137, 1) 100%
  );
  max-width: 1500px;
  max-height: 360px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 30px;
  padding-right: 50px;
}

#getStartedCard {
  background: linear-gradient(
    45deg,
    rgba(254, 166, 255, 1) 0%,
    rgba(229, 87, 106, 1) 50%,
    rgb(240, 47, 108) 75%,
    rgba(243, 88, 137, 1) 100%
  );
  background-size: 200% 200%;
  animation: gradientAnimation 6s ease infinite;
}

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

.getStarted .card .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.getStarted .card .text h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--white-color);
  margin-bottom: 0.5em;
}

.getStarted .card .text p {
  color: var(--white-color);
  font-size: 22px;
  margin-top: 0;
}

.getStarted .card .button {
  width: 357px;
  height: 60px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--main-color);
  font-weight: 600;
  gap: 10px;
  border-radius: 12px;
}

@media screen and (max-width: 1094px) {
  .getStarted .card .image img {
    width: 340px;
  }

  .getStarted .card .text h1 {
    font-size: 48px;
  }

  .getStarted .card .text p {
    font-size: 19px;
  }

  .getStarted .card .button {
    width: 340px;
  }
}

@media screen and (max-width: 767px) {
  .getStarted {
    margin: 0;
    margin-bottom: 100px;
  }
  .getStarted .card {
    flex-direction: column-reverse;
    justify-content: center;
    width: 400px;
    min-height: 470px;
    padding: 0 15px;
  }

  .getStarted .card .content {
    align-items: center;
  }

  .getStarted .card .image img {
    width: 160px;
  }

  .getStarted .card .text h1 {
    font-size: 36px;
    text-align: center;
  }

  .getStarted .card .text p {
    text-align: center;
  }

  .getStarted .card .button {
    width: 310px;
    height: 52px;
  }
}

@media screen and (max-width: 500px) {
  .getStarted .card {
    width: 350px;
  }
}

/* End Getting Started */

/* Start footer */

footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

footer .title {
  font-size: 24px;
  font-weight: bolder;
  color: var(--main-color);
  margin-bottom: 15px;
  text-align: right;
}

footer .content .logo {
  font-family: var(--almnb3-font);
  color: var(--main-color);
  font-size: 96px;
  margin-bottom: 44px;
}

footer .content p {
  font-size: 20px;
  width: 575px;
  color: #777897;
  line-height: 149.7%;
}

footer .content .copyright {
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 68px;
}

footer .pages {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

footer .pages .links {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

footer .pages .links a {
  color: #444672;
  font-size: 19px;
}

footer .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer .socials .apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer .socials .apps .app {
  border: 1px solid #444672;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

footer .socials .apps .app i {
  color: #444672;
  font-size: 24px;
}

footer .socials .apps .app:hover {
  background-color: #444672;
}

footer .socials .apps .app:hover i {
  color: var(--white-color);
}

footer .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--second-color);
  padding: 15px 65px;
}

footer .foot p {
  background: rgb(200, 192, 248);
  background: linear-gradient(
    90deg,
    rgba(200, 192, 248, 1) 0%,
    rgba(248, 238, 255, 1) 10%,
    rgba(244, 244, 245, 1) 50%,
    rgba(248, 238, 255, 1) 88%,
    rgba(200, 192, 248, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 600;
}

footer .foot p a {
  color: var(--main-color);
  -webkit-text-fill-color: var(--main-color);
  font-weight: 900;
  text-decoration: underline;
}

footer .foot .politics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

footer .foot .politics a {
  background: rgb(200, 192, 248);
  background: linear-gradient(
    90deg,
    rgba(200, 192, 248, 1) 0%,
    rgba(248, 238, 255, 1) 10%,
    rgba(244, 244, 245, 1) 50%,
    rgba(248, 238, 255, 1) 88%,
    rgba(200, 192, 248, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1080px) {
  footer .footer-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  footer .socials,
  footer .content .copyright {
    margin-bottom: 30px;
  }

  footer .foot {
    flex-direction: column-reverse;
    gap: 15px;
  }

  footer .foot p {
    margin: 15px 0;
  }
}

@media screen and (max-width: 633px) {
  footer .content p {
    width: 100%;
  }

  footer .foot {
    padding: 15px 0;
  }

  footer .foot .politics a,
  footer .foot p {
    font-size: 18px;
  }
}
/* End footer */
