@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #191641;
  scroll-behavior: smooth;
}

.btn {
  padding: 8px 35px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: #6F3DF4;
  border-radius: 35px;
  transition: 0.3s;
  border: 1.5px solid #6F3DF4;
  cursor: pointer;
}
.btn i {
  color: #fff;
  padding-right: 5px;
  transition: 0.3s;
}
.btn:hover {
  background: transparent;
  color: #6F3DF4;
}
.btn:hover i {
  color: #6F3DF4;
}

.title {
  position: relative;
  padding: 20px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}
.title::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 50%;
  height: 3px;
  background: #F2C335;
  z-index: -1;
}
.title.center {
  text-align: center;
}
.title.center::before {
  display: none;
}

.text {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  opacity: 60%;
}
.text.text-20 {
  font-size: 20px;
}

.anchor {
  padding: 0 15px;
  font-size: 16px;
  color: #6F3DF4;
  text-decoration: none;
  transition: 0.3s;
}
.anchor i {
  padding: 0 5px;
  color: #6F3DF4;
}
.anchor:hover {
  opacity: 60%;
}
.anchor.regular {
  font-size: unset;
  color: unset;
  text-decoration: underline;
  padding: 0;
}
.anchor.regular:hover {
  opacity: 1;
  text-decoration: none;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 20;
  background: #fff;
  transition: 0.3s;
}
.loader.loaded {
  opacity: 0;
  pointer-events: none;
}
.loader h3 {
  position: absolute;
  bottom: 30px;
  font-size: 20px;
  font-weight: 700;
}
.loader img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid #6F3DF4;
  animation: rotate 1.7s ease infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 10;
  overflow: hidden;
}
.header.active {
  box-shadow: 0 20px 25px rgba(164, 171, 178, 0.145);
  background: rgba(255, 255, 255, 0.933);
  padding: 27px 0;
}
.header.full {
  height: 240px;
  box-shadow: 0 20px 25px rgba(164, 171, 178, 0.145);
  background: rgba(255, 255, 255, 0.933);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header #menuBtn {
  background: transparent;
  border: none;
  color: #6F3DF4;
  display: none;
  padding: 10px;
  padding-right: 0;
}
.header #menuBtn i {
  font-size: 24px;
  color: #6F3DF4;
}
.header__brand img {
  width: 158px;
}
.header__nav {
  display: flex;
  list-style: none;
}
.header__nav .nav-item {
  position: relative;
  padding: 0 15px;
  font-size: 16px;
  opacity: 60%;
  transition: 0.3s;
  text-decoration: none;
  /*
  &.active::before {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 2px;
      background: var.$dark-blue;
  }*/
}
.header__nav .nav-item:hover {
  opacity: 100%;
}

.main-section {
  padding: 170px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section .row > div {
  padding: 40px 0;
}
.main-section .text {
  width: 70%;
  padding-bottom: 40px;
}
.main-section__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section__img img {
  width: 405px;
  border-radius: 20px;
  box-shadow: 0 20px 25px rgba(164, 171, 178, 0.145);
}
.main-section__img .social-links {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style: none;
}
.main-section__img .social-links a {
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  margin: 8px;
  box-shadow: 0 5px 20px rgba(97, 97, 97, 0.145);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.933);
  backdrop-filter: blur(10px);
}
.main-section__img .social-links a i {
  transition: 0.3s;
}
.main-section__img .social-links a:hover i {
  color: #6F3DF4;
}

.top-videos-section {
  padding: 140px 0;
  padding-top: 70px;
  background: #F5F8FF;
}
.top-videos-section .row {
  display: flex;
  justify-content: center;
  align-content: inherit;
  padding-top: 30px;
}
.top-videos-section .video-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  margin: 15px;
  border-radius: 15px;
  text-align: center;
  padding: 10px !important;
}
.top-videos-section .video-card img {
  width: 100%;
  border-radius: 10px;
}
.top-videos-section .video-card__title {
  width: 80%;
  padding: 15px 0;
  font-size: 20px;
}
.top-videos-section .video-card .anchor {
  padding-bottom: 30px;
}

.about-section {
  padding: 150px 0;
}
.about-section .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section__img img {
  width: 405px;
  border-radius: 24px;
}
.about-section__info {
  margin-left: 30px;
  margin-right: 30px;
}
.about-section__info .text {
  width: 90%;
  padding-bottom: 40px;
}

.projects-section {
  padding-top: 90px;
  padding-bottom: 130px;
  background: #F5F8FF;
  text-align: center;
}
.projects-section .row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}
.projects-section .suggest-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 20px 0;
}
.projects-section .suggest-card__img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  transition: 0.3s;
}
.projects-section .suggest-card__img:hover {
  transform: scale(1.1);
}
.projects-section .suggest-card__title {
  font-size: 26px;
  padding-top: 20px;
  line-height: 100%;
}
.projects-section .suggest-card__info {
  font-size: 20px;
  opacity: 60%;
  line-height: 100%;
  padding-bottom: 30px;
}

.ads-section {
  padding: 110px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ads-section .text {
  width: 50%;
}
.ads-section .anchor {
  padding: 20px 0;
}

.footer {
  padding: 35px 0;
  background: #F5F8FF;
}
.footer .row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer__social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
.footer__social-links a {
  font-size: 24px;
  padding: 0 15px;
}

@media only screen and (max-width: 991px) {
  .header {
    height: 85px;
  }
  .header__brand img {
    width: 120px;
  }
  .header__nav {
    position: absolute;
    top: 90px;
    flex-direction: column;
  }
  .header__nav li {
    margin: 8px 0;
  }
  .header #menuBtn {
    display: inline-block;
  }
  .header .ads-btn {
    display: none;
  }
  .main-section {
    text-align: center;
  }
  .main-section__info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .main-section__info .text {
    width: 90%;
  }
  .main-section__img img {
    width: 100%;
  }
  .main-section__img .social-links {
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
  }
  .about-section {
    text-align: center;
  }
  .about-section__info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .about-section__info .text {
    width: 90%;
  }
  .about-section__img img {
    width: 100%;
  }
  .ads-section .text {
    width: 90%;
  }
  .footer__social-links {
    justify-content: center;
    padding: 20px 0;
  }
}

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