/* mobile first */
/* desktop first */
/*
@mixin breakpoint($point) {
    @if $point == desktop {
        @media screen and (max-width: $largedesktop) { @content; }
    }
    @else if $point == tablet {
        @media screen and (max-width: $desktop) { @content; }
    }
    @else if $point == mobile {
        @media screen and (max-width: $tablet) { @content; }
    }

}
*/
.myButton {
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, #cf02ff 0%, #3c90ff 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  max-width: 240px;
  width: 100%;
  min-height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.myButton.secondary-btn {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: none;
  border: none;
  border-radius: 40px;
  margin: 30px auto;
}
.myButton.secondary-btn::before {
  display: none !important;
}
.myButton.secondary-btn:hover {
  background: #f0f0f0;
  color: #000000;
}
.myButton::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(270deg, #cf02ff 0%, #3c90ff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.myButton:hover {
  background: transparent;
  color: #cf02ff;
}

.myButton:active {
  position: relative;
  top: 2px;
}

/* button go to top */
.btn-go-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #cf02ff;
  color: #ffffff;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

.btn-go-top:hover {
  background-color: rgba(209, 2, 255, 0.5647058824);
}

:root {
  --path: polygon(
    45% 1.33975%,
    46.5798% 0.60307%,
    48.26352% 0.15192%,
    50% 0%,
    51.73648% 0.15192%,
    53.4202% 0.60307%,
    55% 1.33975%,
    89.64102% 21.33975%,
    91.06889% 22.33956%,
    92.30146% 23.57212%,
    93.30127% 25%,
    94.03794% 26.5798%,
    94.48909% 28.26352%,
    94.64102% 30%,
    94.64102% 70%,
    94.48909% 71.73648%,
    94.03794% 73.4202%,
    93.30127% 75%,
    92.30146% 76.42788%,
    91.06889% 77.66044%,
    89.64102% 78.66025%,
    55% 98.66025%,
    53.4202% 99.39693%,
    51.73648% 99.84808%,
    50% 100%,
    48.26352% 99.84808%,
    46.5798% 99.39693%,
    45% 98.66025%,
    10.35898% 78.66025%,
    8.93111% 77.66044%,
    7.69854% 76.42788%,
    6.69873% 75%,
    5.96206% 73.4202%,
    5.51091% 71.73648%,
    5.35898% 70%,
    5.35898% 30%,
    5.51091% 28.26352%,
    5.96206% 26.5798%,
    6.69873% 25%,
    7.69854% 23.57212%,
    8.93111% 22.33956%,
    10.35898% 21.33975%
  );
}

/*===  Global  ===*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .container {
    max-width: 1210px;
    padding: 0;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1410px;
  }
}

/*===  domain.com  ===*/
.page {
  background: url("../img/bg.jpg") no-repeat center center fixed;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/*===  Main  ===*/
.main {
  height: 80vh;
}
@media (min-width: 992px) {
  .main {
    height: 100vh;
  }
}

.main-wrapper {
  height: 100%;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .main-wrapper {
    display: flex;
    padding: 0;
  }
}

.main-content-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 992px) {
  .main-content-text {
    width: 55%;
    margin-left: calc((100vw - 1210px) / 2);
  }
}
@media (min-width: 1600px) {
  .main-content-text {
    margin-left: calc((100vw - 1410px) / 2);
  }
}

.main-content-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 100%;
  width: 100%;
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  .main-content-img {
    display: block;
  }
}
.main-content-img img {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-content-title {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .main-content-title {
    font-size: 41px;
  }
}
@media (min-width: 1600px) {
  .main-content-title {
    font-size: 48px;
  }
}

.main-content-subtitle {
  font-size: 17px;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  width: 85%;
  margin: 20px 0 40px;
}

.main-content-des {
  font-size: 17px;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  width: 85%;
  padding-top: 20px;
}

.main-content-info {
  position: absolute;
  bottom: 75px;
  left: 0;
  font-size: 13px;
  color: #ffffff;
  font-weight: 300;
}

.services {
  margin: 0 auto;
}
.services .services-wrapper {
  color: #fff;
}
.services .two-polygons {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 40px;
}
@media (min-width: 992px) {
  .services .two-polygons {
    flex-direction: row;
    justify-content: space-between;
    margin-top: -80px;
  }
}
.services .faq-polygon {
  position: relative;
  color: #fff;
  background: transparent linear-gradient(270deg, #cf02ff 0%, #3c90ff 100%) 0% 0%/cover no-repeat padding-box;
  margin-top: 200px;
}
@media (min-width: 992px) {
  .services .faq-polygon {
    position: relative;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 120px;
  }
}
.services .faq-polygon .polygon-inner {
  padding-block: 0;
  padding-inline: 50px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services .faq-polygon .polygon-inner .faq-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services .faq-polygon .polygon-inner .faq-item .faq-question {
  font-size: 24px;
  font-weight: bold;
}
.services .faq-polygon .polygon-inner .faq-item .faq-answer {
  font-weight: lighter;
}
.services .faq-polygon::before, .services .faq-polygon::after {
  content: "";
  position: absolute;
  width: 112%;
  padding-bottom: 100%;
  left: 50%;
  background: transparent linear-gradient(270deg, #cf02ff 0%, #3c90ff 100%) 0% 0%/cover no-repeat padding-box;
  -webkit-clip-path: var(--path);
  clip-path: var(--path);
}
.services .faq-polygon::before {
  bottom: 0;
  transform: translate(-50%, 30%);
}
.services .faq-polygon::after {
  top: 0;
  transform: translate(-50%, -30%);
}

.faq-polygon,
.polygon,
.contact-polygon {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 568px) {
  .faq-polygon,
  .polygon,
  .contact-polygon {
    width: 650px;
  }
}

.polygon {
  aspect-ratio: 1/1;
  background: transparent linear-gradient(270deg, #cf02ff 0%, #3c90ff 100%) 0% 0%/cover no-repeat padding-box;
  -webkit-clip-path: var(--path);
  clip-path: var(--path);
}

.polygon-inner {
  text-align: center;
  padding: 20px 40px;
}
@media (min-width: 992px) {
  .polygon-inner {
    padding: 50px 100px;
  }
}
.polygon-inner h2 {
  font-size: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .polygon-inner h2 {
    font-size: 28px;
  }
}
.polygon-inner p {
  font-size: 15px;
  font-weight: lighter;
}
@media (min-width: 992px) {
  .polygon-inner {
    font-size: 24px;
  }
}

.contact-polygon {
  margin-top: 180px;
}
@media (min-width: 992px) {
  .contact-polygon {
    margin-top: 240px;
  }
}

.icon-mobile {
  display: block;
  padding-bottom: 30px;
  width: 50%;
}
@media (min-width: 992px) {
  .icon-mobile {
    padding-bottom: 0;
    width: 0;
    display: none;
  }
}

/**************************************
******** section - Header *************
***************************************/
.navbar {
  position: absolute;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 1;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.navbar-item {
  margin: 0 15px;
  width: 100%;
  white-space: nowrap;
}
.navbar-item a.myButton {
  font-size: 18px;
}

.navbar-item:first-of-type {
  margin: 0;
}

.navbar-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  font-size: 15px;
  font-weight: 300;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4em 0.3em;
  border-bottom: 3px solid transparent;
}
.navbar-link:hover {
  border-bottom: 3px solid #cf02ff;
}
@media (min-width: 992px) {
  .navbar-link {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .navbar-link {
    font-size: 18px;
  }
}

li.navbar-item:first-of-type a.navbar-link {
  font-weight: 300;
}

.navbar-logo-link {
  margin-left: 0px;
}

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle-wrapper {
  width: 100%;
  padding: 0 0 0 20px;
}
@media (min-width: 992px) {
  .navbar-toggle-wrapper {
    display: none;
  }
}

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  background-color: #000000;
  border: 2px solid #ffffff;
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #ffffff;
  border: none;
  outline: none;
}

.navbar.opened .navbar-toggle .icon-bar:first-child,
.navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px;
}

.navbar.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg);
}

.navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg);
}

