* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Amiko', sans-serif;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #cbab79;
}

h1 {
  width: 60%;
  border-bottom: 1px solid #cbab79;
  padding: 5px 0px;
  margin: 20px 0px;
}

h3 {
  width: 60%;
  border-bottom: 1px solid #cbab79;
  padding: 5px 0px;
  margin: 10px 0px;
}

h5 {
  padding: 5px 0px;
  margin: 5px 0px;
}

.nav {
  background-color: white;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
  padding: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav .menu .logo {
  width: 25%;
}

.nav .menu .separator {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 0px;
}

.nav .menu .menuItem .item {
  padding: 10px 5px;
  color: black;
  text-decoration: none;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  cursor: pointer;
  display: inline-block;
}

.nav .menu .menuItem .item:hover {
  color: #8e8c8c;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.nav .menu-line {
  display: none;
  height: auto;
  position: relative;
  z-index: 3;
  margin-right: 2%;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.nav .menu-line:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.nav .menu-line.active .line.line-top {
  top: calc(50% - (2px / 2));
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav .menu-line.active .line.line-middle {
  top: calc(50% - (2px / 2));
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav .menu-line.active .line.line-bottom {
  top: calc(50% - (2px / 2));
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav .menu-line .line {
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: black;
  top: calc(50% - (2px / 2));
  left: calc(50% - 25%);
  -webkit-transition: 250ms;
  transition: 250ms;
}

.nav .menu-line .line.line-top {
  top: calc(50% - (2px / 2) - (2px * 3));
}

.nav .menu-line .line.line-middle {
  top: calc(50% - (2px / 2));
}

.nav .menu-line .line.line-bottom {
  top: calc(50% - (2px / 2) + (2px * 3));
}

.card-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background-color: gray;
  padding: 20px 0px;
  overflow: hidden;
}

.card-three .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  width: 25%;
  background-color: white;
  padding: 20px;
}

.card-three .card .title {
  display: inline-block;
  margin: 10px 0px;
  font-weight: bold;
  text-align: center;
}

.card-three .card .content {
  display: inline-block;
  margin: 10px 0px;
  text-align: center;
}

.card-three .card .buttons {
  margin: 10px 0px;
  border-radius: 15px;
  padding: 5px 10px;
  background-color: #262b38;
  border: 2px solid;
  color: #cbab79;
}

.card-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: white;
  padding: 20px 10%;
  overflow: hidden;
}

.card-two .separator {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 0;
}

.card-two .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 200px;
  width: 40%;
  background-color: white;
  padding: 20px;
  margin: 20px;
  color: #cbab79;
  border: 1px solid;
  border-radius: 10px;
}

.card-two .card .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.card-two .card .content .title {
  display: inline-block;
  margin: 10px 0px;
  font-weight: bold;
  text-align: left;
}

.card-two .card .content .description {
  color: black;
  text-align: justify;
}

.card-two .card .content .buttons {
  margin: 10px 0px;
  border-radius: 10px;
  padding: 5px 10px;
  background: #262b38;
  color: white;
  border: 2px solid #cbab79;
  cursor: pointer;
}

.card-six {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background-color: white;
  padding: 20px 10%;
  overflow: hidden;
}

.card-six .primary-title {
  margin: 20px;
  color: #cbab79;
  border-bottom: 1px solid;
  width: 30%;
}

.card-six .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.card-six .card-content .separator {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 0;
  display: none;
}

.card-six .card-content .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  width: 25%;
  background-color: white;
  padding: 40px 30px;
  margin: 20px;
  color: #cbab79;
  border: 1px solid;
  border-radius: 10px;
}

.card-six .card-content .card .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.card-six .card-content .card .card-title .image {
  height: 35px;
  width: 35px;
}

.card-six .card-content .card .card-title .title {
  display: inline-block;
  margin: 10px 0px;
  font-weight: 900;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 0px;
  /* padding-right: 20px; */
  text-align: center;
}

.card-six .card-content .card .content {
  display: inline-block;
  margin: 10px 0px;
  text-align: justify;
  color: black;
}

.card-six .card-content .card .buttons {
  margin: 10px 0px;
  border-radius: 15px;
  padding: 5px 10px;
}

.card-inline {
  /* border-top:1px solid #cbab79; */
  overflow: hidden;
}

.card-inline .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card-inline .card .list-with-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card-inline .card .list-with-image img {
  max-width: 12%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-inline .card:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card-inline .card > .img, .card-inline .card > .div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 0px;
  max-width: 50%;
}

.card-inline .card > .img {
  position: relative;
}

.card-inline .card > .img > img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 2000ms;
  transition: all 2000ms;
  opacity: 0;
}

.card-inline .card > .img > img.active {
  opacity: 1;
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}

.card-inline .card > .div {
  background: #262b38;
  color: white;
  padding: 40px;
}

.card-inline .card > .div h1 {
  width: 60%;
  border-bottom: 1px solid #cbab79;
}

.card-inline .card > .div h5 {
  width: 10%;
  border-bottom: 1px solid #cbab79;
}

.card-inline .card > .div .thin {
  font-weight: 100;
  font-size: 0.83em;
  color: lightgray;
}

.card-inline .card > .div ul {
  list-style-type: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  padding-left: 20px;
}

