html {
  font-size: 62.5%;
}

body {
  background: #5C6471;
  font-size: calc(1.2rem + 0.31vw);
}

@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
h1, .h1 {
  letter-spacing: -0.16rem;
}

h2, .h2 {
  letter-spacing: -0.128rem;
}

h3, .h3 {
  letter-spacing: -0.096rem;
}

.container-full {
  padding-left: 3.2vw;
  padding-right: 3.2vw;
}

@media (max-width: 767px) {
  h1, .h1 {
    margin-bottom: 2.4rem;
  }
}
.text-underline {
  text-decoration: underline;
}

p {
  letter-spacing: -0.032rem;
}

.bigger p {
  font-size: calc(1.8rem + 0.465vw);
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
  p {
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}
@media (max-width: 767px) {
  [class*=col-] {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .row {
    margin-left: -0.4rem;
    margin-right: -0.4rem;
  }
  .mb-1 {
    margin-bottom: 0.8rem !important;
  }
  .mb-2 {
    margin-bottom: 2.4rem !important;
  }
  .mb-3 {
    margin-bottom: 3.2rem !important;
  }
  h1, .h1 {
    font-size: 4rem;
  }
  h2, .h2 {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
button:focus {
  outline: none;
}

.btn {
  padding: 1.475vw 1.86vw;
  display: inline-flex;
  align-items: center;
  font-size: calc(1.2rem + 0.31vw);
  min-height: 5.6rem;
}
.btn-icon svg,
.btn-icon img {
  margin-right: 0.62vw;
}
.btn-white {
  background: #ffffff;
  color: #434B59;
  border: 1px solid #ffffff;
  transition: opacity 0.3s;
}
.btn-white:hover {
  color: #434B59;
  opacity: 0.8;
}
.btn-white-transparent {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-transparent:hover {
  background: #ffffff;
  color: #434B59;
}
.btn-white-transparent:focus {
  background: transparent;
  color: #ffffff;
}
.btn-white-transparent:focus .icon {
  fill: #ffffff !important;
}
.btn-secondary:hover {
  background: #FF2E2D;
}
.btn-secondary:focus {
  box-shadow: none !important;
}
.btn-dark {
  background: transparent;
  color: #434B59;
  border: 1px solid #434B59;
  transition: all 0.3s;
}
.btn-dark .icon {
  fill: #2C2C2C;
  transition: all 0.3s;
}
.btn-dark:hover, .btn-dark:focus {
  color: #ffffff;
  background: #434B59;
  box-shadow: none !important;
}
.btn-dark:hover svg, .btn-dark:focus svg {
  fill: #ffffff;
}
.btn-dark:focus {
  background: #434B59 !important;
}
.btn-dark-reverse {
  background: #434B59;
  color: #ffffff;
  border: 1px solid #434B59;
}
.btn-dark-reverse:hover {
  color: #434B59;
  background: transparent;
  border: 1px solid #434B59;
}
.btn-play {
  width: 7.45vw;
  height: 7.45vw;
  min-width: 8rem;
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  border: none;
}
.btn-play:before {
  width: 7.45vw;
  height: 7.45vw;
  min-width: 8rem;
  min-height: 8rem;
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s;
  background: #ffffff;
}
.btn-play img {
  width: 1.86vw;
  margin-left: 0.62vw;
  position: relative;
}
.btn-play:hover {
  background-color: #ffffff;
}
.btn-play:hover:before {
  width: 8vw;
  height: 8vw;
  min-width: 9.6rem;
  min-height: 9.6rem;
}

@media (max-width: 767px) {
  .btn {
    padding: 0 2.4rem;
  }
  .btn-play img {
    width: 2.4rem;
  }
}
.header-menu-toggle {
  display: flex;
  align-items: center;
  color: #434B59;
}
.header-menu-toggle-icon {
  display: block;
  width: 2rem;
  height: 1.4rem;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: none;
  margin-right: 0.8rem;
}
.header-menu-toggle-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #434B59;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header-menu-toggle-icon span:nth-child(1) {
  top: 0px;
}
.header-menu-toggle-icon span:nth-child(2) {
  top: 6px;
}
.header-menu-toggle-icon span:nth-child(3) {
  top: 12px;
}
.header-menu-toggle.open .header-menu-toggle-icon span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-menu-toggle.open .header-menu-toggle-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header-menu-toggle.open .header-menu-toggle-icon span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.load-more {
  width: 100%;
  font-size: calc(1.4rem + 0.31vw);
  letter-spacing: -0.036rem;
  font-weight: 500;
  min-height: 9.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  .load-more {
    min-height: 5.6rem;
  }
}
.form-control {
  padding: 1.86vw 3.1vw;
}

.header-container {
  width: 100%;
  padding: 2.17vw 3.72vw 5.28vw 3.72vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header-container {
    margin-bottom: 2rem;
  }
}
.header-right {
  display: flex;
  align-items: center;
}

.fullscreen-menu {
  position: fixed;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  overflow-y: auto;
  display: none;
}
.fullscreen-menu.opening {
  display: block;
}
.fullscreen-menu.opening .fullscreen-menu-inner {
  display: flex;
}
.fullscreen-menu.open {
  display: block;
}
.fullscreen-menu.open .fullscreen-menu-inner {
  display: flex;
  opacity: 1;
}
.fullscreen-menu.closing .fullscreen-menu-inner {
  opacity: 0;
}
.fullscreen-menu-inner {
  display: none;
  position: relative;
  width: 100%;
  min-height: 100%;
  z-index: 200;
  right: 0;
  top: 0;
  background-color: #ffffff;
  transition: all 0.3s;
  opacity: 0;
  flex-direction: column;
  color: #434B59;
  padding: 2vw 3.73vw;
}
.fullscreen-menu-top {
  display: flex;
}
.fullscreen-menu-top-right {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
.fullscreen-menu-top-right .btn-primary {
  margin-right: 0.62vw;
  border: 1px solid transparent;
}
.fullscreen-menu-top-right .btn-primary svg {
  fill: #ffffff;
  transition: all 0.3s;
}
.fullscreen-menu-top-right .btn-primary:hover {
  background: #ffffff;
  color: #30ABA1;
  border-color: #30ABA1;
}
.fullscreen-menu-top-right .btn-primary:hover svg {
  fill: #30ABA1;
}
.fullscreen-menu-top .dropdown-lang .dropdown-menu {
  right: auto !important;
  left: 0 !important;
}
.fullscreen-menu-top .dropdown-lang .dropdown-toggle {
  color: #434B59;
}
.fullscreen-menu-top .dropdown-lang .dropdown-menu {
  background: #434B59;
  color: #ffffff;
  border-radius: 0px 24px 24px 24px;
}
.fullscreen-menu-top .dropdown-lang .dropdown-menu .dropdown-item {
  color: #ffffff;
}
.fullscreen-menu-top .dropdown-lang .dropdown-menu .dropdown-item:hover {
  background: #696f79;
}
.fullscreen-menu-close {
  background: #F8F8F8;
  border-radius: 5.6rem;
  transition: all 0.3s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.6vw;
  min-height: 5.6rem;
}
.fullscreen-menu-close img {
  margin-right: 0.31vw;
  display: block;
}
.fullscreen-menu-close:hover {
  background: #EFEFEF;
}
.fullscreen-menu-main {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5.59vw;
  padding: 0 1.24vw;
}
.fullscreen-menu-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fullscreen-menu-ul ul li {
  margin: 0;
  padding: 0;
  margin-bottom: 1.86vw;
}
.fullscreen-menu-ul ul li a {
  color: #434B59;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.064rem;
  font-size: calc(2.4rem + 0.62vw);
  transition: color 0.3s;
}
.fullscreen-menu-ul ul li a:hover {
  color: #5C6471;
}
.fullscreen-menu-social {
  width: 32.3vw;
  margin-left: auto;
}
.fullscreen-menu-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 6rem;
}
.fullscreen-menu-bottom a {
  margin-right: 1.86vw;
  color: #434B59;
  transition: all 0.3s;
}
.fullscreen-menu-bottom a:hover {
  color: #5C6471;
}

@media (max-width: 767px) {
  .fullscreen-menu-inner {
    padding: 0.8rem;
  }
  .fullscreen-menu-top {
    justify-content: space-between;
  }
  .fullscreen-menu-top .dropdown {
    display: none;
  }
  .fullscreen-menu-top-right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .fullscreen-menu-top-right .btn-primary {
    font-size: 1.6rem;
    flex-grow: 1;
    margin-right: 0.8rem;
    justify-content: center;
    white-space: nowrap;
  }
  .fullscreen-menu-top-right .btn-primary svg {
    margin-right: 1.6rem;
  }
  .fullscreen-menu-main {
    flex-direction: column;
    padding: 0;
  }
  .fullscreen-menu-ul {
    padding: 0 2.4rem;
    margin-bottom: 1.6rem;
  }
  .fullscreen-menu-ul ul li {
    margin-bottom: 2.2rem;
  }
  .fullscreen-menu-ul ul li a {
    font-size: 2rem;
    letter-spacing: -0.04rem;
  }
  .fullscreen-menu-close {
    padding: 0 2.4rem;
  }
  .fullscreen-menu-social {
    width: 100%;
  }
  .fullscreen-menu-bottom {
    flex-direction: column;
    margin-top: 3.2rem;
    padding: 0 2.4rem;
  }
  .fullscreen-menu-bottom a {
    margin-bottom: 1.6rem;
  }
  .fullscreen-menu-bottom-lang {
    padding: 0 2.4rem;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
  }
  .fullscreen-menu-bottom-lang a {
    margin-bottom: 1.6rem;
    color: #434B59;
    letter-spacing: -0.036rem;
    font-weight: 500;
  }
}
.header-menu-toggle {
  transition: all 0.3s;
}
.header-menu-toggle:hover {
  color: #ffffff;
  background: #434B59;
  border-color: #434B59;
}
.header-menu-toggle:hover .header-menu-toggle-icon span {
  background: #ffffff;
  opacity: 0.8;
}

.page-top {
  padding-left: 3.1vw;
  padding-right: 3.1vw;
}
.page-top p {
  margin-bottom: 0;
  max-width: 60rem;
}
.page-top-right .tag-icon-list {
  max-width: 27vw;
  margin-left: auto;
}

@media (max-width: 991px) {
  .page-top {
    padding: 0;
    margin-bottom: 3.2rem;
  }
  .page-top-right .tag-icon-list {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .page-top {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-top h1 {
    letter-spacing: -0.08rem;
  }
  .page-top p {
    margin-bottom: 2.4rem;
  }
}
.headline-section {
  padding-left: 3.1vw;
  padding-right: 3.1vw;
}
.headline-section p {
  margin-bottom: 0;
  max-width: 60rem;
}

.tag-icon-list {
  display: flex;
  flex-wrap: wrap;
}
.tag-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.77vw 1.55vw;
  border: 1px solid var(--white-20, rgba(255, 255, 255, 0.2));
  border-radius: 9999px;
  margin: 0.31vw;
  min-height: 4rem;
  transition: all 0.3s;
}
.tag-icon-item img {
  margin-right: 0.8rem;
}
.tag-icon-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

@media (max-width: 767px) {
  .tag-icon-item {
    padding: 0 2rem;
    font-size: 1.6rem;
    margin: 0.4rem;
  }
  .tag-icon-list.justify-content-end {
    justify-content: flex-start !important;
  }
}
.social-section {
  margin-top: 3.73vw;
  margin-bottom: 5.59vw;
}

.social-left {
  padding-left: 3.1vw;
}

.social-icon-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
}
.social-icon-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2.4rem;
  width: 15.53vw;
  height: 15.53vw;
  margin: 0.31vw;
  border: 1px solid transparent;
}
.social-icon-item .icon {
  fill: #ffffff;
  transition: all 0.3s;
}
.social-icon-item.fb {
  background: #1778F2;
  transition: all 0.3s;
  position: relative;
}
.social-icon-item.fb:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  z-index: -1;
  border-radius: 2.4rem;
}
.social-icon-item.fb:hover {
  background: rgba(23, 120, 242, 0.9);
}
.social-icon-item.instagram {
  background: #C13584;
  transition: all 0.3s;
  position: relative;
}
.social-icon-item.instagram:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  z-index: -1;
  border-radius: 2.4rem;
}
.social-icon-item.instagram:hover {
  background: rgba(193, 53, 132, 0.9);
}
.social-icon-item.tiktok {
  background: #EE1D52;
  transition: all 0.3s;
  position: relative;
}
.social-icon-item.tiktok:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  z-index: -1;
  border-radius: 2.4rem;
}
.social-icon-item.tiktok:hover {
  background: rgba(238, 29, 82, 0.9);
}
.social-icon-item.youtube {
  background: #F50000;
  transition: all 0.3s;
  position: relative;
}
.social-icon-item.youtube:before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  z-index: -1;
  border-radius: 2.4rem;
}
.social-icon-item.youtube:hover {
  background: rgba(245, 0, 0, 0.9);
}
.social-icon-item img,
.social-icon-item svg {
  height: 3.73vw;
  margin-bottom: 3.1vw;
}
.social-icon-item.light {
  max-height: 22rem;
  max-width: 22rem;
}
.social-icon-item.light img,
.social-icon-item.light svg {
  margin-bottom: 1.5vw;
}
.social-icon-item.light.fb {
  border-color: rgba(23, 120, 242, 0.2);
  background: transparent;
  color: #1778F2;
  transition: all 0.3s;
}
.social-icon-item.light.fb .icon {
  fill: #1778F2;
}
.social-icon-item.light.fb:hover {
  background: #1778F2;
  border: 1px solid transparent;
  color: #ffffff;
}
.social-icon-item.light.fb:hover .icon {
  fill: #ffffff;
}
.social-icon-item.light.instagram {
  border-color: rgba(193, 53, 132, 0.2);
  background: transparent;
  color: #C13584;
  transition: all 0.3s;
}
.social-icon-item.light.instagram .icon {
  fill: #C13584;
}
.social-icon-item.light.instagram:hover {
  background: #C13584;
  border: 1px solid transparent;
  color: #ffffff;
}
.social-icon-item.light.instagram:hover .icon {
  fill: #ffffff;
}
.social-icon-item.light.tiktok {
  border-color: rgba(238, 29, 82, 0.2);
  background: transparent;
  color: #EE1D52;
  transition: all 0.3s;
}
.social-icon-item.light.tiktok .icon {
  fill: #EE1D52;
}
.social-icon-item.light.tiktok:hover {
  background: #EE1D52;
  border: 1px solid transparent;
  color: #ffffff;
}
.social-icon-item.light.tiktok:hover .icon {
  fill: #ffffff;
}
.social-icon-item.light.youtube {
  border-color: rgba(245, 0, 0, 0.2);
  background: transparent;
  color: #F50000;
  transition: all 0.3s;
}
.social-icon-item.light.youtube .icon {
  fill: #F50000;
}
.social-icon-item.light.youtube:hover {
  background: #F50000;
  border: 1px solid transparent;
  color: #ffffff;
}
.social-icon-item.light.youtube:hover .icon {
  fill: #ffffff;
}

