@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/* font 100/300/800 */
/* ====================================
                  Basic
   ==================================== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  color: #4c4d52;
  width: 100vw;
  margin: 0 auto;
  background: #fff;
}

/* ==== Text ==== */
@media only screen and (max-width: 450px) {
  h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 350px) {
  h1 {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 450px) {
  h2 {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 450px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 450px) {
  h4 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 450px) {
  h5 {
    font-size: 1rem;
  }
}

/* ==== a / Button ==== */
a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  text-decoration: none;
}
a:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: 0 !important;
}

button {
  background: #fff;
  border: 1px solid #d2d2d2;
  padding: 16px 24px;
  border-radius: 8px;
  margin-top: 40px;
  font-weight: bold;
}
button:hover {
  background: #4285F4;
  border: 1px solid #4285F4;
}
button:hover a {
  color: #fff;
}
button:hover a .material-symbols-outlined {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  button {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  button {
    margin-top: 10px;
    padding: 12px 24px;
  }
}
button a {
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
button a .material-symbols-outlined {
  line-height: 0;
  margin-right: 10px;
}

.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-sm {
  position: relative;
  display: inline-block;
  min-width: 240px;
  margin-top: 24px;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .btn-sm {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 576px) {
  .btn-sm {
    margin-top: 32px;
    min-width: 180px;
  }
}
.btn-sm a {
  padding: 6px 18px 8px 18px;
  font-size: 17px;
}
@media only screen and (max-width: 1200px) {
  .btn-sm a {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 768px) {
  .btn-sm a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .btn-sm a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 400px) {
  .btn-sm a {
    font-size: 13px;
  }
}

.btn-red a {
  background: #DB4437;
}

.btn-line a {
  background: #06C755;
}

.btn-blue a {
  background: #4181EB;
}

.btn-dark-blue a {
  background: #3A4761;
}

/* ==== Title ==== */
.title {
  text-align: center;
}
.title h1 {
  color: #000;
  margin: 30px 0 20px 0;
  line-height: 38px;
}
@media only screen and (max-width: 450px) {
  .title h1 {
    margin: 20px 0 15px 0;
  }
}
.title h5 {
  color: #000;
  margin-bottom: 15px;
  line-height: 25px;
}
.title p {
  color: #000;
  font-size: 18px;
}

.secondary-title {
  color: #525E79;
  font-size: 32px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .secondary-title {
    font-size: 28px;
  }
}

.subtitle {
  font-size: 20px;
}

.focus-line {
  position: relative;
}
.focus-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 12px;
  bottom: -8px;
  left: 0;
  background: url("../images/focus-line.svg") repeat-x;
}

img {
  max-width: 100%;
}

.deco-yellow svg {
  fill: #FFBE06 !important;
}

.deco-dark-blue svg {
  fill: #7E90B8 !important;
}

/* ====================================
                 Header
   ==================================== */
header {
  position: fixed;
  z-index: 50;
  width: 100%;
  background: #F8F8F8;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 10px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 10px 15px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 635px) {
  header {
    height: 61.5px;
  }
}
@media only screen and (max-width: 450px) {
  header {
    height: 58.5px;
  }
}
header .nav-list {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
}
@media only screen and (max-width: 635px) {
  header .nav-list {
    -ms-flex-wrap: initial;
        flex-wrap: initial;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    display: inline-block;
  }
}
@media only screen and (max-width: 635px) {
  header .nav-list .nav-item {
    display: inline-block;
  }
}
header .nav-list .nav-item .nav-link {
  color: #969696;
  padding: 1rem 1.5rem;
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  header .nav-list .nav-item .nav-link {
    padding: 1rem;
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  header .nav-list .nav-item .nav-link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 450px) {
  header .nav-list .nav-item .nav-link {
    font-size: 16px;
    padding: 1rem 0.5rem;
  }
}
header .nav-list .nav-item .nav-link.active {
  color: #4285F4;
  border-bottom: 2.5px solid #4285F4;
}
header .nav-list .nav-item .nav-link:hover {
  color: #4285F4;
}

/* ====================================
                 Common
   ==================================== */
.body {
  position: relative;
}
.body .container-fluid {
  padding: 0;
}
.body .container-fluid section {
  margin: 40px auto;
}
.body .container-fluid section .row {
  margin-right: 0;
  margin-left: 0;
}
.body .container-fluid .bg-deco-store {
  width: 100%;
  height: 60px;
  background: url("../images/bg-deco-store.png");
  z-index: 0;
  position: absolute;
  margin-top: -45px;
}
.body .container-fluid .bg-deco-contact {
  width: 100%;
  height: 40px;
  background: url("../images/bg-deco-contact.png");
  z-index: 0;
  position: absolute;
  margin-top: -40px;
}
.body .container-fluid .bg-deco {
  width: 100%;
  height: 45px;
  height: 67px;
  background: url("../images/bg-deco2.svg");
  background: url("../images/bg-deco-store.png");
  z-index: 0;
  position: absolute;
  margin-top: -3%;
  margin-top: -67px;
}
.body .footer-deco {
  position: absolute;
  right: 10px;
  bottom: 0;
  top: unset;
  z-index: 1;
  width: 440px;
}
@media only screen and (max-width: 1925px) {
  .body .footer-deco {
    width: 380px;
  }
}
@media only screen and (max-width: 1735px) {
  .body .footer-deco {
    width: 320px;
  }
}
@media only screen and (max-width: 1625px) {
  .body .footer-deco {
    width: 280px;
  }
}
@media only screen and (max-width: 1440px) {
  .body .footer-deco {
    width: 240px;
  }
}
@media only screen and (max-width: 1280px) {
  .body .footer-deco {
    width: 200px;
  }
}
@media only screen and (max-width: 1005px) {
  .body .footer-deco {
    width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .body .footer-deco {
    width: 150px;
  }
}
@media only screen and (max-width: 576px) {
  .body .footer-deco {
    width: 120px;
  }
}
@media only screen and (max-width: 450px) {
  .body .footer-deco {
    width: 100px;
  }
}
@media only screen and (max-width: 350px) {
  .body .footer-deco {
    width: 70px;
  }
}
.body #line, .body #phone {
  position: fixed;
  right: 10px;
  z-index: 100;
  cursor: pointer;
  border: none;
  background: none;
  width: 50px;
  height: 50px;
  border-radius: 200px;
  padding: 10px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15), 0 5px 5px rgba(0, 0, 0, 0.15);
}
.body #line:focus, .body #phone:focus {
  outline: none;
}
.body #line:hover, .body #phone:hover {
  opacity: 0.85;
}
@media only screen and (max-width: 450px) {
  .body #line, .body #phone {
    width: 45px;
    height: 45px;
    padding: 8px;
  }
}
.body #line img, .body #phone img {
  width: 100%;
}
.body #line {
  top: 90px;
  background: #06C755;
}
@media only screen and (max-width: 450px) {
  .body #line {
    top: 70px;
  }
}
.body #phone {
  top: 150px;
  background: #4181EB;
}
@media only screen and (max-width: 450px) {
  .body #phone {
    top: 130px;
  }
}

/* ====================================
                 Google
   ==================================== */
.store {
  margin: 0 auto !important;
  padding: 80px 0;
  background-color: #F7F8FA;
  text-align: center;
}
.store .row.store-feature-area {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
  padding: 0 32px;
}
.store .title {
  margin-bottom: 80px;
}
.store .store-feature {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 330px;
  height: 324px;
  padding: 40px 24px;
  background-color: #fff;
  color: #978148;
  border: 1px solid #E1A70E;
  border-radius: 60px 24px;
  -webkit-box-shadow: 12px 16px 0px 5px rgba(225, 167, 14, 0.24);
          box-shadow: 12px 16px 0px 5px rgba(225, 167, 14, 0.24);
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .store .store-feature {
    max-width: 304px;
    padding: 24px 16px;
    height: 216px;
    font-size: 18px;
  }
}
.store .store-feature .focus {
  padding: 24px 0;
  color: #E1A70E;
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .store .store-feature .focus {
    padding: 16px 0;
    font-size: 24px;
    line-height: 120%;
  }
}
.store .store-feature .small-text {
  color: #464646;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .store .store-feature .small-text {
    font-size: 14px;
  }
}
.store .store-feature.store-feature-one {
  margin-top: 2em;
}
.store .store-feature.store-feature-two {
  color: #5A6C56;
  border: 1px solid #60A850;
  -webkit-box-shadow: 12px 16px 0px 5px rgba(96, 168, 80, 0.24);
          box-shadow: 12px 16px 0px 5px rgba(96, 168, 80, 0.24);
}
.store .store-feature.store-feature-two .focus {
  color: #60A850;
}
.store .store-feature.store-feature-three {
  margin-top: 2em;
  color: #525E79;
  border: 1px solid #5085F7;
  -webkit-box-shadow: 12px 16px 0px 5px rgba(80, 133, 247, 0.24);
          box-shadow: 12px 16px 0px 5px rgba(80, 133, 247, 0.24);
}
.store .store-feature.store-feature-three .focus {
  color: #5085F7;
}
@media only screen and (max-width: 768px) {
  .store .store-feature.store-feature-three .focus {
    padding: 12px 0;
  }
}
.store .store-feature.store-feature-three .big-text {
  font-size: 45px;
  font-weight: bold;
  padding: 0 4px 0 8px;
}
.store .store-feature .person1 {
  position: absolute;
  left: -60px;
  top: 48px;
}
.store .store-feature .person2 {
  position: absolute;
  right: -200px;
  top: 104px;
}
@media only screen and (max-width: 768px) {
  .store .store-feature .person2 {
    width: 160px;
    right: -80px;
  }
}
.store .secondary-title {
  margin: 88px 16px 8px;
}
@media only screen and (max-width: 768px) {
  .store .secondary-title {
    margin: 124px 16px 8px;
  }
}
.store .store-point-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 56px 0 20px;
}
@media only screen and (max-width: 768px) {
  .store .store-point-list {
    gap: 40px;
  }
}
.store .store-point-list .store-point-item {
  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;
  gap: 16px;
  width: auto;
}
.store .store-point-list .store-point-item .item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 20px;
}