.navbar .navbar-menu,
.navbar.opened .navbar-menu {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
@media (min-width: 992px) {
  .navbar .navbar-menu,
  .navbar.opened .navbar-menu {
    position: static;
    display: block;
  }
}

.navbar-menu {
  padding-top: 20px;
  justify-self: left;
}

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .navbar-links {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
    flex-direction: row;
    list-style-type: none;
    max-height: max-content;
    width: 100%;
    height: 100%;
  }
}

.navbar-links .navbar-item:last-child {
  display: block;
}

.navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .navbar.opened .navbar-links {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
    flex-direction: row;
    list-style-type: none;
    max-height: max-content;
    width: 100%;
    height: 100%;
  }
}

.navbar.opened .navbar-link {
  color: #000000;
}
.navbar.opened .navbar-link:hover {
  color: #cf02ff;
  border: none;
  outline: none;
  border-bottom: 3px solid transparent;
  font-weight: bold;
}

.navbar.opened .navbar-item {
  margin: 0;
}

.navbar .navbar-toggle:focus,
.navbar.opened .navbar-toggle:focus {
  outline: none;
}

.navbar-live-support {
  display: none;
}
@media (min-width: 992px) {
  .navbar-live-support {
    display: block;
  }
}

/**************************************
******** section - Footer *************
***************************************/
.section-footer {
  background-color: #000;
  padding: 50px;
}

.footer-content {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}

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