@media (max-width: 767px) {
  .social-section {
    margin-top: 3.2rem;
  }
  .social-icon-item {
    width: calc(50% - 0.8rem);
    margin: 0.4rem;
    min-height: 16.8rem;
  }
  .social-icon-item span {
    font-size: 1.4rem;
  }
  .social-icon-item svg {
    height: 4rem;
  }
}
.media-item {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  width: 100%;
  min-height: 34rem;
  display: flex;
}
.media-item-col {
  margin-bottom: 0.62vw;
}
.media-item-img {
  width: 100%;
}
.media-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-item-text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 3.1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.media-item-text:hover {
  background: rgba(0, 0, 0, 0.4);
}
.media-item-name {
  color: #fff;
  font-size: calc(1.8rem + 0.465vw);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.048rem;
  max-width: 16vw;
}
.media-item-date {
  color: #fff;
}
.media-item p {
  margin-bottom: 0;
}
.media-item-big .media-item-name {
  font-size: calc(2.4rem + 1.86vw);
  max-width: 30.28vw;
  letter-spacing: -0.096rem;
}

@media (max-width: 991px) {
  .media-item {
    min-height: 25rem;
  }
}
@media (max-width: 767px) {
  .media-item-col {
    margin-bottom: 0.8rem;
  }
  .media-item-text {
    padding: 2.4rem;
  }
  .media-item-name {
    font-size: 2.4rem;
    max-width: 100%;
  }
  .media-item-big .media-item-name {
    font-size: 2.4rem;
    max-width: 20rem;
    letter-spacing: -0.048rem;
  }
}
.media-video-item {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  width: 100%;
  min-height: 34rem;
  display: flex;
}
.media-video-item-col {
  margin-bottom: 0.62vw;
}
.media-video-item-img {
  width: 100%;
}
.media-video-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-video-item-text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 3.1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.media-video-item-text:hover {
  background: rgba(0, 0, 0, 0.4);
}
.media-video-item-name {
  color: #fff;
  font-size: calc(2.4rem + 1.86vw);
  max-width: 30.28vw;
  letter-spacing: -0.096rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .media-video-item-col {
    margin-bottom: 0.8rem;
  }
}
.card {
  border: none;
  border-radius: 2.4rem;
  color: #434B59;
  margin-bottom: 0.62vw;
  background: #ffffff;
  transition: background-color 0.3s;
}
.card:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
}
.card-header {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
}
.card-header .card-link {
  color: #434B59;
  font-size: calc(1.6rem + 0.31vw);
  line-height: 1.1;
  letter-spacing: -0.04rem;
  padding: 1vw 3.1vw;
  display: flex;
  width: 100%;
  min-height: 7.4vw;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.card-header .card-link:after {
  width: 4.34vw;
  height: 4.34vw;
  background: #F8F8F8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #F8F8F8 url("./../../images/front/plus.svg") no-repeat center;
  transition: transform 0.3s;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  right: 3.1vw;
}
.card-header .card-link.collapsed:after {
  transform: rotate(0);
}
.card-body {
  padding: 0 3.1vw 3.1vw 3.1vw;
}
.card-body a {
  color: #434B59;
  text-decoration: underline;
}
.card-body a:hover {
  text-decoration: none;
}
.card-body p {
  margin-bottom: 1.86vw;
  max-width: 63.27vw;
}
.card-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .card {
    margin-bottom: 0.8rem;
  }
  .card-header .card-link {
    padding: 2.4rem;
    font-size: 2rem;
    padding-right: 9.6rem;
  }
  .card-header .card-link:after {
    width: 5.6rem;
    height: 5.6rem;
    right: 2.4rem;
  }
  .card-body {
    padding: 0 2.4rem 2.4rem 2.4rem;
  }
  .card-body p {
    margin-bottom: 2.4rem;
    max-width: 100%;
  }
}
.full-video {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  min-height: 34rem;
  display: flex;
}
.full-video-img {
  width: 100%;
}
.full-video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-video-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
  padding: 3.1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.full-video-content:hover {
  background: rgba(0, 0, 0, 0.4);
}
.full-video-content .btn-play {
  position: absolute;
  right: 15.5vw;
  top: 50%;
  transform: translateY(-50%);
}
.full-video-only-btn .btn-play {
  top: 50%;
  left: 50%;
  right: unset;
  transform: translate(-50%, -50%);
}
.full-video-name {
  color: #ffffff;
  font-size: calc(2.8rem + 2.79vw);
  font-weight: 700;
  line-height: 1.1;
  max-width: 48vw;
}

@media (max-width: 767px) {
  .full-video-content {
    padding: 2.4rem;
  }
  .full-video-content .btn-play {
    position: relative;
    right: 0;
    top: 0;
    margin-top: auto;
    transform: none;
  }
  .full-video-name {
    font-size: 3.2rem;
  }
  .full-video-only-btn .btn-play {
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
  }
}
/* video modal */
.video-modal {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  justify-content: center;
  align-items: center;
  padding: 3.1vw;
  display: none;
  opacity: 0;
  transition: all 0.3s;
}
.video-modal.opening {
  display: flex;
}
.video-modal.open {
  display: flex;
  opacity: 1;
}
.video-modal-video {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  max-width: 99.6rem;
  max-height: 56rem;
  width: 100%;
  height: 100%;
}
.video-modal-video iframe {
  width: 100%;
  height: 100%;
}

button.close {
  width: 6.4rem;
  height: 6.4rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 2.4rem;
  top: 2.4rem;
  opacity: 1;
}
button.close img {
  display: block;
}
button.close:hover {
  border: 2px solid #ffffff;
  transform: scale(1.06);
}

@media (max-width: 1200px) {
  .video-modal {
    padding: 1.5rem;
  }
  .video-modal-video {
    max-width: 70rem;
    max-height: 39.4rem;
  }
}
@media (max-width: 767px) {
  .video-modal-video {
    max-width: 100%;
    max-height: 30rem;
  }
}
/* end video modal */
.white-box-item {
  display: flex;
  flex-direction: column;
  padding: 3.1vw;
  justify-content: space-between;
  min-height: 23.6vw;
  background: #ffffff;
  border-radius: 2.4rem;
  overflow: hidden;
  transition: background-color 0.3s;
}
.white-box-item:hover {
  background: rgba(255, 255, 255, 0.8);
}
.white-box-item-col {
  margin-bottom: 0.62vw;
}
.white-box-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.white-box-item-top-name {
  font-size: calc(1.8rem + 0.465vw);
  color: #434B59;
  letter-spacing: -0.048rem;
  line-height: 1.1;
  font-weight: 700;
}
.white-box-item-top img {
  width: 3.1vw;
}
.white-box-item-bottom p {
  margin-bottom: 0;
  color: #434B59;
}