#google {
  margin: 60px auto 0 auto;
  padding: 100px 0 0 0;
}
@media only screen and (max-width: 768px) {
  #google {
    margin: 20px auto 0 auto;
  }
}
@media only screen and (max-width: 450px) {
  #google {
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
}
#google .intro {
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 991px) {
  #google .intro {
    text-align: center;
  }
}
#google .intro .left {
  padding-right: 80px;
}
@media only screen and (max-width: 1440px) {
  #google .intro .left {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  #google .intro .left {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 450px) {
  #google .intro .left {
    padding: 0;
  }
}
#google .intro .left .title {
  text-align: left;
}
@media only screen and (max-width: 991px) {
  #google .intro .left .title {
    text-align: center;
  }
}
#google .intro .left img {
  width: 100px;
}
@media only screen and (max-width: 1440px) {
  #google .intro .left img {
    width: 70px;
  }
}
@media only screen and (max-width: 450px) {
  #google .intro .left img {
    width: 50px;
  }
}
#google .intro .left h5 {
  color: #4285F4;
}
#google .intro .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 450px) {
  #google .intro .right {
    padding: 0;
  }
}
#google .focus {
  color: #E1A70E;
  font-size: 20px;
  font-weight: bold;
}
#google .focus b {
  font-size: 26px;
  font-weight: 900;
}
#google .reserve-feature {
  position: relative;
  text-align: center;
  margin: 32px 32px;
}
#google .reserve-feature .secondary-title {
  padding-bottom: 24px;
}
#google .reserve-feature .reserve-feature-person {
  margin-top: -56px;
}
@media only screen and (max-width: 768px) {
  #google .reserve-feature .reserve-feature-person {
    margin-right: -100px;
  }
}
#google .service {
  text-align: center;
  margin: 80px auto;
  background-image: url("../images/bg-deco.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
}
#google .service .content {
  margin: 0 auto;
  padding: 0 15px;
}
#google .service .content .list {
  margin: 20px auto;
  padding-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  #google .service .content .list {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  #google .service .content .list {
    padding-top: 0;
  }
}
#google .service .content .list .item {
  width: 20%;
  padding: 0;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  #google .service .content .list .item {
    width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  #google .service .content .list .item {
    margin-top: 10px;
  }
}
#google .service .content .list .item .icon {
  width: 30%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  #google .service .content .list .item .icon {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  #google .service .content .list .item .icon {
    width: 30%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 576px) {
  #google .service .content .list .item .icon {
    margin-bottom: 15px;
  }
}
#google .service .content .list .item h6 {
  color: #000;
  margin-bottom: 0;
}
#google .service .content .list .item .phone {
  width: 100%;
}
#google .deco {
  position: absolute;
  left: 0;
  top: unset;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  #google .deco {
    width: 80px;
    margin-top: -30px;
  }
}
@media only screen and (max-width: 768px) {
  #google .deco {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 500px) {
  #google .deco {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 450px) {
  #google .deco {
    width: 70px;
    margin-top: -60px;
  }
}
@media only screen and (max-width: 350px) {
  #google .deco {
    width: 60px;
    margin-top: -60px;
  }
}
#google .process {
  background: #f7f8fa;
  padding: 80px 0 40px 0;
}
@media only screen and (max-width: 991px) {
  #google .process {
    padding: 120px 0 40px 0;
  }
}
@media only screen and (max-width: 576px) {
  #google .process {
    padding: 120px 0 20px 0;
  }
}
#google .process .content {
  margin: 0 auto;
  padding: 0 15px;
}
#google .process .content .title {
  z-index: 2;
  position: relative;
}
#google .process .content .list {
  margin: 20px auto;
  padding-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  #google .process .content .list {
    padding-top: 0;
  }
}
#google .process .content .list .item {
  width: 20%;
  padding: 0;
  text-align: center;
  margin: 20px auto 0 auto;
}
@media only screen and (max-width: 991px) {
  #google .process .content .list .item {
    width: 45%;
  }
}
@media only screen and (max-width: 450px) {
  #google .process .content .list .item {
    width: 44%;
  }
}
@media only screen and (max-width: 350px) {
  #google .process .content .list .item {
    width: 43%;
  }
}
#google .process .content .list .item .phone {
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 576px) {
  #google .process .content .list .item .phone {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 350px) {
  #google .process .content .list .item .phone {
    margin-bottom: 15px;
  }
}
#google .process .content .list .item h4 {
  color: #000;
  margin: 10px auto;
}
@media only screen and (max-width: 1440px) {
  #google .process .content .list .item h4 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1200px) {
  #google .process .content .list .item h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 991px) {
  #google .process .content .list .item h4 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 450px) {
  #google .process .content .list .item h4 {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 350px) {
  #google .process .content .list .item h4 {
    font-size: 0.87rem;
  }
}
#google .process .content .list .arrow {
  width: 45px;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  #google .process .content .list .arrow {
    width: 35px;
  }
}
@media only screen and (max-width: 991px) {
  #google .process .content .list .arrow:last-of-type {
    display: none;
  }
}
#google .process2 {
  background: #f7f8fa;
  margin: 0 auto;
  padding: 5px 0 40px 0;
}
#google .process2 .content {
  margin: 0 auto;
  padding: 0 15px;
}
#google .process2 .content .title {
  z-index: 2;
  position: relative;
}
#google .process2 .content .list {
  margin: 20px auto;
  padding-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  #google .process2 .content .list {
    padding-top: 0;
  }
}
#google .process2 .content .list .item {
  width: 20%;
  padding: 0;
  text-align: center;
  margin: 20px auto 0 auto;
}
@media only screen and (max-width: 991px) {
  #google .process2 .content .list .item {
    width: 45%;
  }
}
@media only screen and (max-width: 450px) {
  #google .process2 .content .list .item {
    width: 44%;
  }
}
@media only screen and (max-width: 350px) {
  #google .process2 .content .list .item {
    width: 43%;
  }
}
#google .process2 .content .list .item .phone {
  width: 100%;
  margin-bottom: 0px;
}
#google .process2 .content .list .item h4 {
  color: #000;
  margin: 10px auto;
}
@media only screen and (max-width: 1440px) {
  #google .process2 .content .list .item h4 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1200px) {
  #google .process2 .content .list .item h4 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 991px) {
  #google .process2 .content .list .item h4 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 450px) {
  #google .process2 .content .list .item h4 {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 350px) {
  #google .process2 .content .list .item h4 {
    font-size: 0.87rem;
  }
}
#google .process2 .content .list .arrow {
  width: 45px;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  #google .process2 .content .list .arrow {
    width: 35px;
  }
}
@media only screen and (max-width: 991px) {
  #google .process2 .content .list .arrow:nth-child(4) {
    display: none;
  }
}

.deco-google {
  position: absolute;
  width: 360px;
  right: 0;
  -webkit-transform: translate(30%, -88%);
          transform: translate(30%, -88%);
  z-index: 1;
}

/* ====================================
                Preview
   ==================================== */
#preview {
  background: #f7f8fa;
  margin: 0 auto;
  padding: 60px 0 100px 0;
}
@media only screen and (max-width: 1200px) {
  #preview {
    padding: 20px 0 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  #preview {
    padding: 1px 0 80px 0;
    margin: -20px auto 0 auto;
  }
}
@media only screen and (max-width: 576px) {
  #preview {
    padding: 1px 0 60px 0;
    margin: -30px auto 0 auto;
  }
}
@media only screen and (max-width: 450px) {
  #preview {
    margin: -40px auto 0 auto;
  }
}

/* ====================================
                Partner
   ==================================== */
