/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&display=swap");

/* @font-face {
  font-family: "Inter";
  src: url("/font/Inter-VariableFont_wght.ttf") format("ttf");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/font/Inter-VariableFont_wght.ttf") format("ttf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/font/Inter-VariableFont_wght.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/font/Inter-VariableFont_wght.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("/font/Inter-VariableFont_wght.ttf") format("ttf");
  font-weight: 100;
  font-style: normal;
} */

:root {
  --gray1: #1a1c1e;
  --gray1-rgb: 26, 28, 30;
  --gray2: #726e68;
  --gray3: #a5a093;
  --gray4: #dbd7d0;
  --gray5: #f2efeb;
  --yellow1: #bda545;
  --green1: #428891;
  --red1: #b1444a;
  --bg-color: #dad7d1;
  --cantina1: #d2a5ab;
  --cantina2: #be5462;
  --cantina3: #7b2339;

  --primary-color: var(--gray1);
  --secondary-color: var(--gray2);
  --accent-color: var(--gray4);
}

.theme-dark {
}

.theme-light {
  --primary-color: var(--gray4);
  --secondary-color: var(--gray3);
  --accent-color: var(--gray1);
}

html,
body {
  font-family: "Inter";
  overflow-x: hidden;
  padding: 0 !important;
}

body .loading-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 1;
  transition: opacity 0.6s;
  z-index: 99999;
}

body.loaded .loading-overlay {
  opacity: 0;
  pointer-events: none;
}

.navbar-nav a {
  font-size: 1.2rem;
}

.loading-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading-overlay img {
  width: 120px;
}

.loading-overlay .spinner-border {
  position: absolute;
  color: white;
  width: 250px;
  height: 250px;
  border-width: 6px;
}

/* COLORS */
.color-gray1 {
  color: var(--gray1) !important;
}

.color-gray2 {
  color: var(--gray2) !important;
}

.color-gray3 {
  color: var(--gray2) !important;
}

.color-gray3 {
  color: var(--gray3) !important;
}

.color-gray4 {
  color: var(--gray4) !important;
}

.color-gray5 {
  color: var(--gray5) !important;
}

/* SEPARATORS */
hr.full {
  width: 100%;
}

hr.long {
  width: 75%;
}

hr.half {
  width: 50%;
}

hr.short {
  width: 25%;
}

hr.blue {
  border-top: 1px solid rgba(0, 61, 122, 0.9);
}

hr.white {
  border-top: 1px solid #fff;
}

hr.margins-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

hr.margins-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

hr.margins-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

hr.mobile,
hr.tablet,
hr.small-monitor {
  display: none;
}

hr.desktop {
  display: inline-block;
}

.flex-fill {
  flex: 1;
}

/* NAVBAR MOBILE */
.social-links-mob {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style-type: none;
  border-top: 1px solid var(--gray5);
  border-bottom: 1px solid var(--gray5);
  margin-inline: -20rem;
}

.social-links-mob li {
  padding: 0 1rem;
}

#lang-list-mob {
  display: flex;
  justify-content: space-around;
  padding: 0 5rem;
  list-style-type: none;
}

.modal-fullscreen-menu .close {
  color: white;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  font-size: 2.5rem;
  padding: 1.6rem 2rem;
}

.fade.show {
  opacity: 0.9;
  background: var(--primary-color);
}

.modal-fullscreen-menu .modal-body {
  margin: -4rem auto 0;
  width: 100%;
  /* max-width: 768px; */
  /* display: flex; */
  /* height: 100%; */
  /* align-items: center; */
}

.modal-fullscreen-menu .modal-content,
.modal-fullscreen-menu .modal-header {
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.modal-fullscreen-menu .list-group {
  text-align: start;
  margin: 0 auto;

  width: 100%;
}

.modal-fullscreen-menu .list-group a {
  font-size: 200%;
  font-weight: 200;
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.25s ease;
  background-color: transparent;
  color: white;
  padding: 1.7rem 0;
  font-size: 1.5rem;
  line-height: 0;
}

.modal-fullscreen-menu .list-group a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  opacity: 0;
  transform: scale3d(0.7, 1, 1);
  transition: transform 0.4s, opacity 0.4s;
}

.modal-fullscreen-menu .list-group a:hover {
  color: black;
}

.modal-fullscreen-menu .list-group a:hover:before {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.modal-fullscreen-menu .list-group-item.link-nav {
  padding-left: 4rem !important;
}

.modal-backdrop.in {
  opacity: 1;
}

#header-mobile {
  display: none;
}

.mobile-nav {
  background-color: transparent;
  font-weight: 600;
  position: absolute;
  width: 100%;
  z-index: 9;
  background-color: var(--gray1);

}

#mobileHeaderToggler {
  width: 55px;
  height: 55px;
  background-color: var(--primary-color);
  border-radius: 50%;
  /* border: none; */
}

#header-mobile .nav-link {
  display: inline-block;
}

#navbarMobile {
  background-color: var(--primary-color);
  padding-right: 1rem;
}

