@keyframes ani-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ani-fadeIn-Y {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-Y-rev {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-X {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes ani-fadeIn-X-rev {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes ani-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ani-bounce {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes ani-line {
  0% {
    height: 200px;
  }
  100% {
    height: 0px;
  }
}
html {
  font-size: 10px !important;
  overflow-x: hidden;
}

body {
  font-family: "Kanit", "PingFang TC", "Noto Sans TC", "LiHei Pro", "Microsoft JhengHei", "Microsoft YaHei", sans-serif !important;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.8rem;
  color: #253138;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    overflow-x: hidden;
  }
}

h1, h2 {
  font-weight: 600;
  color: #0D213B;
}

h1 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 4.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

a {
  text-decoration: none !important;
  color: #28B3CA;
}
a:hover {
  color: #28B3CA;
}

a.link {
  text-decoration: underline !important;
  color: #28B3CA;
}

a, button, .form-control {
  outline: none !important;
  border: none;
}
a:focus, a:active, button:focus, button:active, .form-control:focus, .form-control:active {
  outline: none !important;
}

.btn {
  font-size: 1.4rem;
  padding: 10px 15px;
  border-radius: 0px;
  min-width: 130px;
  font-weight: 500;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1) !important;
  transition: all ease-in-out 0.3s;
  border-radius: 30px;
  text-transform: uppercase;
  border: none;
}
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2) !important;
}
.btn-primary {
  background: #28B3CA;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  background: #28B3CA;
  border-color: #fff;
}
.btn-primary.disabled, .btn-primary:disabled {
  background: linear-gradient(135deg, rgba(40, 179, 202, 0), rgba(40, 179, 202, 0.5));
  border-color: #fff;
}
.btn-sm {
  padding: 8px 15px;
  min-width: unset;
  font-size: 1.4rem;
}
.btn-sm:hover {
  transform: none;
}
.btn-sm img, .btn-sm svg {
  height: 14px;
  width: auto;
}
.btn i, .btn img {
  margin-right: 5px;
  vertical-align: middle;
}
.btn img {
  height: 16px;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.4rem;
  }
}

a.btn-add {
  padding: 7px 0;
  display: inline-block;
}
a.btn-add img {
  margin-right: 5px;
  vertical-align: middle;
  height: 16px;
  position: relative;
  top: -2px;
}

.bg-black {
  background: #000 !important;
}

.bg-grey {
  background: #aaa;
}

.bg-primary {
  background: #28B3CA !important;
}

input.form-control::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}

.form-control {
  border-radius: 5px;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  color: #000;
}
.form-control:focus {
  box-shadow: none;
  border-color: #aaa;
}

select.form-control {
  background-image: url("../img/ic_angle.svg");
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: top 17px right 10px;
  appearance: none;
  padding: 0 30px 0 10px;
  height: 40px;
  width: 100%;
  display: block;
}

input[type=file].form-control {
  height: auto;
}