#partner {
  background: #fff;
  z-index: 2;
  position: relative;
  margin: -25px auto 0;
  padding-top: 55px;
}
@media only screen and (max-width: 576px) {
  #partner {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 450px) {
  #partner {
    margin-top: -20px;
  }
}
#partner .big {
  display: block;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  #partner .big {
    display: none;
  }
}
#partner .small {
  display: none;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  #partner .small {
    display: block;
  }
}
#partner .content {
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  #partner .content {
    padding: 0 13px;
  }
}
#partner .content .title {
  padding: 0 15px;
}
@media only screen and (max-width: 450px) {
  #partner .content .title {
    padding: 0;
  }
}
#partner .content .title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#partner .content .title h1 br.mob {
  display: none;
}
@media only screen and (max-width: 576px) {
  #partner .content .title h1 br.mob {
    display: block;
  }
}
#partner .content .title h1 span {
  display: block;
}
@media only screen and (max-width: 576px) {
  #partner .content .title h1 span {
    display: none;
  }
}
#partner .content .bottom-sontent {
  padding: 30px 10px 0 10px;
  text-align: center;
  z-index: 2;
  margin-top: 50px;
  position: relative;
  background: #4181EB;
  border-radius: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  #partner .content .bottom-sontent {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent {
    margin-top: 20px;
  }
}
#partner .content .bottom-sontent h2 {
  color: #FFDF32;
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent h2 {
    padding: 0 0 0 8px;
    font-size: 1.6rem;
  }
}
#partner .content .bottom-sontent .left {
  padding: 0;
  width: 33.3%;
}
@media only screen and (max-width: 1550px) {
  #partner .content .bottom-sontent .left {
    width: 40%;
  }
}
@media only screen and (max-width: 1300px) {
  #partner .content .bottom-sontent .left {
    width: 42%;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .content .bottom-sontent .left {
    width: 40%;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .left {
    width: 100%;
  }
}
#partner .content .bottom-sontent .left .deco {
  position: absolute;
  top: -20px;
  left: 20%;
  width: 55%;
}
@media only screen and (max-width: 1550px) {
  #partner .content .bottom-sontent .left .deco {
    top: -50px;
    left: 30%;
    width: 45%;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .left .deco {
    width: 25%;
    top: -50px;
    right: 20px;
    left: unset;
  }
}
@media only screen and (max-width: 600px) {
  #partner .content .bottom-sontent .left .deco {
    right: 10px;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .left .deco {
    display: none;
  }
}
#partner .content .bottom-sontent .left .image {
  width: 35%;
  -ms-flex-line-pack: end;
      align-content: end;
  display: -ms-grid;
  display: grid;
  padding: 0;
}
@media only screen and (max-width: 1650px) {
  #partner .content .bottom-sontent .left .image {
    width: 32%;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .left .image {
    width: 20%;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .left .image {
    display: none;
  }
}
#partner .content .bottom-sontent .left .image .huge {
  width: 100%;
}
#partner .content .bottom-sontent .left .list-content {
  width: 65%;
  padding: 0;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0%, -25%);
          transform: translate(0%, -25%);
}
@media only screen and (max-width: 1650px) {
  #partner .content .bottom-sontent .left .list-content {
    width: 68%;
  }
}
@media only screen and (max-width: 1550px) {
  #partner .content .bottom-sontent .left .list-content {
    top: 40%;
  }
}
@media only screen and (max-width: 1440px) {
  #partner .content .bottom-sontent .left .list-content {
    top: 35%;
  }
}
@media only screen and (max-width: 1350px) {
  #partner .content .bottom-sontent .left .list-content {
    top: 30%;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .content .bottom-sontent .left .list-content {
    top: 35%;
  }
}
@media only screen and (max-width: 1130px) {
  #partner .content .bottom-sontent .left .list-content {
    top: 32%;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .left .list-content {
    width: 50%;
    margin: 50px 0 0 70px;
    position: unset;
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 870px) {
  #partner .content .bottom-sontent .left .list-content {
    width: 60%;
    margin: 30px 0 0 30px;
  }
}
@media only screen and (max-width: 820px) {
  #partner .content .bottom-sontent .left .list-content {
    width: 70%;
    margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .left .list-content {
    width: 90%;
    margin: 10px auto 0 auto;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 400px) {
  #partner .content .bottom-sontent .left .list-content {
    width: 100%;
    padding-left: 15px;
  }
}
#partner .content .bottom-sontent .left .list-content .list .item {
  color: #fff;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(1) .subtitle:nth-child(1) h5 {
  background: #17bbef;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(1) .subtitle:nth-child(2) h5 {
  background: #fcac34;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(2) .subtitle:nth-child(1) h5 {
  background: #904eff;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(2) .subtitle:nth-child(2) h5 {
  background: #00c986;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(3) .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(3) .subtitle:nth-child(1) h5 {
  background: #f77c7e;
}
#partner .content .bottom-sontent .left .list-content .list .item:nth-child(3) .subtitle:nth-child(2) h5 {
  background: #e84592;
}
#partner .content .bottom-sontent .left .list-content .list .item .subtitle {
  position: relative;
  width: 50%;
  padding: 10px;
}
#partner .content .bottom-sontent .left .list-content .list .item .subtitle img {
  width: 60px;
  position: absolute;
  left: -12px;
  top: 0;
}
@media only screen and (max-width: 1800px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle img {
    width: 55px;
    top: 3px;
  }
}
@media only screen and (max-width: 1250px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle img {
    width: 50px;
    top: 4px;
  }
}
@media only screen and (max-width: 1080px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle img {
    width: 45px;
    top: 6px;
  }
}
#partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
  padding: 6px 24px 8px 0;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 1950px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 15px 8px 0;
  }
}
@media only screen and (max-width: 1800px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 12px 8px 0;
  }
}
@media only screen and (max-width: 1550px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 24px 8px 0;
  }
}
@media only screen and (max-width: 1440px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 18px 8px 0;
  }
}
@media only screen and (max-width: 1350px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 12px 8px 0;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 22px 8px 0;
  }
}
@media only screen and (max-width: 1130px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 16px 8px 0;
  }
}
@media only screen and (max-width: 1080px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 12px 8px 0;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    text-align: center;
    padding: 6px 0 8px 12px;
  }
}
@media only screen and (max-width: 576px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 0 8px 8px;
  }
}
@media only screen and (max-width: 500px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    padding: 6px 0 8px 0;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .left .list-content .list .item .subtitle h5 {
    font-size: 17px;
    padding: 6px 0 8px 5px;
  }
}
#partner .content .bottom-sontent .left .list-content .list .item p {
  font-size: 18px;
}
@media only screen and (max-width: 1350px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 1250px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1080px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 350px) {
  #partner .content .bottom-sontent .left .list-content .list .item p {
    font-size: 16px;
  }
}
#partner .content .bottom-sontent .right {
  -ms-flex-line-pack: end;
      align-content: end;
  display: -ms-grid;
  display: grid;
  padding-right: 0;
  width: 66.6%;
}
@media only screen and (max-width: 1550px) {
  #partner .content .bottom-sontent .right {
    width: 60%;
  }
}
@media only screen and (max-width: 1300px) {
  #partner .content .bottom-sontent .right {
    width: 58%;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .content .bottom-sontent .right {
    width: 60%;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .right {
    width: 100%;
    margin-top: -120px;
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  #partner .content .bottom-sontent .right {
    margin-top: -140px;
  }
}
@media only screen and (max-width: 900px) {
  #partner .content .bottom-sontent .right {
    margin-top: -132px;
  }
}
@media only screen and (max-width: 850px) {
  #partner .content .bottom-sontent .right {
    margin-top: -125px;
  }
}
@media only screen and (max-width: 820px) {
  #partner .content .bottom-sontent .right {
    margin-top: -105px;
  }
}
@media only screen and (max-width: 768px) {
  #partner .content .bottom-sontent .right {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 730px) {
  #partner .content .bottom-sontent .right {
    margin-top: -70px;
  }
}
@media only screen and (max-width: 700px) {
  #partner .content .bottom-sontent .right {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .right {
    margin-top: -25px;
  }
}
#partner .content .bottom-sontent .right img {
  width: 100%;
  position: relative;
  bottom: -50px;
}
@media only screen and (max-width: 1900px) {
  #partner .content .bottom-sontent .right img {
    bottom: -46px;
  }
}
@media only screen and (max-width: 1800px) {
  #partner .content .bottom-sontent .right img {
    bottom: -44px;
  }
}
@media only screen and (max-width: 1700px) {
  #partner .content .bottom-sontent .right img {
    bottom: -42px;
  }
}
@media only screen and (max-width: 1600px) {
  #partner .content .bottom-sontent .right img {
    bottom: -38px;
  }
}
@media only screen and (max-width: 1550px) {
  #partner .content .bottom-sontent .right img {
    bottom: -34px;
  }
}
@media only screen and (max-width: 1450px) {
  #partner .content .bottom-sontent .right img {
    bottom: -32px;
  }
}
@media only screen and (max-width: 1350px) {
  #partner .content .bottom-sontent .right img {
    bottom: -28px;
  }
}
@media only screen and (max-width: 1250px) {
  #partner .content .bottom-sontent .right img {
    bottom: -26px;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .content .bottom-sontent .right img {
    bottom: -30px;
  }
}
@media only screen and (max-width: 1100px) {
  #partner .content .bottom-sontent .right img {
    bottom: -28px;
  }
}
@media only screen and (max-width: 1050px) {
  #partner .content .bottom-sontent .right img {
    bottom: -26px;
  }
}
@media only screen and (max-width: 1020px) {
  #partner .content .bottom-sontent .right img {
    bottom: -44px;
  }
}
@media only screen and (max-width: 991px) {
  #partner .content .bottom-sontent .right img {
    bottom: -46px;
  }
}
@media only screen and (max-width: 900px) {
  #partner .content .bottom-sontent .right img {
    bottom: -42px;
  }
}
@media only screen and (max-width: 850px) {
  #partner .content .bottom-sontent .right img {
    bottom: -40px;
  }
}
@media only screen and (max-width: 800px) {
  #partner .content .bottom-sontent .right img {
    bottom: -36px;
  }
}
@media only screen and (max-width: 768px) {
  #partner .content .bottom-sontent .right img {
    width: 110%;
    margin-left: -26px;
    bottom: -48px;
  }
}
@media only screen and (max-width: 740px) {
  #partner .content .bottom-sontent .right img {
    margin-left: -24px;
  }
}
@media only screen and (max-width: 730px) {
  #partner .content .bottom-sontent .right img {
    margin-left: -22px;
  }
}
@media only screen and (max-width: 680px) {
  #partner .content .bottom-sontent .right img {
    width: 111%;
    margin-left: -24px;
  }
}
@media only screen and (max-width: 620px) {
  #partner .content .bottom-sontent .right img {
    width: 112%;
  }
}
@media only screen and (max-width: 576px) {
  #partner .content .bottom-sontent .right img {
    width: 113%;
    margin-left: -26px;
  }
}
@media only screen and (max-width: 530px) {
  #partner .content .bottom-sontent .right img {
    width: 114%;
  }
}
@media only screen and (max-width: 500px) {
  #partner .content .bottom-sontent .right img {
    width: 115%;
  }
}
@media only screen and (max-width: 450px) {
  #partner .content .bottom-sontent .right img {
    width: 117%;
    bottom: -22px;
  }
}
@media only screen and (max-width: 400px) {
  #partner .content .bottom-sontent .right img {
    width: 118.5%;
  }
}
@media only screen and (max-width: 350px) {
  #partner .content .bottom-sontent .right img {
    width: 122%;
  }
}
#partner .google-booking {
  margin: 120px auto 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 1440px) {
  #partner .google-booking {
    margin: 70px auto 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  #partner .google-booking {
    padding: 0;
    margin: 40px auto 0 auto;
    text-align: center;
  }
}
@media only screen and (max-width: 450px) {
  #partner .google-booking {
    margin: 15px auto 0 auto;
  }
}
#partner .google-booking .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  #partner .google-booking .left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (max-width: 768px) {
  #partner .google-booking .left {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 576px) {
  #partner .google-booking .left {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 400px) {
  #partner .google-booking .left {
    margin-top: -20px;
  }
}
#partner .google-booking .left img {
  width: 100%;
}
@media only screen and (max-width: 450px) {
  #partner .google-booking .left img {
    width: 103%;
    margin-left: -5px;
  }
}
#partner .google-booking .right {
  padding-left: 80px;
  margin-top: 40px;
}
@media only screen and (max-width: 1440px) {
  #partner .google-booking .right {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 450px) {
  #partner .google-booking .right {
    padding: 0;
  }
}
#partner .google-booking .right .huge-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  #partner .google-booking .right .huge-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#partner .google-booking .right .huge-title img {
  width: 110px;
  z-index: 1;
}
@media only screen and (max-width: 1440px) {
  #partner .google-booking .right .huge-title img {
    width: 95px;
  }
}
@media only screen and (max-width: 1200px) {
  #partner .google-booking .right .huge-title img {
    width: 85px;
  }
}
#partner .google-booking .right .huge-title div {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#86affb), to(#3774f9));
  background-image: linear-gradient(180deg, #86affb, #3774f9);
  padding: 4px;
  border-radius: 50px;
  margin-left: -60px;
}
#partner .google-booking .right .huge-title div h2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3774f9), to(#86affb));
  background-image: linear-gradient(180deg, #3774f9, #86affb);
  padding: 6px 36px 10px 60px;
  border-radius: 50px;
  color: #fff;
  text-shadow: 1.5px 1.5px 3px #868686;
  margin-bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1200px) {
  #partner .google-booking .right .huge-title div h2 {
    padding: 6px 18px 10px 56px;
    font-size: calc(1.1rem + 0.9vw);
  }
}
#partner .google-booking .right .title {
  text-align: left;
  margin: 30px 0 0 30px;
}
@media only screen and (max-width: 991px) {
  #partner .google-booking .right .title {
    margin: 25px 0 0 0;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  #partner .google-booking .right .title {
    margin: 10px 0 0 0;
  }
}
@media only screen and (max-width: 450px) {
  #partner .google-booking .right .title {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 400px) {
  #partner .google-booking .right .title {
    padding: 0 20px;
  }
}
#partner .google-booking .right .title h5 {
  color: #4285F4;
}
@media only screen and (max-width: 768px) {
  #partner .google-booking .right .title h5 {
    margin-bottom: 10px;
  }
}
#partner .gross-margin {
  margin: 120px auto 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 1440px) {
  #partner .gross-margin {
    margin: 70px auto 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  #partner .gross-margin {
    padding: 0;
    margin: 40px auto 0 auto;
    text-align: center;
  }
}
@media only screen and (max-width: 450px) {
  #partner .gross-margin {
    margin: 15px auto 0 auto;
  }
}
#partner .gross-margin .left {
  padding-left: 80px;
  margin-top: 40px;
}
@media only screen and (max-width: 1440px) {
  #partner .gross-margin .left {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 450px) {
  #partner .gross-margin .left {
    padding: 0;
  }
}
#partner .gross-margin .left .huge-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  #partner .gross-margin .left .huge-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#partner .gross-margin .left .huge-title div {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF4D6), to(#FFBE06));
  background-image: linear-gradient(180deg, #FFF4D6, #FFBE06);
  padding: 4px;
  border-radius: 50px;
}
#partner .gross-margin .left .huge-title div h2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFBE06), to(#FFF4D6));
  background-image: linear-gradient(180deg, #FFBE06, #FFF4D6);
  padding: 6px 36px 10px 36px;
  border-radius: 50px;
  color: #fff;
  text-shadow: 1.5px 1.5px 3px #868686;
  margin-bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1200px) {
  #partner .gross-margin .left .huge-title div h2 {
    padding: 6px 18px 10px 18px;
    font-size: calc(1.1rem + 0.9vw);
  }
}
#partner .gross-margin .left .title {
  text-align: left;
  margin: 30px 0 0 10px;
}
@media only screen and (max-width: 991px) {
  #partner .gross-margin .left .title {
    margin: 25px 0 0 0;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  #partner .gross-margin .left .title {
    margin: 10px 0 0 0;
  }
}
@media only screen and (max-width: 450px) {
  #partner .gross-margin .left .title {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 400px) {
  #partner .gross-margin .left .title {
    padding: 0 20px;
  }
}
#partner .gross-margin .left .title h5 {
  color: #FFBE06;
}
@media only screen and (max-width: 768px) {
  #partner .gross-margin .left .title h5 {
    margin-bottom: 10px;
  }
}
#partner .gross-margin .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  #partner .gross-margin .right {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 576px) {
  #partner .gross-margin .right {
    margin-top: -10px;
  }
}
#partner .gross-margin .right img {
  width: 100%;
}
@media only screen and (max-width: 450px) {
  #partner .gross-margin .right img {
    width: 103%;
    margin-left: -5px;
  }
}