.card-inline .card > .div img {
  width: 28%;
}

.section-us {
  background: #262b38;
  color: white;
  padding: 40px;
}

.section-us .bold {
  font-weight: 900;
}

.section-us .thin {
  font-weight: 100;
  color: lightgray;
}

.section-us .justify {
  text-align: justify;
}

.section-us h1 {
  width: 60%;
  border-bottom: 1px solid #cbab79;
}

.section-us h5 {
  width: 10%;
  border-bottom: 1px solid #cbab79;
}

.section-us .thin {
  font-weight: 100;
  font-size: 0.83em;
  color: lightgray;
}

.section-us ul {
  list-style-type: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  padding-left: 20px;
}

.section-us img {
  width: 90px;
}

.section-us p {
  margin: 15px 0px;
}

.section-us .sec-logo {
  text-align: center;
}

.section-us .sec-logo > * {
  margin: 0 10px;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

.video-container video {
  height: 100%;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.video-container .video-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3em;
  color: #cbab79;
  background-color: #00000061;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.contacts .card {
  padding: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 0;
  max-width: 50%;
}

.contacts .card input, .contacts .card select, .contacts .card textarea {
  width: 100%;
  font-size: 1.1em;
  margin: 5px 0px;
  padding: 5px;
  resize: none;
  border-radius: 5px;
  outline: none;
  border: 1px solid #cbab79;
  background-color: transparent;
}

.contacts .card input[disabled], .contacts .card select[disabled], .contacts .card textarea[disabled] {
  cursor: not-allowed !important;
  opacity: 0.5;
}

.contacts .card input[type="submit"], .contacts .card select[type="submit"], .contacts .card textarea[type="submit"] {
  cursor: pointer;
}

.contacts .card a {
  display: inline-block;
  text-decoration: none;
  color: black;
}

.float-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.fadeAnimate {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.fadeToRight {
  opacity: 0;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}

.fadeToRight.active {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.fadeToLeft {
  opacity: 0;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}

.fadeToLeft.active {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.fadeToTop {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

.fadeToTop.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.fadeToBottom {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.fadeToBottom.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.mobile {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: white;
  background: #262b38;
}

.mobile > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1px;
          flex: 1 1 1px;
  min-width: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2em;
  text-align: center;
}

.mobile .iconsStore {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.mobile .iconsStore img {
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile img {
  width: 25%;
  max-width: 40%;
}

.mobile .small {
  margin: 60px 0px;
  font-size: 0.5em;
  text-align: justify;
}

.blue-line {
  margin-top: 30px;
  width: 50%;
  height: 1px;
  background-color: var(--bluecolor);
}

@media (max-width: 500px) {
  .nav {
    position: fixed;
  }
  .nav .menu .logo {
    width: 45%;
  }
  .nav .menu .menuItem {
    overflow: hidden;
    height: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 0%;
    position: fixed;
    background: white;
    left: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav .menu-line {
    display: block;
  }
  .video-container {
    height: initial;
  }
  .video-container .video-overlay {
    font-size: 1em;
    text-align: center;
  }
  .card-two {
    padding: 20px 5%;
  }
  .card-two .separator {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    min-width: 0;
  }
  .card-two .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 200px;
    width: 100%;
    background-color: white;
    padding: 20px;
    margin: 20px;
    color: #cbab79;
    border: 1px solid;
    border-radius: 10px;
  }
  .card-six {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    background-color: white;
    padding: 20px 5%;
  }
  .card-six .primary-title {
    margin: 20px;
    color: #cbab79;
    border-bottom: 1px solid;
    width: 85%;
  }
  .card-six .card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card-six .card-content .separator {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    min-width: 0;
  }
  .card-six .card-content .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 200px;
    width: 100%;
    background-color: white;
    padding: 40px 30px;
    margin: 20px;
    color: #cbab79;
    border: 1px solid;
    border-radius: 10px;
  }
  .card-six .card-content .card .card-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .card-six .card-content .card .card-title .image {
    height: 35px;
    width: 35px;
  }
  .card-six .card-content .card .card-title .title {
    display: inline-block;
    margin: 10px 0px;
    font-weight: 900;
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    min-width: 0px;
  }
  .card-six .card-content .card .content {
    display: inline-block;
    margin: 10px 0px;
    text-align: justify;
    color: black;
  }
  .card-inline .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card-inline .card:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .card-inline .card .list-with-image img {
    max-width: 30%;
    max-height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .card-inline .card > .img, .card-inline .card > .div {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .card-inline .card > .img {
    padding-bottom: 70%;
  }
  .card-inline .card > .div {
    background: #262b38;
    color: white;
    padding: 40px;
  }
  .card-inline .card > .div h1 {
    width: 60%;
    border-bottom: 1px solid #cbab79;
  }
  .card-inline .card > .div h5 {
    width: 10%;
    border-bottom: 1px solid #cbab79;
  }
  .card-inline .card > .div .thin {
    font-weight: 100;
    font-size: 0.83em;
    color: lightgray;
  }
  .card-inline .card > .div ul {
    list-style-type: none;
  }
  .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts .card {
    padding: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 1px;
            flex: 1 1 1px;
    min-width: 100%;
    max-width: 100%;
  }
  .mobile img {
    width: 40%;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=index.css.map */