/* 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; }
    }
    
} 
*/
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.btn {
  background-color: #1CA7F6;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
  padding: 15px 22px;
  transition: all .2s ease;
  text-decoration: none; }
  @media (min-width: 992px) {
    .btn {
      font-size: 34px;
      padding: 16px 44px; } }
  .btn:hover {
    background-color: #7D5ACE; }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background-color: #1a1a30;
  font-style: italic; }

section,
header,
main,
footer {
  display: block; }

p,
h1,
h2,
h3,
h4,
a {
  color: #fff; }

p {
  font-size: 14px; }
  p a:hover {
    color: #1CA7F6; }
  @media (min-width: 992px) {
    p {
      font-size: 18px; } }

h1 {
  font-size: 32px;
  margin: 0; }
  @media (min-width: 992px) {
    h1 {
      font-size: 64px; } }

h2 {
  font-size: 23px; }
  @media (min-width: 992px) {
    h2 {
      font-size: 46px; } }

h3 {
  font-size: 20px; }
  @media (min-width: 992px) {
    h3 {
      font-size: 25px; } }

h4 {
  font-size: 16px; }
  @media (min-width: 992px) {
    h4 {
      font-size: 24px; } }

a {
  text-decoration: none;
  transition: all .2s ease; }

p + p {
  margin-top: 20px; }
  @media (min-width: 992px) {
    p + p {
      margin-top: 40px; } }

.blue-color {
  color: #1CA7F6; }

.purple-color {
  color: #7D5ACE; }

.burger {
  cursor: pointer;
  height: 15px;
  position: relative;
  width: 20px; }
  .burger:before, .burger:after {
    content: '';
    background-color: #fff;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .2s ease;
    width: 100%; }
  .burger:before {
    top: 0; }
  .burger:after {
    bottom: 0; }
  .nav-is-open .burger:before, .nav-is-open .burger:after {
    top: 50%;
    bottom: initial; }
  .nav-is-open .burger:before {
    transform: translateY(-50%) rotate(45deg); }
  .nav-is-open .burger:after {
    transform: translateY(-50%) rotate(-45deg); }
  @media (min-width: 992px) {
    .burger {
      display: none; } }

.burger-item {
  display: block;
  background-color: #fff;
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: all .2s ease; }
  .nav-is-open .burger-item {
    opacity: 0;
    visibility: hidden; }

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%; }

.container-narrow {
  max-width: 1010px;
  width: 100%; }

/*===  Header  ===*/
.header {
  left: 0;
  padding: 10px 0;
  position: absolute;
  top: 0;
  width: 100%; }

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (min-width: 992px) {
    .header-wrapper {
      padding: 25px 0; } }

.header-nav {
  background-color: #101026;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  padding: 8px 0;
  top: 98px;
  transition: all .2s ease;
  text-align: center;
  visibility: hidden;
  width: 100%; }
  .nav-is-open .header-nav {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 992px) {
    .header-nav {
      background-color: transparent;
      display: flex;
      left: 0;
      opacity: 1;
      visibility: visible;
      padding: 0;
      position: initial;
      top: 0;
      width: auto; } }

.header-link {
  display: block; }
  @media (min-width: 992px) {
    .header-link {
      font-size: 19px;
      margin-left: 30px; } }
  .header-link:hover {
    color: #1CA7F6; }

/*===  page  ===*/
.hero {
  background-position: center;
  background-size: cover;
  padding-top: 98px; }
  @media (min-width: 992px) {
    .hero {
      padding-top: 148px;
      display: flex;
      align-items: center;
      min-height: 100vh; } }

.hero-wrapper {
  padding: 20px 0;
  text-align: center; }
  @media (min-width: 992px) {
    .hero-wrapper {
      text-align: right; } }

.hero-title {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .hero-title {
      margin-bottom: 100px; } }

.hero-text {
  margin-bottom: 20px; }
  @media (min-width: 992px) {
    .hero-text {
      margin-bottom: 50px; } }

.about,
.services,
.faq,
.contact {
  padding: 30px 0 40px; }
  @media (min-width: 992px) {
    .about,
    .services,
    .faq,
    .contact {
      padding: 100px 0 130px; } }

/*===  Services  ===*/
.services {
  background-color: #101026;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 100%; }
  .services:before {
    content: '';
    display: block;
    background-color: #101026;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    z-index: -1; }
  .services img {
    max-width: 40px;
    margin: 0 auto 15px; }
    @media (min-width: 992px) {
      .services img {
        max-width: 80px;
        margin: 0 auto 15px; } }

.services-title {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .services-title {
      margin-bottom: 60px; } }

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -12px; }

.services-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 0 12px;
  width: 100%; }
  @media (min-width: 568px) {
    .services-item {
      max-width: 50%;
      width: 50%; } }
  @media (min-width: 992px) {
    .services-item {
      max-width: 25%;
      width: 25%;
      margin-bottom: 0; } }

.services-content-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-image: linear-gradient(180deg, #1CA7F6, #9900CC);
  padding: 5px; }

.services-content {
  background-color: #101026;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 15px 20px; }
  @media (min-width: 992px) {
    .services-content {
      padding: 30px 30px 40px; } }

.services-content-title {
  margin-bottom: 15px; }

/*===  FAQ  ===*/
.faq {
  background-color: #101026;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  width: 100%; }
  .faq:before {
    content: '';
    display: block;
    background-color: #101026;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    z-index: -1; }

.faq-title-main {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .faq-title-main {
      margin-bottom: 70px; } }

.faq-title {
  margin-bottom: 10px; }
  @media (min-width: 992px) {
    .faq-title {
      margin-bottom: 20px; } }

.faq-item {
  margin-bottom: 15px; }
  @media (min-width: 992px) {
    .faq-item {
      margin-bottom: 25px; } }

/*===  About  ===*/
.about-wrapper img {
  width: 100%; }

@media (min-width: 992px) {
  .about-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; } }

.about-title {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .about-title {
      margin-bottom: 70px; } }

@media (min-width: 992px) {
  .about-item {
    max-width: 50%;
    width: 50%; } }

.about-item.item-right {
  text-align: center; }
  @media (min-width: 992px) {
    .about-item.item-right {
      text-align: right; } }

/*===  Contact  ===*/
.contact {
  text-align: center; }

.contact-title {
  margin-bottom: 20px; }
  @media (min-width: 992px) {
    .contact-title {
      margin-bottom: 40px; } }

.contact-item {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .contact-item {
      margin-bottom: 60px; } }

.item-top {
  padding-bottom: 30px;
  position: relative; }
  .item-top:after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); }
  @media (min-width: 992px) {
    .item-top {
      padding-bottom: 60px; } }

/*=== Footer ====*/
.footer {
  background-color: #101026;
  padding: 30px 0;
  text-align: center; }