/* ====================================
               Conference
   ==================================== */
#conference {
  background: #fff;
  z-index: 1;
  position: relative;
  margin: -25px auto 0;
  padding-top: 80px;
}
@media only screen and (max-width: 576px) {
  #conference {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 450px) {
  #conference {
    margin-top: -20px;
  }
}
#conference .content {
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  #conference .content {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 350px) {
  #conference .content {
    padding: 0 6px;
  }
}
#conference .content .title {
  padding: 0 15px;
}
@media only screen and (max-width: 450px) {
  #conference .content .title {
    padding: 0;
  }
}
@media only screen and (max-width: 350px) {
  #conference .content .title {
    padding: 0 8px;
  }
}
#conference .content .title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#conference .content .title h5 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 576px) {
  #conference .content .title h5 {
    margin-bottom: 20px;
  }
}
#conference .content .title p {
  color: #555555;
  background: #F4F4F4;
  border-radius: 10px;
  padding: 10px 28px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
}
@media only screen and (max-width: 450px) {
  #conference .content .title p {
    padding: 10px 18px;
  }
}
@media only screen and (max-width: 991px) {
  #conference .content .title p span {
    display: none;
  }
}
#conference .content .title p br.lg-show {
  display: none;
}
@media only screen and (max-width: 991px) {
  #conference .content .title p br.lg-show {
    display: block;
  }
}
#conference .content .bottom-content {
  text-align: center;
  margin: 40px auto 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  #conference .content .bottom-content {
    margin: 35px auto 0 auto;
  }
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content {
    margin: 20px auto 0 auto;
  }
}
#conference .content .bottom-content .item {
  margin: 15px 0;
}
@media only screen and (max-width: 576px) {
  #conference .content .bottom-content .item {
    margin: 10px 0;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content .item {
    padding: 0 6px;
  }
}
@media only screen and (max-width: 350px) {
  #conference .content .bottom-content .item {
    padding: 0 5px;
  }
}
#conference .content .bottom-content .item .card {
  margin-bottom: 0;
  border-radius: 10px;
}
#conference .content .bottom-content .item .card .card-header {
  border-bottom: none;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 768px) {
  #conference .content .bottom-content .item .card .card-header {
    font-size: 24px;
  }
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content .item .card .card-header {
    font-size: 20px;
  }
}
#conference .content .bottom-content .item .card .card-header h4 {
  margin-bottom: 0;
}
#conference .content .bottom-content .item .card .card-body {
  color: #555555;
  font-size: 16px;
  display: block;
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content .item .card .card-body {
    padding: 15px 8px;
  }
}
#conference .content .bottom-content .item .card .card-body p {
  margin-bottom: 0;
  line-height: 26px;
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content .item .card .card-body p {
    font-size: 14.5px;
    letter-spacing: -0.5px;
  }
}
#conference .content .bottom-content .item .card .card-body p span {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #555555;
}
#conference .content .bottom-content .item .card .card-footer {
  background: none;
  padding: 0.5rem;
}
@media only screen and (max-width: 350px) {
  #conference .content .bottom-content .item .card .card-footer {
    padding: 0.5rem 0.25rem;
  }
}
#conference .content .bottom-content .item .card .card-footer p {
  margin-bottom: 0;
  font-size: 15px;
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content .item .card .card-footer p {
    font-size: 14.5px;
  }
}
#conference .content .bottom-content .item .card br.mob {
  display: none;
}
@media only screen and (max-width: 450px) {
  #conference .content .bottom-content .item .card br.mob {
    display: block;
  }
}
#conference .content .bottom-content .item:nth-child(1) .card {
  border: 1px solid #FFBE06;
}
#conference .content .bottom-content .item:nth-child(1) .card .card-header {
  background: #FFBE06;
}
#conference .content .bottom-content .item:nth-child(2) .card {
  border: 1px solid #06C755;
}
#conference .content .bottom-content .item:nth-child(2) .card .card-header {
  background: #06C755;
}
#conference .content .bottom-content .item:nth-child(3) .card {
  border: 1px solid #4285F4;
}
#conference .content .bottom-content .item:nth-child(3) .card .card-header {
  background: #4285F4;
}
#conference .content .bottom-content .item:nth-child(4) .card {
  border: 1px solid #DB4437;
}
#conference .content .bottom-content .item:nth-child(4) .card .card-header {
  background: #DB4437;
}
#conference .content .conference-content {
  margin: 20px auto;
  text-align: center;
}
#conference .content .conference-content h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0 auto;
}
#conference .content .conference-content .image {
  text-align: center;
}
#conference .content .conference-content .image .big {
  display: block;
  width: 55%;
  margin: 10px auto 0 auto;
}
@media only screen and (max-width: 1440px) {
  #conference .content .conference-content .image .big {
    width: 65%;
  }
}
@media only screen and (max-width: 991px) {
  #conference .content .conference-content .image .big {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  #conference .content .conference-content .image .big {
    display: none;
  }
}
#conference .content .conference-content .image .small {
  display: none;
  margin-top: 20px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #conference .content .conference-content .image .small {
    display: block;
  }
}
#conference .content .conference-content button {
  margin: 0 auto;
}

/* ====================================
                Digital Store
   ==================================== */
.digital-store {
  position: relative;
  margin: 0 !important;
  padding: 70px 16px 80px;
  background-color: #fff;
  text-align: center;
}
.digital-store h1 {
  margin-top: 0;
}
.digital-store .digital-store-price-area {
  margin: 64px 16px 48px;
}
.digital-store .digital-store-advantage-area {
  margin-bottom: 40px;
}
.digital-store .digital-store-arrow {
  position: absolute;
  margin-top: 12px;
  margin-left: -40px;
  z-index: 2;
}
.digital-store .advantage-lg {
  width: 45%;
}
@media only screen and (max-width: 1440px) {
  .digital-store .advantage-lg {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) {
  .digital-store .advantage-lg {
    width: 60%;
  }
}
@media only screen and (max-width: 991px) {
  .digital-store .advantage-lg {
    width: 80%;
  }
}
@media only screen and (max-width: 780px) {
  .digital-store .advantage-lg {
    width: 90%;
  }
}
.digital-store .advantage-sm {
  width: 55%;
}
@media only screen and (max-width: 600px) {
  .digital-store .advantage-sm {
    width: 70%;
  }
}
@media only screen and (max-width: 500px) {
  .digital-store .advantage-sm {
    width: 80%;
  }
}
@media only screen and (max-width: 400px) {
  .digital-store .advantage-sm {
    width: 100%;
  }
}

/* ====================================
                Course
   ==================================== */
.course {
  position: relative;
  margin: 0 auto !important;
  padding: 80px 0 0;
  background: #F7F8FA;
  text-align: center;
}
.course .items {
  position: relative;
  display: inline-block;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .course .items {
    margin-top: 20px;
  }
}
.course .items .item-deco {
  position: absolute;
  right: -72px;
  top: -40px;
}
.course .deco-course {
  position: absolute;
  width: 360px;
  left: 0;
  -webkit-transform: translate(30%, 20%);
  transform: translate(-32%, -28%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .course .subtitle {
    padding: 20px 0;
  }
}

/* ====================================
                Contact
   ==================================== */
#contact {
  z-index: 1;
  position: relative;
  margin: 0 auto;
  padding: 80px 0;
  background: #fff;
  background: #F7F8FA;
}
#contact .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#414451), to(#959bba));
  background-image: linear-gradient(180deg, #414451, #959bba);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3349a8), to(#76a1ff));
  background-image: linear-gradient(180deg, #3349a8, #76a1ff);
  padding: 4px;
  border-radius: 50px;
  margin: 30px auto 20px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 991px) {
  #contact .title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#contact .title h1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#959bba), to(#414451));
  background-image: linear-gradient(180deg, #959bba, #414451);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6695fd), to(#1944a1));
  background-image: linear-gradient(180deg, #6695fd, #1944a1);
  padding: 6px 32px 14px 32px;
  border-radius: 50px;
  color: #fff;
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1200px) {
  #contact .title h1 {
    padding: 6px 24px 14px 24px;
  }
}
#contact .bottom-sontent {
  margin: 0 auto;
  padding: 48px 20px 48px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  #contact .bottom-sontent {
    padding: 30px 20px 120px 20px;
  }
}
@media only screen and (max-width: 576px) {
  #contact .bottom-sontent {
    padding: 30px 20px 80px 20px;
  }
}
@media only screen and (max-width: 450px) {
  #contact .bottom-sontent {
    padding: 20px 0px 50px 0px;
  }
}
#contact .bottom-sontent .one {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .bottom-sontent .one .left-1, #contact .bottom-sontent .one .left-2 {
  padding: 0 60px;
}
@media only screen and (max-width: 1750px) {
  #contact .bottom-sontent .one .left-1, #contact .bottom-sontent .one .left-2 {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1550px) {
  #contact .bottom-sontent .one .left-1, #contact .bottom-sontent .one .left-2 {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1375px) {
  #contact .bottom-sontent .one .left-1, #contact .bottom-sontent .one .left-2 {
    padding: 0 15px;
  }
}
#contact .bottom-sontent .one .left-1 a, #contact .bottom-sontent .one .left-2 a {
  padding: 8px 20px 10px 20px;
  font-size: 20px;
}
@media only screen and (max-width: 1200px) {
  #contact .bottom-sontent .one .left-1 a, #contact .bottom-sontent .one .left-2 a {
    font-size: 18px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 768px) {
  #contact .bottom-sontent .one .left-1 a, #contact .bottom-sontent .one .left-2 a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  #contact .bottom-sontent .one .left-1 a, #contact .bottom-sontent .one .left-2 a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 350px) {
  #contact .bottom-sontent .one .left-1 a, #contact .bottom-sontent .one .left-2 a {
    font-size: 14px;
  }
}
#contact .bottom-sontent .two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 450px) {
  #contact .bottom-sontent .left-1 {
    padding: 0 7.5px 0 15px !important;
  }
}
#contact .bottom-sontent .left-1 a {
  background: #DB4437;
}
@media only screen and (max-width: 450px) {
  #contact .bottom-sontent .left-2 {
    padding: 0 15px 0 7.5px !important;
  }
}
#contact .bottom-sontent .left-2 a {
  background: #FFBE06;
}
@media only screen and (max-width: 450px) {
  #contact .bottom-sontent .btn-red {
    padding: 0 12px 0 15px !important;
  }
}
@media only screen and (max-width: 350px) {
  #contact .bottom-sontent .btn-red {
    padding: 0 7.5px 0 15px !important;
  }
}
#contact .bottom-sontent .btn-red a {
  background: #DB4437;
}
#contact .bottom-sontent .btn-red a.outside-text {
  position: absolute;
  width: 160px;
  margin-top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: transparent;
  color: #DB4437;
  font-size: 100%;
}
@media only screen and (max-width: 450px) {
  #contact .bottom-sontent .btn-line {
    padding: 0 12px 0 15px !important;
  }
}
@media only screen and (max-width: 350px) {
  #contact .bottom-sontent .btn-line {
    padding: 0 7.5px 0 15px !important;
  }
}
#contact .bottom-sontent .btn-line .icon {
  width: 28px;
  margin-right: 20px;
}
@media only screen and (max-width: 576px) {
  #contact .bottom-sontent .btn-line .icon {
    width: 20px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 400px) {
  #contact .bottom-sontent .btn-line .icon {
    width: 18px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 350px) {
  #contact .bottom-sontent .btn-line .icon {
    width: 15px;
    margin-right: 4px;
  }
}
@media only screen and (max-width: 450px) {
  #contact .bottom-sontent .btn-blue {
    padding: 0 15px 0 12px !important;
  }
}
@media only screen and (max-width: 350px) {
  #contact .bottom-sontent .btn-blue {
    padding: 0 15px 0 7.5px !important;
  }
}
#contact .bottom-sontent .btn-blue a:last-of-type {
  background: none;
  color: #4181EB;
  opacity: 0.65;
  padding: 5px 0;
  font-size: 100%;
}
#contact .bottom-sontent .btn-blue a .icon {
  width: 23px;
  margin-right: 20px;
}
@media only screen and (max-width: 576px) {
  #contact .bottom-sontent .btn-blue a .icon {
    width: 17px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 350px) {
  #contact .bottom-sontent .btn-blue a .icon {
    width: 13px;
    margin-right: 5px;
  }
}

