@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% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes ani-fadeIn-X-rev {
  0% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes ani-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@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-mainview {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ani-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  font-size: 10px !important;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: "Play", sans-serif;
  font-weight: 700;
}

h1, h2 {
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.4) 40%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
@media screen and (max-width: 767px) {
  h1, h2 {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.4));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
}

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

h2 {
  font-size: 8rem;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 4.8rem;
    margin-bottom: 25px !important;
  }
}

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: #0A4CA6;
}
a:hover {
  color: #0A4CA6;
}

a.link {
  text-decoration: underline !important;
  color: #0A4CA6;
}

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.8rem;
  padding: 15px;
  border-radius: 0px;
  min-width: 180px;
  font-weight: 500;
  box-shadow: none !important;
  transition: all ease-in-out 0.3s;
  border-radius: 30px;
  text-transform: uppercase;
  font-family: "Play", sans-serif;
  font-weight: bold;
}
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.btn-primary {
  background: #0A4CA6;
  border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  background: #0A4CA6;
}
.btn-primary.disabled, .btn-primary:disabled {
  background: #0A4CA6;
}
.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;
  }
}

.pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.pic img {
  width: 100%;
}

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

.bg-grey {
  background: #aaa;
}

.bg-primary {
  background: #0A4CA6 !important;
}

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

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;
  -webkit-appearance: none;
     -moz-appearance: none;
          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: #0A4CA6;
  border-color: #0A4CA6;
}
.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: #0A4CA6;
}

.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: #0A4CA6 !important;
}

.text-sec {
  color: #9F40E4 !important;
}

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

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

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

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

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

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1050;
  height: 100px;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
header a.logo {
  transition: all ease-in-out 0.3s;
  height: 0px;
  margin-bottom: 10px;
  overflow: hidden;
}
header a.logo img {
  height: 25px;
}
header nav {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 35px;
}
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: #fff;
}
header nav ul li:hover a {
  color: #fff;
  opacity: 0.7;
}
header a.btn-sm {
  margin-left: auto;
}
header a.nav-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}
header.active {
  background-image: linear-gradient(black 40%, rgba(0, 0, 0, 0));
}
header.active a.logo {
  height: 25px;
}
@media screen and (max-width: 991px) {
  header {
    height: 60px;
  }
  header.active {
    background: rgba(0, 0, 0, 0.8);
  }
  header .container {
    justify-content: center;
    flex-direction: row;
  }
  header a.logo {
    margin-bottom: 0px;
  }
  header nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    margin-left: 0px;
  }
  header nav.active {
    display: block;
  }
  header nav ul {
    display: block;
  }
  header nav ul li a {
    color: #fff;
    padding: 15px;
  }
  header a.btn-sm {
    margin-right: 20px;
  }
  header a.nav-menu {
    display: block;
  }
}

main section.mainview {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_mainview.jpg");
  padding: 17% 0 10% 0;
  text-align: center;
  display: flex;
  letter-spacing: 0;
  position: relative;
  animation: ani-mainview ease-in-out 1.5s forwards;
}
main section.mainview::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), black);
}
main section.mainview .pic, main section.mainview h1 {
  animation: ani-fadeIn-Y ease-in-out 1.5s forwards;
}
main section.mainview h1 {
  font-size: 6rem;
  background-image: linear-gradient(to right, #fff, #fff);
  margin-top: 60px;
}
main section.mainview .text {
  margin-top: 20px;
}
main section.mainview .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  main section.mainview {
    background-image: url("../img/bg_mainview_mobile.jpg");
    padding: 200px 0;
    height: auto;
    justify-content: center;
  }
  main section.mainview .container {
    display: block;
  }
  main section.mainview h1 {
    font-size: 4rem;
    margin-top: 20px;
  }
  main section.mainview .text {
    font-size: 1.8rem;
  }
  main section.mainview .btn {
    padding: 12px 30px;
    font-size: 1.4rem;
    margin-top: 40px;
  }
}
main section.area {
  margin: 0 15px 140px 15px;
  padding: 80px 0;
  transition: all ease-in-out 1s;
  border-radius: 40px;
  opacity: 0;
}
main section.area h2 {
  margin-top: -110px;
}
main section.area .text {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
main section.area.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main section.area {
    margin-bottom: 100px;
    padding: 80px 0 40px 0;
  }
  main section.area h2 {
    margin-top: -120px !important;
  }
}
main section.area#area_about.active, main section.area#area_value.active, main section.area#area_solution.active {
  animation: ani-fadeIn-Y 2s ease-in-out forwards;
}
main section.area#area_solution h2, main section.area#area_service h2, main section.area#area_contact h2 {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  main section.area#area_solution h2, main section.area#area_service h2, main section.area#area_contact h2 {
    font-size: 3.6rem;
  }
}
main section.area#area_about .dec, main section.area#area_mission .dec {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 2;
}
main section.area#area_about {
  background: #0A4CA6;
  padding-right: 60px;
  position: relative;
}
main section.area#area_about.active .pic {
  animation: ani-fadeIn-X 1.5s ease-in-out forwards;
  opacity: 1;
}
main section.area#area_about .container {
  position: relative;
}
main section.area#area_about h2 {
  margin-top: -130px;
}
main section.area#area_about .pic {
  opacity: 0;
}
main section.area#area_about .text {
  font-size: 2.4rem;
  color: #fff;
}
main section.area#area_about .dec {
  animation: ani-rotate ease-in-out 5s infinite;
}
@media screen and (max-width: 767px) {
  main section.area#area_about {
    padding: 80px 15px 40px 15px;
    opacity: 1;
    transition: all ease-in-out 1s;
    text-align: left;
  }
  main section.area#area_about .dec {
    top: 20px;
    right: 20px;
  }
  main section.area#area_about .dec img {
    height: 50px;
  }
  main section.area#area_about .text {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  main section.area#area_about.active {
    animation: none;
  }
}
main section.area#area_mission {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_mission.jpg");
  position: relative;
}
main section.area#area_mission .dec {
  opacity: 0;
}
main section.area#area_mission h2 {
  position: relative;
  z-index: 2;
  margin-top: -120px;
}
main section.area#area_mission .row {
  margin-top: -90px;
}
main section.area#area_mission .card {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 600px;
  border-radius: 40px;
  padding: 80px;
  text-align: center;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  border: none;
}
main section.area#area_mission .card h3 {
  margin-bottom: 5px;
  font-size: 4rem;
  font-weight: bold;
}
main section.area#area_mission .card .text {
  font-size: 1.8rem;
  margin-top: 20px;
}
main section.area#area_mission .card#card_mission {
  background-image: url("../img/bg_card_mission.jpg");
  margin-top: 40px;
  color: #fff;
}
main section.area#area_mission .card#card_vision {
  background-image: url("../img/bg_card_vision.jpg");
  margin-top: 120px;
}
main section.area#area_mission .card#card_vision h3 {
  color: #0A4CA6;
}
main section.area#area_mission .card#card_vision .text {
  color: #333;
}
main section.area#area_mission.active .card, main section.area#area_mission.active .dec {
  animation: ani-fadeIn-X 1s ease-in-out forwards;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  main section.area#area_mission .dec {
    top: 40px;
    right: 40px;
  }
  main section.area#area_mission .dec img {
    height: 30px;
  }
  main section.area#area_mission .row {
    margin-top: 0px;
  }
  main section.area#area_mission .card {
    padding: 50px 20px 40px 20px;
    margin-bottom: 30px;
    height: 400px;
  }
  main section.area#area_mission .card h3 {
    font-size: 2.4rem;
  }
  main section.area#area_mission .card .text {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  main section.area#area_mission .card#card_mission {
    margin-top: 0px;
  }
  main section.area#area_mission .card#card_vision {
    margin-top: 0px;
  }
}
main section.area#area_value {
  background: #0A4CA6;
}
main section.area#area_value.active .pic {
  animation: ani-fadeIn-X-rev ease-in-out 1s forwards;
}
main section.area#area_value .container {
  position: relative;
}
main section.area#area_value .card {
  padding: 30px;
  margin-bottom: 30px;
  border: none;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main section.area#area_value .card .pic {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #fff;
  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: 0px;
  font-size: 2.4rem;
  width: calc(100% - 80px);
}
main section.area#area_value .card .text {
  margin-top: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  main section.area#area_value {
    padding-bottom: 0px;
  }
  main section.area#area_value h2 {
    margin-bottom: 60px;
  }
  main section.area#area_value #row2 {
    margin-top: 0px;
    margin-left: -15px;
  }
  main section.area#area_value .card {
    margin-bottom: 60px;
    height: auto;
    padding: 30px 20px;
  }
  main section.area#area_value .card .pic {
    margin-top: -80px;
  }
}
main section.area#area_solution {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 200px;
  background-image: url("../img/bg_solution.jpg");
}
main section.area#area_solution h2 {
  margin-top: -250px;
  margin-bottom: 100px;
}
main section.area#area_solution .card {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 20px;
  padding: 270px 30px 30px 30px;
}
main section.area#area_solution .card .pic {
  padding-bottom: 60%;
  border-radius: 40px;
  margin-top: -330px;
  box-shadow: 0px 10px 30px rgba(0, 195, 247, 0.25);
}
main section.area#area_solution .card h3 {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 0px;
}
main section.area#area_solution .card .text {
  margin: 10px 0;
  color: #fff;
}
main section.area#area_solution .card ul {
  margin-left: 0px;
  padding-left: 15px;
}
main section.area#area_solution .card ul li {
  margin-top: 5px;
}
main section.area#area_solution .row .col-md-6:nth-child(2) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  main section.area#area_solution {
    padding-top: 80px;
  }
  main section.area#area_solution .card {
    margin-top: 70px;
    padding: 250px 20px 20px 20px;
  }
  main section.area#area_solution .card .pic {
    padding-bottom: 75%;
  }
  main section.area#area_solution .card h3 {
    margin-top: 20px;
  }
}
main section.area#area_service {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 150px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 0px;
  background-image: url("../img/bg_service.jpg");
}
main section.area#area_service.active {
  animation: ani-fadeIn-X ease-in-out 2s;
}
main section.area#area_service h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
  margin-left: -40px;
  color: #fff;
}
main section.area#area_service .card {
  border: none;
  border-radius: 20px;
  height: 300px;
  width: 360px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: left;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all ease-in-out 0.3s;
}
main section.area#area_service .card .pic {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
main section.area#area_service .card .pic img {
  width: 80px;
  display: inline-block;
  transition: all ease-in-out 0.3s;
}
main section.area#area_service .card h3 {
  font-size: 2rem;
  margin-top: 40px;
  font-weight: 500;
}
main section.area#area_service .card .text {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  main section.area#area_service .card:hover {
    background-image: linear-gradient(135deg, #0A4CA6 50%, #09286F);
    width: 600px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  }
  main section.area#area_service .card:hover .pic img {
    transform: scale(2);
  }
  main section.area#area_service .card:hover::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(30px);
    background: #00C3F7;
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: -1;
  }
}
main section.area#area_service .owl-carousel {
  margin-top: -20px;
}
main section.area#area_service .owl-carousel .owl-stage-outer {
  overflow: visible;
}
main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage {
  width: 1400px !important;
  display: flex;
}
main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  float: unset;
}
@media screen and (max-width: 767px) {
  main section.area#area_service {
    padding: 100px 0 0 0;
  }
  main section.area#area_service h2 {
    margin-bottom: 30px;
    margin-left: 0px;
  }
  main section.area#area_service .card {
    margin-bottom: 20px;
    width: 300px;
    height: auto;
  }
  main section.area#area_service .owl-carousel {
    margin-top: 0px;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage {
    width: unset;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item {
    float: left;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .card {
    background-image: linear-gradient(135deg, #0A4CA6 50%, #09286F);
    width: 300px;
    display: block;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .card .pic img {
    transform: scale(2);
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .card::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(30px);
    background: #00C3F7;
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: -1;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item.active + .active .card {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item.active + .active .card::before {
    display: none;
  }
  main section.area#area_service .owl-carousel .owl-stage-outer .owl-stage .owl-item.active + .active .card .pic img {
    transform: scale(1);
  }
}
main section.area#area_contact {
  padding: 150px 0;
  margin-bottom: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/bg_contact.jpg");
  opacity: 1;
}
main section.area#area_contact h2 {
  margin-top: -240px;
  margin-bottom: 0px !important;
}
main section.area#area_contact h3 {
  margin-top: 20px;
  line-height: 1.4;
}
main section.area#area_contact .text {
  margin-top: 40px;
  font-size: 2rem;
}
main section.area#area_contact .btn {
  margin-top: 40px;
}
main section.area#area_contact.active {
  animation: none;
}
@media screen and (max-width: 767px) {
  main section.area#area_contact {
    padding: 100px 0 180px 0;
    background-image: url("../img/bg_contact_mobile.jpg");
  }
  main section.area#area_contact h2 {
    margin-top: -150px !important;
  }
  main section.area#area_contact h3 br {
    display: none;
  }
  main section.area#area_contact .text {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  main section.area#area_contact .btn {
    margin-top: 10px;
  }
}

footer {
  padding: 30px 15px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
footer a, footer a:hover {
  color: #fff;
  text-decoration: underline !important;
}
footer span.gap {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  footer a {
    display: block;
    margin-bottom: 10px;
  }
  footer span.gap {
    display: none;
  }
}

.owl-carousel .owl-dots {
  text-align: center;
  padding: 15px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0px 5px;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 50px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #0A4CA6;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.owl-carousel .owl-nav .owl-prev {
  left: -25px;
}
.owl-carousel .owl-nav .owl-next {
  right: -25px;
}/*# sourceMappingURL=main.css.map */