@media (max-width: 767px) {
  .white-box-item {
    min-height: 34.4rem;
    padding: 2.4rem;
  }
  .white-box-item-col {
    margin-bottom: 0.8rem;
  }
  .white-box-item-top-name {
    font-size: 2.4rem;
  }
  .white-box-item-top img {
    width: 4rem;
  }
}
.switch-item {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 23.6vw;
  border-radius: 9999px;
  min-height: 17rem;
}
.switch-item-col {
  margin-bottom: 0.62vw;
}
.switch-item input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-item-circle {
  width: 20.49vw;
  height: 20.49vw;
  min-width: 14.8rem;
  min-height: 14.8rem;
  border-radius: 50%;
  background: #ffffff;
  display: block;
  position: absolute;
  transition: all 0.3s;
  left: 1.55vw;
  top: 50%;
  transform: translateY(-50%);
}
.switch-item-circle img {
  width: 100%;
}
.switch-item-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 9999px;
  border: 4px solid rgba(255, 255, 255, 0.2);
}
.switch-item-content:hover {
  border-color: #ffffff;
}
.switch-item-content:hover .switch-item-content-off {
  opacity: 1;
}
.switch-item-content:hover .switch-item-circle {
  left: 2.45vw;
}
.switch-item-content-on, .switch-item-content-off {
  font-size: calc(8rem + 3.1vw);
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.24rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.88vw;
  opacity: 0.2;
  text-transform: uppercase;
  transition: all 0.3s;
}
.switch-item-content-on {
  display: none;
  opacity: 1;
  right: auto;
  left: 3.88vw;
}
.switch-item input:checked + .switch-item-content {
  border: 4px solid #ffffff;
}
.switch-item input:checked + .switch-item-content .switch-item-circle {
  left: calc(100% - 20.49vw - 1.55vw);
}
.switch-item input:checked + .switch-item-content .switch-item-circle img {
  width: 100%;
}
.switch-item input:checked + .switch-item-content .switch-item-content-off {
  display: none;
}
.switch-item input:checked + .switch-item-content .switch-item-content-on {
  display: block;
}
.switch-item input:checked + .switch-item-content:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.switch-item input:checked + .switch-item-content:hover .switch-item-content-on {
  opacity: 1;
}
.switch-item input:checked + .switch-item-content:hover .switch-item-circle {
  left: calc(100% - 20.49vw - 1.55vw - 0.9vw);
}