/* ====================================
                 Footer
   ==================================== */
footer {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  border-top: 1px solid #d2d2d2;
  background-color: #f7f8fa;
}
footer img {
  width: 160px;
}
@charset "UTF-8";


*:focus,
a:focus,
button:focus,
input:focus,
:focus {
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }

#preview {
  position: relative; }

.ribbon {
  line-height: 34px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 60px; }

.ribbon:before, .ribbon:after {
  height: 0;
  width: 0;
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0; }

.ribbon-style {
  background-color: #FFBE06;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
  .ribbon-style:before {
    border-color: #FFBE06 #FFBE06 #FFBE06 transparent;
    left: -33px;
    border-width: 17px; }
    @media (max-width: 767.98px) {
      .ribbon-style:before {
        left: -66px;
        top: 0;
        border-width: 34px; } }
  .ribbon-style:after {
    border-color: #FFBE06 transparent #FFBE06 #FFBE06;
    right: -33px;
    border-width: 17px; }
    @media (max-width: 767.98px) {
      .ribbon-style:after {
        right: -66px;
        top: 0;
        border-width: 34px; } }

.deco-1 {
  position: absolute;
  width: 360px;
  right: 0;
  -webkit-transform: translate(30%, 20%);
  transform: translate(30%, 20%);
  z-index: 1; }
  @media (max-width: 1199.98px) {
    .deco-1 {
      width: 250px;
      -webkit-transform: translate(40%, 50%);
      transform: translate(40%, 50%); } }
  .deco-1 svg {
    fill: #DB4437; }

.deco-2 {
  position: absolute;
  width: 400px;
  bottom: 0;
  -webkit-transform: translate(-20%, 40%);
  transform: translate(-20%, 40%); }
  .deco-2 svg {
    fill: #FFBE06; }

.text-blue {
  color: #4181EB; }

.display-on {
  display: show !important; }

.display-off {
  display: none !important; }

.preview-wrapper {
  background: #E6F2FB;
  height: 760px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  border-radius: 10px;
  position: relative; }
  @media (max-width: 767.98px) {
    .preview-wrapper {
      height: 900px; } }
  .preview-wrapper-mobile {
    background: #E6F2FB;
    border-radius: 10px;
    color: #4181EB;
    height: 300px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .preview-wrapper-mobile span {
      font-size: 40px;
      color: #ffc107;
      border: 2px solid #ffc107;
      width: 60px;
      height: 60px;
      border-radius: 30px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 2rem; }

.preview-controller {
  width: 430px;
  background: #4181EB;
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2); }
  @media (max-width: 767.98px) {
    .preview-controller {
      display: none; } }
  .preview-controller h4 {
    font-size: 20px;
    margin-bottom: 1rem; }
    .preview-controller h4 a {
      text-decoration: none; }
  .preview-controller p {
    font-size: 16px; }

.preview-screen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  overflow: hidden; }

.preview-reminder {
  color: #4181EB;
  font-weight: bold;
  margin-top: 20px; }

.preview-deco {
  position: absolute;
  bottom: 0;
  width: 50vw; }
  .preview-deco-top {
    position: absolute;
    top: 130px;
    right: 0;
    -webkit-transform: translateX(40%);
    transform: translateX(40%); }

.mapview {
  max-width: 800px;
  width: 90%;
  height: 600px;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  border-radius: 10px; }
  .mapview.view-mobile {
    width: 380px;
    height: 568px;
    padding: 16px;
    background: #f8fafd;
    -webkit-box-sizing: content-box;
    box-sizing: content-box; }
    @media (max-width: 767.98px) {
      .mapview.view-mobile {
        width: 300px; } }

.map-input-wrapper {
  padding-left: 24px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  background: #fff;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 48px;
  border-bottom: 1px solid transparent;
  -webkit-transition-property: background,box-shadow;
  -webkit-transition-property: background,-webkit-box-shadow;
  transition-property: background,-webkit-box-shadow;
  transition-property: background,box-shadow;
  transition-property: background,box-shadow,-webkit-box-shadow;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  padding: 12px 10px 11px 24px; }
  .map-input-wrapper input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: none;
    width: 100%; }
  .map-input-wrapper .btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: auto; }
    .map-input-wrapper .btns div {
      padding: 0 5px; }
    .map-input-wrapper .btns div:first-child {
      border-right: 1px solid #e1e1e1; }

.name-input {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px; }

.map-info-panel {
  position: relative;
  max-width: 380px;
  min-width: 380px;
  height: 100%;
  background: #fff;
  overflow: hidden;
  z-index: 2;
  -webkit-box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.2); }
  .view-mobile .map-info-panel {
    border-radius: 10px;
    -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2); }
    @media (max-width: 767.98px) {
      .view-mobile .map-info-panel {
        min-width: 300px;
        max-width: 300px; } }

.map-info-data > div {
  padding-left: 15px;
  padding-right: 15px; }

.map-info-data h3 {
  color: #000;
  font-size: 20px;
  font-weight: normal;
  margin-top: 1rem; }

.map-menu-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 10px 22px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: auto;
  width: auto; }

.divider {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  margin-top: 10px;
  margin-bottom: 10px; }