.form-check, .form-radio {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0px;
  margin-right: 10px;
}
.form-check input, .form-radio input {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.form-check input:checked + .icon, .form-radio input:checked + .icon {
  background: #28B3CA;
  border-color: #28B3CA;
}
.form-check input:checked + .icon::before, .form-radio input:checked + .icon::before {
  display: block;
}
.form-check .icon, .form-radio .icon {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #ccc;
  margin-right: 5px;
  position: relative;
}
.form-check .icon::before, .form-radio .icon::before {
  position: absolute;
  content: "";
  display: none;
}

.form-check .icon {
  border-radius: 2px;
}
.form-check .icon::before {
  top: 4px;
  left: 4px;
  height: 6px;
  width: 10px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.form-radio .icon {
  border-radius: 50%;
}
.form-radio .icon::before {
  top: 5px;
  left: 5px;
  height: 8px;
  width: 8px;
  background: #fff;
  border-radius: 50%;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  color: #666;
  font-size: 1.2rem;
}
.form-group .text {
  color: #333;
  margin-top: 5px;
}
.form-group.has-error label, .form-group.has-error .text {
  color: #F44336 !important;
}
.form-group.has-error .form-control {
  border-color: #F44336 !important;
}
@media screen and (max-width: 767px) {
  .form-group .form-control {
    padding: 10px;
  }
}

.form-inline .form-check, .form-inline .form-radio {
  margin-top: 5px;
  margin-bottom: 5px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .form-inline .form-check, .form-inline .form-radio {
    width: calc(33.3333333333% - 10px);
  }
}
@media screen and (max-width: 450px) {
  .form-inline .form-check, .form-inline .form-radio {
    width: calc(50% - 10px);
  }
}

.form-icon {
  position: relative;
}
.form-icon i, .form-icon img {
  position: absolute;
  top: 13px;
  left: 10px;
}
.form-icon input {
  padding-left: 30px;
}

.form-search {
  position: relative;
}
.form-search input {
  padding: 10px 35px 10px 15px;
}
.form-search button {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 40px;
  width: 40px;
  border: none;
  background: none;
  outline: none;
}

hr {
  border-color: #d8d8d8;
}

.func-tool {
  margin-top: 30px;
  text-align: center;
}
.func-tool .btn {
  width: calc(50% - 10px);
  max-width: 150px;
}
.func-tool .btn + .btn {
  margin-left: 10px;
}
.func-tool .btn-default {
  background: #fff;
}

.badge {
  border-radius: 15px;
}
.badge-primary {
  background: #28B3CA;
}

.alert {
  border-radius: 10px;
}
.alert ul li, .alert ol li {
  margin: 7px 0;
}
.alert .alert-heading i {
  margin-right: 5px;
}
.alert-info {
  background: rgba(65, 98, 169, 0.1);
  color: #4162a9;
  border-color: rgba(65, 98, 169, 0.2);
}
.alert-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  border-color: rgba(0, 0, 0, 0.1);
}

.tip {
  color: #666;
}

.text-xs {
  font-size: 1.4rem;
  color: #666;
}
@media screen and (max-width: 767px) {
  .text-xs {
    font-size: 1.2rem;
  }
}

.text-primary {
  color: #28B3CA !important;
}

.text-sec {
  color: #85B5E6 !important;
}

.text-success {
  color: #18D988 !important;
}

.text-warning {
  color: #ECC152 !important;
}

.text-danger {
  color: #F44336 !important;
}

.dec {
  margin-bottom: 20px;
}
.dec img {
  height: 25px;
}
@media screen and (max-width: 767px) {
  .dec {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .dec img {
    height: 15px;
  }
}

a.totop {
  opacity: 0;
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #000;
  border: 1px solid #000;
  font-size: 2rem;
  z-index: 1050;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 767px) {
  a.totop {
    right: 10px;
    bottom: 80px;
  }
}
a.totop.active {
  opacity: 1;
}

.owl-carousel .owl-dots {
  text-align: center;
  padding: 15px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: 0px 5px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #28B3CA;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 24px);
}
.owl-carousel .owl-nav .owl-prev {
  left: 15%;
}
.owl-carousel .owl-nav .owl-next {
  right: 15%;
}

a.logo {
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
a.logo img {
  height: 60px;
}

header {
  position: fixed;
  padding: 60px 0px;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1050;
  transition: all ease-in-out 0.3s;
}
header .container {
  display: flex;
  align-items: center;
}
header a.logo {
  transition: all ease-in-out 0.3s;
}
header a.logo img {
  height: 35px;
}
header nav {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: auto;
}
header nav ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
}
header nav ul li a {
  text-align: center;
  display: block;
  padding: 5px 10px;
  color: #0D213B;
}
header a.btn-sm {
  margin-left: 20px;
}
header a.nav-menu {
  display: none;
  position: absolute;
  top: 27px;
  right: 15px;
}
header.active {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  padding: 20px 0;
}
header.active a.logo img {
  height: 25px;
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
    padding: 20px 0;
    min-height: 70px;
  }
  header .container {
    flex-direction: column;
  }
  header a.logo {
    position: absolute;
    top: 27px;
    left: 15px;
  }
  header a.logo img {
    height: 20px !important;
  }
  header nav {
    margin-top: 40px;
    margin-left: 0px;
    display: none;
  }
  header nav.active {
    display: block;
  }
  header nav ul {
    display: block;
  }
  header nav ul li a {
    color: #333;
    padding: 15px;
  }
  header a.btn-sm {
    position: absolute;
    top: 20px;
    right: 50px;
  }
  header a.nav-menu {
    display: block;
  }
}

main section.mainview {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 250px 0px 80px 0px;
  position: relative;
}
main section.mainview::before, main section.mainview::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
main section.mainview::before {
  top: 0px;
  left: 0px;
  width: 33vw;
  height: 80vh;
  border-bottom-right-radius: 400px;
  background: #EAEEF2;
}
main section.mainview::after {
  bottom: 0px;
  right: 0px;
  width: 60vw;
  height: 400px;
  border-top-left-radius: 400px;
  border-bottom-left-radius: 400px;
  background: rgba(133, 181, 230, 0.6);
}
main section.mainview .con {
  animation: ani-fadeIn 1s, ani-fadeIn-X ease-in-out 1s forwards;
}
main section.mainview h1 {
  font-size: 6rem;
  color: #253138;
}
main section.mainview .sub-title {
  font-size: 4rem;
  font-weight: bold;
  margin-top: 40px;
}
main section.mainview .text {
  font-size: 2rem;
  margin-top: 160px;
  line-height: 1.9;
}
main section.mainview .btn {
  padding: 15px 40px;
  max-width: 200px;
  font-size: 1.8rem;
  margin-top: 40px;
  animation: ani-bounce ease-in-out 2s infinite;
}
main section.mainview .pic {
  width: 400px;
  height: 600px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_mainview_pic.png");
  border-radius: 300px;
  animation: ani-fadeIn-X-rev 1s ease-in-out forwards;
}
main section.mainview .pic img {
  width: 230px;
  position: absolute;
  top: -50px;
  left: -50px;
  transition: all ease-in-out 0.3s;
  animation: ani-bounce ease-in-out 2s infinite;
}
@media screen and (max-width: 767px) {
  main section.mainview {
    padding: 100px 0 60px 0;
    margin: 0;
    height: auto;
    background-image: url("../img/bg_mainview_mobile.jpg");
    text-align: center;
  }
  main section.mainview::before {
    width: 300px;
    height: 400px;
  }
  main section.mainview::after {
    width: 60vw;
    height: 300px;
  }
  main section.mainview .container {
    display: block;
  }
  main section.mainview h1 {
    font-size: 4rem;
  }
  main section.mainview .sub-title {
    font-size: 2rem;
    margin-top: 20px;
  }
  main section.mainview .sub-title br {
    display: none;
  }
  main section.mainview .text {
    font-size: 1.6rem;
    margin-top: 15px;
  }
  main section.mainview .btn {
    padding: 12px 30px;
    font-size: 1.4rem;
    margin-top: 30px;
    animation: none;
  }
  main section.mainview .pic {
    margin-top: 100px;
    margin-left: 10%;
    width: 80%;
    height: 400px;
  }
}
main section.area {
  padding: 100px 0;
  transition: all ease-in-out 0.3s;
  opacity: 0;
}
main section.area.active {
  animation: ani-fadeIn-Y 1s ease-in-out forwards;
  opacity: 1;
}
main section.area h3 {
  font-weight: 500;
}
main section.area .text {
  line-height: 1.6;
}
main section.area#area_about.active .pic {
  animation: ani-fadeIn-X ease-in-out 1s forwards;
}
main section.area#area_about .pic img {
  width: 100%;
}
main section.area#area_about .text {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  main section.area#area_about {
    position: relative;
    padding: 60px 0;
    opacity: 1;
    background-position: bottom -60px center;
    transition: all ease-in-out 1s;
    text-align: center;
  }
  main section.area#area_about h2 {
    margin-top: 20px;
  }
  main section.area#area_about .text {
    font-size: 1.6rem;
  }
  main section.area#area_about.active {
    animation: none;
    background-position: bottom 0px center;
  }
}
main section.area#area_mission {
  position: relative;
}
main section.area#area_mission .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  height: 100%;
  width: 100%;
  gap: 40px;
  z-index: -1;
}
main section.area#area_mission .bg .block {
  height: 100%;
}
main section.area#area_mission .bg .block1 {
  width: 30%;
  background: rgba(133, 181, 230, 0.3);
  border-radius: 0 200px 200px 0;
}
main section.area#area_mission .bg .block2 {
  width: 70%;
  background: #EAEEF2;
  border-radius: 200px 0 0 200px;
}
main section.area#area_mission h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
main section.area#area_mission .card {
  border-radius: 20px;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 280px;
  transition: all ease-in-out 0.3s;
  background-size: 120%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
