/* 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=Poppins:wght@300;400;500;600;700;900");
.myButton {
  align-items: center;
  background-color: #F05222;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 600;
  padding: 22px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .3s ease;
  width: 100%; }
  .myButton:hover {
    background-color: rgba(240, 82, 34, 0.8); }
  .myButton:active {
    position: relative;
    top: 1px; }

/* 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: #F05222;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px; }
  .btn-go-top:hover {
    background-color: rgba(240, 82, 34, 0.9); }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif; }

.container {
  max-width: 100%;
  padding: 0 1.4rem;
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container {
      max-width: 1110px; } }

@media (min-width: 992px) {
  .container-small {
    max-width: 840px; } }

/*===  page  ===*/
.page {
  display: flex;
  flex-direction: column; }

/*===  Main  ===*/
.main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative; }
  @media (min-width: 992px) {
    .main {
      background-position: center top; } }

.main-img {
  visibility: hidden;
  opacity: 0; }

.main-wrapper {
  margin-top: -200px;
  padding-bottom: 70px;
  z-index: 2; }
  @media (min-width: 992px) {
    .main-wrapper {
      margin-top: -150px;
      padding-bottom: 112px; } }
  @media (min-width: 992px) {
    .main-wrapper {
      margin-top: -250px; } }

.main-content {
  display: flex;
  flex-direction: column;
  height: 100%; }
  @media (min-width: 992px) {
    .main-content {
      flex-direction: row; } }

.main-content-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%; }

.main-content-title {
  font-weight: 600;
  color: #2B004F;
  text-transform: uppercase;
  letter-spacing: 3.8px;
  line-height: 1.32;
  margin: 0 auto 30px;
  max-width: 785px;
  font-size: calc(18px + (36 - 18) * ((100vw - 320px) / (1920 - 320))); }
  .main-content-title span {
    display: block; }

.main-content-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  width: auto; }
  @media (min-width: 992px) {
    .main-content-link {
      font-size: 30px; } }

.myButton {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase; }

/*===  Header  ===*/
.navbar {
  height: 10%;
  left: 0;
  right: 0;
  padding: 20px 0;
  position: relative; }
  @media (min-width: 992px) {
    .navbar {
      padding: 40px 0; } }

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

.navbar-item {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  position: relative; }

.navbar-link {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.4em 0;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  transition: all .3s ease; }

.navbar-link::after {
  content: '|';
  color: #FFFFFF;
  position: absolute;
  right: -25px;
  top: 7px; }

.navbar-link:focus,
.navbar-link:hover {
  font-weight: 700; }

.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%; }

.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: #FFFFFF;
  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: 2; }
  @media (min-width: 992px) {
    .navbar .navbar-menu,
    .navbar.opened .navbar-menu {
      position: static;
      display: block;
      height: 100%; } }

.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.opened .navbar-links {
  padding: 1em;
  max-height: none;
  background-color: #F05222; }
  @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: #ffffff; }

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

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

.logo {
  align-self: center;
  display: flex;
  height: auto;
  width: auto; }
  @media (min-width: 992px) {
    .logo {
      width: auto; } }

/*===  Services  ===*/
.services {
  background: transparent linear-gradient(180deg, #791577 0%, #5F018D 100%) 0% 0% no-repeat padding-box;
  color: #FFFFFF;
  text-align: center; }

.services-content {
  margin: 40px auto; }
  @media (min-width: 992px) {
    .services-content {
      margin: 100px auto 40px; } }

.services-row {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 992px) {
    .services-row {
      justify-content: space-between; } }

.services-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .services-title {
      font-size: 40px; } }

.services-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .services-subtitle {
      font-size: 24px;
      margin-bottom: 60px; } }

.services-items-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .services-items-wrapper {
      align-items: flex-start;
      flex-direction: row;
      text-align: left;
      width: 45%;
      margin-bottom: 60px; } }

.services-item-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.67;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .services-item-title {
      font-size: 36px; } }

.services-item-text {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 1.5; }

/*===  About us  ===*/
.aboutus {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 35px; }
  @media (min-width: 992px) {
    .aboutus {
      padding: 440px 0 35px; } }
  @media (min-width: 1440px) {
    .aboutus {
      padding: 540px 0 35px; } }

.aboutus-wrapper {
  background: transparent linear-gradient(180deg, #791577 0%, #5F018D 100%) 0% 0% no-repeat padding-box;
  color: #FFFFFF;
  padding: 40px;
  text-align: center;
  margin: 0 auto;
  opacity: 0.8; }
  @media (min-width: 992px) {
    .aboutus-wrapper {
      padding: 40px 80px; } }

.aboutus-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 25px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .aboutus-title {
      font-size: 60px; } }

.aboutus-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45; }
  @media (min-width: 992px) {
    .aboutus-text {
      font-size: 24px; } }

/*===  FAQ  ===*/
.faq {
  text-align: center;
  color: #123661; }

.faq-content {
  margin: 60px auto; }

.faq-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 60px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .faq-title {
      font-size: 40px;
      margin-bottom: 40px; } }

.faq-items {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .faq-items {
      margin-bottom: 60px; } }
  .faq-items:last-child {
    margin-bottom: 0; }

.faq-question {
  background-color: #F05222;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  padding: 20px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .faq-question {
      font-size: 25px; } }

.faq-answer {
  font-size: 18px;
  font-weight: 400;
  color: #707070; }
  @media (min-width: 568px) {
    .faq-answer {
      font-size: 20px; } }
  @media (min-width: 992px) {
    .faq-answer {
      font-size: 24px; } }

.color-wrapper {
  background: transparent linear-gradient(180deg, #791577 0%, #5F018D 100%) 0% 0% no-repeat padding-box; }

.faq-contact-link {
  color: #707070; }

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }

.contact-item {
  text-align: left; }
  @media (min-width: 992px) {
    .contact-item {
      width: 45%; } }

.contact-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    .contact-title {
      font-size: 40px; } }

.contact-content {
  margin: 60px auto; }
  @media (min-width: 992px) {
    .contact-content {
      display: flex; } }

.contact-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px; }
  @media (min-width: 568px) {
    .contact-text {
      font-size: 20px; } }
  @media (min-width: 992px) {
    .contact-text {
      font-size: 24px; } }

.contact-link {
  color: #FFFFFF;
  text-decoration: none; }
  .contact-link:hover {
    text-decoration: underline; }

/*=== Footer ====*/
.footer {
  color: #FFFFFF;
  font-size: 16px;
  margin: 25px auto;
  text-align: left; }
  @media (min-width: 568px) {
    .footer {
      text-align: center; } }
