@charset "UTF-8";
/*!
  公共需要引入的
 */
/******************************************************************
  Theme Name: Staging
  Description: Staging bootstrap tamplate
  Author: Colorib
  Author URI: https://www.colorib.com//
  Version: 1.0
  Created: Colorib
******************************************************************/
/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Banner Section
6.  Product Section
7.  Intagram Section
8.  Latest Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/
/*!
  公共需要引入的
 */
/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
  height: 100%;
  font-family: "Microsoft YaHei","黑体","宋体",sans-serif;
  -webkit-font-smoothing: antialiased;
}

.warp > .content {
  padding: 87px 0 30px;
  position: relative;
  min-height: calc(100% - 550px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/
.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 42px;
  color: #111111;
  line-height: 50px;
  text-transform: uppercase;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 50px;
  color: #ffffff;
  position: relative;
}

.primary-btn.normal-btn {
  color: #111111;
}

.primary-btn.normal-btn:before {
  border-color: #c4c4c4;
}

.primary-btn.normal-btn:after {
  border-color: #c4c4c4;
}

.primary-btn:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 28px;
  width: 28px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  content: "";
  border-radius: 0 0 0 4px;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}

.primary-btn:after {
  position: absolute;
  right: 0;
  top: 0;
  height: 28px;
  width: 28px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  content: "";
  border-radius: 0 4px 0 0;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}

.primary-btn:hover:before {
  height: 100%;
  width: 100%;
  border-radius: 4px;
}

.primary-btn:hover:after {
  height: 100%;
  width: 100%;
  border-radius: 4px;
}

