/* 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=Open+Sans:wght@300;400;600;700;800&display=swap");
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth; }

body {
  color: #636363;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; }
  @media (min-width: 992px) {
    body {
      font-size: 18px; } }

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

h1, h2, h3 {
  line-height: 1; }

h1 {
  font-size: 32px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    h1 {
      font-size: 50px; } }

h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    h2 {
      font-size: 44px;
      margin-bottom: 100px; } }

h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase; }
  @media (min-width: 992px) {
    h3 {
      font-size: 24px;
      margin-bottom: 30px; } }

ul {
  list-style: none; }

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

/*===  page  ===*/
.page {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column; }

/*===  header  ===*/
.header {
  position: fixed;
  padding: 10px 0;
  transition: 0.3s ease-in-out;
  width: 100%;
  z-index: 2; }

.scrolling-active {
  background-color: #636363;
  box-shadow: 0 3px 1rem #636363;
  padding: 5px 0; }

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

.navbar-logo {
  align-items: center;
  display: flex; }

.navbar-logo-img {
  width: 60%; }
  @media (min-width: 992px) {
    .navbar-logo-img {
      width: 80%; } }

.navbar-items-container {
  align-items: flex-end;
  border-radius: 25px 0 0 25px;
  background: #636363;
  display: flex;
  flex-direction: column;
  height: 50vh;
  justify-content: space-around;
  padding: 0 1.4em;
  position: absolute;
  right: 0px;
  top: 20vh;
  transform: translateX(100%);
  transition: transform 0.5s ease-in;
  width: 150px;
  z-index: 3; }
  @media (min-width: 992px) {
    .navbar-items-container {
      background: transparent;
      flex-direction: row;
      height: inherit;
      justify-content: flex-end;
      position: static;
      transform: translateX(0%);
      width: 100%; } }
  .navbar-items-container .navbar-item {
    opacity: 0; }
    @media (min-width: 992px) {
      .navbar-items-container .navbar-item {
        margin-left: 60px;
        opacity: 1; } }
  .navbar-items-container a {
    color: #FFFFFF;
    transition: 0.3s ease; }
    .navbar-items-container a:hover {
      color: #10B6FF; }
    @media (min-width: 992px) {
      .navbar-items-container a {
        font-size: 14px; } }
  .navbar-items-container .active {
    color: #10B6FF; }

@media (min-width: 992px) {
  .navbar-item {
    position: relative; }
    .navbar-item::before {
      content: "";
      background: rgba(255, 255, 255, 0.5);
      height: 20px;
      left: -30px;
      position: absolute;
      top: 20%;
      width: 1px; }
    .navbar-item:first-child::before {
      display: none; } }

.navbar-burger {
  cursor: pointer; }
  @media (min-width: 992px) {
    .navbar-burger {
      display: none; } }
  .navbar-burger div {
    background-color: #10B6FF;
    height: 3px;
    margin: 5px;
    transition: all 0.3s ease-in-out;
    width: 25px; }
  .navbar-burger.toggle .line-one {
    transform: rotate(-45deg) translate(-5px, 6px); }
  .navbar-burger.toggle .line-two {
    opacity: 0; }
  .navbar-burger.toggle .line-three {
    transform: rotate(45deg) translate(-5px, -6px); }

.navbar-active {
  box-shadow: -2px 2px 5px #636363;
  transform: translateX(0%); }

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px); }
  to {
    opacity: 1;
    transform: translateX(0px); } }

/*===  Main  ===*/
.hero {
  align-items: center;
  background-position: center;
  background-size: cover;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  height: 130vh;
  justify-content: center;
  text-align: center; }

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

.hero-subtitle {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .hero-subtitle {
      width: 70%;
      margin: auto;
      margin-bottom: 100px; } }

.hero-btn {
  padding: 15px 30px;
  color: #10B6FF;
  border: 2px solid #FFB41D;
  text-transform: uppercase;
  background-color: #FFFFFF;
  transition: 0.4s ease-in-out;
  box-shadow: 0px 6px 30px #15005A4D;
  font-weight: bold; }
  @media (min-width: 992px) {
    .hero-btn {
      padding: 20px 60px;
      font-size: 30px; } }
  .hero-btn:hover {
    color: #FFFFFF;
    background-color: transparent; }

/*===  Services  ===*/
.services {
  color: #FFFFFF;
  margin: 60px auto;
  text-align: center; }
  @media (min-width: 992px) {
    .services {
      margin: 120px auto;
      margin-top: -80px; } }

.services-content {
  background: #FFB41D;
  padding: 30px; }
  @media (min-width: 992px) {
    .services-content {
      padding: 120px; } }

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

/*===  About  ===*/
.about {
  margin: 60px auto;
  text-align: center; }
  @media (min-width: 992px) {
    .about {
      margin: 120px auto; } }

.about-content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.about-items-wrapper {
  margin-bottom: 30px; }
  @media (min-width: 992px) {
    .about-items-wrapper {
      width: 45%; } }

/*===  FAQ  ===*/
.faq {
  margin: 60px auto;
  text-align: center; }

.faq-content {
  margin-top: 30px;
  padding: 10px 20px; }

.accordion {
  background-color: transparent;
  border: none;
  color: #10B6FF;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  outline: none;
  padding: 18px 18px 18px 60px;
  position: relative;
  transition: 0.4s;
  width: 100%; }
  .accordion::after {
    content: "+";
    color: var(--text-color);
    font-size: 60px;
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%); }
  .accordion.active {
    background-color: #10B6FF;
    color: #FFFFFF; }
  .accordion.active::after {
    content: "-"; }
  @media (min-width: 992px) {
    .accordion {
      margin: 0 auto;
      width: 70%; } }

.panel {
  background-color: #10B6FF;
  color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out; }
  .panel p {
    padding: 18px; }
  @media (min-width: 992px) {
    .panel {
      margin: 0 auto;
      width: 70%; } }

/*===  Contact  ===*/
.contact {
  margin: 60px auto;
  text-align: center; }
  .contact a {
    color: #636363;
    cursor: pointer;
    transition: 0.4s; }
    .contact a:hover {
      color: #10B6FF; }
  @media (min-width: 992px) {
    .contact {
      margin: 120px auto; } }

.contact-content {
  background-color: #FFFFFF;
  border: 2px solid #10B6FF;
  padding: 30px 18px; }
  @media (min-width: 992px) {
    .contact-content {
      padding: 100px 60px; } }

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

.contact-text {
  margin-bottom: 15px;
  text-align: justify;
  width: 45%; }

.contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 45%; }

.contact-item {
  margin-bottom: 15px; }

/*=== Footer ====*/
.footer {
  background: #10B6FF;
  color: #FFFFFF;
  font-size: 10px;
  margin: auto;
  padding: 18px 0;
  text-align: center;
  width: 100%; }
