@import '../node_modules/normalize.css/normalize.css';
@import '../node_modules/bootstrap/dist/css/bootstrap-grid.css';
@font-face {
  font-family: "main";
  src: url("Montserrat-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "main";
  src: url("Montserrat-SemiBold.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "main";
  src: url("Montserrat-Bold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "main";
  src: url("Montserrat-Black.ttf");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}
.row-full {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding: 35px 0 55px;
}
.row-full.nopadding {
  padding: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("icomoon.eot?pb9imz");
  src: url("icomoon.eot?pb9imz#iefix") format("embedded-opentype"), url("icomoon.ttf?pb9imz") format("truetype"), url("icomoon.woff?pb9imz") format("woff"), url("icomoon.svg?pb9imz#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-fire:before {
  content: "\e9a9";
}

.icon-lab:before {
  content: "\e9aa";
}

.icon-codepen:before {
  content: "\eae8";
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 54.5%;
  }
}
html body {
  font-size: 1.4rem;
  font-family: "main", Helvetica, sans-serif;
  color: #333;
}
html * {
  box-sizing: border-box;
}
html img {
  max-width: 100%;
}
html .container.narrow {
  max-width: 1200px;
}
html p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
html .btn_cta {
  background-color: #FFF600;
  color: #000000;
  padding: 10px 15px;
  z-index: 10;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.7rem;
  cursor: pointer;
}
html .btn_cta:hover {
  background-color: #FF00AA;
}
html .btn_cta.fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
}
html .btn_cta img {
  width: 20px;
  margin-left: 5px;
}
html .btn {
  display: inline-block;
  color: #000000;
  background-color: #FF6EE5;
  font-weight: 600;
  font-size: 2.4rem;
  padding: 20px 40px;
  text-decoration: none;
  border: none;
  margin: 10px 0;
}
html .btn.yellow {
  background-color: #FFF600;
}
html .btn span {
  display: flex;
  align-items: center;
}
html .btn span img {
  margin-left: 10px;
  width: 25px;
  max-height: 20px;
}
@media screen and (max-width: 767px) {
  html .btn {
    font-size: 1.8rem;
    padding: 15px 30px;
  }
}
html .btn.gray {
  background-color: rgba(128, 128, 128, 0.8);
  color: white;
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 10px;
  width: calc(100% - 20px);
  z-index: 10;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: none;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav ul li a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  padding: 10px 10px;
  color: #85DCED;
}

.site-footer {
  padding: 40px;
}
.site-footer .site-info {
  font-weight: 600;
  color: #000000;
  display: flex;
}
.site-footer .site-info a {
  color: #000000;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .site-footer .site-info a {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .site-footer .site-info {
    text-align: center;
    display: block;
  }
}

.site-header {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 10;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .site-header {
    height: 90px;
  }
}
@media screen and (min-width: 768px) {
  .site-header.scrolled {
    top: 15px;
    left: 15px;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .site-header {
    top: 10px;
    left: 10px;
    width: calc(100% - 20PX);
  }
}
.site-header__content {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .site-header__content {
    padding: 10px;
  }
}
.site-header__content .logo {
  width: 50px;
  transition: all 0.3s;
}
.site-header__content .logo a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .site-header__content .logo {
    width: 30px;
  }
}
.site-header__content .header_right {
  display: flex;
  align-items: center;
}
.site-header__content .btn_ham {
  display: none;
  width: 20px;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .site-header__content .btn_ham {
    display: block;
  }
}
.site-header__content .langs {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .site-header__content .langs {
    width: 50px;
  }
}
.site-header__content .langs a {
  display: flex;
  align-items: center;
  color: #FF6EE5;
  font-weight: 600;
  font-size: 1.8rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .site-header__content .langs a {
    font-size: 1.4rem;
  }
}
.site-header__content .langs a img {
  display: block;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .site-header__content .langs a img {
    width: 20px;
  }
}
.site-header__content nav {
  position: relative;
  display: block;
  margin-top: -15px;
  margin-bottom: -15px;
  margin-left: 50px;
  margin-right: 50px;
  height: 92px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .site-header__content nav {
    display: none;
  }
}
.site-header__content nav > div {
  position: relative;
  height: 100%;
}
.site-header__content nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header__content nav ul li {
  margin: 0 20px;
  position: relative;
  display: block;
  height: 100%;
}
.site-header__content nav ul li a {
  display: flex;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  align-items: center;
  height: 100%;
  font-size: 1.6rem;
  padding: 0 5px;
  transition: all 0.3s;
}
.site-header__content nav ul li a::before {
  content: " ";
  display: block;
  width: 100%;
  height: 7px;
  background-color: #FF6EE5;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
}
.site-header__content nav ul li.current-menu-item a {
  color: #FF6EE5;
}
.site-header__content nav ul li.current-menu-item a::before {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .site-header.scrolled nav {
    height: 70px;
  }
  .site-header.scrolled .site-header__content .logo {
    width: 30px;
  }
}

.page-template-template-home .hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  background-color: white;
  overflow: hidden;
}
.page-template-template-home .hero .actions {
  margin-top: 20px;
}
.page-template-template-home .hero .actions .btn {
  margin-right: 15px;
}
.page-template-template-home .hero .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #333;
  border-radius: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow: hidden;
}
.page-template-template-home .hero .inner video {
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-template-template-home .hero .inner::after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #85DCED, #FF6EE5);
  content: " ";
  display: block;
  z-index: 1;
  opacity: 0.5;
}
.page-template-template-home .hero .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 80px);
  z-index: 3;
  color: white;
}
.page-template-template-home .hero .overlay .mh {
  width: 80%;
  max-width: 400px;
}
.page-template-template-home .hero .overlay .sub {
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .page-template-template-home .hero .overlay .sub {
    font-size: 2rem;
  }
}
.page-template-template-home .hero::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 20px solid white;
  box-sizing: border-box;
}

section {
  padding: 100px 0;
}
section.nopadding {
  padding: 0;
}
section.boxed {
  background-color: #f1f1f1;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  border-radius: 20px;
}
section.whitebg {
  background-color: white;
}
section .spilter_title {
  padding: 30px 30px;
  background-image: linear-gradient(to right, #85DCED, #FF6EE5);
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  section.narrow {
    max-width: 1000px;
    margin: 0 auto;
  }
}
section .section_title {
  font-size: 4.2rem;
  color: #FF6EE5;
  font-weight: 600;
  margin-bottom: 55px;
}
section .section_title.right {
  text-align: right;
}
section .section_title .bottom {
  font-size: 4.8rem;
}

.about {
  padding-bottom: 0;
}
.about .ab_row {
  align-items: center;
  margin: 100px auto;
}
.about .ab_row.last {
  padding-bottom: 200px;
  margin-bottom: 0;
}
.about .ab_row .content {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .about .ab_row .img {
    margin-bottom: 55px;
  }
}
.about .ab_row .img.art1 {
  position: relative;
}
.about .ab_row .img.art1 img {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.about .ab_row .img.art1::after {
  position: absolute;
  border-radius: 20px;
  content: " ";
  display: block;
  width: 100%;
  height: 60%;
  left: 20%;
  top: 50%;
  background-color: #85DCED;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about .ab_row .img.art1::after {
    top: 45%;
    left: 5%;
  }
}
.about .ab_row .img.art2 {
  position: relative;
}
.about .ab_row .img.art2 img {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.about .ab_row .img.art2::after {
  position: absolute;
  border-radius: 20px;
  content: " ";
  display: block;
  width: 100%;
  height: 60%;
  left: 10%;
  top: 10%;
  background-color: #FF00AA;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about .ab_row .img.art2::after {
    top: 45%;
    left: 5%;
  }
}
.about .ab_row .img.art3 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .about .ab_row .img.art3 {
    transform: scale(1.2);
  }
}
.about .ab_row .img.art3 img {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.about .ab_row .img.art3::after {
  position: absolute;
  border-radius: 20px;
  content: " ";
  display: block;
  width: 70%;
  height: 70%;
  left: 10%;
  top: 10%;
  background-color: #85DCED;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about .ab_row .img.art3::after {
    top: 25%;
    left: 5%;
  }
}
.about .ab_row .title {
  font-size: 3.6rem;
  font-weight: 600;
  color: #FF6EE5;
  margin-bottom: 25px;
}
.about .ab_row .title.blue {
  color: #85DCED;
}
.about .ab_row p {
  font-size: 1.7rem;
  line-height: 2.4rem;
}

.products .product_row .row {
  align-items: center;
}
.products .product_row .img {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.products .product_row .img img {
  display: block;
}
.products .product_row .content {
  padding: 30px;
  max-width: 500px;
}
.products .product_row .content .cat {
  font-size: 3rem;
  color: #FF6EE5;
  margin-bottom: 10px;
  font-weight: 600;
}
.products .product_row .content .name {
  font-size: 4rem;
  color: #85DCED;
  font-weight: 300;
  margin-bottom: 35px;
}
.products .product_row .content .text {
  margin-bottom: 35px;
}

.error404 {
  padding-top: 15px;
}
.error404 .site-header {
  display: none;
}
.error404 .btn_cta {
  display: none;
}

.error-404 {
  padding: 300px 40px;
  min-height: calc(100vh - 30px);
}
.error-404 .btn {
  margin-right: 15px;
}
.error-404 .title {
  font-size: 10rem;
}
/*# sourceMappingURL=app.css.map */