.site-btn {
  font-size: 16px;
  color: #ffffff;
  background: #323232;
  font-weight: 600;
  border: none;
  display: inline-block;
  padding: 14px 36px;
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

.loading-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loading-mask .loading-spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@media (max-width: 767.98px) {
  .warp > .content {
    padding: 63px 0 30px;
  }
}

/*---------------------
  Header
-----------------------*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
}

.header::after {
  background-image: url(../img/banner--.jpg);
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -ms-filter: blur(20px);
  -o-filter: blur(20px);
  filter: blur(20px);
  z-index: -1;
}

.header.header-normal {
  position: relative;
  padding: 30px 0 30px;
}

.header__logo a {
  display: inline-block;
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin: 8px 20px;
}

.header__menu ul li.active a:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.header__menu ul li:hover a:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.header__menu ul li:hover .dropdown {
  top: 32px;
  opacity: 1;
  visibility: visible;
}

.header__menu ul li:last-child {
  margin-right: 0;
}

.header__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 62px;
  width: 140px;
  background: #ffffff;
  text-align: left;
  padding: 5px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}

.header__menu ul li .dropdown li a {
  font-size: 14px;
  color: #111111;
  font-weight: 400;
  padding: 5px 20px;
  text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
  display: none;
}

.header__menu ul li a {
  font-size: 18px;
  color: #ffffff;
  display: block;
  padding: 5px 0;
  position: relative;
}

.header__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #323232;
  content: "";
  -webkit-transition: all, 0.4s;
  transition: all, 0.4s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.header__widget {
  text-align: right;
}

.header__widget span {
  font-size: 14px;
  color: #b7b7b7;
  display: block;
  margin-bottom: 10px;
}

.header__widget h4 {
  font-size: 22px;
  color: #ffffff;
}

.offcanvas-menu-wrapper {
  display: none;
}

.canvas__open {
  display: none;
}

.footer__call-us-number-link:lang(el), .footer__call-us-number-link:lang(ja-jp), .footer__call-us-number-link:lang(ko-kr), .footer__call-us-number-link:lang(ru-ru), .footer__call-us-number-link:lang(th-th), .footer__call-us-number-link:lang(vi-vn), .footer__call-us-number-link:lang(zh-cn), .footer__call-us-number-link:lang(zh-hk), .footer__call-us-number-link:lang(zh-tw) {
  font-weight: 600;
}

.footer__call-us-number-link--line, .footer__call-us-number-link--zalo {
  cursor: text;
}

.footer__call-us-number-link--kakao-talk {
  cursor: pointer;
}

ul li {
  margin: 0 20px;
}

.hero__slider.owl-carousel .owl-nav button {
  left: 15px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
  right: 15px;
}

/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__slider.owl-carousel .owl-nav button {
    left: 0;
  }
  .hero__slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
  .about__text {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .about__pic {
    padding-left: 0;
  }
  .blog__sidebar {
    padding-top: 50px;
  }
  .hero__text .hero__social {
    right: 80px;
  }
  .slide-num {
    left: 70px;
  }
  .slider__progress {
    left: 106px;
  }
  .canvas__open {
    display: block;
    font-size: 22px;
    color: #ffffff;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 14px;
  }
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #111111;
    padding: 50px 20px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }
  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }
  .offcanvas__logo {
    margin-bottom: 30px;
  }
  .offcanvas__logo a {
    display: inline-block;
  }
  .slicknav_btn {
    display: none;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }
  .slicknav_nav .slicknav_arrow {
    color: #ffffff;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #ffffff;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #ffffff;
  }
  .slicknav_nav {
    display: block !important;
  }
  .offcanvas__widget span {
    font-size: 14px;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
  }
  .offcanvas__widget h4 {
    font-size: 22px;
    color: #ffffff;
  }
  .header__menu {
    display: none;
  }
  .header__widget {
    display: none;
  }
}

/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
  .hero__text h2 {
    font-size: 34px;
    line-height: 45px;
  }
  .about__text {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .about__pic {
    padding-left: 0;
  }
  .blog__sidebar {
    padding-top: 50px;
  }
  .canvas__open {
    display: block;
    font-size: 22px;
    color: #ffffff;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 14px;
  }
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #111111;
    padding: 50px 20px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }
  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }
  .offcanvas__logo {
    margin-bottom: 30px;
  }
  .offcanvas__logo a {
    display: inline-block;
  }
  .slicknav_btn {
    display: none;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }
  .slicknav_nav .slicknav_arrow {
    color: #ffffff;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #ffffff;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #ffffff;
  }
  .slicknav_nav {
    display: block !important;
  }
  .offcanvas__widget span {
    font-size: 14px;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
  }
  .offcanvas__widget h4 {
    font-size: 22px;
    color: #ffffff;
  }
  .header__menu {
    display: none;
  }
  .header__widget {
    display: none;
  }
  .about__pic__inner {
    display: block;
  }
  .about__pic__inner img {
    min-width: 100%;
  }
  .about__pic__inner:after {
    left: 0;
    width: 100%;
  }
  .hero__slider.owl-carousel .owl-nav button {
    left: 0;
  }
  .hero__slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
  .hero__text h2 {
    font-size: 46px;
    line-height: 58px;
  }
  .hero__text .hero__social {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 100px;
  }
  .slide-num {
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .slider__progress {
    left: 0;
    bottom: 35px;
    right: 0;
    margin: 0 auto;
  }
  .hero__text .more_btn {
    bottom: 62px;
  }
  .footer__top__text {
    margin-bottom: 35px;
  }
  .copyright__text {
    text-align: center;
    margin-bottom: 20px;
  }
  .copyright__widget {
    text-align: center;
  }
  .project__sidebar {
    padding-top: 20px;
  }
  .blog__details__tags {
    text-align: center;
  }
  .blog__details__social {
    text-align: center;
  }
  .blog__details__author__pic {
    float: none;
    margin-right: 0;
  }
  .blog__details__author__text {
    padding-top: 40px;
  }
  .project {
    padding: 0;
  }
  .about__para__text {
    margin-bottom: 35px;
  }
  .clients {
    padding-bottom: 90px;
  }
  .clients a {
    margin-bottom: 30px;
  }
  .testimonial__carousel.owl-carousel .owl-nav button {
    left: 0;
  }
  .testimonial__carousel.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
}

@media only screen and (max-width: 575px) {
  .team__btn {
    margin-bottom: 40px;
    text-align: left;
  }
  .latest__btn {
    margin-bottom: 40px;
    text-align: left;
  }
}

/* Small Device = 320px */
@media only screen and (max-width: 479px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 1;
  }
  .hero__text h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .hero__items {
    height: 610px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 40px;
  }
  .testimonial__item p {
    font-size: 16px;
    line-height: normal;
  }
  .about__pic__inner:after {
    display: none;
  }
  .callto__text h2 {
    font-size: 30px;
    line-height: 46px;
  }
  .project__slider.owl-carousel .owl-nav button {
    left: 15px;
  }
  .project__slider.owl-carousel .owl-nav button.owl-next {
    right: 15px;
  }
  .project {
    padding: 0;
  }
  .breadcrumb__text h2 {
    font-size: 32px;
  }
  .testimonial__carousel {
    padding: 60px 45px 65px;
  }
  .slick-active.slick-center .testimonial__client__pic img,
  .slick-active.slick-center .testimonial__client__pic {
    width: 110px;
    height: 110px;
    opacity: 1;
  }
  .testimonial__client__item .testimonial__client__pic {
    width: 110px;
    height: 110px;
    opacity: 0;
  }
  .testimonial__carousel:after {
    left: calc(50% - 70px);
    bottom: -80px;
    width: 140px;
    height: 140px;
  }
  .testimonial__carousel button.slick-arrow {
    left: 10px;
    height: 40px;
    width: 40px;
  }
  .testimonial__carousel button.slick-arrow.slick-next {
    left: auto;
    right: 10px;
  }
  .testimonial__client .slick-slide {
    padding-top: 30px;
  }
  .about .section-title h2 {
    font-size: 28px;
    line-height: 45px;
  }
  .footer__top__text h2 {
    font-size: 32px;
  }
}

