html,body{
	padding: 0;
	margin: 0; 
} 
html{height: 100% }
body{   
 
  font-family: 'Kanit', sans-serif;
	color: #000000;
	font-size:16px; 
	font-weight: normal;
	margin: 0px;
	padding:0;
	line-height: 1.5; 
	background:#ffffff;   

	position: relative;
  overflow-x: hidden;
}
 
b, strong{
	font-weight: 500; 
  font-family: inherit;
}
h1,h2,h3,h4,h5,h6{   
	margin:0;  
	color: #000; 
  line-height: 1.3; 
  font-weight: bold; 
} 

.white{ color: #ffffff !important } 

.nowrap{ white-space: nowrap; }
 
a{
  color:inherit;
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
a:hover{ text-decoration: none; color: inherit; }

.input-block{
  display: block;
  margin-bottom: 15px; 
}

.form-control{
  -webkit-appearance: none;
  font-size:18px;
  border-radius: 0;
  border:1px solid #ccc;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
  font-family: inherit;
}

.radio-group, 
.checkbox-group{ 
	padding-left:0; 
	position:relative;
	list-style-type:none;
	margin:0px;
	padding:0px;
	text-align:center;
	display:inline-block;
	vertical-align:top
}
.radio-group{ display:inline-block; position:relative}


.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
	/*display: none;*/
	visibility: hidden;
	opacity: 0;
	height: 0;
	position: absolute;
	width: 0
}
.checkbox-group label:before,
.radio-group label:before {
	content: "";
	display: inline-block;

	margin-right: 5px;
	position: absolute;
	left:0;
	top:5px;
	background-color: transparent;
	border: 1px solid #9e9e9e; 
	width:16px;
	height:16px; 

	 -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}

.radio-group label:before { 
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.radio-group label,
.checkbox-group label {
	position:relative;
	padding-left:30px;
	padding-right:15px;
	text-align:left;
	margin:1px 0;
	display:block;
	font-weight:300;
	font-size:inherit;
	line-height:25px;
	cursor:pointer;

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.checkbox-group label{color: inherit;}
.checkbox-group label span{ font-size: 12px; font-style: italic; color: #8f8f8f } 
.radio-group label{color: inherit; padding-left: 28px} 

 
.radio-group input[type="radio"]:checked + label:after {
    content: "";
    color: #ea6f21;
	background-color:#9e9e9e;
	-webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
	position:absolute;
	left: 3px;
  top: 8px;
	width:10px;
	height:10px;
}
 

.checkbox-group input[type="checkbox"]:checked + label:after{
	content: "";
	width:15px;
	height:15px;
	position:absolute;
	top: 8px;
  left: 2px;
	display:block; 
	background-image: url(../img/icons/icon-checked.svg);
	background-position:0 0;
	background-size: 11px;
	background-repeat: no-repeat;
	
}
  
.checkbox-disable.checkbox-group label:before{
	background-color:#c0c0c0;
	border:2px solid #b1b1b1;
	cursor:default !important
}
.checkbox-disable.checkbox-group input[type="checkbox"]:checked + label:after {
	content:'';
}


.form-control::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.55;
}

.form-control::-moz-placeholder {
  color: #000000;
  opacity: 0.55;
}

.form-control:-ms-input-placeholder {
  color: #000000;
  opacity:0.55;
}

.form-control::-ms-input-placeholder {
  color: #000000;
  opacity:0.55;
}

.form-control::placeholder {
  color: #000000;
  opacity:0.55;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 0.55;
}

.select {
  position:relative;
  padding-left:0 !important;
  cursor:pointer;
  display:block;
  margin-bottom:0; 
  height: 40px; 
  cursor: pointer;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; 
  padding:0;
  color: #a5a7a9;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.has-value .select-styled{ color: #221f1f}
.select-styled:after {
  content:'';
  position: absolute;
  right: 0;
  top: 50%;

  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  
  border-top: 5px solid #000;

}
 
 
.select-options {
  display: none;
  position: absolute;
  top: 52px;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border:1px solid #f1f1f1;
  max-height: 200px;
  overflow-x: auto;
}
.select-options li {
  margin: 0;
  padding: 5px 0;
  text-indent: 20px; 
  font-size: 16px;
  font-weight: 300;
  color: #373337;
  font-family: inherit;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover {
  background: #f1f1f1;
}
.select-options li[rel="hide"] {
  display: none;
}
 
span.error{
	font-family: tahoma,arial;
	font-size: 11px;
	color: red;
	display: block;
	margin-bottom:5px;
	margin-top:3px;  
}
.form-control.error{ border-color: #ffaaaa !important; background-color: #ffeaea !important }

.valid + .select-styled{border-color: #ffaaaa; background-color: #ffeaea }
.has-value .select-styled{ border-color: #fff !important; background-color: #fff !important }
  
/* ============== Icon Setup   =============== */ 


.icons{
	display:inline-block;
	position:relative;
	vertical-align:top;
	/*background-image:url(../img/icons.png);*/
  background-size: contain;
	background-repeat:no-repeat;
  background-position: 0 0;
}

/**/

.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down{
  position: absolute;
  left: 0;
  top: 0;
  width:5px;
   height:5px;
   vertical-align:top;

   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.arrow-left{
   border-top: 1px solid #676767;
   border-left: 1px solid #676767;
   -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);  
}

.arrow-right{
  border-top: 1px solid #676767;
  border-left: 1px solid #676767;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}

.arrow-up{
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.arrow-down{
   margin-left:1px;
   border-top: 1px solid #000000;
   border-left: 1px solid #000000;
   -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}

.page{
	position: relative; 
	display: block;   
  overflow: hidden;
  padding-top: 111px   
}  
.btn{
  padding: 0 20px;
  position: relative;
  background-color:#d8d8d8;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  font-family:inherit; 
  font-size:15px;
  overflow: hidden;
  border:0;
  color: #234b6f;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
       -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}
.btn span.text{
  display: inline-block;
  vertical-align: top;
  line-height: 39px;
} 
.btn .arrow{
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 15px;
  height: 15px;
  top: 16px;
}
.btn .arrow:before{
  content: ''; 

  position: absolute;
  left: 0;
  top: 0;
  width:8px;
   height:8px;
   vertical-align:top;
  border-top: 2px solid #234b6f;
  border-left: 2px solid #234b6f;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); 

   -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;

}

.pc .btn:hover{
  background-color: #5f5b58;
  color: #fff
}
.pc .btn:hover .arrow:before{
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
  
.btn-white{
  border:0px solid #fff;
  background-color: #fff;
  color: #000;
}
.pc .btn-white:hover {
  color: #fff;
  background-color: #000; 
} 
 
.btn-black{
  border:0px solid #000000;
  background-color: #000000;
  color: #fff;
}
.pc .btn-black:hover {
  color: #fff;
  background-color: #393939; 
} 


.btn-outline-white{
  border:1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.btn-outline-white .arrow:before{
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.pc .btn-outline-white:hover {
  color: #2f5679;
  background-color: #fff; 
} 
.pc .btn-outline-white:hover .arrow:before{
  border-top: 2px solid #2f5679;
  border-left: 2px solid #2f5679;
}

.btn-outline-blue{
  border:1px solid #1f4c70;
  background-color: transparent;
  color: #1f4c70;
}

.btn-outline-blue .arrow:before{
  border-top: 2px solid #1f4c70;
  border-left: 2px solid #1f4c70;
}

.pc .btn-outline-blue:hover {
  color: #fff;
  background-color: #1f4c70; 
} 
 
.btn-lg{
  height: 60px;
  line-height: 56px;
  min-width: 230px;
  font-size: 30px;
}
 
 
.btn-link, 
.btn-link:hover, 
.btn-link:focus, 
.btn-link:active{
  background-color: transparent;
}
 

.btn:focus,.btn:active,
button:focus,button:active,
a:focus,a:active {
   outline: none !important;
   box-shadow: none!important;
}

.container-fluid{
  max-width:100% ;  
  padding-left: 50px;
  padding-right:50px; 
}
.container{
  max-width: calc(1100px + 60px);
  padding-left: 30px;
  padding-right: 30px
}
.header{
  display: block;
  position:fixed;
  top: 0;
  left: 0;
  right: 0; 
  z-index:1020;   
  background-color:#fff; 
  box-shadow: 0 0 50px 0 rgba(0, 0, 0,0);
  border-bottom: 1px solid rgba(0,0,0,0);
  padding:35px 0; 

  -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
       -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}
.header .container{
  max-width: calc(1150px + 60px);
}  

.scrolling .header{
  padding:20px 0;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.1); 
}
svg path,
svg rect,
svg line{ 
  -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
       -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}

.navbar-brand{
  display: block;
  width: 160px;
  margin: 0;
  padding: 0; 
} 
.navbar-brand img{ width: 100% }
.pc .navbar-brand:hover{ opacity: 0.65 }


/**/

.btn-icon{
  padding: 0;
  background-color: transparent !important;
  width: 30px; 
  height:30px;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  z-index: 999;

  top: 24px;
  right: 30px;
  overflow: visible;
}
.btn-icon:before{ display: none; } 

.btn-icon span{ 
  height: 3px;
  background: #9b9b9b;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-transform-origin: 25px, 1px;
  -ms-transform-origin: 25px, 1px;
  transform-origin: 25px, 1px;
}  

.pc .btn-icon:hover span:nth-child(1):before,
.pc .btn-icon:hover span:nth-child(3):before { 
   -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.btn-icon span:nth-child(1) { 
    top: 0;
    -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}

.btn-icon span:nth-child(2) {
    top: 8px;
    -webkit-transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}

.btn-icon span:nth-child(3) { 
    top: 16px;
    -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}
.btn-icon[aria-expanded="true"] span:nth-child(1){
    -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: rotate(45deg) translate3d(5px, 6px, 0);
    transform: rotate(45deg) translate3d(5px, 6px, 0)
}

.btn-icon[aria-expanded="true"] span:nth-child(2){
    -webkit-transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0)
}

.btn-icon[aria-expanded="true"] span:nth-child(3) {
    -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: rotate(-45deg) translate3d(6px, -6px, 0);
    transform: rotate(-45deg) translate3d(6px, -6px, 0)
}
/**/

@media (min-width: 768px) {
  .navbar-collapse{ display: block !important; }
  .nav-main{
    display: block;
    padding:0;
    margin:0;
    list-style-type: none; 
    font-size: 0;
    float: right;
  }
  .nav-main li{
    display: inline-block;
    vertical-align: top;
    padding:0;
    margin: 0; 
  }
  .nav-main li a{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
    padding:0 25px;
    border-left: 1px solid #d8d8d8;
    display: block;
    text-decoration: none !important;
  }
  .nav-main li:first-child a{ border:0; }

  .pc .nav-main li a:hover{ color: #c10b0c }

  .nav-main li a.btn-link{
    color: #fff !important;
    position: relative;
    padding:0 35px 0 20px; 
    border:0;

    background: rgb(108,140,168); /* Old browsers */
    background: -moz-linear-gradient(left,  rgba(108,140,168,1) 0%, rgba(39,78,114,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(108,140,168,1) 0%,rgba(39,78,114,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(108,140,168,1) 0%,rgba(39,78,114,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c8ca8', endColorstr='#274e72',GradientType=1 ); /* IE6-9 */

  }
  .nav-main li a.btn-link:after{
    content: '';
    position: absolute;
    top: 50%;
    left: auto; 
    right:20px;
   
    width:10px;
    height:10px;
    margin-top:-4px; 
    vertical-align:top;
    border-top: 2px solid #fff;
    border-left:2px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); 

     -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
     -ms-transition: all 0.2s ease-in-out;
     transition: all 0.2s ease-in-out;
  }

  .pc .nav-main li a.btn-link:hover:after{
    right: 15px;
  }
}
@media (max-width: 991.98px) {
  .page{ padding-top: 88px }
  .header{ padding: 25px 0 }
  .nav-main li a{ 
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
  }

  .nav-main li a.btn-link::after{
    width: 8px;
    height: 8px;
  }
  .navbar-brand{ width: 140px }
}

@media (max-width: 767px) {
  .header .row > div{ position: static; }
  .navbar-collapse{
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0; 
  }
  .nav-main{
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .nav-main li{
    display: block;
    margin: 0;
    padding: 0;
  }
  .nav-main li a{
    display: block;
    margin: 0;
    padding: 5px 30px;
    height: auto;
    text-transform: uppercase;
    color: #000 !important;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none !important;
    border-bottom: 1px solid #9b9b9b !important
  }
  .nav-main li:first-child a{border-top: 1px solid #9b9b9b !important}

  .pc .nav-main li:hover a{ background-color: #f1f1f1 }
 
}
@media (max-width: 576px) {
  .btn-icon{ right: 20px }
  .nav-main li a{ padding-left: 20px; padding-right: 20px }
}

.section {
  display: block;
  position: relative;
}

.mw-1080{
  max-width: 1080px;
}

.section-banner{
  background-color: #e8e8e8; 
}
.section-banner .caption-wrap{ 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  font-size: 18px;
  font-weight: 300;
  color: #4a4a4a
}
.section-banner .caption-wrap .container{
  height: 100%;
  position: relative;
  display: -ms-flexbox;
  display: flex; 
}
.section-banner .caption-wrap .caption{
  display: block; 
  width: 100%;   
  max-width: 600px;
  position: relative; 
  padding-bottom: 3vw;
  padding-left: 30px;
} 
 
.section-banner .caption h2,
.section-banner .caption h3,
.section-banner .caption h5{
  color: #4a4a4a;
  font-family:inherit;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2; 
}
.section-banner .caption h3{
  font-weight: 400
}
.section-banner .caption h5{
  font-size: 18px;
  margin: 5px 0 5px
}

.section-banner .caption strong{
  color: #224b70;
  font-weight: 500
}
  
/**/
.section-banner .caption h2,
.section-banner .caption h3,
.section-banner .caption h5,
.section-banner .caption p ,
.section-banner .caption .btn-thankyou { 
   -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
 
.page-loaded .section-banner .caption h2{
  visibility: visible;
   -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.page-loaded .section-banner .caption h3{
  visibility: visible;
   -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.page-loaded .section-banner .caption h5,
.page-loaded .section-banner .caption p {
  visibility: visible;
   -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
} 
 
.page-loaded .section-banner .caption-thankyou p{
  visibility: visible;
   -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.page-loaded .section-banner .caption-thankyou .btn-thankyou{
  visibility: visible;
   -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.section-banner .caption-thankyou{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  font-size: 18px;
  font-weight: 300;
  color: #fff; 

}
.section-banner .caption-thankyou .container{ 
  position: relative;
  height: 100%;
  padding-left: 0
}
.section-banner .caption-thankyou .caption{
  display: block; 
  width: 100%;   
  max-width: 500px;
  height: 100%;
  position: relative; 
  padding-bottom:50px;
  padding-left: 50px;
} 
.section-banner .caption-thankyou .caption:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7090ab+0,234b6f+55 */
background: rgb(112,144,171); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(112,144,171,1) 0%, rgba(35,75,111,1) 55%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(112,144,171,1) 0%,rgba(35,75,111,1) 55%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(112,144,171,1) 0%,rgba(35,75,111,1) 55%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7090ab', endColorstr='#234b6f',GradientType=0 ); /* IE6-9 */

  opacity: 0.65;
}
.section-banner .caption-thankyou h2.title{
  font-size: 22px;
  font-weight: 500;
  color: inherit;
  line-height: 1.4;
  margin-bottom:13px;
}
.section-banner .caption-thankyou p{
  font-weight:400;
  line-height: 1.5
}
.section-banner .caption-thankyou .btn{
  width: 160px;
  margin-top:10px; 
}

.section-form-question .container{
  position: relative;
}
.form-question{
  position: absolute;
  bottom: -70px;
  right: 30px;
  display: block;
  padding: 30px 40px;
  color: #fff;
  max-width: 350px;
  z-index: 99;

  background: rgb(108,140,168); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(108,140,168,1) 0%, rgba(39,78,114,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(108,140,168,1) 0%,rgba(39,78,114,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(108,140,168,1) 0%,rgba(39,78,114,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c8ca8', endColorstr='#274e72',GradientType=1 ); /* IE6-9 */
}
.form-question span.error{
  color: #ff4056;
  display: block;
  text-align: right;
  margin-bottom: 0;
  height: 8px
}
.form-question h3{
  font-size: 18px;
  font-weight: 400;
  color: inherit;
  line-height: 1.5;
  margin-top:-5px; 
  margin-bottom:10px; 
}
.form-question p{
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  margin-bottom:5px; 
}
.form-question .form-control{
  border:0;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.form-question .buttons{ text-align: center; }
.form-question .buttons .btn{ width:160px;}
.form-question .row{ margin: 0 -7px; }
.form-question .row > div{ padding: 0 7px; }

.section-about-lasik{
  padding:120px 0 0; 
}

.has-texture{
  color: #fff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7090ab+0,2f5679+100 */
  background: rgb(112,144,171); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(112,144,171,1) 0%, rgba(47,86,121,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(112,144,171,1) 0%,rgba(47,86,121,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(112,144,171,1) 0%,rgba(47,86,121,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7090ab', endColorstr='#2f5679',GradientType=1 ); /* IE6-9 */

}
.title-lg{
  font-size:38px;
  font-weight: 400;
  color: inherit;
  margin-bottom:10px;
  line-height: 1; 
}

.heading{ 
}
.heading p{ margin-bottom: 0 }
.heading p.bold{ font-weight: 600 }

.blue{ color: #214b6f }
.gray{ color: #4a4a4a }

.article p,
.article ul{
  margin:0 0 5px 0 
}
.article ul{
  display: block;
  margin: 0;
  padding:0;
  list-style-type: none; 
}
.article ul li{
  display: block;
  margin: 0;
  padding:0 0 5px 15px; 
  position: relative;
}
.article ul li:before{
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
}

.row-0{ margin: 0 }
.row-0 > div{ padding:0  }
.section-about-lasik .container{
  position: relative;
}
.section-about-lasik .row{
  display: block;
  font-size: 0
}
.section-about-lasik .col.text{
  display: inline-block;
  max-width: 40%;
  vertical-align: top;
}
.section-about-lasik .col.video{
  display: inline-block;
  max-width: 60%;
  vertical-align: top;
  float: right;
}

.article.lasik{
  padding:30px  40px;
  line-height: 1.3
}
.article.lasik .title-lg{ 
  line-height: 1;
  margin-bottom:15px; 
}
.article.lasik{
  font-size: 15px; 
  font-weight: 300
}
.article.lasik .inner{
  max-width: 260px;
}
.article.lasik .button{
  display: block;
  padding-top: 30px;
  padding-bottom:20px;
}
.article.lasik .button .btn{ width: 165px; }


.pc .video-box.pc{ display: inline-block; }
.device .video-box.pc{ display: none; }

.pc .video-box.device{ display: none; }
.device .video-box.device{ display: inline-block; }

.video-box{
  margin: 0;
  display:block;
  width: 100%; 
  position: relative;
  background-color: #000000
}

.video-box .img-hidden{
  width: 100%;
}

.video-responsive{ 
  background-color: #000000;
  z-index: 9; 
}

.video-box .youtube {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    opacity: 0.5;

    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.video-box .youtube .play{ display: none; } 
.video-box .play-button {
    background-image: url(../img/icons/icon-play-button.svg);
    background-size:70px 70px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    height: 100%;
    width: 100%; 

    opacity: 0.55;

    pointer-events: none;
    display: block;

       -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
} 

.video-box.playing .play-button {display: none;}
.video-box.playing .video-logo{ display: none; }

.pc .video-box:hover .youtube{ opacity:0.7 }
.pc .video-box:hover .play-button {
    opacity: 1;
    filter: alpha(opacity=100);
}

.video-responsive{
  position: relative;
  padding-bottom: 56.20%; /* 16:9 */
  padding-top: 0;
  height: 0;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-box.normal{
  width: 100%;
  max-width: 640px
}
.video-box.normal:before{display: none;}
.video-box.normal .play-button{ background-position: 50% 50% !important; }

.section-lasik-type {
  padding-bottom: 30px;
}
.section-lasik-type .heading{
  height: 100%;
  text-align: center;
}
.section-lasik-type .row > div.left{
  -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}
.bar-texture{
  position: absolute;
  top: 0;
  left: -20px;

  width: 2000px;
  height: 180px;
  pointer-events: none;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#234b6f+0,7090ab+100 */
  background: rgb(35,75,111); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(35,75,111,1) 0%, rgba(112,144,171,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(35,75,111,1) 0%,rgba(112,144,171,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(35,75,111,1) 0%,rgba(112,144,171,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#234b6f', endColorstr='#7090ab',GradientType=1 ); /* IE6-9 */

}

.section-lasik-type .row{ margin: 0 -20px; }
.section-lasik-type .row > div{ padding:0 20px  }
.section-lasik-type .heading .inner{
  display:block;
  text-align: left;
  margin:0 auto; 
}

.card{
  text-align: center;
  border:0;
  border-radius: 0;
  background-color: #d8d8d8;
  position: relative;
  padding:30px 0 20px;

  -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.card:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0; 
  right: 0;
  bottom:0;
  width: 100%;
  background-color: #d8d8d8;
  z-index: 10 
}
.card:after{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px; 
  bottom: -10px; 
  right: -10px;
   background-color: #d8d8d8;
   opacity: 0.2;

   -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.card-icon{
  display: block;
  text-align: center;
  position: relative;
  z-index: 11
}
.card-icon img{
  display: inline-block;
  vertical-align: top;
  max-width: 100px;
}
.card-info{
  display: block;
  padding:0 20px; 
  font-size: 14px;
  font-weight: 300;
  position: relative;
  z-index: 11
}
.card-info h2{
  font-weight: 600;
  font-size: 26px;
  color: #234b6f;
  margin: 5px 0;
  
}
.card-info h5{
  font-weight: 500;
  font-size: 16px;
  color: #234b6f;
  margin: 5px 0
} 
.pc .card:hover:after{
  opacity: 0.75;
  background-color: #000
}

.card-lasik { margin: 25px 0 0 0 }

.section-technology{
  padding:50px 0 0 ;
  overflow:hidden;
}
.section-technology .row{
  position: relative;
  z-index: 9
}
.section-technology .container{
  position: relative;
}
.section-technology .background.visumax{
  position: absolute;
  top:-46px;
  left: -317px;
  width: 754px;
  height: 544px;
  z-index: 9;
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url(../img/thumb/photo-759x570--1.png);
}
.section-technology .background.visumax img{ width: 100% }

.section-technology .background.texture{
  position: absolute;
  bottom: 42px;
  right: 71px;

  width: 630px;
  height: 630px;

  background-position: center center;
  background-repeat: no-repeat;
  background-size:contain;
  background-image: url(../img/icons/texture-technology.svg); 
} 

.section-technology .heading{
  text-align: left;
  padding-left: 10px;
  padding-bottom: 10px;
}
.technology-item.row{ 
  margin: 0; 
  max-width: 700px; 
  /*float: right;*/
}
.technology-item.row > div{ padding:0}

.technology-item .photo{
  padding-top: 25px;
  display: block;
  background: rgb(35,75,111); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(35,75,111,1) 0%, rgba(112,144,171,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(35,75,111,1) 0%,rgba(112,144,171,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(35,75,111,1) 0%,rgba(112,144,171,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#234b6f', endColorstr='#7090ab',GradientType=1 ); /* IE6-9 */
}
.technology-item .photo img{
  display: block;
  width: 100%;
}

.technology-item .text{
  display: block;
  max-width: 260px;
  margin: 0 auto;
  
}
.technology-item .text .wrap{
  display: block;
  margin: 0 auto 15px;
  padding:0 25px; 
  position: relative;
  max-width: 260px;
}
.technology-item .text .wrap:before,
.technology-item .text .wrap:after{
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px;
}
.technology-item .text .wrap:before{
  background-image: url(../img/icons/icon-quote-top.svg);
  top: 0;
  left: -10px;
}
.technology-item .text .wrap:after{
  background-image: url(../img/icons/icon-quote-bottom.svg);
  bottom: 0;
  right: -10px;
}
 
.technology-item .text .doctor{
  display: block;
  padding-left: 25px;
}
.technology-item .text .doctor h6{
  font-weight: 400;
  font-size: 14px;
}
.technology-item .text .doctor p{ 
  margin: 0;
  font-size: 13px;
  color: #717070;
  font-weight: 300
}
.technology-info{
  max-width: 370px;
  height: 100%;
  display: block;
  background-color: #ebeff2;
  padding:15px 30px 35px;
  position: relative;
  font-weight: 300;
  font-size: 15px;
}
.technology-info:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height:20px;
  d h4isplay: block;
  background: rgb(35,75,111); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(35,75,111,1) 0%, rgba(112,144,171,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(35,75,111,1) 0%,rgba(112,144,171,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(35,75,111,1) 0%,rgba(112,144,171,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#234b6f', endColorstr='#7090ab',GradientType=1 ); /* IE6-9 */
}
.technology-info .title-lg{ margin-bottom: 15px }

.technology-info .btn{
  height: 35px;
  line-height: 35px;
}
.technology-info .btn span{
  line-height: 32px
}
.technology-info .btn .arrow{top: 13px;}

.section-ourteam{
  display: block;
  padding:50px 0;

  text-align: center;
}
.ourteam-wrap{
  position: relative;
}
.swiper-team {
  padding-top: 20px
}
.ourteam-item {
  display: block;
  margin:0 auto;
  padding:20px 0;  
  background-color: #fff;
  box-shadow:0px 0px 15px rgba(0,0,0,0);
  -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}

.ourteam-item .photo{
  display: block;
  margin:0 auto;
  width: 100%;
  max-width: 135px; 
  border-radius: 50%; 
  position: relative;
}
.ourteam-item .photo:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.5);
  border-radius: 50%;
  border: 50px solid #2f6494;
  opacity: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ourteam-item .photo img{
  width: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 100
}
.ourteam-item .info{
  display: block;
  padding:20px 0 0
}
.ourteam-item .info h4{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.ourteam-item .info p{
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0
}


.pc .ourteam-item:hover .photo:before{
  transform: scale(1.08);
  opacity: 1;
  visibility: visible;
}

.section-callus .background{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-callus .container{
  position: relative;
  z-index: 9;
  padding-top: 100px;
  padding-bottom: 70px;
  text-align: right;
}
.section-callus .callus{
  display: inline-block;
  margin-left: auto; 
  color: #fff;
  text-align: left;
  padding-right: 70px
}
.section-callus .callus h3{
  color: inherit;
  font-size: 38px;
  font-weight: 600
}
.section-callus .callus .btn{
  width: 160px;
  margin: 15px 0 0 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.25)
}
.footer{
  padding:40px 0; 
  display: block;
  color: #fff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7090ab+0,234b6f+100 */
  background: rgb(112,144,171); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(112,144,171,1) 0%, rgba(35,75,111,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(112,144,171,1) 0%,rgba(35,75,111,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(112,144,171,1) 0%,rgba(35,75,111,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7090ab', endColorstr='#234b6f',GradientType=1 ); /* IE6-9 */

}

.footer .container{
  max-width: calc(1150px + 60px);
}
.footer-contact{
  font-weight: 300;
  font-size: 15px; 
}
.footer-contact h4{
  font-weight: 500;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 3px;
}
.footer-contact p{
  margin-bottom: 0
}

.followus{
  display: block;
  margin-left: auto; 
  font-size: 0;
  width: 140px;
  margin-right:-15px; 
}
.followus a{
  display: inline-block;
  vertical-align: top;
  width: 25px;
  height: 25px;
  margin: 0 10px;
}
.followus a img{ width: 100%; } 
.followus a.icon-link img{ width: 90% }

.pc .followus a:hover{ opacity: 0.75 }
.norwrap{
  white-space: nowrap;
}
@media (min-width: 1119px) and (max-width: 1440px) {}    

@media (max-width: 1440px) {}

@media (max-width: 1380px) {
  .section-banner .caption-wrap{ font-size: 16px }
  .section-banner .caption-wrap .caption{ max-width: 513px;padding-left: 0  }
  .section-banner .caption h2{ font-size: 39px; }
  .section-banner .caption h3{font-size: 35px;}

  .section-banner .caption h5{ font-size: 17px; }
}

@media (max-width: 1200px) {
  .section-banner .caption-wrap .caption{ padding-bottom: 2vw }
   
  .card-info{ font-size: 1.6vw  /**/}
  .section-lasik-type .row{ margin: 0 -15px }
  .section-lasik-type .row > div{ padding:0 15px;  }
  
}

@media (max-width: 1024px) {
  .section-banner .caption-wrap{ font-size: 15px; /*14px;*/} 
  .section-banner .caption-wrap .caption{ max-width: 448px;}
  .section-banner .caption h2,
  .section-banner .caption h3{font-size: 27px; /* 25px;*/} 
  .section-banner .caption h5{ font-size: 16px; /*14px */ }

  .technology-item .text{ font-size: 14px }
  .technology-item .text .wrap::before, 
  .technology-item .text .wrap::after{ width: 12px; height: 12px; background-size: contain; }
  .technology-item .text .wrap::before{ left: 5px }
  .technology-item .text .wrap::after{ right: 5px}

  .section-technology .background.visumax {
    width: 479px;
    height: 350px;
    top: 14px;
    left: -157px;
  }

  .section-callus .callus h3{ font-size:32px;  }
}

@media (max-width: 991.98px) { 
  .form-question{
    position: relative;
    bottom: auto;
    max-width: 100%;
    right: 0;
    margin-top: -70px;
  }
  
  .section-banner .caption-wrap .caption{ 
    padding-bottom: 100px;
    max-width: 100%;
    padding-bottom: 15vw;
  } 

  .section-banner .caption h2, 
  .section-banner .caption h3{ font-size: 35px }
  
  .section-banner .caption-wrap{ font-size: 16px; }
  .section-banner .caption h5{ font-size: 18px; }
  .section-banner .caption h5{ line-height: 1.3 }

  .section-banner .caption-thankyou .container{ padding-left: 0; padding-right: 0 }
  .section-banner .caption-thankyou .caption{
    padding:0 50px 10vw; 
    max-width: 100%;
    text-align: center;
  }
  .section-banner .caption-thankyou .caption::before{ display: none; }
  .section-banner .caption-thankyou .caption > div{
    display: block;
    width: 100%
  }

  .section-about-lasik{ padding: 50px 0 0}
  .section-about-lasik .col.text,
  .section-about-lasik .col.video{
    display: block;
    float: none;
    max-width: 100%
  }
  .article.lasik .inner{ max-width: 100% }
  .article.lasik .title-lg br{ display: none; }

  .section-lasik-type .row{ margin:0 -15px  }
  .section-lasik-type .row > div{ padding: 0 15px }
  .section-lasik-type .heading{ padding:35px 0; text-align: center; }
  .section-lasik-type .heading .inner{ text-align: center; }

  .section-lasik-type .row > div{ position: static; }
  .bar-texture{
    height: auto;
    width: auto;
    top: 215px;
    left: 0;
    right: 0;
    bottom: 140px;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7190ab+0,234b6f+100 */
    background: rgb(113,144,171); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(113,144,171,1) 0%, rgba(35,75,111,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(113,144,171,1) 0%,rgba(35,75,111,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(113,144,171,1) 0%,rgba(35,75,111,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7190ab', endColorstr='#234b6f',GradientType=0 ); /* IE6-9 */

  }
  .card-lasik {margin: 0 0 20px;}

  .section-ourteam{ padding-top: 50px }
  .section-ourteam .heading{ text-align: center !important; }

  .card-info{ padding: 0 20px }
  .card-info h2{ font-size: 22px }

 
  .technology-item .text{margin-left:5px; font-size: 12px; }
  .technology-item .text .wrap::after{ right: 15px }
  .technology-item .text .doctor h6{ font-size: 12px; }
  .technology-item .text .doctor p{ font-size: 11px; }
  .technology-info .title-lg{ font-size: 30px }
}

@media (max-width:850px) {
  /*.section-lasik-type .row > div{ 
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }*/
  .section-lasik-type .row { margin: 0 -10px }
  .section-lasik-type .row > div{ padding:0 10px;  }

  .card::after{ bottom: -7px; right: -7px; }
  .card-info{ font-size: 1.6vw /*13px*/}
  .bar-texture{ bottom: 90px }
  .form-question h3{font-size: 20px}

  .section-technology .background.texture{
    transform: scale(0.78);
    bottom: 66px;
    right: 59px;
  }
}
 
@media (max-width:767px) {
  .page{ padding-top: 71px }
  .header{ padding: 20px 0 } 
  .navbar-brand{ width: 110px }
  .title-lg{ font-size: 35px }
  .section-about-lasik{ padding-top: 25px; }

  .card-info{ font-size: 16px }

  .section-technology { overflow: visible; }
  .section-technology  .spaceT-xs{ margin-top:215px;  }
  .section-technology .background.texture{ display: none; }
  .section-technology .row{ position: static; }
  .technology-info{
    max-width: 100%;
    padding: 55px 30px 45px; 
  }

  .section-technology .heading{
    text-align: center;
    padding: 60px 0 30px;
    position: relative;
    margin:0 -30px;
  }
  .section-technology .heading:before{
    content: '';
    position: absolute;
    top: 30px;
    right: -60px;
    
    width: 250px;
    height: 200px;
    background-position:0 0;
    background-repeat: no-repeat;
    background-size:100%;
    background-image: url(../img/icons/texture-technology.svg);
  }
  .section-technology .background.visumax {
    position: absolute;
    width:auto;
    height: 350px;
    top: -30px;
    left:-25px;
    right: -25px;
    background-size: contain;
    background-position: top center;
  }

  .technology-item .text{
    max-width: 100%;
    font-size: 16px;
    padding: 40px 0 50px;
  }
  .technology-item .text .wrap{
    max-width: 100%
  }
  .technology-item .text .wrap::before{ left: 0 }
  .technology-item .text .doctor h6{ font-size: 16px }
  .technology-item .text .doctor p{ font-size: 14px }

  .technology-item .photo{ margin: 0 -30px; }  
  .ourteam-item .photo{max-width: 105px;}
  .ourteam-item .info h4,
  .ourteam-item .info p{ font-size: 14px; }

  .ourteam-wrap .swiper-button-prev{ left: -15px; }
  .ourteam-wrap .swiper-button-next{ right: -15px; }

  .section-ourteam{ padding-top: 50px }

  .section-callus .background{background-image: url(../img/thumb/photo-600x380--1.jpg) !important;}
  .section-callus .container{ padding: 150px 0 70px; text-align: center; }
  .section-callus .callus{
    padding: 0;
    text-align: center;
  }
  .section-callus .callus .btn{ margin-top:30px  }


  .footer-contact{
    text-align: center;
  }

  .followus{
    margin: 0;
    text-align: center;
    width: auto;
    padding-top: 25px
  }
}

@media (max-width:600px) {}

@media (max-width:576px) {
  body{ font-size: 14px }
  .container { 
    padding-left: 20px;
    padding-right: 20px;
  } 
  .heading p.bold{ font-weight: 500 }
  .section-banner .caption-wrap .caption { padding-bottom: 18vw }
  .section-banner .caption h2, 
  .section-banner .caption h3{
    font-size: 5vw; 
  }
  .section-banner .caption-wrap{ font-size: 3.2vw }
  .section-banner .caption h5{ font-size: 3.4vw }
  
  .page-loaded .section-banner .caption-thankyou p br{ display: none; }

  .section-banner .caption-thankyou .caption{ padding-left: 25px; padding-right: 25px; padding-bottom:35px }
  .section-banner .caption-thankyou h2.title { font-size: 18px }
  .section-banner .caption-thankyou{ font-size: 12px; }
  .section-banner .caption-thankyou p{margin-bottom: 0}
  .section-banner .caption-thankyou .btn{
    margin-top:19px; 
    width: 120px; 
    font-size: 13px;
    height: 35px;
    line-height: 35px;
  }
  .section-banner .caption-thankyou .btn span.text{ line-height: 35px; } 
  .section-banner .caption-thankyou .btn .arrow{ top: 14px }
  .card{ padding:40px 0  }
  .card-info h2{font-size: 24px}

  .form-question{
    padding: 20px;
  } 
  .form-question h3{font-size: 16px}
  
  .card-lasik{ margin:0 0 20px  }
  .article.lasik .title-lg { text-align: center; }
  .article.lasik .title-lg br{ display: block; }
  .article.lasik .button{ text-align: center; padding-bottom: 5px }

  .technology-item .photo{ margin: 0 -20px; } 
  .section-technology .background.visumax {
    background-size: 500px;
    background-position: top right;
    
  }
  .section-technology .spaceT-xs{ margin-top:240px;  }
  .swiper-button-black{ background-size: 28px; }

  .ourteam-wrap{ padding: 0 20px }
  .section-ourteam{ padding-top: 20px }

  .footer-contact p + p{ margin-top:15px  }
}

@media (max-width:480px) {

}

@media (max-width:400px) { 
  .section-banner .caption-wrap .caption{ padding-bottom: 50px }
  .section-banner .caption-wrap{ 
    font-size: 15px; /*3.2vw */
  }
  .section-banner .caption h5{ font-size: 4.1vw }
  .form-question{ margin-top:-42px;  }
}

@media (max-width:369px) {
  .article.lasik{
    padding-left: 25px;
    padding-right: 25px
  }

  .section-banner .caption-thankyou h2.title br{display: none;}

  .ourteam-item .photo{max-width:85px;}
  .ourteam-item .photo::before{display: none;}

  
}

@media (max-width:320px) {

 
}
 
 