main section.area#area_mission .card .title {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 30px 20px 30px 60px;
  border-top-left-radius: 120px;
  background: #314A6A;
  color: #fff;
  font-size: 2rem;
}
main section.area#area_mission .card:hover {
  background-size: 130%;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  main section.area#area_mission {
    padding: 60px 0;
    margin-bottom: 0px;
  }
}
main section.area#area_value {
  padding: 120px 0;
  margin-bottom: 100px;
  position: relative;
}
main section.area#area_value.active .pic {
  animation: ani-fadeIn-X-rev ease-in-out 1s forwards;
}
main section.area#area_value .bg {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  height: 100%;
  width: 800px;
  gap: 40px;
  z-index: -1;
  align-items: flex-end;
}
main section.area#area_value .bg .block1 {
  width: 400px;
  height: 400px;
  background: #EAEEF2;
  border-radius: 200px 200px 0 0;
}
main section.area#area_value .bg .block2 {
  width: 400px;
  height: 80%;
  background: rgba(133, 181, 230, 0.6);
  border-radius: 200px 200px 0 0;
}
main section.area#area_value .container {
  position: relative;
  z-index: 100;
}
main section.area#area_value h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
main section.area#area_value .card {
  padding: 40px;
  border-radius: 20px;
  border: none;
  background: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