/*---------------------
  bannerSearch
-----------------------*/
/*---------------------
  Footer
-----------------------*/
.footer {
  padding-top: 50px;
  background-color: #0f0e0e;
}

.footer__about {
  text-align: center;
  overflow: hidden;
  padding: 5px;
}

.footer__about .myFooterBtn {
  width: auto;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #5d5252;
  color: #b8b8b8;
  border-radius: 3px;
  font-size: 14px;
  margin-right: 10px;
  margin-top: 10px;
}

.footer__about .myFooterBtn a {
  color: #b8b8b8;
}

.footer__about .myFooterBtn:only-child {
  margin-right: 0;
}

.footer__about h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer__about p {
  margin-bottom: 30px;
}

.footer__about ul {
  margin-bottom: 38px;
}

.footer__about ul li {
  font-size: 15px;
  list-style: none;
  line-height: 26px;
  color: #b8b8b8;
}

.footer__nav {
  margin-bottom: 30px;
}

.footer__nav h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer__nav ul li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}

.footer__nav ul li a {
  font-size: 15px;
  color: #b8b8b8;
  line-height: 36px;
}

.footer__address {
  margin-bottom: 30px;
}

.footer__address h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer__address p {
  margin-bottom: 30px;
}

.footer__address ul li {
  font-size: 15px;
  list-style: none;
  line-height: 26px;
  color: #b8b8b8;
}

.copyright {
  border-top: 1px solid rgba(183, 183, 183, 0.2);
  padding: 25px 0;
  margin-top: 30px;
}

.copyright__text p {
  margin-bottom: 0;
}

.copyright__text p i {
  color: #323232;
}

.copyright__text p a {
  color: #ffffff;
}

.copyright__widget {
  text-align: right;
}

.copyright__widget a {
  font-size: 14px;
  color: #b8b8b8;
  margin-right: 36px;
  position: relative;
}

.copyright__widget a:after {
  position: absolute;
  right: -22px;
  top: -3px;
  content: "|";
}

