/*
All snippets
**/
.relative {
  position: relative;
}
.text-center {
  text-align: center;
}
/*
Icomoon
**/
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  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;
}
/*
Responsive image canvas
**/
figure.image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
figure.image img {
  visibility: hidden;
}
figure.image.contain {
  background-size: contain;
}
.image-item {
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
}
/*
Flexbox snippets
**/
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
}
.align-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.align-start {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.align-end {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.justify-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.justify-evenly {
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}
.justify-between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.justify-around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.justify-end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.justify-start {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-centered {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
@media (max-width: 70em) {
  .tablet-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 40em) {
  .mobile-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/*
Colors
**/
/*
Structure
**/
body {
  background-color: #f8f8f8;
}
*:focus {
  outline: none;
}
.row .row {
  margin: 0 -1rem;
}
.row .row.center {
  max-width: 90rem;
  margin: auto;
}
.row .collapse {
  padding: 0;
}
@media (min-width: 70em) {
  [class*="grid-"] {
    margin: 0 -0.625em;
  }
}
hr {
  border: none;
  border-bottom: 1px solid #fafafa;
  margin: 40px 0;
}
/*
Fetures
**/
.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.opacity:hover {
  opacity: 0.6;
  text-decoration: none;
  cursor: pointer;
}
.opacity-translate {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.5s;
  -ms-transition: opacity 0.5s ease-in-out, transform 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s;
}
.opacity-translate:hover {
  cursor: pointer;
  opacity: 0.6;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.default-button {
  font-weight: 500;
  font-size: 18px;
  color: #010103;
  background-color: #20bbb6;
  border-radius: 25px;
  text-align: center;
  display: inline-block;
  padding: 12px 60px 12px 30px;
  border: none;
  position: relative;
  transition: background-color 0.5s;
}
@media (max-width: 40em) {
  .default-button {
    font-size: 16px;
    padding: 12px 40px 12px 20px;
  }
}
.default-button::before {
  content: url("../images/arrow-black.svg");
  position: absolute;
  right: 30px;
  top: 18px;
  line-height: 1;
}
@media (max-width: 40em) {
  .default-button::before {
    right: 20px;
  }
}
.default-button:hover {
  background-color: #fafafa;
  text-decoration: none;
}
.default-button.white {
  background-color: #fafafa;
}
.default-button.white:hover {
  background-color: #20bbb6;
}
.default-button.black {
  background-color: #010103;
  color: #fafafa;
}
.default-button.black::before {
  content: url("../images/arrow-white.svg");
}
.default-button.black:hover {
  background-color: #20bbb6;
}
.default-button.transparent {
  background-color: transparent;
  color: #fafafa;
}
.default-button.transparent::before {
  content: url("../images/arrow-white.svg");
}
.default-button.transparent:hover {
  background-color: #20bbb6;
}
.default-button.transparent.black {
  color: #010103;
}
.default-button.transparent.black::before {
  content: url("../images/arrow-black.svg");
}
.spacing {
  padding: 60px 0;
}
.spacing iframe {
  display: block;
  width: 100%;
}
@media (max-width: 40em) {
  .spacing iframe {
    margin-top: 20px;
  }
}
form input[type],
form textarea,
form select {
  border: none;
  border-bottom: 1px solid #010103;
  height: 50px;
  padding: 0 0 0 6px;
  display: block;
  width: 100%;
  color: #545759;
  margin-bottom: 16px;
  background-color: #fafafa;
}
form input[type]:focus,
form textarea:focus,
form select:focus {
  border-bottom: 1px solid #20bbb6;
  outline: 0;
}
form input[type]::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder,
form select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #545759;
}
form input[type]::-moz-placeholder,
form textarea::-moz-placeholder,
form select::-moz-placeholder {
  /* Firefox 19+ */
  color: #545759;
}
form input[type]:-ms-input-placeholder,
form textarea:-ms-input-placeholder,
form select:-ms-input-placeholder {
  /* IE 10+ */
  color: #545759;
}
form input[type="radio"],
form input[type="checkbox"] {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}
form textarea {
  background-color: #fafafa;
  padding-top: 5px;
  height: 150px;
}
/*
Slick slider
**/
.slider {
  position: relative;
}
.slider .slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 0;
  z-index: 2;
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider .slick-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #20bbb6;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.slider .slick-arrow.slick-prev {
  left: 20px;
}
@media (max-width: 80em) {
  .slider .slick-arrow.slick-prev {
    left: 0;
  }
}
.slider .slick-arrow.slick-prev::before {
  content: url("../images/arrow-left.svg");
}
.slider .slick-arrow.slick-next {
  right: 20px;
}
@media (max-width: 80em) {
  .slider .slick-arrow.slick-next {
    right: 0;
  }
}
.slider .slick-arrow.slick-next::before {
  content: url("../images/arrow-right.svg");
}
.slider .slick-arrow:hover::before {
  opacity: 0.4;
}
.slider .slick-dots {
  list-style: none;
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider .slick-dots > li {
  margin: 0 5px;
}
.slider .slick-dots > li button {
  font-size: 0;
  border: none;
  background-color: transparent;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.slider .slick-dots > li button::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ebebeb;
  opacity: 0.5;
  display: block;
  border-radius: 50%;
}
.slider .slick-dots > li.slick-active button::before {
  opacity: 1;
}
/*
Page
*/
@media (max-width: 70em) {
  .wrap-page {
    padding-top: 70px;
  }
}