/* NAVBAR */
.main-nav {
  margin-top: 39px;
  background-color: var(--primary-color);
  font-weight: 600;
  position: fixed;
  width: 100%;
  z-index: 9999;
  transition: all 0.5s ease-in-out;
}

.main-nav.main-nav-fixed {
  margin-top: 0;
  padding-top: 16px;
  box-shadow: 0 1px 10px 0px var(--primary-color);
}

.navbar-container {
  margin: -49px auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  width: 100%;
  /* max-width: 1400px; */
  padding: 0;
  transition: all 0.5s ease-in-out;
}

.main-nav .navbar-nav .nav-link {
  color: var(--gray2);
  margin: 0 0;
}

.lang-social-container {
  position: sticky;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: flex-end;
  border-bottom: 1px solid var(--gray4);
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.fade-out-border {
  position: relative;
  overflow: hidden;
}

.fade-out-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(
    to top,
    var(--primary-color),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.social-links a {
  color: var(--gray4);
  margin: 0 0.5rem;
  cursor: pointer;
}

.language-navs a {
  color: var(--secondary-color);
  margin: 0 0.3rem;
  cursor: pointer;
}

.language-navs a.lang-active {
  color: var(--gray4);
  font-weight: 600;
}

.language-navs a:hover {
  opacity: 0.7;
}

#navbar-logo {
  width: 100px;
  height: auto;
}

/* general */
.flex-dist-col {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1440px;
  margin: auto;
  padding: 5rem;
}

.direction-col {
  flex-direction: column;
}

.main-nav .navbar-nav .active-nav .nav-link {
  color: var(--gray5);
  margin: 0 0;
}

.intro-section {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
}

/* home intro */
.intro-claim {
  color: var(--gray4);
  margin-left: 9rem;
  max-width: 750px;
}

.intro-claim span {
  display: inline-block;
  border-bottom: 1px solid;
}

.sound-schema-container {
  position: relative;
  width: 480px;
  margin-top: -143px;
}

.sound-schema-container img {
  width: 100%;
  height: auto;
}

#arrow-down-intro {
  position: absolute;
  width: 25px;
  top: 60px;
  left: 240px;
  transform: translate(-50%, 0);
  cursor: pointer;
  transition: all 0.5s;
}

#arrow-down-intro:hover {
  top: 50px;
}

.demo-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0.05px;
}

#first-row .demo-cta {
  margin-top: 5rem;
}

.demo-cta h5 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1rem;
  text-decoration: underline;
  transition: all 0.5s;
  font-weight: 500;
  cursor: pointer;
}

.demo-cta h5:hover {
  opacity: 0.5;
}

.demo-cta img {
  position: relative;
  margin-right: 2rem;
  width: 40px;
  left: 0;
  cursor: pointer;
  transition: all 0.5s;
}

.demo-cta img:hover {
  margin-left: 1rem;
  margin-right: 1rem;
}

.text-block {
  max-width: 470px;
}

.text-block-dark {
  padding: 3rem 2.5rem;
  background: rgba(26, 28, 30, 0.9);
}

.text-block h2,
.text-block h3 {
  font-weight: 400;
}

.text-block h5,
.text-block h6 {
  color: var(--secondary-color);
  font-weight: 100;
  line-height: 2rem;
}

.text-block-light h2 {
  color: var(--primary-color);
}

.text-block-dark h2 {
  color: var(--gray4);
}

#first-row .text-block {
  margin-top: 7rem;
  margin-left: 5rem;
}

#second-row img {
  width: 65%;
}

#second-row .text-block {
  position: relative;
  left: 10rem;
}

#third-row .left-block {
  /*max-width: 250px;*/
  margin: auto;
}

#third-row .left-block .demo-cta {
  margin-top: 2rem;
}

#third-row .right-block {
  padding-left: 2rem;
}

.step-container {
  display: flex;
  align-items: center;
  font-weight: 800;
}

.step-container .desc-block h3 {
  margin: 0;
  color: var(--gray5);
  font-size: larger;
}

.step-container .number-block {
  font-size: 6rem;
  color: #cbc6be;
  padding-right: 0.5rem;
}

.example {
  position: relative;
}

.example-desc {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem 1rem;
  margin-left: 1rem;
  background-color: var(--primary-color);
  color: var(--gray4);
  font-size: 1.1rem;
}

#fourth-row .demo-cta {
  margin-top: 1.5rem;
}

.bottom-cta {
  background-color: var(--primary-color);
  color: var(--gray4);
  padding: 3rem 4rem;
}

.bottom-cta h2 {
  font-weight: 100;
}

.bottom-cta .demo-cta {
  color: var(--gray4);
}

/* contacts */
.contacts-section-header {
  padding: 13rem 1rem 2rem 1rem;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  background-color: var(--gray1);

  h1 {
    color: var(--gray4);
    font-weight: 800;
    text-align: start;
    font-family: "Barlow", sans-serif;
    font-size: 6rem;
    background-clip: text;
  }
}

.contacts-section {
  padding-top: 5rem;
  /* min-height: 100; */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--primary-color);
  text-align: center;

  .contacts-claim {
    text-align: start;
  }

  .second-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .third-row {
    .send-button {
      background-color: var(--primary-color);
      color: var(--gray4);
      padding: 1rem 2rem;
      border-radius: 9999px;
      border: none;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.5s;
      height: 6rem;
      display: flex;
      width: 6rem;
      align-items: center;
      justify-content: center;
      margin-top: 1rem;
      align-self: flex-end;
      margin-bottom: 2rem;
    }

    .send-button:hover {
      background-color: var(--gray2);
      color: var(--primary-color);
      transition: all 0.5s;
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }
  }

  h3 {
    font-weight: 800;
    font-family: "Barlow", sans-serif;
    font-size: 3rem;
  }

  h4 {
    font-weight: 800;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    font-size: 3rem;
  }

  .fab {
    color: white;
    scale: 1.4;
  }

  .social-contacts {
    display: flex;

    a {
      height: 4rem;
      width: 4rem;
      background-color: black;
      display: flex;
      border-radius: 9999px;
      align-items: center;
      justify-content: center;
      margin-left: 1.5rem;
    }

    .social-contacts-links {
      display: flex;
    }
  }

  .email-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    a {
      color: var(--secondary-color);
      font-weight: 700;
      font-family: "Inter", sans-serif;
      font-size: 3rem;
    }
  }
}

.contacts-section h1 {
  font-weight: 800;
  margin-bottom: 1rem;
}

.contacts-section h2 {
  font-style: italic;
}

.contacts-section .contacts-email {
  margin-top: 1.5rem;
}

.contacts-section a:hover {
  text-decoration: none;
  opacity: 0.5;
}

#contact-form {
  display: flex;
  flex-direction: column;
}

.contact-block {
  background-color: var(--gray4);
}

.contacts-page-container .contact-block {
  width: 100%;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: var(--primary-color);
  background: transparent !important;
  margin: 1rem 0;
}

#contact-form select {
 color: var(--gray2)
}

.agami_button {
  background-color: #191a1c;
  font-weight: bold;
  font-size: 3rem;
  height: 10rem;
  width: 10rem;
  z-index: 10;
  font-weight: bold;
  color: var(--gray4);
  font-size: 1.3rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
 
/* BIG SCREENS */
@media screen and (min-width: 1440px) {
  .flex-dist-col {
    padding: 5rem 2rem;
  }
}

/* SMALL SCREENS AND iPad PRO */
@media screen and (max-width: 1199px) {
}

/* VERY SMALL SCREENS AND LARGE TABLETS */
@media screen and (max-width: 991px) {
  #header {
    display: none !important;
  }

  #header-mobile {
    display: block !important;
  }

  #footer {
    display: none !important;
  }

  #footer-mobile {
    display: block !important;
  }


  .flex-dist-col {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .intro-claim {
    margin-left: 0;
  }

  .home-intro {
    justify-content: center;
  }

  .contacts-section-header {
    padding: 10rem 1rem 2rem 1rem;
    h1 {
      background-size: 100%;
      font-size: 5.5rem;
    }
  }

  .contacts-section {
    padding-top: 2rem;
    a,
    h4 {
      font-size: 2rem;
    }

    .social-contacts h4 {
      line-height: 2;
    }

    .second-row {
      flex-direction: column;

      .email-contacts {
        .contacts-email {
          line-height: 2rem;
        }
        
       h3{ 
        font-size: 0;
          a {
            font-size: 1.5rem;
          }
        }
      }
    }

    .fab {
      scale: 1;
    }
  }

  #first-row .demo-cta {
    margin-top: 5rem;
    justify-content: center;
  }

  #second-row .text-block {
    left: 0rem;
    margin-bottom: 2rem;
  }

  #fourth-row .text-block {
    margin: auto;
  }

 
}

/* TABLETS */
@media screen and (max-width: 768px) {
  .flex-dist-col {
    padding: 2rem;
  }

  .intro-section {
    padding: 0 2rem;
  }
}

/* SMARTPHONES (portait) */
@media screen and (max-width: 576px) {

  .intro-section {
    padding: 0;
    height: max-content;
    margin-bottom: 8rem;
  }

  .flex-dist-col {
    padding: 1rem;
  }

  .intro-claim {
    padding: 0;
  }

  .intro-claim h1 {
    font-size: 2rem;
    font-weight: 100;
  }

  .intro-claim span {
    display: inline-block;
    border-bottom: none;
    text-decoration: underline;
  }

  .sound-schema-container {
    position: relative;
    width: 95%;
    margin-top: -116px;
  }

  #arrow-down-intro {
    top: 40px;
    left: 50%;
  }

  #first-row .demo-cta {
    margin-top: 2rem;
  }

  #first-row .text-block {
    margin-top: 4rem;
    margin-left: 0;
    padding: 0 2rem;
  }

  #second-row .text-block {
    margin-bottom: 0;
  }

  #second-row img {
    width: 100%;
  }


  .logo-row img {
    width: 10rem;
  }

  .modal-fullscreen-menu .list-group a.active-nav,
  .modal-fullscreen-menu .list-group a.lang-active {
    font-weight: 900;
  }
}

#privacy-policy-container {
  padding-top: 13rem;
}