@media (min-width: 768px) {
  .big-switch {
    max-width: 87%;
    margin: 0 auto;
  }
  .big-switch .switch-item {
    height: 42vw;
  }
  .big-switch .switch-item-circle {
    width: 36.3vw;
    height: 36.3vw;
    left: 2.74vw;
  }
  .big-switch .switch-item input:checked + .switch-item-content .switch-item-circle {
    left: calc(100% - 36.3vw - 2.74vw);
  }
  .big-switch .switch-item input:checked + .switch-item-content:hover .switch-item-circle {
    left: calc(100% - 36.3vw - 2.74vw - 1vw);
  }
  .big-switch .switch-item-content-on, .big-switch .switch-item-content-off {
    font-size: calc(16rem + 3.8vw);
  }
  .big-switch .switch-item-content-on {
    left: 8vw;
  }
  .big-switch .switch-item-content:hover .switch-item-circle {
    left: 3.74vw;
  }
}
@media (max-width: 991px) {
  .switch-item-content-on, .switch-item-content-off {
    font-size: calc(6rem + 2.5vw);
  }
  .switch-item-circle {
    width: 14.8rem;
    height: 14.8rem;
  }
  .switch-item-content-on {
    left: 2.6rem;
  }
  .switch-item-content-off {
    right: 2.6rem;
  }
  .switch-item input:checked + .switch-item-content .switch-item-circle {
    left: calc(100% - 14.8rem - 1.55vw);
  }
  .switch-item input:checked + .switch-item-content:hover .switch-item-circle {
    left: calc(100% - 14.8rem - 2.55vw);
  }
  .big-switch .switch-item-content-on, .big-switch .switch-item-content-off {
    font-size: calc(6rem + 2.5vw);
  }
}
.price-tag {
  border-radius: 50%;
  background: #FC6258;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: calc(1.4rem + 0.31vw);
  font-weight: 700;
  letter-spacing: -0.036rem;
  width: 7.45vw;
  height: 7.45vw;
  min-height: 8rem;
  min-width: 8rem;
}

.rounded-item {
  display: flex;
  width: 100%;
  min-height: 23.6vw;
  background-color: #ffffff;
  border-radius: 9999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.rounded-item-col {
  margin-bottom: 0.62vw;
}
.rounded-item .price-tag {
  position: absolute;
  top: 0;
  right: 0;
}
.rounded-item-name {
  color: #434B59;
  font-size: calc(2.4rem + 1.24vw);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.62vw;
}
.rounded-item-name:hover {
  color: #434B59;
}
.rounded-item-text {
  line-height: 1.1;
  font-size: calc(1.4rem + 0.31vw);
  color: #434B59;
  margin-bottom: 1.86vw;
}

@media (max-width: 1100px) {
  .rounded-item-name {
    font-size: calc(2rem + 1vw);
  }
  .rounded-item-text {
    font-size: calc(1.2rem + 0.31vw);
  }
}
@media (max-width: 991px) {
  .rounded-item .price-tag {
    font-size: calc(1.2rem + 0.31vw);
    width: 6vw;
    height: 6vw;
    min-height: 7rem;
    min-width: 7rem;
  }
  .rounded-item-name {
    font-size: calc(1.8rem + 0.5vw);
  }
  .rounded-item-text {
    font-size: calc(1.2rem + 0.2vw);
  }
}
@media (max-width: 767px) {
  .rounded-item {
    padding: 2.4rem;
    border-radius: 2.4rem;
    align-items: flex-start;
    padding-right: 9rem;
  }
  .rounded-item-name {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.048rem;
  }
  .rounded-item-text {
    font-size: 1.6rem;
  }
  .rounded-item .price-tag {
    right: 1.6rem;
    top: 1.6rem;
  }
  .rounded-item-btns {
    margin-left: 0;
    margin-right: -9rem;
  }
  .switch-row .switch-item-col {
    order: 1;
    margin-bottom: 0.8rem;
  }
  .switch-row .rounded-item-col {
    order: 2;
    margin-bottom: 0.8rem;
  }
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.86vw;
}

.tag {
  line-height: 1;
  background: #F8F8F8;
  padding: 1.24vw 1.24vw;
  color: #434B59;
  border-radius: 1.6rem;
  margin: 0.31vw;
  transition: background-color 0.3s;
}
.tag:hover {
  color: #434B59;
  background: #EFEFEF;
}

@media (max-width: 767px) {
  .tag-list {
    margin-left: -0.4rem;
    margin-right: -0.4rem;
    margin-bottom: 1.6rem;
  }
  .tag {
    font-size: 1.6rem;
    padding: 1.6rem 1.6rem;
    margin: 0.4rem;
  }
}
.dropdown-lang .dropdown-toggle {
  padding-right: 0;
  padding-left: 0;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  min-height: 0;
}
.dropdown-lang .dropdown-toggle:after {
  display: none;
}
.dropdown-lang .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  margin-top: 0.8rem;
  padding: 1.6rem;
}
.dropdown-lang .dropdown-item:hover {
  background: #F8F8F8;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
}
.dropdown-toggle img {
  margin-right: 0.31vw;
}
.dropdown-menu {
  color: #434B59;
  border-radius: 24px 0px 24px 24px;
  padding: 1.24vw;
  border: none;
}
.dropdown-menu .dropdown-item {
  color: #434B59;
  font-size: calc(1.4rem + 0.31vw);
  margin: 0.2rem 0;
  border-radius: 2.4rem;
  padding: 0.8rem 1.6rem;
  transition: all 0.3s;
}
.dropdown-menu .dropdown-item:hover {
  background: transparent;
  background: #F8F8F8;
  color: #434B59;
}

