* {
  padding: 0;
  margin: 0;
}

html,
body {
  font-family: "Kanit", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

button {
  font-family: "Kanit", sans-serif;
}

#root {
  width: 100%;
}

.container {
  width: 100%;
  padding-left: -15px;
  padding-right: -15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 560px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 730px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 990px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1530px) {
  .container {
    max-width: 1440px;
  }
}

.header-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20;
  width: 100%;
  height: 50px;
  max-height: 50px;
  background-color: #3da7b9;
  color: white;
  font-size: 10px;
  font-weight: 400;
}

@media screen and (min-width: 576px) {
  .header-wrapper {
    font-size: 12px;
    height: 40px;
    max-height: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .header-wrapper {
    font-size: 15px;
  }
}

.header-wrapper .header {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
  height: 50px;
}

@media screen and (min-width: 576px) {
  .header-wrapper .header {
    height: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header-wrapper .header .group {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .header-wrapper .header .group i {
    margin-right: 1rem;
  }
}

.navbar-wrapper {
  position: fixed;
  top: 50px;
  left: 0px;
  z-index: 20;
  width: 100%;
  height: 50px;
  background-color: white;
  color: #7d7c7e;
  font-size: 20px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 576px) {
  .navbar-wrapper {
    top: 40px;
    height: 80px;
  }
}

.navbar-wrapper .navbar {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar {
    height: 80px;
  }
}

.navbar-wrapper .navbar .navbar-logo {
  height: 40px;
  width: 70px;
  margin-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .navbar-wrapper .navbar .navbar-logo {
    height: 60px;
    width: 130px;
  }
}

.navbar-wrapper .navbar .navbar-logo img {
  width: inherit;
  height: inherit;
}

.navbar-wrapper .navbar .navbar-hambuger {
  margin-right: 2rem;
  color: #3d3b3b;
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar .navbar-hambuger {
    display: none;
  }
}

.navbar-wrapper .navbar .navbar-hambuger i {
  color: inherit;
  font-size: 1.5rem;
}

.navbar-wrapper .navbar ul.navbar-menu {
  height: 100vh;
  width: 70%;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
  list-style-type: none;
  position: fixed;
  z-index: 100;
  top: 0px;
  left: -1000px;
  padding-top: 5rem;
  background-color: #3da7b8;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.navbar-wrapper .navbar ul.navbar-menu.navbar-menu-active {
  left: 0;
}

.navbar-wrapper .navbar ul.navbar-menu.navbar-menu-active .shadow {
  z-index: 90;
  position: absolute;
  top: 0;
  left: 100%;
  width: 45%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar ul.navbar-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
    margin-left: 1rem;
    position: unset;
    padding-top: 0;
    background-color: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}

@media screen and (min-width: 1024px) {
  .navbar-wrapper .navbar ul.navbar-menu {
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .navbar-wrapper .navbar ul.navbar-menu {
    margin-left: 5rem;
  }
}

.navbar-wrapper .navbar ul.navbar-menu a.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar ul.navbar-menu a.close-menu {
    display: none;
  }
}

.navbar-wrapper .navbar ul.navbar-menu li.nav-item {
  margin-bottom: 4rem;
  width: 100%;
  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;
  position: relative;
}

.navbar-wrapper .navbar ul.navbar-menu li.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 5px;
  background-color: #3da7b9;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item {
    height: 100%;
    width: auto;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item {
    width: 72px;
  }
}

@media screen and (min-width: 1200px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item {
    width: 130px;
  }
}

.navbar-wrapper .navbar ul.navbar-menu li.nav-item a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 20px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item a {
    color: #424043;
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item a {
    font-size: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item a {
    font-size: 20px;
  }
}

.navbar-wrapper .navbar ul.navbar-menu li.nav-item:hover::after {
  width: 100%;
}

.navbar-wrapper .navbar ul.navbar-menu li.nav-item:hover a {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar ul.navbar-menu li.nav-item:hover a {
    color: #3da7b9;
  }
}

.navbar-wrapper .navbar .navbar-social {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
  position: fixed;
  bottom: 5rem;
  left: -1000px;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}

.navbar-wrapper .navbar .navbar-social.navbar-social-active {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar .navbar-social {
    position: unset;
    bottom: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar .navbar-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.navbar-wrapper .navbar .navbar-social i {
  color: white;
  font-size: 2rem;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.navbar-wrapper .navbar .navbar-social i:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar .navbar-social i:hover {
    color: #3da7b9;
  }
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar .navbar-social i {
    font-size: 1rem;
    color: #424043;
  }
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar .navbar-social i {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .navbar-wrapper .navbar .navbar-social i {
    font-size: 2rem;
  }
}

.navbar-wrapper .navbar .navbar-social .btn-contact {
  background-color: #424043;
  color: white;
  padding: 5px 20px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.navbar-wrapper .navbar .navbar-social .btn-contact:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #3da7b9;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 576px) {
  .navbar-wrapper .navbar .navbar-social .btn-contact {
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) {
  .navbar-wrapper .navbar .navbar-social .btn-contact {
    font-size: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .navbar-wrapper .navbar .navbar-social .btn-contact {
    font-size: 20px;
  }
}

.slide-banner-wrapper {
  margin-top: calc(50px);
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper {
    margin-top: calc(40px + 40px);
  }
}

.slide-banner-wrapper .swiper {
  height: 400px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .swiper {
    height: 600px;
  }
}

.slide-banner-wrapper .swiper .swiper-pagination {
  text-align: left;
  width: 100px;
  left: 50%;
  bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .swiper .swiper-pagination {
    left: 8rem;
    bottom: 5rem;
  }
}

.slide-banner-wrapper .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #cccccc;
  width: 10px;
  height: 10px;
}

.slide-banner-wrapper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black !important;
}

.slide-banner-wrapper .slide {
  height: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .slide {
    height: 600px;
  }
}

.slide-banner-wrapper .slide .content {
  width: 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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .slide .content {
    padding: 1rem;
    width: 45%;
    position: unset;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

@media screen and (min-width: 1530px) {
  .slide-banner-wrapper .slide .content {
    padding: 0;
    padding-left: 8rem;
    padding-right: 3rem;
  }
}

.slide-banner-wrapper .slide .content .title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 80%;
  display: block;
  margin: auto;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .slide .content .title {
    font-size: 30px;
    background-color: unset;
    color: #424043;
    text-align: left;
    width: unset;
    margin: unset;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .slide-banner-wrapper .slide .content .title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .slide-banner-wrapper .slide .content .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .slide-banner-wrapper .slide .content .title {
    font-size: 45px;
  }
}

.slide-banner-wrapper .slide .content .subtitle {
  margin-top: 2rem;
  color: #8b8b8b;
  font-size: 15px;
  font-weight: 300;
  display: none;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .slide .content .subtitle {
    display: block;
  }
}

.slide-banner-wrapper .slide .content .btn {
  margin-top: 3rem;
  color: white;
  background-color: #3ca7b9;
  border: none;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: none;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .slide .content .btn {
    display: block;
    margin-top: 2rem;
    padding: 10px 30px;
    font-size: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .slide-banner-wrapper .slide .content .btn {
    margin-top: 3rem;
    padding: 20px 50px;
    font-size: 20px;
  }
}

.slide-banner-wrapper .slide .content .btn:hover {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.slide-banner-wrapper .slide .image {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .slide-banner-wrapper .slide .image {
    width: 55%;
  }
}

.slide-banner-wrapper .slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.introduction-wrapper {
  background-color: #3da7b9;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .introduction-wrapper {
    height: 400px;
  }
}

.introduction-wrapper::before, .introduction-wrapper:after {
  content: "";
  z-index: 0;
  position: absolute;
  bottom: 0;
  width: 300px;
  height: 90%;
  background: url(/logo/bg-flower-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper::before, .introduction-wrapper:after {
    display: block;
  }
}

.introduction-wrapper::before {
  left: 0;
}

.introduction-wrapper::after {
  right: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.introduction-wrapper .introduction {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper .introduction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
    padding: 1rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .introduction-wrapper .introduction {
    padding: 0;
  }
}

.introduction-wrapper .introduction .left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper .introduction .left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.introduction-wrapper .introduction .left .title {
  font-size: 30px;
  font-weight: 500;
  color: white;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper .introduction .left .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .introduction-wrapper .introduction .left .title {
    font-size: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .introduction-wrapper .introduction .left .title {
    font-size: 60px;
  }
}

@media screen and (min-width: 1200px) {
  .introduction-wrapper .introduction .left .title {
    font-size: 70px;
  }
}

@media screen and (min-width: 1530px) {
  .introduction-wrapper .introduction .left .title {
    font-size: 80px;
  }
}

.introduction-wrapper .introduction .left .title p {
  line-height: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper .introduction .left .title p {
    line-height: 70px;
    text-align: left;
  }
}

.introduction-wrapper .introduction .left .subtitle {
  font-size: 30px;
  font-weight: 300;
  color: white;
}

.introduction-wrapper .introduction .right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.introduction-wrapper .introduction .right .content {
  font-size: 15px;
  font-weight: 300;
  color: white;
  text-indent: 2rem;
  margin-bottom: 1rem;
}

.service-wrapper {
  width: 100%;
}

.service-wrapper .service {
  padding-top: 5rem;
}

.service-wrapper .service .title {
  font-size: 25px;
  font-weight: 500;
  color: #3ca7b9;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-wrapper .service .title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .service-wrapper .service .title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .service-wrapper .service .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .service-wrapper .service .title {
    font-size: 45px;
  }
}

.service-wrapper .service .subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #a3a3a3;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-wrapper .service .subtitle {
    font-size: 20px;
  }
}

.service-wrapper .service .content {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .service-wrapper .service .content {
    margin-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .service-wrapper .service .content {
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  .service-wrapper .service .content {
    -webkit-column-gap: 3rem;
            column-gap: 3rem;
  }
}

@media screen and (min-width: 1530px) {
  .service-wrapper .service .content {
    -webkit-column-gap: 5rem;
            column-gap: 5rem;
  }
}

.service-wrapper .service .content .left,
.service-wrapper .service .content .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.service-wrapper .service .content .left img {
  width: 100%;
}

.service-wrapper .service .content .right ul {
  list-style: none;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 1rem;
}

@media screen and (min-width: 1024px) {
  .service-wrapper .service .content .right ul {
    row-gap: 2rem;
  }
}

.service-wrapper .service .content .right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.service-wrapper .service .content .right ul li i {
  color: #3ca7b9;
  font-size: 20px;
}

.service-wrapper .service .content .right ul li .msg {
  font-size: 12px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .service-wrapper .service .content .right ul li .msg {
    font-size: 15px;
  }
}

.room-wrapper {
  position: relative;
  background-color: #f8f8f8;
  padding-top: 3rem;
  padding-bottom: 5rem;
  width: 100%;
}

.room-wrapper::before, .room-wrapper:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 470px;
  height: 570px;
  background: url(/logo/bg-flower-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}

@media screen and (min-width: 768px) {
  .room-wrapper::before, .room-wrapper:after {
    display: block;
  }
}

.room-wrapper::before {
  left: 0;
}

.room-wrapper::after {
  right: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.room-wrapper .room {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.room-wrapper .room .title {
  font-size: 25px;
  font-weight: 500;
  color: #3ca7b9;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .room-wrapper .room .title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .room-wrapper .room .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .room-wrapper .room .title {
    font-size: 45px;
  }
}

.room-wrapper .room .subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #8b8b8b;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .subtitle {
    font-size: 20px;
  }
}

.room-wrapper .room .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  margin-top: 3rem;
  padding: 1rem;
  row-gap: 2rem;
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .content {
    margin-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .room-wrapper .room .content {
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .room-wrapper .room .content {
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .room-wrapper .room .content {
    -webkit-column-gap: 50px;
            column-gap: 50px;
  }
}

.room-wrapper .room .content .card-room {
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 420px;
  background-color: white;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.room-wrapper .room .content .card-room:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .content .card-room {
    width: 420px;
  }
}

.room-wrapper .room .content .card-room .card-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #3ca7b9;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0 5rem;
  position: relative;
}

.room-wrapper .room .content .card-room .card-header::before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 73px;
  background-image: url("/logo/subtraction.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
}

.room-wrapper .room .content .card-room .card-header::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 37px;
  background-image: url("/logo/union.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 4;
}

.room-wrapper .room .content .card-room .card-header .card-title {
  background-color: #424043;
  color: white;
  font-size: 25px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  padding: 5px 5px;
  width: 300px;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.room-wrapper .room .content .card-room .card-header .card-subtitle {
  color: white;
  font-size: 25px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .content .card-room .card-header .card-subtitle {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .room-wrapper .room .content .card-room .card-header .card-subtitle {
    font-size: 35px;
  }
}

.room-wrapper .room .content .card-room .card-header .card-subtitle i {
  font-weight: inherit;
  font-size: inherit;
}

.room-wrapper .room .content .card-room .card-body {
  padding: 2rem 1rem 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 315px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 576px) {
  .room-wrapper .room .content .card-room .card-body {
    height: 260px;
    padding: 2rem 2rem 0 2rem;
  }
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .content .card-room .card-body {
    padding-top: 0;
    height: 380px;
  }
}

.room-wrapper .room .content .card-room .card-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
}

@media screen and (min-width: 576px) {
  .room-wrapper .room .content .card-room .card-body ul {
    row-gap: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .content .card-room .card-body ul {
    margin-top: 2rem;
    row-gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .room-wrapper .room .content .card-room .card-body ul {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .room-wrapper .room .content .card-room .card-body ul {
    margin-top: 4rem;
  }
}

.room-wrapper .room .content .card-room .card-body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.room-wrapper .room .content .card-room .card-body ul li i {
  font-size: 18px;
  color: #3ca7b9;
}

.room-wrapper .room .content .card-room .card-body ul li p {
  color: #414141;
  font-size: 15px;
  font-weight: 400;
}

.room-wrapper .room .content .card-room .card-body .btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  text-decoration: none;
  background-color: #3ca7b9;
  color: white;
  font-weight: 400;
  font-size: 20px;
  width: 200px;
  padding: 10px 0px;
  text-align: center;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.room-wrapper .room .content .card-room .card-body .btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .room-wrapper .room .content .card-room .card-body .btn {
    width: 300px;
  }
}

.gallery-wrapper {
  margin-top: 4rem;
}

.gallery-wrapper .gallery .title {
  font-size: 45px;
  font-weight: 500;
  color: #3da7b9;
  display: block;
  text-align: center;
}

.gallery-wrapper .gallery .subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #8c8c8c;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .gallery-wrapper .gallery .subtitle {
    font-size: 20px;
  }
}

.gallery-wrapper .gallery .group-btn {
  margin-top: 2rem;
  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;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  .gallery-wrapper .gallery .group-btn {
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.gallery-wrapper .gallery .group-btn .btn {
  background-color: #8b8b8b;
  color: white;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  width: 120px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-weight: 400;
}

.gallery-wrapper .gallery .group-btn .btn.active, .gallery-wrapper .gallery .group-btn .btn:hover {
  background-color: #3da7b9;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.gallery-wrapper .gallery .group-btn .btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .gallery-wrapper .gallery .group-btn .btn {
    font-size: 18px;
    width: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-wrapper .gallery .group-btn .btn {
    font-size: 20px;
    width: 180px;
    height: 50px;
  }
}

@media screen and (min-width: 1530px) {
  .gallery-wrapper .gallery .group-btn .btn {
    font-size: 20px;
    width: 200px;
    height: 50px;
  }
}

.gallery-wrapper .gallery .swiper {
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .gallery-wrapper .gallery .swiper {
    margin-top: 3rem;
    height: 450px;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-wrapper .gallery .swiper {
    height: 500px;
  }
}

@media screen and (min-width: 1200px) {
  .gallery-wrapper .gallery .swiper {
    height: 500px;
  }
}

@media screen and (min-width: 1530px) {
  .gallery-wrapper .gallery .swiper {
    height: 600px;
  }
}

.gallery-wrapper .gallery .swiper .group-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.gallery-wrapper .gallery .swiper .group-img img {
  width: calc(100% / 3);
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 576px) {
  .gallery-wrapper .gallery .swiper .group-img img {
    height: 12rem;
  }
}

@media screen and (min-width: 768px) {
  .gallery-wrapper .gallery .swiper .group-img img {
    height: 13rem;
  }
}

@media screen and (min-width: 1024px) {
  .gallery-wrapper .gallery .swiper .group-img img {
    height: 14rem;
  }
}

@media screen and (min-width: 1200px) {
  .gallery-wrapper .gallery .swiper .group-img img {
    height: 16rem;
  }
}

@media screen and (min-width: 1530px) {
  .gallery-wrapper .gallery .swiper .group-img img {
    height: 18rem;
  }
}

.gallery-wrapper .gallery .swiper .swiper-pagination-bullet {
  background-color: #cccccc;
}

.gallery-wrapper .gallery .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black !important;
}

.price-wrapper {
  margin-top: 5rem;
  width: 100%;
  height: 490px;
  background-image: url(/images/gallerys/26.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.price-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.price-wrapper .content {
  height: 490px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

@media screen and (min-width: 576px) {
  .price-wrapper .content {
    height: 490px;
    padding: 0;
  }
}

.price-wrapper .content .title {
  font-size: 25px;
  font-weight: 500;
  color: white;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .price-wrapper .content .title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .price-wrapper .content .title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .price-wrapper .content .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .price-wrapper .content .title {
    font-size: 45px;
  }
}

.price-wrapper .content .subtitle {
  font-size: 15px;
  font-weight: 300;
  color: white;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .price-wrapper .content .subtitle {
    font-size: 20px;
  }
}

.price-wrapper .content .price-box {
  margin-top: 2rem;
  background-color: #3ca7b9;
  color: white;
  width: 100%;
  height: 50px;
  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;
  font-size: 15px;
  font-weight: 500;
  border-radius: 15px;
}

@media screen and (min-width: 576px) {
  .price-wrapper .content .price-box {
    height: 100px;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .price-wrapper .content .price-box {
    height: 120px;
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .price-wrapper .content .price-box {
    height: 130px;
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .price-wrapper .content .price-box {
    height: 140px;
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .price-wrapper .content .price-box {
    height: 145px;
    font-size: 45px;
  }
}

.aboutus-wrapper {
  margin-top: 5rem;
  background-color: white;
  width: 100%;
}

.aboutus-wrapper .aboutus {
  margin: 3rem auto;
}

.aboutus-wrapper .aboutus .title {
  font-size: 25px;
  font-weight: 500;
  color: #3da7b9;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .aboutus-wrapper .aboutus .title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .aboutus-wrapper .aboutus .title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .aboutus-wrapper .aboutus .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .aboutus-wrapper .aboutus .title {
    font-size: 45px;
  }
}

.aboutus-wrapper .aboutus .subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #a3a3a3;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .aboutus-wrapper .aboutus .subtitle {
    font-size: 20px;
  }
}

.aboutus-wrapper .aboutus .content {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .aboutus-wrapper .aboutus .content {
    margin-top: 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.aboutus-wrapper .aboutus .content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media screen and (min-width: 1024px) {
  .aboutus-wrapper .aboutus .content .left {
    padding-left: 0;
  }
}

@media screen and (min-width: 1530px) {
  .aboutus-wrapper .aboutus .content .left {
    padding-right: 3rem;
    padding-top: 3rem;
  }
}

.aboutus-wrapper .aboutus .content .left p {
  text-indent: 2rem;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .aboutus-wrapper .aboutus .content .left p {
    font-size: 15px;
  }
}

.aboutus-wrapper .aboutus .content .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .aboutus-wrapper .aboutus .content .right {
    width: 50%;
  }
}

.aboutus-wrapper .aboutus .content .right .image {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 576px) {
  .aboutus-wrapper .aboutus .content .right .image {
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contact-wrapper {
  width: 100%;
  height: auto;
  background-color: #f8f8f8;
}

@media screen and (min-width: 768px) {
  .contact-wrapper {
    height: 560px;
  }
}

.contact-wrapper .contact {
  padding-top: 2rem;
}

.contact-wrapper .contact .title {
  text-align: center;
  display: block;
  color: #3da7b9;
  font-size: 25px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .contact-wrapper .contact .title {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .contact-wrapper .contact .title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1200px) {
  .contact-wrapper .contact .title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1530px) {
  .contact-wrapper .contact .title {
    font-size: 45px;
  }
}

.contact-wrapper .contact .subtitle {
  display: block;
  text-align: center;
  color: #a2a2a2;
  font-size: 15px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .contact-wrapper .contact .subtitle {
    font-size: 20px;
  }
}

.contact-wrapper .contact .content {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .contact-wrapper .contact .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact-wrapper .contact .content .left {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 768px) {
  .contact-wrapper .contact .content .left {
    width: 50%;
  }
}

.contact-wrapper .contact .content .left .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 1200px) {
  .contact-wrapper .contact .content .left .form {
    padding-right: 5rem;
  }
}

@media screen and (min-width: 1530px) {
  .contact-wrapper .contact .content .left .form {
    padding-right: 10rem;
  }
}

.contact-wrapper .contact .content .left .form label {
  font-size: 15px;
  font-weight: 400;
  color: black;
}

@media screen and (min-width: 1024px) {
  .contact-wrapper .contact .content .left .form label {
    font-size: 20;
  }
}

@media screen and (min-width: 1200px) {
  .contact-wrapper .contact .content .left .form label {
    font-size: 25px;
  }
}

.contact-wrapper .contact .content .left .form .form-control,
.contact-wrapper .contact .content .left .form textarea {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
  font-weight: 400;
}

.contact-wrapper .contact .content .left .form .form-control:focus,
.contact-wrapper .contact .content .left .form textarea:focus {
  border: 2px solid #71cdff;
  -webkit-box-shadow: 0px 0px 5px #71cdff;
          box-shadow: 0px 0px 5px #71cdff;
  outline: none;
}

.contact-wrapper .contact .content .left .form .form-control::-webkit-input-placeholder,
.contact-wrapper .contact .content .left .form textarea::-webkit-input-placeholder {
  font-weight: 900;
}

.contact-wrapper .contact .content .left .form .form-control:-ms-input-placeholder,
.contact-wrapper .contact .content .left .form textarea:-ms-input-placeholder {
  font-weight: 900;
}

.contact-wrapper .contact .content .left .form .form-control::-ms-input-placeholder,
.contact-wrapper .contact .content .left .form textarea::-ms-input-placeholder {
  font-weight: 900;
}

.contact-wrapper .contact .content .left .form .form-control::placeholder,
.contact-wrapper .contact .content .left .form textarea::placeholder {
  font-weight: 900;
}

.contact-wrapper .contact .content .left .form .form-control {
  height: 30px;
}

.contact-wrapper .contact .content .left .form textarea {
  height: 80px;
  resize: none;
}

.contact-wrapper .contact .content .left .form .submit {
  background-color: #3da7b9;
  color: white;
  height: 40px;
  width: 200px;
  border: none;
  border-radius: 10px;
  margin: auto;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

.contact-wrapper .contact .content .left .form .submit:hover {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
  .contact-wrapper .contact .content .left .form .submit {
    font-size: 18px;
    height: 50px;
    width: 250px;
  }
}

.contact-wrapper .contact .content .right {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  .contact-wrapper .contact .content .right {
    width: 50%;
  }
}

.contact-wrapper .contact .content .right .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 576px) {
  .contact-wrapper .contact .content .right .col-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact-wrapper .contact .content .right .col-2 .col-left,
.contact-wrapper .contact .content .right .col-2 .col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 1rem;
}

@media screen and (min-width: 576px) {
  .contact-wrapper .contact .content .right .col-2 .col-left,
  .contact-wrapper .contact .content .right .col-2 .col-right {
    padding: 0;
  }
}

.contact-wrapper .contact .content .right .col-2 .col-left {
  border-right: 1px solid #59575a;
  margin-bottom: 1rem;
}

@media screen and (min-width: 576px) {
  .contact-wrapper .contact .content .right .col-2 .col-left {
    margin-bottom: 0;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 576px) {
  .contact-wrapper .contact .content .right .col-2 .col-right {
    padding-left: 2rem;
  }
}

.contact-wrapper .contact .content .right .col-2 .address,
.contact-wrapper .contact .content .right .col-2 .phone {
  color: #7c7c7c;
  font-size: 15px;
  font-weight: 300;
}

.contact-wrapper .contact .content .right .col-2 .address {
  margin-bottom: 2rem;
}

.contact-wrapper .contact .content .right .social {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
  padding: 0 1rem;
}

@media screen and (min-width: 576px) {
  .contact-wrapper .contact .content .right .social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-wrapper .contact .content .right .social {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact-wrapper .contact .content .right .social {
    margin-top: 3rem;
  }
}

.contact-wrapper .contact .content .right .social a i {
  color: #424043;
  font-size: 2rem;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.contact-wrapper .contact .content .right .social a:hover i {
  color: #3ca7b9;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.map-wrapper {
  height: 430px;
  width: 100%;
}

.map-wrapper .map {
  height: 100%;
  width: 100%;
  border: none;
}

footer {
  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-color: #3da7b9;
  color: white;
  width: 100%;
  height: 30px;
  font-size: 13px;
  font-weight: 300;
}

footer a {
  color: inherit;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */