@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

.container {
  max-width: 1400px;
}

header.main {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 100px;
  display: flex;
  align-items: flex-end;
}
header.main .face {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.main .face .logo img {
  max-width: 400px;
}
@media (max-width: 767px) {
  header.main {
    height: 60px;
  }
  header.main .face .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header.main .face .logo img {
    max-width: 60%;
  }
}

.footer-section {
  background-color: #eee;
}
.footer-section .footer-policy {
  padding: 0.4rem 0;
  font-size: 0.8em;
  text-align: center;
}
.footer-section .footer-policy a {
  color: #333;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0c1124;
}

a:hover {
  text-decoration: none;
}

.btn {
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
}
.btn.btn-primary {
  background: linear-gradient(90deg, #2a086f 0%, #3e55ad 100%);
  border-color: #014d82;
}

.section-title {
  display: block;
  padding: 2rem 0;
  text-align: center;
}
.section-title .title {
  font-size: 2.5rem;
}

section.section-magic {
  background-color: #070c22;
}
section.section-magic .theme-title {
  color: #fff;
}
section.section-magic .section-content {
  padding-top: 4rem;
}
section.section-magic .magic-boxes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  column-gap: 2.5rem;
}
section.section-magic .magic-boxes .item {
  border: 1px solid #3e55ad;
  border-radius: 16px;
  padding: 3rem 2rem;
}
section.section-magic .magic-boxes .item .icon {
  margin-bottom: 2rem;
}
section.section-magic .magic-boxes .item .title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 2rem;
}
section.section-magic .magic-boxes .item p {
  margin: 0;
  color: #dddfeb;
}
@media (max-width: 767px) {
  section.section-magic .section-content {
    padding-top: 0;
  }
  section.section-magic .magic-boxes {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.section-contact {
  background-color: #0c1124;
  background-image: url("../images/bg-pattern-02.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 30%;
  left: 0;
  background: linear-gradient(180deg, #0c1124 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
.section-contact .content-row {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.section-contact .content-row .col {
  flex: 1;
}
.section-contact .content-row .col.col-info {
  padding-right: 2rem;
}
.section-contact .content-row .col.col-info .title {
  color: #fff;
  margin-bottom: 1.5rem;
}
.section-contact .content-row .col.col-info .text {
  color: #dddfeb;
  margin-bottom: 1.5rem;
}
.section-contact .content-row .col.col-info .title-sub {
  color: #fff;
  font-size: 1.2rem;
}
.section-contact .content-row .col.col-info .info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-contact .content-row .col.col-info .info-list li {
  color: #dddfeb;
  position: relative;
  padding: 0.2rem 0 0.2rem 1.5rem;
}
.section-contact .content-row .col.col-info .info-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3e55ad;
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}
.section-contact .content-row .col .contact-form {
  background-color: #2a086f;
  border: 1px solid #3e55ad;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  margin-left: 2rem;
  position: relative;
}
.section-contact .content-row .col .contact-form::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 2rem;
  right: 2rem;
  bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  border-radius: 16px;
}
.section-contact .content-row .col .contact-form .title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.section-contact .content-row .col .contact-form .text {
  color: #a4accd;
  font-size: 0.9em;
  line-height: normal;
}
.section-contact .content-row .col .contact-form .form-wrapper {
  margin-top: 2rem;
}
.section-contact .content-row .col .contact-form .form-wrapper .form-group {
  margin-bottom: 1.5rem;
}
.section-contact .content-row .col .contact-form .form-wrapper .form-group .form-control {
  border-radius: 100px;
  background: linear-gradient(90deg, #2a086f 0%, #3e55ad 100%);
  border-color: #3e55ad;
  color: #fff;
}
.section-contact .content-row .col .contact-form .form-wrapper .form-group .form-control::placeholder {
  color: #a4accd;
  opacity: 1; /* Firefox */
}
.section-contact .content-row .col .contact-form .form-wrapper .form-group .form-control::-ms-input-placeholder { /* Edge 12 -18 */
  color: #a4accd;
}
@media (max-width: 767px) {
  .section-contact .content-row {
    flex-direction: column;
  }
  .section-contact .content-row .col {
    padding: 0 !important;
  }
  .section-contact .content-row .col.col-form {
    padding-top: 1.5rem !important;
  }
  .section-contact .content-row .col.col-form .contact-form {
    margin: 0;
  }
}

.fSlider .slider-item {
  position: relative;
}
.fSlider .slider-item .slider-image-container {
  position: absolute;
  width: 60%;
  right: 0;
}
.fSlider .slider-item .slider-image-container .slider-image {
  width: 100%;
}
.fSlider .slider-item .slider-image-container .slider-image img {
  width: 100%;
}
.fSlider .slider-item .container {
  position: relative;
  padding-top: calc(100px + 1.5rem);
  padding-bottom: 150px;
  z-index: 1;
}
.fSlider .slider-item .text-container {
  color: #fff;
  width: 45%;
  margin-top: 100px;
}
.fSlider .slider-item .text-container .title {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2em;
}
.fSlider .slider-item .text-container .title .tag {
  text-transform: none;
  font-size: 1.5em;
  font-weight: 900;
  color: #3e55ad;
}
.fSlider .slider-item .text-container .text {
  font-size: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  .fSlider .slider-item .container {
    padding: 0 1rem;
    padding-top: 100px;
    flex-direction: column;
    height: auto;
  }
  .fSlider .slider-item .container .slider-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .fSlider .slider-item .container .text-container {
    width: 100%;
    margin: 1.5rem 0 0 0;
    text-align: center;
  }
  .fSlider .slider-item .container .text-container .title {
    font-size: 1.3rem;
    text-align: center;
  }
  .fSlider .slider-item .container .text-container .text {
    font-size: 0.9rem;
    text-align: center;
  }
}

.as-section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .as-section {
    padding: 40px 0;
  }
}

.theme-title {
  color: #fff;
}
.theme-title .accent {
  color: #da4398 !important;
}

section.section-about {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}
section.section-about .abt-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  column-gap: 150px;
  position: relative;
  z-index: 1;
}
section.section-about .abt-content .col-image {
  flex: 1;
  border: 2px solid #3e55ad;
  border-radius: 16px;
  padding: 2rem;
  max-width: 35%;
}
section.section-about .abt-content .col-image .icon {
  margin-bottom: 2rem;
}
section.section-about .abt-content .col-image .title {
  font-size: 2rem;
  line-height: normal;
  font-weight: 900;
}
section.section-about .abt-content .col-text {
  flex: 1;
  color: #dddfeb;
}
section.section-about .abt-content .col-text p {
  font-size: 1.1rem;
}
section.section-about .abt-content .col-text .btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  section.section-about {
    min-height: auto;
    padding-top: 1.5rem;
  }
  section.section-about .abt-content {
    flex-direction: column;
    row-gap: 2rem;
  }
  section.section-about .abt-content .col-image {
    width: 100%;
    max-width: none;
  }
}

.animated-box {
  position: absolute;
  top: 0;
  transform: rotate(80deg);
  right: 0;
}

.wave {
  position: absolute;
  opacity: 0.2;
  width: 1500px;
  height: 1300px;
  margin-left: -150px;
  margin-top: -250px;
  border-radius: 43%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}
.wave.-one {
  animation: rotate 16000ms infinite linear;
  opacity: 5%;
  background: #3e55ad;
}

.wave.-two {
  animation: rotate 10000ms infinite linear;
  opacity: 10%;
  background: #3e55ad;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}/*# sourceMappingURL=main.css.map */