.map-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  color: #70757a;
  font-size: 14px;
  border-bottom: 1px solid #e1e1e1;
  margin-top: 10px; }
  .map-menu div {
    padding-bottom: 10px; }
  .map-menu .active {
    color: #1768E5;
    border-bottom: 3px solid #1768E5; }

.stars {
  color: #ffc561; }

.map-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #70757a;
  font-size: 10px; }
  .map-rating .stars span {
    font-size: 18px; }

.btn-primary-border {
  color: #1768E5;
  border: 1px solid #1768E5;
  border-radius: 50rem;
  font-size: 14px;
  position: relative; }
  .btn-primary-border:after {
    content: '';
    display: block;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50rem;
    -webkit-animation-name: increase;
    animation-name: increase;
    -webkit-animation-duration: 1.15s;
    animation-duration: 1.15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
  .btn-primary-border:hover {
    color: #1768E5;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02); }

@-webkit-keyframes increase {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0px 0px 1px #1768E5;
    box-shadow: 0px 0px 1px #1768E5;
    -webkit-box-shadow: inset 0 0 1px #1768E5;
    box-shadow: inset 0 0 1px #1768E5; }
  50% {
    -webkit-box-shadow: 0px 0px 3px  #1768E5;
    box-shadow: 0px 0px 3px  #1768E5;
    -webkit-box-shadow: inset 0 0 3px #1768E5;
    box-shadow: inset 0 0 3px #1768E5; }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

@keyframes increase {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0px 0px 1px #1768E5;
    box-shadow: 0px 0px 1px #1768E5;
    -webkit-box-shadow: inset 0 0 1px #1768E5;
    box-shadow: inset 0 0 1px #1768E5; }
  50% {
    -webkit-box-shadow: 0px 0px 3px  #1768E5;
    box-shadow: 0px 0px 3px  #1768E5;
    -webkit-box-shadow: inset 0 0 3px #1768E5;
    box-shadow: inset 0 0 3px #1768E5; }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

.map-info-list > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 1rem;
  font-size: 14px; }

.map-info-list .material-icons {
  color: #1768E5;
  padding-right: 24px; }

.btn-pill {
  border-radius: 50rem; }

.btn-main {
  color: #fff;
  background: #FFBE06;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02); }
  .btn-main:hover {
    background: #fbb900;
    color: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02); }

.screen-2 {
  position: relative; }
  .screen-2 a.js-pagenav {
    position: relative;
    z-index: 2; }
  .screen-2 .arrow-back {
    position: absolute;
    left: 10px;
    top: 10px;
    position: relative;
    color: #1768E5; }
    .screen-2 .arrow-back:after {
      content: '';
      display: block;
      background: transparent;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-radius: 50rem;
      -webkit-animation-name: increase;
      animation-name: increase;
      -webkit-animation-duration: 1.15s;
      animation-duration: 1.15s;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite; }
  .screen-2 .title {
    padding: 10px 4rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; }
  .screen-2 .subtitle {
    text-align: center;
    height: 24px;
    font-size: 14px;
    color: #70757a; }
  .screen-2 .map-service-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e1e1e1; }
  .screen-2 .service-title {
    margin-bottom: 10px; }
  .screen-2 .service-time {
    letter-spacing: .01428571em;
    font-family: Roboto,Arial,sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #70757a;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  .screen-2 .service-category {
    color: #70757a;
    margin-top: 0.75rem;
    letter-spacing: .01428571em;
    font-family: Roboto,Arial,sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem; }

.btn-booking {
  border: 1px solid #e1e1e1;
  border-radius: 50rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  cursor: default !important;
  position: absolute;
  right: 12px;
  padding: 0.375rem 0.75rem; }
  .btn-booking span {
    color: #4181EB;
    padding-right: 0.5rem; }

/*
* CSS TOGGLE SWITCH
*
* Ionuț Colceriu - ghinda.net
* https://github.com/ghinda/css-toggle-switch
*
*/
/* supported values are px, rem-calc, em-calc
 */
/* imports
 */
/* Functions
 */
/* Shared
 */
/* Hide by default
 */
.switch-block {
  margin: 20px 0; }

.switch-toggle a,
.switch-light span span {
  display: none; }

/* We can't test for a specific feature,
 * so we only target browsers with support for media queries.
 */
@media only screen {
  /* Checkbox
   */
  .switch-light {
    position: relative;
    display: block;
    width: 200px;
    /* simulate default browser focus outlines on the switch,
     * when the inputs are focused.
     */ }
  .switch-light::after {
    clear: both;
    content: "";
    display: table; }
  .switch-light *,
  .switch-light *:before,
  .switch-light *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .switch-light a {
    display: block;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .switch-light label,
  .switch-light > span {
    /* breathing room for bootstrap/foundation classes.
     */
    line-height: 2em; }
  /* don't hide the input from screen-readers and keyboard access
   */
  /* inherit from label
   */
  /* bootstrap 4 tweaks
  */
  /* Radio Switch
   */
  /* Candy Theme
   * Based on the "Sort Switches / Toggles (PSD)" by Ormal Clarck
   * http://www.premiumpixels.com/freebies/sort-switches-toggles-psd/
   */
  /* iOS Theme
  */
  /* Holo Theme
   */
  /* Selected ON switch-light
  */
  /* Material Theme
   */
  /* switch-light
   */
  /* switch-toggle
   */
  /* ripple
   */
  /* trick to prevent the default checked ripple animation from showing
   * when the page loads.
   * the ripples are hidden by default, and shown only when the input is focused.
   */ }

@media only screen {
  .switch-light input {
    position: absolute;
    opacity: 0;
    z-index: 3; }
  .switch-light input:checked ~ span a {
    right: 0%; }
  .switch-light strong {
    font-weight: inherit; }
  .switch-light > span {
    position: relative;
    display: block;
    min-height: 2em;
    /* overwrite 3rd party classes padding
     * eg. bootstrap .alert
     */
    padding: 0;
    text-align: left; }
  .switch-light span span {
    position: relative;
    z-index: 2;
    float: left;
    width: 50%;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .switch-light span span svg {
      width: 18px; }
  .switch-light a {
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 1;
    display: block;
    width: 50%;
    height: 100%;
    padding: 0; }
  .switch-light.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .switch-light .alert-light {
    color: #333; }
  .switch-toggle {
    position: relative;
    display: block;
    /* simulate default browser focus outlines on the switch,
     * when the inputs are focused.
     */
    /* For callout panels in foundation
    */
    padding: 0 !important;
    /* 2 items
     */
    /* 3 items
     */
    /* 4 items
     */
    /* 5 items
     */
    /* 6 items
     */ }
  .switch-toggle::after {
    clear: both;
    content: "";
    display: table; }
  .switch-toggle *,
  .switch-toggle *:before,
  .switch-toggle *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .switch-toggle a {
    display: block;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .switch-toggle label,
  .switch-toggle > span {
    /* breathing room for bootstrap/foundation classes.
     */
    line-height: 2em; } }

@media only screen {
  .switch-toggle input {
    position: absolute;
    left: 0;
    opacity: 0; }
  .switch-toggle input + label {
    position: relative;
    z-index: 2;
    display: block;
    float: left;
    padding: 0 0.5em;
    margin: 0;
    text-align: center; }
  .switch-toggle a {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 1;
    width: 10px;
    height: 100%; }
  .switch-toggle label:nth-child(2):nth-last-child(4),
  .switch-toggle label:nth-child(2):nth-last-child(4) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(4) ~ a {
    width: 50%; }
  .switch-toggle label:nth-child(2):nth-last-child(4) ~ input:checked:nth-child(3) + label ~ a {
    left: 50%; }
  .switch-toggle label:nth-child(2):nth-last-child(6),
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ a {
    width: 33.33%; }
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(3) + label ~ a {
    left: 33.33%; }
  .switch-toggle label:nth-child(2):nth-last-child(6) ~ input:checked:nth-child(5) + label ~ a {
    left: 66.66%; }
  .switch-toggle label:nth-child(2):nth-last-child(8),
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ a {
    width: 25%; }
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(3) + label ~ a {
    left: 25%; }
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(5) + label ~ a {
    left: 50%; }
  .switch-toggle label:nth-child(2):nth-last-child(8) ~ input:checked:nth-child(7) + label ~ a {
    left: 75%; }
  .switch-toggle label:nth-child(2):nth-last-child(10),
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ a {
    width: 20%; }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(3) + label ~ a {
    left: 20%; }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(5) + label ~ a {
    left: 40%; }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(7) + label ~ a {
    left: 60%; }
  .switch-toggle label:nth-child(2):nth-last-child(10) ~ input:checked:nth-child(9) + label ~ a {
    left: 80%; }
  .switch-toggle label:nth-child(2):nth-last-child(12),
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ label,
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ a {
    width: 16.6%; }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(3) + label ~ a {
    left: 16.6%; }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(5) + label ~ a {
    left: 33.2%; }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(7) + label ~ a {
    left: 49.8%; }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(9) + label ~ a {
    left: 66.4%; }
  .switch-toggle label:nth-child(2):nth-last-child(12) ~ input:checked:nth-child(11) + label ~ a {
    left: 83%; }
  .switch-toggle.switch-candy {
    position: relative; }
  .switch-toggle.switch-candy,
  .switch-light.switch-candy > span {
    background-color: #D1E5F3;
    border-radius: 50rem;
    border: 1px solid #fff; }
  .switch-light.switch-candy span span,
  .switch-light.switch-candy input:checked ~ span span:first-child,
  .switch-toggle.switch-candy label {
    color: #333;
    text-align: center; }
  .switch-light.switch-candy input ~ span span:first-child,
  .switch-light.switch-candy input:checked ~ span span:nth-child(2),
  .switch-candy input:checked + label {
    color: #333; }
  .switch-candy a {
    border-radius: 50rem;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
    background-color: #fff; }
  .switch-candy-blue a {
    background-color: #38a3d4; }
  .switch-candy-yellow a {
    background-color: #f5e560; }
  .switch-ios.switch-light span span {
    color: #888b92; }
  .switch-ios.switch-light a {
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    background-color: #fff;
    border-radius: 100%;
    border: 0.25em solid #D8D9DB;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .switch-ios.switch-light > span {
    display: block;
    width: 100%;
    height: 2em;
    background-color: #D8D9DB;
    border-radius: 1.75em;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out; }
  .switch-ios.switch-light > span span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    line-height: 1.875em;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .switch-ios.switch-light > span span:first-of-type {
    opacity: 1;
    padding-left: 1.875em; }
  .switch-ios.switch-light > span span:last-of-type {
    padding-right: 1.875em; }
  .switch-ios.switch-light input:checked ~ span a {
    left: 100%;
    border-color: #4BD865;
    margin-left: -2em; }
  .switch-ios.switch-light input:checked ~ span {
    border-color: #4BD865;
    -webkit-box-shadow: inset 0 0 0 30px #4BD865;
    box-shadow: inset 0 0 0 30px #4BD865; }
  .switch-ios.switch-light input:checked ~ span span:first-of-type {
    opacity: 0; }
  .switch-ios.switch-light input:checked ~ span span:last-of-type {
    opacity: 1;
    color: #fff; }
  .switch-ios.switch-toggle {
    background-color: #D8D9DB;
    border-radius: 30px;
    -webkit-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0; }
  .switch-ios.switch-toggle a {
    background-color: #4BD865;
    border: 0.125em solid #D8D9DB;
    border-radius: 1.75em;
    -webkit-transition: all 0.12s ease-out;
    transition: all 0.12s ease-out; }
  .switch-ios.switch-toggle label {
    height: 2.4em;
    color: #888b92;
    line-height: 2.4em;
    vertical-align: middle; }
  .switch-ios input:checked + label {
    color: #3e4043; }
  .switch-toggle.switch-holo,
  .switch-light.switch-holo > span {
    background-color: #464747;
    border-radius: 1px;
    -webkit-box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
    box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 0;
    color: #fff;
    text-transform: uppercase; }
  .switch-holo label {
    color: #fff; }
  .switch-holo > span span {
    opacity: 0;
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
  .switch-holo > span span:first-of-type {
    opacity: 1; }
  .switch-holo > span span,
  .switch-holo label {
    font-size: 85%;
    line-height: 2.15625em; }
  .switch-holo a {
    background-color: #666;
    border-radius: 1px;
    -webkit-box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, inset rgba(0, 0, 0, 0.3) 0 -1px 0;
    box-shadow: inset rgba(255, 255, 255, 0.2) 0 1px 0, inset rgba(0, 0, 0, 0.3) 0 -1px 0; }
  .switch-holo.switch-light input:checked ~ span a {
    background-color: #0E88B1; }
  .switch-holo.switch-light input:checked ~ span span:first-of-type {
    opacity: 0; }
  .switch-holo.switch-light input:checked ~ span span:last-of-type {
    opacity: 1; }
  .switch-light.switch-material a {
    top: -0.1875em;
    width: 1.75em;
    height: 1.75em;
    border-radius: 50%;
    background: #fafafa;
    -webkit-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0.125em 0.25em 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
  .switch-material.switch-light {
    overflow: visible; }
  .switch-material.switch-light::after {
    clear: both;
    content: "";
    display: table; }
  .switch-material.switch-light > span {
    overflow: visible;
    position: relative;
    top: 0.1875em;
    width: 3.25em;
    height: 1.5em;
    min-height: auto;
    border-radius: 1em;
    background: rgba(0, 0, 0, 0.26); }
  .switch-material.switch-light span span {
    position: absolute;
    clip: rect(0 0 0 0); }
  .switch-material.switch-light input:checked ~ span a {
    right: 0;
    background: #3f51b5;
    -webkit-box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.1875em -0.125em rgba(0, 0, 0, 0.2), 0 0.0625em 0.375em 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.1875em 0.25em 0 rgba(0, 0, 0, 0.14), 0 0.1875em 0.1875em -0.125em rgba(0, 0, 0, 0.2), 0 0.0625em 0.375em 0 rgba(0, 0, 0, 0.12); }
  .switch-material.switch-light input:checked ~ span {
    background: rgba(63, 81, 181, 0.5); }
  .switch-toggle.switch-material {
    overflow: visible; }
  .switch-toggle.switch-material::after {
    clear: both;
    content: "";
    display: table; }
  .switch-toggle.switch-material a {
    top: 48%;
    width: 0.375em !important;
    height: 0.375em;
    margin-left: 0.25em;
    background: #3f51b5;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.4s ease-in;
    transition: -webkit-transform 0.4s ease-in;
    transition: transform 0.4s ease-in;
    transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in; }
  .switch-toggle.switch-material label {
    color: rgba(0, 0, 0, 0.54);
    font-size: 1em; }
  .switch-toggle.switch-material label:before {
    content: "";
    position: absolute;
    top: 48%;
    left: 0;
    display: block;
    width: 0.875em;
    height: 0.875em;
    border-radius: 100%;
    border: 0.125em solid rgba(0, 0, 0, 0.54);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .switch-toggle.switch-material input:checked + label:before {
    border-color: #3f51b5; }
  .switch-light.switch-material > span:before,
  .switch-light.switch-material > span:after,
  .switch-toggle.switch-material label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    background: #3f51b5;
    opacity: 0.4;
    margin-left: -1.25em;
    margin-top: -1.25em;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in; }
  .switch-light.switch-material > span:after {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -1.25em; }
  .switch-toggle.switch-material label:after {
    width: 3.25em;
    height: 3.25em;
    margin-top: -0.75em; }
  @-webkit-keyframes materialRipple {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0); }
    20% {
      -webkit-transform: scale(1);
      transform: scale(1); }
    100% {
      opacity: 0;
      -webkit-transform: scale(1);
      transform: scale(1); } }
  @keyframes materialRipple {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0); }
    20% {
      -webkit-transform: scale(1);
      transform: scale(1); }
    100% {
      opacity: 0;
      -webkit-transform: scale(1);
      transform: scale(1); } }
  .switch-material.switch-light input:not(:checked) ~ span:after,
  .switch-material.switch-light input:checked ~ span:before,
  .switch-toggle.switch-material input:checked + label:after {
    -webkit-animation: materialRipple 0.4s ease-in;
    animation: materialRipple 0.4s ease-in; }
  .switch-light.switch-material.switch-light input ~ span:before,
  .switch-light.switch-material.switch-light input ~ span:after,
  .switch-material.switch-toggle input + label:after {
    visibility: hidden; }
  .switch-light.switch-material.switch-light input:focus:checked ~ span:before,
  .switch-light.switch-material.switch-light input:focus:not(:checked) ~ span:after,
  .switch-material.switch-toggle input:focus:checked + label:after {
    visibility: visible; } }

/* Bugfix for older Webkit, including mobile Webkit. Adapted from
 * http://css-tricks.com/webkit-sibling-bug/
 */
@media only screen and (-webkit-max-device-pixel-ratio: 2) and (max-device-width: 80em) {
  .switch-light,
  .switch-toggle {
    -webkit-animation: webkitSiblingBugfix infinite 1s; } }

@-webkit-keyframes webkitSiblingBugfix {
  from {
    -webkit-transform: translate3d(0, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0); } }

.form-text {
  font-size: 12px;
  letter-spacing: -1px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  color: #cde3f7; }

.custom-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 35' fill='%234181EB' fill-rule='evenodd' %3E%3Ctitle%3Emenu-down%3C/title%3E%3Cpath d='M7,10L12,15L17,10H7Z' /%3E%3C/svg%3E");
  background-position: right 5px;
  background-size: contain; }

/* Accordion
 */
.service-accordion .card {
  margin-bottom: 0.5rem;
  padding: 0;
  max-width: 100%;
  background: none;
  border: 0;
  border-radius: 10px !important;
  letter-spacing: 1px;
  padding-bottom: 5px; }

.service-accordion .card .card-header {
  position: relative;
  background-color: #0CB965;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  cursor: pointer; }
  .service-accordion .card .card-header .accicon {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: scale(0.7) translateY(-70%);
    transform: scale(0.7) translateY(-70%);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat;
    -webkit-filter: drop-shadow(0px 2px 2px #04703B);
    filter: drop-shadow(0px 2px 2px #04703B); }
  .service-accordion .card .card-header.collapsed {
    background-color: #0CB965;
    color: #fff;
    border-radius: 50rem; }
    .service-accordion .card .card-header.collapsed .accicon {
      -webkit-transform: rotate(-180deg) scale(0.7) translateY(70%);
      transform: rotate(-180deg) scale(0.7) translateY(70%);
      background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") no-repeat;
      -webkit-filter: drop-shadow(0px -2px 2px #04703B);
      filter: drop-shadow(0px -2px 2px #04703B); }

/* Modal
 */
.modal-preview .modal-header {
  border-bottom: none; }

.modal-preview .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; }

.modal-preview .modal-content {
  background: #4181EB;
  color: #fff; }
  .modal-preview .modal-content h4 {
    font-size: 20px;
    margin-bottom: 1rem; }

.modal-preview .modal-footer {
  background: #0d4fb4;
  border-top: none; }

.chip-mobile {
  position: relative;
  z-index: 2;
  float: left;
  width: 100px;
  height: 2rem;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  border-radius: 50rem;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff; }
  .chip-mobile svg {
    width: 18px; }

/*# sourceMappingURL=../maps/preview.css.map */