.pagination {
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.pagination .page-item {
  margin: 0.31vw;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  border-radius: 2.4rem;
}
.pagination .page-item.active .page-link {
  background: #ffffff;
  color: #434B59;
  border-color: #ffffff;
}
.pagination .page-item-dots .page-link {
  border: none;
}
.pagination .page-link {
  width: 9.6rem;
  height: 9.6rem;
  font-size: calc(1.4rem + 0.31vw);
  background: transparent;
  border: 1px solid #ffffff;
  letter-spacing: -0.036rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 2.4rem;
  transition: all 0.3s;
}
.pagination .page-link:hover {
  background: #ffffff;
  color: #434B59;
}

@media (max-width: 767px) {
  .pagination .page-item {
    margin: 0.4rem;
  }
  .pagination .page-item-dots {
    display: none;
  }
  .pagination .page-link {
    width: 5.6rem;
    height: 5.6rem;
    font-size: 1.4rem;
  }
  .pagination .page-link img {
    width: 1.6rem;
  }
}
.img-full-section img {
  width: 100%;
  margin-bottom: 3.73vw;
  border-radius: 2.4rem;
  min-height: 34rem;
  object-fit: cover;
}

.text-section {
  padding-left: 3.1vw;
  padding-right: 3.1vw;
}
.text-section p {
  max-width: 52.8vw;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  max-width: 52.8vw;
}
.text-section ul {
  margin-left: 0;
  padding-left: 2rem;
}
.text-section ul li {
  margin-left: 0rem;
}

@media (max-width: 767px) {
  .text-section p {
    max-width: 100%;
  }
  .text-section h1,
  .text-section h2,
  .text-section h3 {
    max-width: 100%;
  }
  .text-section h2, .text-section h3 {
    margin-bottom: 2rem;
  }
}
.product-item {
  width: 100%;
  background: #ffffff;
  border-radius: 2.4rem;
  padding: 3.1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s;
}
.product-item-col {
  margin-bottom: 0.62vw;
}
.product-item:hover {
  background: rgba(255, 255, 255, 0.8);
}
.product-item .price-tag {
  position: absolute;
  top: 3.1vw;
  right: 3.1vw;
}
.product-item-img {
  width: 19.4vw;
  margin-bottom: 3.1vw;
}
.product-item-img img {
  width: 100%;
}
.product-item-name {
  color: #434B59;
  font-size: calc(2.4rem + 1.24vw);
  font-weight: 700;
  letter-spacing: -0.08rem;
  margin-bottom: 0.62vw;
}
.product-item-name:hover {
  color: #434B59;
}
.product-item p {
  font-size: calc(1.4rem + 0.31vw);
  margin-bottom: 0;
  color: #434B59;
  letter-spacing: -0.036rem;
  margin-bottom: 1.86vw;
}

@media (max-width: 767px) {
  .product-item {
    padding: 4rem;
  }
  .product-item-col {
    margin-bottom: 0.8rem;
  }
  .product-item .price-tag {
    top: 1.6rem;
    right: 1.9rem;
  }
  .product-item p {
    margin-bottom: 1.6rem;
    text-align: center;
  }
  .product-item-img {
    width: 25rem;
    margin-bottom: 2.4rem;
  }
  .product-item-btns .btn:first-child {
    margin-right: 0.8rem;
  }
  .product-item-name {
    font-size: 2.4rem;
  }
}
.contact-box-item {
  display: flex;
  flex-direction: column;
  padding: 3.1vw;
  justify-content: space-between;
  min-height: 25.6vw;
  background: #ffffff;
  border-radius: 2.4rem;
  overflow: hidden;
}
.contact-box-item-col {
  margin-bottom: 0.62vw;
}
.contact-box-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-box-item-top-name {
  font-size: calc(1.8rem + 0.465vw);
  color: #434B59;
  letter-spacing: -0.048rem;
  line-height: 1.1;
  font-weight: 700;
}
.contact-box-item-bottom p {
  margin-bottom: 0;
  color: #434B59;
}
.contact-box-item-bottom-contact {
  font-size: calc(2.4rem + 0.62vw);
  color: #434B59;
  font-weight: 700;
}
.contact-box-item-bottom-contact:hover {
  color: #5C6471;
}

@media (max-width: 767px) {
  .contact-box-item {
    min-height: 34.4rem;
    padding: 2.4rem;
  }
  .contact-box-item-col {
    margin-bottom: 0.8rem;
  }
  .contact-box-item-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-box-item-top-name {
    font-size: 2rem;
    letter-spacing: -0.04rem;
    font-weight: 400;
  }
  .contact-box-item-top img {
    max-height: 4rem;
    margin-top: 2.4rem;
  }
}
.secure-box {
  width: 100%;
  background: #ffffff;
  padding: 3.1vw;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 30.4rem;
}
.secure-box-dark {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 3.1vw;
  border-radius: 2.4rem;
  min-height: 30.4rem;
}
.secure-box-dark-col {
  display: flex;
  margin-bottom: 0.62vw;
}
.secure-box-col {
  display: flex;
  margin-bottom: 0.62vw;
}
.secure-box p {
  color: #434B59;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .secure-box {
    padding: 2.4rem;
  }
  .secure-box-dark {
    padding: 2.4rem;
  }
  .secure-box-dark-col {
    margin-bottom: 0.8rem;
  }
  .secure-box-col {
    margin-bottom: 0.8rem;
  }
}
.step-item {
  background: #ffffff;
  width: 100%;
  min-height: 31vw;
  display: flex;
  flex-direction: column;
  border-radius: 2.4rem;
  padding: 3.1vw;
  color: #434B59;
}
.step-item-col {
  display: flex;
  margin-bottom: 0.62vw;
}
.step-item-num {
  font-size: calc(1.8rem + 0.465vw);
  font-weight: 700;
  letter-spacing: -0.048rem;
  margin-bottom: 1.86vw;
}
.step-item-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.step-item-img img {
  max-width: 100%;
  width: 95%;
}
.step-item p {
  margin-top: auto;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .step-item {
    min-height: 34rem;
    padding: 2.4rem;
  }
  .step-item-col {
    margin-bottom: 0.8rem;
  }
}
.simple-white-box-col {
  margin-bottom: 0.62vw;
}
.simple-white-box-item {
  display: flex;
  flex-direction: column;
  padding: 3.1vw;
  justify-content: space-between;
  min-height: 23.29vw;
  background: #ffffff;
  border-radius: 2.4rem;
  overflow: hidden;
  transition: background-color 0.3s;
}
.simple-white-box-item:hover {
  background: rgba(255, 255, 255, 0.8);
}
.simple-white-box-item-name {
  font-size: calc(1.8rem + 0.465vw);
  color: #434B59;
  letter-spacing: -0.048rem;
  line-height: 1.1;
  font-weight: 700;
}
.simple-white-box-item p {
  margin-bottom: 0;
  color: #434B59;
}

@media (max-width: 767px) {
  .simple-white-box-col {
    margin-bottom: 0.8rem;
  }
  .simple-white-box-item {
    min-height: 16.8rem;
    padding: 1.6rem 2.4rem;
  }
  .simple-white-box-item-name {
    font-size: 1.6rem;
  }
}
.product-detail-top-section {
  padding-left: 3.1vw;
  padding-right: 3.1vw;
}
.product-detail-top-left {
  max-width: 41vw;
}
.product-detail-top-right {
  display: flex;
  position: relative;
  max-width: 100%;
}
.product-detail-top-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.product-detail-top-right .price-tag {
  position: absolute;
  top: -8vw;
  right: 0;
  width: 12.4vw;
  height: 12.4vw;
  font-size: calc(2.2rem + 0.465vw);
}
.product-detail-top-img {
  display: inline-flex;
  width: 35.7vw;
}
.product-detail-top-img img {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .product-detail-top-left {
    max-width: 100%;
  }
  .product-detail-top-left-col {
    order: 2;
  }
  .product-detail-top-right-col {
    order: 1;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .product-detail-top-right .price-tag {
    width: 9.6rem;
    height: 9.6rem;
    font-size: 1.8rem;
  }
  .product-detail-top-img {
    width: 31rem;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .product-detail-top-btns {
    display: flex;
    flex-direction: column;
  }
  .product-detail-top-btns .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.8rem;
  }
}
.color-box {
  border-radius: 2.4rem;
  padding: 3.1vw;
  background: #30ABA1;
  min-height: 55rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.color-box-name {
  font-size: calc(2.8rem + 1.55vw);
  color: #ffffff;
  letter-spacing: -0.096rem;
  font-weight: 700;
}
.color-box .btn {
  margin-top: auto;
}

@media (max-width: 991px) {
  .color-box {
    min-height: 34rem;
  }
}
@media (max-width: 767px) {
  .color-box {
    min-height: 34rem;
    padding: 2.4rem;
  }
  .color-box-name {
    font-size: 2.4rem;
  }
  .color-box .btn {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.032rem;
  }
}
.map-search-form {
  display: flex;
  align-items: center;
}
.map-search-form .btn .icon {
  fill: #ffffff;
  transition: all 0.3s;
  width: 2.4rem;
  height: 2.4rem;
}
.map-search-form .btn:hover .icon {
  fill: #434B59;
}
.map-search-form-input {
  position: relative;
  margin-right: 0.62rem;
  flex-grow: 1;
}
.map-search-form-input .form-control {
  height: 9.6rem;
  font-size: calc(1.6rem + 0.31vw);
  outline: none !important;
  box-shadow: none !important;
}
.map-search-form .form-delete {
  position: absolute;
  right: 3.1vw;
  top: 50%;
  transform: translateY(-50%);
}
.map-search-form .form-delete img {
  filter: invert(63%) sepia(6%) saturate(143%) hue-rotate(177deg) brightness(92%) contrast(93%);
  transition: all 0.3s;
}
.map-search-form .form-delete:hover img {
  filter: invert(28%) sepia(15%) saturate(587%) hue-rotate(180deg) brightness(92%) contrast(90%);
}
.map-search-form .btn {
  width: 23.6vw;
  font-size: calc(1.4rem + 0.31vw);
  justify-content: center;
  text-align: center;
  height: 9.6rem;
}
.map-search-empty {
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.1vw;
  border-radius: 2.4rem;
  margin-top: 0.62vw;
  text-align: center;
}
.map-search-content {
  display: flex;
  width: 100%;
  height: 47.3vw;
  margin-top: 3.1vw;
}
.map-search-content-left {
  width: 25%;
  overflow-y: auto;
  padding-right: 1.24vw;
}
.map-search-content-left .map-item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2.4rem;
  color: #ffffff;
  transition: all 0.3s;
  margin-bottom: 0.62vw;
}
.map-search-content-left .map-item .btn-show-map {
  display: none;
}
.map-search-content-left .map-item:hover, .map-search-content-left .map-item.active {
  background: #ffffff;
  color: #434B59;
}
.map-search-content-main {
  width: 75%;
  padding-left: 0.62vw;
}

.map-inner {
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  overflow: hidden;
}

.map-item {
  padding: 2.4rem;
  padding-right: 3.2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #434B59;
  font-size: 1.6rem !important;
}
.map-item-text-head {
  font-weight: 700;
}

.gm-style .gm-style-iw-c {
  width: 28.8rem !important;
  padding: 0;
  border-radius: 2.4rem;
  overflow: hidden;
}

.gm-style .gm-style-iw-d {
  overflow: visible !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
  top: -1px;
}

.gm-style .gm-style-iw .gm-ui-hover-effect {
  background: url("./../../images/front/delete_black.svg") no-repeat center !important;
  width: 2.4rem !important;
  height: 2.4rem !important;
  top: 1.6rem !important;
  right: 1.6rem !important;
  opacity: 1;
  transition: all 0.3s;
  filter: invert(63%) sepia(6%) saturate(143%) hue-rotate(177deg) brightness(92%) contrast(93%);
}
.gm-style .gm-style-iw .gm-ui-hover-effect:hover {
  filter: invert(28%) sepia(15%) saturate(587%) hue-rotate(180deg) brightness(92%) contrast(90%);
}
.gm-style .gm-style-iw .gm-ui-hover-effect span {
  display: none !important;
}
.gm-style .gm-style-iw .gm-ui-hover-effect img {
  display: none !important;
}

.btn-map-close {
  display: none;
}

@media (max-width: 767px) {
  .map-search-form {
    flex-direction: column;
    display: flex;
  }
  .map-search-form-input {
    margin-bottom: 0.8rem;
    width: 100%;
  }
  .map-search-form-input .form-control {
    height: 5.6rem;
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .map-search-form .btn {
    font-size: 1.6rem;
    width: 100%;
    height: 5.6rem;
  }
  .map-search-form .btn .icon {
    margin-right: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
  }
  .map-search-empty {
    margin-top: 0.8rem;
    padding: 2.4rem;
  }
  .map-search-content {
    flex-direction: column;
    height: auto;
  }
  .map-search-content-left {
    width: 100%;
    height: auto;
  }
  .map-search-content-left .map-item {
    margin-bottom: 0.8rem;
    align-items: flex-start;
    padding: 1.6rem 2.4rem;
  }
  .map-search-content-left .map-item:hover .btn-show-map {
    border-color: #434B59;
    color: #434B59;
  }
  .map-search-content-left .map-item .btn-show-map {
    display: inline-flex;
    height: 4rem;
    min-height: 0;
    font-size: 1.4rem;
    padding: 0 1.6rem;
    margin-top: 1.6rem;
  }
  .map-search-content-left .map-item .btn-show-map img {
    margin-right: 0.8rem;
  }
  .map-search-content-left .map-item .btn-show-map:hover {
    background: #434B59;
    color: #ffffff;
    border-color: #434B59;
  }
  .map-search-content-main {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    padding-top: 5.6rem;
    z-index: 100;
    display: none;
  }
  .btn-map-close {
    display: block;
    position: absolute;
    right: 1.6rem;
    top: 1.6rem;
    opacity: 0.8;
  }
  .btn-map-close:hover {
    opacity: 1;
  }
  .map-inner {
    height: 100%;
  }
}
.modal-backdrop.show {
  opacity: 0.85;
}

.modal {
  color: #434B59;
}
.modal h1,
.modal h2,
.modal h3,
.modal h4,
.modal h5 {
  color: #434B59;
}
.modal-content {
  border-radius: 2.4rem;
}
.modal-body {
  padding: 3.1vw;
}
.modal-footer {
  padding: 3.1vw;
  padding-top: 0;
  border: none;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .modal-body {
    padding: 2.4rem;
  }
  .modal-footer {
    padding: 2.4rem;
    padding-top: 0;
  }
}
.alert {
  padding: 3.1vw;
  color: #ffffff;
  border: none;
  text-align: center;
  padding-right: 6vw;
  border-radius: 2.4rem;
}
.alert-success {
  background: #30ABA1;
}
.alert-danger {
  background: #FC6258;
}
.alert-warning {
  background: #E3AD21;
}
.alert .close {
  position: absolute;
  right: 3.1vw;
  top: 3.1vw;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
}

@media (max-width: 767px) {
  .alert {
    padding: 2.8rem 2.4rem;
    padding-right: 5rem;
    text-align: left;
    min-height: 9.6rem;
  }
  .alert .close {
    right: 1.6rem;
    top: 1.6rem;
  }
}
.footer-content {
  padding: 3.1vw;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2.4rem;
}
.footer-content a {
  color: #ffffff;
  transition: color 0.3s;
}
.footer-content a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  margin: 0.31vw;
  transition: opacity 0.3s;
}
.footer-social a img {
  width: 4.34vw;
}
.footer-social a:hover {
  opacity: 0.5;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  max-width: 32.6vw;
  margin-top: 3.1vw;
  margin-bottom: 5.59vw;
  justify-content: space-between;
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
}
.footer-contact-item span {
  margin-bottom: 1.24vw;
  line-height: 1;
}
.footer-contact-item a {
  color: #fff;
  font-size: calc(1.8rem + 0.465vw);
  font-weight: 700;
  letter-spacing: -0.048rem;
  line-height: 1;
}
.footer-right-content {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
}
.footer-menu {
  margin-right: 12.4vw;
}
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.footer-menu ul li {
  margin: 0;
  padding: 0;
  font-size: calc(1.4rem + 0.31vw);
  line-height: 1.1;
  margin-bottom: 1.55vw;
}
.footer-lang a {
  display: inline-flex;
  align-items: center;
}
.footer-lang a img {
  margin-right: 0.31vw;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.footer-bottom-right a {
  margin-right: 1.86vw;
}
.footer-age {
  border-radius: 2.4rem 2.4rem 0px 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, #FFF 100%);
  box-shadow: 0px -0.8rem 2.4rem 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  padding: 1.86vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.62vw;
  position: sticky;
  bottom: 0;
}
.footer-age img {
  margin-right: 1.24vw;
}
.footer-age p {
  margin-bottom: 0;
  font-size: calc(1.4rem + 0.31vw);
  letter-spacing: -0.036rem;
  font-weight: 500;
  color: #434B59;
}

@media (min-width: 1600px) {
  .footer-age {
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .footer-content {
    padding: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .footer-right-col {
    order: 1;
  }
  .footer-right-content {
    justify-content: flex-start;
    flex-direction: column;
  }
  .footer-left-col {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .footer-menu ul li {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .footer-social {
    order: 2;
    margin-bottom: 3.2rem;
  }
  .footer-social a img {
    width: 5.6rem;
  }
  .footer-contact {
    order: 1;
    max-width: 100%;
  }
  .footer-contact-item {
    margin-bottom: 2.4rem;
  }
  .footer-contact-item a {
    font-size: 2.4rem;
  }
  .footer-bottom-left {
    order: 2;
  }
  .footer-bottom-right {
    order: 1;
    margin-bottom: 2.4rem;
  }
  .footer-bottom-right a {
    margin-right: 0;
    margin-bottom: 1.6rem;
    display: inline-flex;
  }
  .footer-age {
    justify-content: center;
    padding: 1.2rem 4.5rem;
  }
  .footer-age img {
    width: 3.2rem;
    margin-right: 0.8rem;
  }
  .footer-age p {
    font-size: 1.4rem;
  }
  .footer-lang {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