.copyright__widget a:last-child {
  margin-right: 0;
}

.copyright__widget a:last-child:after {
  display: none;
}

.mobileBottom {
  height: 50px;
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #eee;
  display: none;
  z-index: 100;
}

.mobileBottom a {
  width: 50%;
  height: 100%;
  line-height: 50px;
  display: block;
  float: left;
  text-align: center;
  color: #FFF;
}

.mobileBottom .btn1 {
  background-color: #2b948a;
}

.mobileBottom .btn2 {
  background-color: orangered;
}

.mobileBottom .btn3 {
  background-color: orange;
}

@media (max-width: 768px) {
  .mobileBottom {
    display: block;
  }
  .footer {
    padding-bottom: 50px;
  }
}

.footer__call-us {
  padding: 2.5rem 8%;
  background-color: #38b2a6;
  color: #fff;
  text-align: center;
}

.footer__call-us-heading {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 0;
}

.footer__call-us-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

@media (min-width: 768px) {
  .footer__call-us-numbers {
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer__call-us-numbers--more {
    text-align: left;
  }
}

.footer__number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

@media (min-width: 768px) {
  .footer__number-list {
    display: inline-block;
  }
}

.footer__number-container {
  display: block;
}

@media (min-width: 768px) {
  .footer__number-container {
    display: inline-block;
  }
}

.footer__call-us-number {
  color: #52ccc0;
  font-size: .75rem;
  line-height: 1rem;
  margin-top: 1rem;
  padding: .75rem 0;
  border-radius: 2rem;
  background-color: #2b948a;
  vertical-align: top;
}

@media (min-width: 768px) {
  .footer__call-us-number {
    display: inline-block;
    width: 18.5rem;
    margin: 1rem .75rem 0;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .footer__call-us-number {
    width: 13.5rem;
    margin-right: .75rem;
    margin-left: .75rem;
  }
}

.footer__call-us-number--hide {
  display: none;
}

.footer__call-us-number-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  display: block;
}

.footer__call-us-number-link--line,
.footer__call-us-number-link--zalo {
  cursor: text;
}

.footer__call-us-number-link--kakao-talk {
  cursor: pointer;
}

/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-option {
  padding-top: 170px;
  padding-bottom: 120px;
}

.breadcrumb__text h2 {
  font-size: 42px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.breadcrumb__links a {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  position: relative;
  margin-right: 12px;
}

.breadcrumb__links a:after {
  position: absolute;
  right: -13px;
  top: 1px;
  content: '~';
}

.breadcrumb__links span {
  font-size: 15px;
  color: #323232;
  display: inline-block;
}

.breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
  margin: 0;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media only screen and (min-width: 1450px) {
  .container {
    max-width: 1170px;
  }
  .header {
    padding: 10px 130px 10px;
  }
}

/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__pic {
    padding-left: 0;
  }
  .about__pic__inner:after {
    left: 8px;
    top: 8px;
  }
}

@media (min-width: 768px) {
  .footer__call-us-numbers {
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer__call-us-numbers--more {
    text-align: left;
  }
}

.footer__number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

@media (min-width: 768px) {
  .footer__number-list {
    display: inline-block;
  }
}

.footer__number-container {
  display: block;
}

@media (min-width: 768px) {
  .footer__number-container {
    display: inline-block;
  }
}

.footer__call-us-number {
  color: #52ccc0;
  font-size: .75rem;
  line-height: 1rem;
  margin-top: 1rem;
  padding: .75rem 0;
  border-radius: 2rem;
  background-color: #2b948a;
  vertical-align: top;
}

@media (min-width: 768px) {
  .footer__call-us-number {
    display: inline-block;
    width: 18.5rem;
    margin: 1rem .75rem 0;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .footer__call-us-number {
    width: 13.5rem;
    margin-right: .75rem;
    margin-left: .75rem;
  }
}

.footer__call-us-number--hide {
  display: none;
}

.footer__call-us-number-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  display: block;
}

body {
  color: #4c4c4c;
  background-color: #f8f8f6;
}

.switchLang {
  font-size: 14px;
  color: #fff;
  height: 35px;
  padding: 0 10px;
  line-height: 35px;
  border: 1px solid #fff;
  border-radius: 2px;
  cursor: pointer;
  position: absolute;
  right: 80px;
  top: 14px;
}

.money-text {
  color: #f25202;
}

.autocomplete {
  text-align: left;
  display: block;
  position: absolute;
  top: 100%;
  width: 100%;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  z-index: 10;
  font-size: 14px;
  padding: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(76, 76, 76, 0.08);
          box-shadow: 0 2px 8px 0 rgba(76, 76, 76, 0.08);
}

.autocomplete .data-loading-box {
  display: block;
}

.autocomplete .data-loading-box .spinner-border {
  border-color: #9e9e9e;
  border-right-color: transparent;
  margin: auto;
}

.autocomplete .data-loading-box .loading-text {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0;
}

.autocomplete .hot-citys {
  display: block;
}

.autocomplete .hot-citys .title {
  font-size: 16px;
  font-weight: 600;
  color: #6d7fb4;
  font-size: .875rem;
  line-height: 1.25rem;
  padding: .75rem 2.75rem;
  background-color: #f8f8f6;
  margin: 0;
}

.autocomplete .hot-citys .city-list {
  padding: .5rem 2.75rem;
}

.autocomplete .hot-citys .list-item {
  margin: 10px 0;
}

.autocomplete .hot-citys .list-item > a {
  display: block;
  position: relative;
}

.autocomplete .hot-citys .list-item > a:hover .country-text {
  color: #007bff;
}

.autocomplete .hot-citys .list-item * {
  font-size: 16px;
}

.autocomplete .hot-citys .list-item .country-text {
  color: #4c4c4c;
  line-height: 1.25rem;
  padding-right: .75rem;
}

.autocomplete .hot-citys .list-item .city-text {
  color: #9e9e9e;
  line-height: 1.25rem;
}

.autocomplete .search-citys {
  display: block;
  height: 300px;
  overflow-y: scroll;
}

.autocomplete .search-citys .search-citys-ul > a:hover {
  background-color: #e6f2ff;
}

.autocomplete .search-citys .city-item .fa {
  color: #9e9e9e;
}

.autocomplete .search-citys .city-item .university-row {
  color: #4c4c4c;
  font-size: 14px;
}

.autocomplete .search-citys .city-item .university-row .primary {
  font-size: 16px;
}

.autocomplete .search-citys .city-item .university-type-row {
  color: #9e9e9e;
  font-size: 14px;
  margin: 5px 0 0;
}

.autocomplete .search-citys .city-item .university-type-row > span {
  padding: 0 10px;
}

.autocomplete .search-citys .city-item .university-type-row > span:first-child {
  padding-left: 0;
}

.autocomplete .search-citys .city-item .university-type-row > span:not(:last-child) {
  border-right: 1px solid #9e9e9e;
}

.pagination-box {
  margin: 15px auto;
}

.pagination-box .page-item {
  margin: 0;
}

.text-link {
  color: #38b2a6;
}

.text-link:hover {
  color: #38b2a6;
}

@media (max-width: 767.98px) {
  .autocomplete .hot-citys .title {
    padding: 15px;
  }
  .autocomplete .hot-citys .city-list {
    padding: 3px 15px;
  }
  .autocomplete .search-citys .city-item {
    padding: 10px 15px !important;
    margin: 0;
  }
}

#reserve .el-form-item__label {
  margin-bottom: 0;
  padding: 0 !important;
}

#reserve .el-form-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 31%;
  display: inline-block;
  margin: 0 0 10px 1%;
}

@media (max-width: 768px) {
  #reserve .el-form-item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
  }
}
/*# sourceMappingURL=style.css.map */
