/**
 * Edison
 * Edison is an Online Education Website Template Kit
 * Exclusively on https://1.envato.market/edison-html
 *
 * @encoding        UTF-8
 * @version         1.0.0
 * @copyright       (C) 2018 - 2022 Merkulove ( https://merkulov.design/ ). All rights reserved.
 * @license         Envato License https://1.envato.market/KYbje
 * @contributors    Lamber Lilith (winter.rituel@gmail.com)
 * @support         help@merkulov.design
 **/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
html {
  scroll-behavior: smooth;
}
body,
html {
  overflow-x: hidden;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a,
button,
input,
textarea {
  background: 0 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
input[readonly],
textarea[readonly] {
  cursor: default;
}
textarea {
  resize: none;
}
img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeIn {
  -webkit-animation: 0.4s ease-in-out fadeIn;
  animation: 0.4s ease-in-out fadeIn;
}
.fadeOut {
  -webkit-animation: 0.4s ease-in-out fadeOut;
  animation: 0.4s ease-in-out fadeOut;
}
html.fixed {
  overflow: hidden;
}
body {
  background: #fbf8fe;
  font-family: Lato, sans-serif;
  color: #485870;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Semi Condensed", sans-serif;
  color: #2b3543;
  font-weight: 600;
  line-height: 1.1;
}
.h1,
h1 {
  font-size: 48px;
}
.h2,
h2 {
  font-size: 40px;
}
.h3,
h3 {
  font-size: 38px;
}
.h4,
h4 {
  font-size: 28px;
}
.h5,
h5 {
  font-size: 22px;
}
.h6,
h6 {
  font-size: 16px;
  font-weight: 600;
}
main {
  position: relative;
}
main > .underlay {
  z-index: -1;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: -o-linear-gradient(
      221.29deg,
      rgba(255, 255, 255, 0.0001) -62.66%,
      #fcf9f9 71.21%
    ),
    -o-linear-gradient(38.61deg, #6a11cb 20.14%, #2575fc 93.63%),
    url(../img/placeholder.jpg) center right/cover no-repeat;
  background: linear-gradient(
      228.71deg,
      rgba(255, 255, 255, 0.0001) -62.66%,
      #fcf9f9 71.21%
    ),
    linear-gradient(51.39deg, #6a11cb 20.14%, #2575fc 93.63%),
    url(../img/placeholder.jpg) center right/cover no-repeat;
  background-blend-mode: lighten, color, normal;
  max-height: 1480px;
  height: 100%;
}
main > .underlay:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -o-linear-gradient(
    284.28deg,
    rgba(251, 248, 254, 0.0001) -51.77%,
    #fbf8fe 88.68%
  );
  background: linear-gradient(
    165.72deg,
    rgba(251, 248, 254, 0.0001) -51.77%,
    #fbf8fe 88.68%
  );
}
.text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #29323c;
}
.text--sm {
  font-size: 14px;
}
.container {
  max-width: 1110px;
  padding: 0 20px;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}
.fade {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.fade:not(.show) {
  opacity: 0;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.panel {
  margin-bottom: 30px;
}
.panel_block .link {
  line-height: 1;
  font-size: 22px;
  font-family: "Barlow Semi Condensed", sans-serif;
  color: #3d53eb;
}
.panel_block .custom-select-opener {
  margin-bottom: 0;
  padding: 0 55px 0 30px;
}
.panel_block .icon {
  margin-right: 10px;
  position: relative;
  top: 2.5px;
}
.btn {
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  height: 54px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px;
}
.btn .text {
  line-height: 1;
  position: relative;
  top: 1px;
}
.btn--bordered {
  border: 1px solid #ededed;
}
.btn--bordered:focus,
.btn--bordered:hover {
  border-color: #2575fc;
}
.btn--arrow {
  text-transform: uppercase;
  color: #3d53eb;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.btn--arrow .icon {
  -webkit-transition: margin-left 0.3s ease-in-out;
  -o-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  margin-left: 10px;
  font-size: 14px;
}
.btn--arrow:focus .icon,
.btn--arrow:hover .icon {
  margin-left: 15px;
}
.btn--yellow {
  background: #f9d423;
  color: #29323c;
}
.btn--yellow:focus,
.btn--yellow:hover {
  -webkit-box-shadow: 0 2px 7px rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 7px rgba(255, 255, 255, 0.4);
}
.btn--gradient {
  background: -o-linear-gradient(338.59deg, #ff0844 24.85%, #ff8b67 95.39%);
  background: linear-gradient(111.41deg, #ff0844 24.85%, #ff8b67 95.39%);
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0 2px 4px rgba(43, 53, 67, 0);
  box-shadow: 0 2px 4px rgba(43, 53, 67, 0);
}
.btn--gradient .text {
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1;
  font-size: 14px;
}
.btn--gradient:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -o-linear-gradient(338.59deg, #ff8b67 24.85%, #ff0844 95.39%);
  background: linear-gradient(111.41deg, #ff8b67 24.85%, #ff0844 95.39%);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 1;
}
.btn--gradient:focus:after,
.btn--gradient:hover:after {
  opacity: 1;
}
.courses-tags .tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  height: 40px;
  padding: 0 20px;
  margin: 10px 10px 0 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.courses-tags .tag.current,
.courses-tags .tag:focus,
.courses-tags .tag:hover {
  color: #fff;
  background: #2b3543;
}
.card {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 2px 14px rgba(216, 217, 255, 0.66);
  box-shadow: 0 2px 14px rgba(216, 217, 255, 0.66);
  text-align: center;
  padding: 40px 30px !important;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.card .content {
  position: relative;
  z-index: 2;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -o-linear-gradient(307.13deg, #6a11cb 12.55%, #2575fc 108.54%);
  background: linear-gradient(142.87deg, #6a11cb 12.55%, #2575fc 108.54%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.card_media {
  background: -o-linear-gradient(316.28deg, #6a11cb 21.85%, #2575fc 104.32%);
  background: linear-gradient(133.72deg, #6a11cb 21.85%, #2575fc 104.32%);
  border-radius: 12px;
  width: 74px;
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.card_media:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
.card_media .icon {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 30px;
  -webkit-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
.card_main-title {
  margin: 0 auto 10px;
  -webkit-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
  font-size: 26px;
}
.card_main-text,
.card_main-title {
  max-width: 285px;
}
.card:hover {
  color: #fff;
  -webkit-box-shadow: 0 2px 14px rgba(112, 115, 255, 0.75);
  box-shadow: 0 2px 14px rgba(112, 115, 255, 0.75);
}
.card:hover .card_media:after,
.card:hover:after {
  opacity: 1;
}
.card:hover .card_media .icon {
  color: #3d53eb;
}
.card:hover .card_main-title {
  color: #fff;
}
.course-card_wrapper {
  background: #fff;
  -webkit-box-shadow: 0 2px 14px rgba(216, 217, 255, 0.66);
  box-shadow: 0 2px 14px rgba(216, 217, 255, 0.66);
  border-radius: 12px;
  height: 100%;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.course-card_wrapper .bottom,
.course-card_wrapper .top {
  padding: 30px;
}
.course-card_wrapper .top {
  padding-right: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.course-card_wrapper .top_icon {
  width: 64px;
  height: 64px;
  margin-right: 15px;
  border-radius: 12px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: 24px;
}
.course-card_wrapper .top_icon--blue {
  background: -o-linear-gradient(288.59deg, #6a11cb 13.53%, #2575fc 81.8%);
  background: linear-gradient(161.41deg, #6a11cb 13.53%, #2575fc 81.8%);
}
.course-card_wrapper .top_icon--orange {
  background: -o-linear-gradient(135.36deg, #f9d423 -11.62%, #f83600 85.97%);
  background: linear-gradient(314.64deg, #f9d423 -11.62%, #f83600 85.97%);
}
.course-card_wrapper .top_icon--sky {
  background: -o-linear-gradient(135deg, #0acffe 0, #495aff 100%);
  background: linear-gradient(315deg, #0acffe 0, #495aff 100%);
}
.course-card_wrapper .top_icon--pink {
  background: -o-linear-gradient(315.4deg, #ff0844 19.3%, #ffb199 160.21%);
  background: linear-gradient(134.6deg, #ff0844 19.3%, #ffb199 160.21%);
}
.course-card_wrapper .top_title {
  margin-bottom: 5px;
}
.course-card_wrapper .top_author {
  margin: 5px 0 8px;
  font-weight: 700;
  color: #868686;
}
.course-card_wrapper .top_details {
  font-weight: 900;
  color: #3d53eb;
}
.course-card_wrapper .top_author,
.course-card_wrapper .top_details {
  font-size: 14px;
  line-height: 1;
}
.course-card_wrapper .top .wrapper {
  width: calc(100% - 80px);
}
.course-card_wrapper .bottom_btn {
  padding: 0;
  width: 100%;
}
.course-card_wrapper .pricing {
  background: #e9f1fe;
  padding: 10px;
  text-align: center;
}
.course-card_wrapper .pricing_price {
  font-size: 20px;
  line-height: 1.1;
}
.course-card_wrapper:hover {
  -webkit-box-shadow: 0 2px 14px rgba(137, 139, 255, 0.5);
  box-shadow: 0 2px 14px rgba(137, 139, 255, 0.5);
}
.field {
  height: 54px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 12px;
  width: 100%;
  padding: 19px 45px 18px 20px;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.field::-webkit-input-placeholder {
  color: #979797;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-weight: 400 !important;
}
.field::-moz-placeholder {
  color: #979797;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-weight: 400 !important;
}
.field:-ms-input-placeholder {
  color: #979797;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-weight: 400 !important;
}
.field::-ms-input-placeholder {
  color: #979797;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-weight: 400 !important;
}
.field::placeholder {
  color: #979797;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  font-weight: 400 !important;
}
.field:focus {
  border-color: #e1e0e0;
}
.field:focus::-webkit-input-placeholder {
  opacity: 0;
}
.field:focus::-moz-placeholder {
  opacity: 0;
}
.field:focus:-ms-input-placeholder {
  opacity: 0;
}
.field:focus::-ms-input-placeholder {
  opacity: 0;
}
.field:focus::placeholder {
  opacity: 0;
}
.field.error {
  border-color: red;
}
input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}
input[type="checkbox"] + label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
input[type="checkbox"]:checked + label:before {
  border: 1px solid #485870;
}
input[type="checkbox"]:not(:checked) + label:before {
  border: 1px solid #979797;
}
input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
  content: "\e92f";
  font-family: icomoon;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
input[type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1) translateY(-50%);
  -ms-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
}
.pagination_pages {
  margin-right: 30px;
}
.pagination_pages-page {
  margin-right: 15px;
}
.pagination_pages-page:last-of-type {
  margin-right: 0;
}
.pagination_pages-page .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 2px solid #ededed;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  font-weight: 700;
  color: #858585;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
.pagination_pages-page .page:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: -o-linear-gradient(334.8deg, #6a11cb 5.44%, #2575fc 110.17%);
  background: linear-gradient(115.2deg, #6a11cb 5.44%, #2575fc 110.17%);
  z-index: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
.pagination_pages-page .page-number {
  position: relative;
  z-index: 2;
}
.pagination_pages-page .page.active {
  cursor: default;
}
.pagination_pages-page .page.active,
.pagination_pages-page .page:focus,
.pagination_pages-page .page:hover {
  color: #fff;
  border-color: transparent;
}
.pagination_pages-page .page.active:after,
.pagination_pages-page .page:focus:after,
.pagination_pages-page .page:hover:after {
  opacity: 1;
}
.pagination_next {
  color: #858585;
  font-size: 24px;
  line-height: 1;
}
.rating_star {
  margin-right: 13px;
  line-height: 1;
}
.rating_star:last-of-type {
  margin-right: 0;
}
.rating_star .icon {
  color: #f83600;
  font-size: 16px;
}
.quote {
  display: block;
  quotes: none;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.cover.hidden {
  visibility: hidden;
  opacity: 0;
}
.cover_label {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 10px;
  background: #3d53eb;
  z-index: 100;
  color: #fff;
  padding: 0 20px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cover_media {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}
.cover_media img {
  height: 100%;
}
.cover_media:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(35.39%, rgba(0, 0, 0, 0.0001)),
    to(#000)
  );
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.0001) 35.39%, #000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 35.39%, #000 100%);
}
.cover_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 20px 40px 20px 20px;
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cover_text-name {
  display: inline-block;
  margin-bottom: 5px;
  line-height: 1;
  color: #d5d5d5;
  font-weight: 700;
}
.cover_text-title {
  color: #fff;
  font-size: 20px;
}
.cover_play {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cover_duration {
  position: absolute;
  font-size: 12px;
  line-height: 1;
  color: #d5d5d5;
  z-index: 5;
  right: 10px;
  bottom: 10px;
}
@media screen and (min-width: 767.98px) {
  .h1,
  h1 {
    font-size: 58px;
  }
  .h2,
  h2 {
    font-size: 48px;
  }
  .h3,
  h3 {
    font-size: 44px;
  }
  .h4,
  .h5,
  h4,
  h5 {
    line-height: 1.3;
  }
  .container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 991.98px) {
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.2;
  }
  .h1,
  h1 {
    font-size: 64px;
  }
  .h2,
  h2 {
    font-size: 52px;
  }
  .h4,
  h4 {
    font-size: 32px;
  }
  .h5,
  h5 {
    font-size: 24px;
  }
  .panel {
    display: none !important;
  }
}
@media screen and (min-width: 1199.98px) {
  .container {
    padding: 0;
  }
}
a[href^="http://maps.google.com/maps"],a[href^="https://maps.google.com/maps"]
{
  display: none !important;
}
.gm-style-cc,
.gmnoprint a,
.gmnoprint span {
  display: none;
}
.gmnoprint div {
  background: 0 0 !important;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.error_message {
  color: #3d53eb;
  text-align: center;
}
.error_btn {
  margin-top: 40px;
  width: 100%;
}
.error_media {
  position: relative;
  margin-bottom: 50px;
}
.error_media lottie-player {
  display: block;
}
.error_media-code img {
  height: 100%;
}
.error_media-code .four {
  max-width: 197px;
  max-height: 197px;
  position: relative;
}
.error_media-code .four--left {
  left: 30px;
}
.error_media-code .four--right {
  right: 30px;
}
.error_media-code .zero {
  max-width: 175px;
  max-height: 175px;
  position: relative;
  margin-bottom: 40px;
}
.error_media-code .zero_search {
  max-width: 52px;
  max-height: 34px;
  position: absolute;
  top: 50%;
  left: 6%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer {
  padding: 25px 0;
}
.footer_logo {
  width: 23px;
  height: 27px;
}
@media screen and (min-width: 575.98px) {
  .error_media-code .four--left {
    left: 60px;
  }
  .error_media-code .four--right {
    right: 60px;
  }
  .error_message {
    margin-top: -50px;
  }
  .error_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 230px;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 767.98px) {
  .error_media {
    margin: -80px 0 50px;
  }
  .error_media lottie-player {
    display: block;
  }
  .error_media-code {
    margin-top: -150px;
  }
}
@media screen and (min-width: 991.98px) {
  .error_message {
    max-width: 640px;
    margin: -50px auto 0;
    line-height: 1.4;
  }
  .error_message span:first-of-type {
    display: block;
  }
}
@media screen and (min-width: 1199.98px) {
  .error_media-code {
    margin-top: -240px;
  }
}
/*# sourceMappingURL=../sourcemaps/error.css.map */