main section.area#area_value .card .pic {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #4195EE;
  text-align: center;
  line-height: 80px;
}
main section.area#area_value .card .pic img {
  width: 40px;
}
main section.area#area_value .card h3 {
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 2rem;
}
main section.area#area_value .card .text {
  margin-top: 10px;
  font-size: 1.4rem;
  height: 70px;
}
@media screen and (max-width: 767px) {
  main section.area#area_value {
    padding: 60px 0;
  }
  main section.area#area_value .bg {
    width: 100%;
  }
  main section.area#area_value .bg .block1 {
    width: 50%;
    height: 50%;
    flex-shrink: 0;
  }
  main section.area#area_value .bg .block2 {
    width: 70%;
    height: 80%;
    margin-right: -50px;
  }
  main section.area#area_value h3 {
    margin-bottom: 20px;
  }
  main section.area#area_value .card {
    margin-bottom: 30px;
    height: auto;
  }
  main section.area#area_value .card .text {
    height: auto;
  }
}
main section.area#area_core {
  position: relative;
  margin-bottom: 100px;
  padding: 0px;
}
main section.area#area_core .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_core.jpg");
  height: 100%;
  width: 40%;
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  border-radius: 0 200px 200px 0;
}
main section.area#area_core h3 {
  margin-bottom: 20px;
}
main section.area#area_core .card {
  flex-direction: row;
  border: none;
  border-radius: 40px;
  padding: 40px;
  background: #DFF0F1;
  gap: 20px;
  margin-bottom: 30px;
}
main section.area#area_core .card .pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 80px;
  flex-shrink: 0;
}
main section.area#area_core .card .con .title {
  font-size: 2rem;
  font-weight: 500;
}
main section.area#area_core .card .con .text {
  font-size: 1.4rem;
  margin-top: 5px;
}
main section.area#area_core .card:nth-child(2n) {
  background: #E8F0F8;
}
main section.area#area_core .card:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  main section.area#area_core {
    padding-top: 400px;
    margin-bottom: 0px;
  }
  main section.area#area_core .bg {
    height: 400px;
    width: 80%;
    z-index: -1;
    left: 10%;
    border-radius: 200px 200px 0 0;
  }
  main section.area#area_core .dec, main section.area#area_core h2, main section.area#area_core h3 {
    text-align: center;
  }
  main section.area#area_core .card {
    padding: 40px 20px;
  }
}
main section.area#area_service {
  padding: 0 0 80px 0;
  margin-bottom: 100px;
  opacity: 1;
  position: relative;
}
main section.area#area_service.active {
  animation: none;
}
main section.area#area_service .bg {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  height: 100%;
  width: 90%;
  gap: 40px;
  z-index: -1;
  align-items: flex-end;
}
main section.area#area_service .bg .block1 {
  width: 400px;
  height: 400px;
  background: #EAEEF2;
  border-radius: 50%;
  flex-shrink: 0;
  left: -40px;
  position: relative;
}
main section.area#area_service .bg .block2 {
  width: calc(100% - 400px);
  height: 100%;
  background: rgba(133, 181, 230, 0.3);
  border-radius: 400px 0 0 400px;
}
main section.area#area_service .container-fluid {
  margin-top: -100px;
}
main section.area#area_service .card {
  background: transparent;
  border: none;
}
main section.area#area_service .card .card-body {
  width: 50%;
  margin: auto;
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
main section.area#area_service .card .card-body .pic {
  padding-bottom: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
  margin: -100px auto 0 auto;
}
main section.area#area_service .card .card-body h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 30px;
}
main section.area#area_service .card .card-body .text {
  font-size: 1.4rem;
}
main section.area#area_service .owl-carousel {
  padding: 0;
}
main section.area#area_service .owl-carousel .owl-stage-outer {
  padding: 100px 0 10px 0;
}
@media screen and (max-width: 767px) {
  main section.area#area_service {
    padding: 80px 0 0 0;
    background-image: url("../img/bg_focus_mobile.jpg");
  }
  main section.area#area_service .bg {
    align-items: flex-start;
  }
  main section.area#area_service .bg .block1 {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 250px;
    left: -100px;
  }
  main section.area#area_service .bg .block2 {
    width: 90%;
    height: 400px;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  main section.area#area_service .container-fluid {
    margin-top: 0px;
  }
  main section.area#area_service .dec, main section.area#area_service h2, main section.area#area_service h3 {
    text-align: center;
  }
  main section.area#area_service h3 {
    margin-bottom: 40px;
  }
  main section.area#area_service h3.text-center {
    margin-bottom: 0px;
  }
  main section.area#area_service .card {
    text-align: center;
    padding-left: 0px;
  }
  main section.area#area_service .card .card-body {
    width: 100%;
    padding: 30px;
  }
  main section.area#area_service .card .card-body .pic {
    position: static;
    top: auto;
    left: auto;
    margin: -60px auto 30px auto;
    padding-bottom: 75%;
  }
  main section.area#area_service .card .card-body h3, main section.area#area_service .card .card-body .text {
    text-align: center;
  }
  main section.area#area_service .card .card-body h3 {
    margin-bottom: 10px;
  }
  main section.area#area_service .owl-carousel {
    padding: 30px 0;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer {
    padding-top: 30px;
  }
  main section.area#area_service .owl-carousel .owl-nav {
    display: none;
  }
}
main section.area#area_contact {
  margin: 0 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_contact.jpg");
  border-radius: 200px;
}
main section.area#area_contact.active {
  animation: none;
}
main section.area#area_contact h3 {
  margin: 40px 0 20px 0;
}
main section.area#area_contact .btn {
  padding: 15px 40px;
  max-width: 200px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  main section.area#area_contact {
    background-image: url("../img/bg_contact_mobile.jpg");
    margin: 0 20px;
    border-radius: 80px;
    padding: 80px 20px 160px 20px;
  }
  main section.area#area_contact .btn {
    padding: 12px 30px;
    font-size: 1.4rem;
  }
}

footer {
  padding: 40px 15px;
  color: #000;
  font-size: 1.2rem;
  text-align: center;
}
footer a, footer a:hover {
  color: #000;
  text-decoration: underline !important;
}
footer span.gap {
  margin: 0 5px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  footer a {
    display: block;
    margin-bottom: 10px;
  }
  footer span.gap {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */