* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.container860 {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.container980 {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.container1280 {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.container1240 {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.container1440 {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.flex-row-st-st {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.flex-row-cen-cen {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.flex-row-cen {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-row-cen-st {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.flex-row-st-be {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.flex-row-cen-be {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.flex-col-st-st {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.flex-col-st-be {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.flex-col-cen-cen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.white-button {
  font-family: "fc-sb";
  font-size: 18px;
  background-color: white;
  color: black;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  text-decoration: none;
}

.black-button {
  font-family: "fc-sb";
  font-size: 18px;
  background-color: black;
  color: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  text-decoration: none;
}

.green-button {
  font-family: "fc-sb";
  font-size: 18px;
  background-color: #00b900;
  color: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  text-decoration: none;
}

.no-padding {
  padding: 0 !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

header {
  height: 80px;
  width: 100%;
  background-color: transparent;
  position: fixed;
  z-index: 999;
  transform: translatey(-100%);
  top: 0;
}
header .container1440 {
  height: 100%;
}
header .container1440 .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .container1440 .nav-wrap .nav-left {
  display: flex;
  align-items: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
header .container1440 .nav-wrap .nav-left .nav-logo {
  filter: brightness(100);
  transition: all 0.1s;
}
header .container1440 .nav-wrap .nav-left .nav-logo.animate {
  filter: brightness(1);
}
header .container1440 .nav-wrap .nav-left .nav-menu {
  display: flex;
  -moz-column-gap: 0px;
       column-gap: 0px;
}
header .container1440 .nav-wrap .nav-left .nav-menu a {
  font-family: "fc-r";
  font-size: 18px;
  color: white;
  text-decoration: none;
}
header .container1440 .nav-wrap .nav-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
header .container1440 .nav-wrap .nav-right a {
  text-decoration: none;
}
header .container1440 .nav-wrap .nav-right .flex-row-cen-cen {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 15px;
}
header .container1440 .nav-wrap .nav-right .flex-row-cen-cen p {
  font-family: "fc-r";
  font-size: 18px;
  color: white;
  text-decoration: none;
}
header .container1440 .nav-wrap .nav-right .flex-row-cen-cen img {
  margin-right: 10px;
  width: 20px;
}
header .container1440 .nav-wrap .nav-right .hamburger {
  display: none;
}

header.open {
  transform: translatey(0%);
  transition: all ease-in-out 700ms;
}

header.animate {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}

.menu-mobile {
  display: none;
}

.header-normal header .container1440 .nav-wrap .nav-left .nav-logo {
  filter: brightness(1);
  transition: all ease-in-out 300ms;
}
.header-normal header .container1440 .nav-wrap .nav-left .nav-menu a {
  color: black;
  transition: all ease-in-out 300ms;
}
.header-normal header .container1440 .nav-wrap .nav-right a img {
  filter: brightness(0);
  transition: all ease-in-out 300ms;
}
.header-normal header .container1440 .nav-wrap .nav-right .flex-row-cen-cen img {
  filter: brightness(0);
  transition: all ease-in-out 300ms;
}
.header-normal header .container1440 .nav-wrap .nav-right .flex-row-cen-cen p {
  color: black;
  transition: all ease-in-out 300ms;
}

.header-normal header.animate .container1440 .nav-wrap .nav-left .nav-logo {
  filter: brightness(1);
  transition: all ease-in-out 300ms;
}
.header-normal header.animate .container1440 .nav-wrap .nav-left .nav-menu a {
  color: white;
  transition: all ease-in-out 300ms;
}
.header-normal header.animate .container1440 .nav-wrap .nav-right a img {
  filter: brightness(1);
  transition: all ease-in-out 300ms;
}
.header-normal header.animate .container1440 .nav-wrap .nav-right .flex-row-cen-cen img {
  filter: brightness(1);
  transition: all ease-in-out 300ms;
}
.header-normal header.animate .container1440 .nav-wrap .nav-right .flex-row-cen-cen p {
  color: white;
  transition: all ease-in-out 300ms;
}

footer {
  position: relative;
  background-color: #171717;
}
footer .container1440 {
  position: relative;
}
footer .container1440 .footer-main-logo {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 0;
}
footer .container1440 .footer-wrap {
  padding: 60px 150px 40px 150px;
}
footer .container1440 .footer-wrap .footer-logo {
  margin-bottom: 40px;
}
footer .container1440 .footer-wrap h2 {
  font-family: "fc-sb";
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  position: relative;
}
footer .container1440 .footer-wrap .flex-row-st-st {
  -moz-column-gap: 140px;
       column-gap: 140px;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st {
  z-index: 1;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st .tel-wrap {
  color: white;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st .footer-cer img {
  margin-right: 20px;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st .footer-cer div {
  font-family: "fc-r";
  font-size: 14px;
  color: black;
  line-height: 1.5;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st .footer-cer div a {
  color: black;
  pointer-events: none;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st p,
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st a {
  font-family: "fc-r";
  font-size: 16px;
  color: white;
  line-height: 1.5;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st p {
  margin-bottom: 20px;
}
footer .container1440 .footer-wrap .flex-row-st-st .flex-col-st-st .footer-cer {
  width: 240px;
  background-color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 30px;
}
footer .container1440 .footer-wrap .flex-row-st-st ul {
  z-index: 1;
}
footer .container1440 .footer-wrap .flex-row-st-st ul li {
  font-family: "fc-r";
  font-size: 18px;
  color: white;
  line-height: 1.5;
}
footer .container1440 .footer-wrap .flex-row-st-st ul li a {
  color: white;
}
footer .container1440 .footer-wrap .flex-row-cen-be {
  margin-top: 50px;
}
footer .container1440 .footer-wrap .flex-row-cen-be div:first-child {
  -moz-column-gap: 50px;
       column-gap: 50px;
  z-index: 99;
}
footer .container1440 .footer-wrap .flex-row-cen-be div:first-child p,
footer .container1440 .footer-wrap .flex-row-cen-be div:first-child a {
  font-family: "fc-r";
  font-size: 14px;
  color: white;
  line-height: 1.5;
}
footer .container1440 .footer-wrap .flex-row-cen-be div:last-child {
  z-index: 99;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
footer .container1440 .footer-wrap .footer-button {
  display: none;
}

.dialogs.fancybox__content {
  padding: 50px !important;
  background: #048893 !important;
}
.dialogs.fancybox__content p {
  font-family: "fc-sb";
  font-size: 22px;
  color: white;
  line-height: 1.5;
}
.dialogs.fancybox__content .flex-row-st-st {
  margin-top: 50px;
  font-family: "fc-r";
  color: white;
}
.dialogs.fancybox__content .flex-row-st-st img {
  width: 35px;
  border-radius: 100px;
  margin-right: 15px;
}
.dialogs.fancybox__content .flex-row-st-st .flex-col-st-st div:first-child {
  font-size: 14px;
  line-height: 1.5;
}
.dialogs.fancybox__content .flex-row-st-st .flex-col-st-st div:last-child {
  font-size: 12px;
  line-height: 1.5;
}

.nf-pass.field-wrap .nf-field-element:after {
  font-size: 20px !important;
}

.front-page .banner {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.front-page .banner .bg-img.banner-bg {
  scale: 1 !important;
  filter: brightness(0.7);
  height: auto !important;
  top: -400px;
}
.front-page .banner .container1440 {
  height: 100%;
}
.front-page .banner .container1440 .banner-wrap {
  overflow: hidden;
  display: grid;
  grid-template-columns: 65% 35%;
  height: 100%;
}
.front-page .banner .container1440 .banner-wrap .banner-text {
  display: flex;
  align-items: center;
  padding-left: 70px;
}
.front-page .banner .container1440 .banner-wrap .banner-text .flex-col-st-st h1 {
  font-family: "fc-r";
  font-size: 110px;
  color: white;
  margin-bottom: 30px;
  line-height: 1.1;
}
.front-page .banner .container1440 .banner-wrap .banner-text .flex-col-st-st h2 {
  font-family: "fc-r";
  font-size: 30px;
  color: white;
  line-height: 1.3;
}
.front-page .banner .container1440 .banner-wrap .banner-text .flex-row-st-st {
  padding-bottom: 100px;
}
.front-page .banner .banner-form {
  display: flex;
  align-items: center;
  padding: 0px 40px;
  margin-right: 0px;
  background-color: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transform: translatex(100%);
  width: 35%;
}
.front-page .banner .banner-form .bg-img {
  display: none;
}
.front-page .banner .banner-form .banner-form-wrap {
  width: 100%;
}
.front-page .banner .banner-form .banner-form-wrap .flex-row-cen-be {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.front-page .banner .banner-form .banner-form-wrap .flex-row-cen-be h3 {
  font-family: "fc-r";
  font-size: 34px;
  color: white;
}
.front-page .banner .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen img {
  width: 45px;
  border-radius: 100px;
  margin-right: 15px;
}
.front-page .banner .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen div {
  color: white;
}
.front-page .banner .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen div div:first-child {
  font-family: "fc-sb";
  font-size: 14px;
  margin-bottom: 10px;
}
.front-page .banner .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen div div:last-child {
  font-family: "fc-r";
  font-size: 12px;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-top: 10px;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont {
  font-weight: normal;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-title {
  display: none;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content {
  padding: 0;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content label {
  font-family: "fc-sb";
  font-size: 16px;
  color: white;
  font-weight: normal;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content input {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-label {
  margin-bottom: 5px !important;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container {
  margin-bottom: 15px !important;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .field-wrap.submit-wrap .nf-field-element {
  display: flex;
  overflow: hidden;
  border-radius: 100px;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .field-wrap.submit-wrap .nf-field-element input {
  margin: 0 auto;
  width: 100%;
  border-radius: 100px;
  background-color: #ea7424;
  font-family: "fc-sb";
  font-size: 18px;
  color: white;
  font-weight: normal;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.submit-container.label-above.textbox-container {
  margin-top: 15px;
  margin-bottom: 0px !important;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.listcountry-container .nf-field .nf-field-element .ninja-forms-field.nf-element {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.date-container .nf-field .nf-field-element input {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.listselect-container .nf-field .nf-field-element .ninja-forms-field.nf-element {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
  line-height: 1.3;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .ninja-forms-req-symbol {
  color: #ea7424;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-cell .nf-field-container.listselect-container.label-above.list-container .nf-field .nf-field-element select {
  background-color: white;
  background-image: url("../image/selecticon.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-origin: content-box;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout .nf-form-fields-required {
  display: none;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-response-msg p:first-child span {
  font-family: "fc-r" !important;
  font-size: 30px !important;
}
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-response-msg p,
.front-page .banner .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-response-msg span {
  font-family: "fc-r" !important;
  font-size: 18px !important;
}
.front-page .banner .banner-form .banner-form-wrap p {
  font-family: "fc-r";
  font-size: 14px;
  color: white;
  text-align: center;
}
.front-page .banner .banner-form .banner-form-wrap p a {
  padding-bottom: 2px;
  border-bottom: 0.5px solid white;
  color: white;
}
.front-page .banner .banner-form.open {
  transform: translatex(0%);
  transition: all ease-in-out 700ms;
}
.front-page .intro {
  background-color: #006e77;
  padding: 80px 0px 120px 0px;
}
.front-page .intro .container1440 .intro-img {
  position: absolute;
  left: 20px;
  bottom: -210px;
  width: 40%;
}
.front-page .intro .container1440 .intro-wrap {
  width: 45%;
  margin-left: auto;
  margin-right: 100px;
}
.front-page .intro .container1440 .intro-wrap h2 {
  font-family: "fc-r";
  font-size: 40px;
  color: white;
  line-height: 1.3;
  margin-bottom: 25px;
}
.front-page .intro .container1440 .intro-wrap p {
  font-family: "fc-r";
  font-size: 20px;
  color: white;
  line-height: 1.5;
  margin-bottom: 25px;
}
.front-page .intro .container1440 .intro-wrap ul {
  line-height: 2;
}
.front-page .intro .container1440 .intro-wrap ul li {
  font-family: "fc-r";
  font-size: 18px;
  color: white;
}
.front-page .intro .container1440 .intro-wrap ul li img {
  margin-bottom: -3px;
  margin-right: 5px;
}
.front-page .main-visa {
  padding: 50px 0px;
}
.front-page .main-visa .main-visa-item {
  margin: 100px 0px;
}
.front-page .main-visa .main-visa-item .item-detail {
  margin-top: 25px;
}
.front-page .main-visa .main-visa-item .item-detail .flex-row-cen-st {
  margin-bottom: 30px;
}
.front-page .main-visa .main-visa-item .item-detail .flex-row-cen-st img {
  margin-right: 10px;
}
.front-page .main-visa .main-visa-item .item-detail .flex-row-cen-st h2 {
  font-family: "fc-r";
  font-size: 40px;
  background: linear-gradient(to right, #048893 50%, #ea7424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
}
.front-page .main-visa .main-visa-item .item-detail .flex-col-st-st div:first-child {
  font-family: "fc-r";
  font-size: 20px;
  line-height: 1.4;
}
.front-page .main-visa .main-visa-item .item-detail .flex-col-st-st div:last-child {
  font-family: "fc-r";
  font-size: 60px;
  line-height: 1.4;
}
.front-page .main-visa .main-visa-item .item-detail .sub-detail {
  font-family: "fc-r";
  font-size: 14px;
  margin: -25px 0px 30px 0px;
  line-height: 1.5;
  max-width: 300px;
}
.front-page .main-visa .main-visa-item .item-detail p {
  font-family: "fc-r";
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}
.front-page .main-visa .main-visa-item .item-detail a {
  text-decoration: none;
}
.front-page .main-visa .main-visa-item .item-detail .black-button,
.front-page .main-visa .main-visa-item .item-detail .green-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 44px;
}
.front-page .main-visa .main-visa-item .item-detail .black-button {
  margin: 30px 0px 10px 0px;
}
.front-page .main-visa .main-visa-item .item-detail .green-button img {
  margin-left: 10px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+1) {
  display: flex;
  padding-left: 80px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+1) .main-visa-img-wrap {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  margin-right: 70px;
  max-width: 700px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+1) .main-visa-img-wrap picture img {
  max-width: 700px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+2) {
  display: flex;
  flex-direction: row-reverse;
  padding-left: 80px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+2) .main-visa-img-wrap {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  margin-left: 100px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+2) .main-visa-img-wrap picture img {
  max-width: 790px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+3) {
  display: flex;
  padding-right: 80px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+3) .main-visa-img-wrap {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  margin-right: 70px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+3) .main-visa-img-wrap picture img {
  max-width: 790px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+4) {
  display: flex;
  flex-direction: row-reverse;
  padding-right: 80px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+4) .main-visa-img-wrap {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  margin-left: 100px;
}
.front-page .main-visa .main-visa-item:nth-child(4n+4) .main-visa-img-wrap picture img {
  max-width: 700px;
}
.front-page .consult {
  position: relative;
  padding: 170px 0px 120px 0px;
  overflow: hidden;
}
.front-page .consult .container1440 {
  height: 100%;
  display: flex;
}
.front-page .consult .container1440 .consult-wrap {
  text-align: center;
  margin: 0 auto;
}
.front-page .consult .container1440 .consult-wrap h2 {
  font-family: "fc-r";
  font-size: 40px;
  color: white;
  margin-bottom: 30px;
  line-height: 1.4;
}
.front-page .consult .container1440 .consult-wrap .white-button {
  margin: 0 auto;
}
.front-page .consult img {
  filter: brightness(0.7);
  height: auto !important;
  top: -260px;
}
.front-page .step {
  background-color: #f3dacb;
  position: relative;
}
.front-page .step .container1440 .step-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap {
  padding: 60px 0px;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail h2 {
  font-family: "fc-r";
  font-size: 34px;
  background: linear-gradient(to right, #000 10%, #ea7424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  margin-bottom: 50px;
  padding-top: 5px;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail h2 span {
  font-family: "a-m";
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail .step-item {
  margin-bottom: 30px;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .step-num {
  font-family: "a-m";
  width: 45px;
  height: 45px;
  background-color: #ea7424;
  font-size: 32px;
  color: white;
  margin-right: 20px;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st h3 {
  font-family: "fc-sb";
  font-size: 20px;
  margin-bottom: 10px;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st p {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st a div {
  padding: 5px 10px;
  border: 2px solid black;
  border-radius: 100px;
  font-family: "fc-sb";
  font-size: 14px;
  color: black;
}
.front-page .step .container1440 .step-wrap .step-detail-wrap .step-detail .step-item:last-child {
  margin-bottom: 0px;
}
.front-page .step .step-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.front-page .step .step-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-page .testi {
  background-color: #048893;
  overflow: hidden;
}
.front-page .testi .container1440 .testi-wrap {
  padding: 100px 80px;
}
.front-page .testi .container1440 .testi-wrap .flex-row-st-st {
  margin-bottom: 60px;
}
.front-page .testi .container1440 .testi-wrap .flex-row-st-st .flex-col-st-st h2 {
  font-family: "fc-r";
  font-size: 34px;
  color: white;
  margin-bottom: 15px;
}
.front-page .testi .container1440 .testi-wrap .flex-row-st-st .flex-col-st-st div {
  font-family: "fc-r";
  font-size: 20px;
  color: white;
}
.front-page .testi .container1440 .testi-wrap .flex-row-st-st img {
  margin-left: 25px;
}
.front-page .testi .container1440 .testi-wrap .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide {
  text-align: left;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 300px;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide blockquote {
  padding-left: 20px;
  font-family: "fc-sb";
  font-size: 22px;
  color: white;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen {
  padding-left: 20px;
  font-family: "fc-r";
  color: white;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen img {
  width: 35px;
  border-radius: 100px;
  margin-right: 15px;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen .flex-col-st-st div:first-child {
  font-size: 14px;
  line-height: 1.5;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen .flex-col-st-st div:last-child {
  font-size: 12px;
  line-height: 1.5;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .read-more {
  padding-left: 20px;
  margin-bottom: 15px;
  padding-left: 20px;
  font-family: "fc-r";
  font-size: 14px;
  color: white;
  cursor: pointer;
  text-decoration: underline;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-pagination {
  top: -100px;
  right: 0;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.22);
  padding: 5px;
  border-radius: 100px;
  position: absolute;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.front-page .testi .container1440 .testi-wrap .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black;
}
.front-page .service .container1440 {
  padding-left: 0;
  padding-right: 0;
}
.front-page .service .container1440 .service-wrap {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.front-page .service .container1440 .service-wrap .service-item {
  position: relative;
  overflow: hidden;
}
.front-page .service .container1440 .service-wrap .service-item img {
  filter: brightness(0.7);
  transition: all ease-in-out 400ms;
}
.front-page .service .container1440 .service-wrap .service-item .service-detail {
  text-align: center;
  padding: 60px 0px;
}
.front-page .service .container1440 .service-wrap .service-item .service-detail h2 {
  font-family: "a-m";
  font-size: 80px;
  color: white;
  margin-bottom: 25px;
}
.front-page .service .container1440 .service-wrap .service-item .service-detail div {
  font-family: "fc-r";
  font-size: 30px;
  color: white;
  margin-bottom: 15px;
}
.front-page .service .container1440 .service-wrap .service-item .service-detail p {
  font-family: "fc-r";
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin-bottom: 25px;
}
.front-page .service .container1440 .service-wrap .service-item .service-detail .white-button {
  font-family: "fc-sb";
  font-size: 16px;
  color: black;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  transition: all ease-in-out 400ms;
}
.front-page .service .container1440 .service-wrap .service-item:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 400ms;
}
.front-page .service .container1440 .service-wrap .service-item:hover .service-detail .white-button {
  color: white;
  background-color: #db7b34;
  transition: all ease-in-out 400ms;
}
.front-page .main-visa-img-wrap {
  position: relative;
}
.front-page .main-visa-img-wrap .filter {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9;
  top: 0;
  margin-left: 700px;
  opacity: 1 !important;
}
.front-page [data-aos=fade-right] {
  transform: translate3d(-700px, 0, 0) !important;
}
.front-page [data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0) !important;
}

.main-form-page {
  background-color: #f4f4f4;
  padding-bottom: 100px;
}
.main-form-page .banner {
  padding: 160px 0px 120px 0px;
  background-color: #006e77;
  height: auto;
}
.main-form-page .banner h1 {
  font-family: "fc-r";
  font-size: 60px;
  color: white;
  margin-bottom: 10px;
}
.main-form-page .banner p {
  font-family: "fc-r";
  font-size: 20px;
  color: white;
  opacity: 0.8;
  line-height: 1.6;
}
.main-form-page .banner p a {
  color: white;
  transition: all ease-in-out 300ms;
}
.main-form-page .banner p a:hover {
  color: #ea7424;
}
.main-form-page .nf-form-cont {
  max-width: 860px;
  margin: 0 auto;
  margin-top: -100px;
  background-color: white;
  padding: 50px 80px 50px 80px;
}
.main-form-page .nf-form-cont .nf-form-title {
  display: none;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content {
  padding: 0;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-field-container.html-container.label-above {
  margin-bottom: 35px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-field-container.html-container.label-above .nf-field-element {
  font-family: "fc-r";
  font-size: 30px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-field-label label {
  font-family: "fc-sb";
  font-size: 16px;
  font-weight: normal;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-field-container.submit-container.label-above.textbox-container .nf-field {
  border-radius: 100px;
  overflow: hidden;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-field-container.submit-container.label-above.textbox-container .nf-field .ninja-forms-field.nf-element {
  width: 100%;
  background-color: #ea7424;
  border-radius: 100px;
  font-family: "fc-sb";
  font-size: 18px;
  color: white;
  height: 44px;
  font-weight: normal;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .field-wrap.file_upload-wrap.textbox-wrap .nf-field-element button {
  width: 100%;
  background-color: transparent;
  border: 1px dashed #dadada;
  font-family: "fc-r";
  font-size: 16px;
  color: black;
  cursor: pointer;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .field-wrap.file_upload-wrap.textbox-wrap .nf-field-element .nf-fu-progress {
  display: none;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .field-wrap.file_upload-wrap.textbox-wrap .nf-field-element .files_uploaded {
  margin-top: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .field-wrap.file_upload-wrap.textbox-wrap .nf-field-element .files_uploaded p {
  font-family: "fc-r";
  font-size: 14px;
  color: black;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .field-wrap.file_upload-wrap.textbox-wrap .nf-field-element .files_uploaded a {
  font-family: "fc-r";
  font-size: 14px;
  color: #ea7424;
  text-decoration: underline;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .ninja-forms-field.nf-element {
  background-color: white;
  border: 1px solid #dadada;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-field-description {
  font-family: "fc-r";
  font-size: 14px;
  color: #9c9c9c;
  position: absolute;
  margin-top: 3px;
  margin-left: 155px;
  width: -moz-fit-content;
  width: fit-content;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .ninja-forms-req-symbol {
  color: #ea7424;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-content .nf-cell .nf-field-container.listselect-container.label-above.list-container .nf-field .nf-field-element select {
  background-image: url("../image/selecticon.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-origin: content-box;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-form-layout .nf-form-fields-required {
  display: none;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(1) {
  margin-bottom: 15px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(1) img {
  margin-bottom: 5px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(2) {
  margin-bottom: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(2) span {
  font-size: 30px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(3) {
  margin-bottom: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(3) span {
  font-size: 20px;
  margin-bottom: 25px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(4) {
  margin-bottom: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(5) {
  margin-bottom: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(5) span a {
  color: #006e77;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(6) {
  margin-bottom: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(6) a:first-of-type {
  color: black;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(6) a:last-of-type {
  color: #006e77;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(7) {
  margin-bottom: 10px;
}
.main-form-page .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap.nf-multi-cell .nf-response-msg p:nth-child(7) a {
  color: #006e77;
  padding: 0px 5px;
}

.middle-page {
  background-color: #f4f4f4;
  padding-bottom: 100px;
}
.middle-page h2:first-of-type {
  margin-top: 0px;
}
.middle-page h2 {
  font-family: "fc-sb";
  font-size: 28px;
  margin-bottom: 25px;
  margin-top: 40px;
}
.middle-page p {
  font-family: "fc-r";
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.middle-page .banner {
  padding: 160px 0px 120px 0px;
  background-color: #006e77;
  height: auto;
}
.middle-page .banner h1 {
  font-family: "fc-r";
  font-size: 60px;
  color: white;
  margin-bottom: 10px;
}
.middle-page .detail {
  max-width: 860px;
  margin: 0 auto;
  margin-top: -100px;
  background-color: white;
  padding: 50px 80px 50px 80px;
}

.error-page .section1 {
  height: 100vh;
  width: 100%;
  max-height: 800px;
  min-height: 400px;
  display: grid;
  place-items: center;
}
.error-page .section1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.8);
}
.error-page .section1 .wrap {
  z-index: 10;
  text-align: center;
}
.error-page .section1 .wrap h2 {
  font-family: "fc-sb";
  font-size: 115px;
  color: white;
  margin-bottom: 10px;
}
.error-page .section1 .wrap h1 {
  font-family: "fc-r";
  font-size: 40px;
  color: white;
  margin-bottom: 40px;
}
.error-page .section1 .wrap a {
  font-family: "fc-sb";
  font-size: 18px;
  padding: 15px 35px;
  border: 1px solid white;
  border-radius: 100px;
  color: white;
  cursor: pointer;
}

.grid21 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-page .section1 {
  padding-top: 80px;
  margin-bottom: 160px;
}
.contact-page .section1 .container1440 {
  padding: 0;
}
.contact-page .section1 .container1440 .grid21 {
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap {
  padding-left: 80px;
  padding-top: 60px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 {
  border-bottom: 1px solid #dadada;
  padding-bottom: 80px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 h1 {
  font-family: "fc-r";
  font-size: 40px;
  margin-bottom: 60px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .img-wrap.mobile {
  display: none;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 h2 {
  font-family: "fc-r";
  font-size: 26px;
  margin-bottom: 5px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 h3 {
  font-family: "fc-r";
  font-size: 16px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .info-wrap {
  margin-top: 25px;
  margin-bottom: 40px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .info-wrap .item {
  margin-bottom: 10px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .info-wrap .item img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .info-wrap .item p {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.5;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .but-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap1 .but-wrap .green-button img {
  margin-left: 5px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 {
  padding-top: 50px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 h2 {
  font-family: "fc-r";
  font-size: 30px;
  margin-bottom: 40px;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-title {
  display: none;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-before-form-content {
  display: none;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-row .nf-cell .nf-field-container .nf-field .field-wrap .nf-field-label span {
  color: black;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-row .nf-cell .nf-field-container .nf-field .field-wrap .nf-field-element input {
  background-color: white;
  border: 1px solid #dadada;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-row .nf-cell .nf-field-container .nf-field .field-wrap .nf-field-element textarea.ninja-forms-field {
  background-color: white;
  border: 1px solid #dadada;
  resize: none;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-row .nf-cell .nf-field-container.submit-container .nf-field .field-wrap .nf-field-label span {
  color: black;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-row .nf-cell .nf-field-container.submit-container .nf-field .field-wrap .nf-field-element input {
  width: 100%;
  background-color: #ea7424;
  border-radius: 100px;
  font-family: "fc-sb";
  font-size: 18px;
  color: white;
  height: 44px;
  font-weight: normal;
}
.contact-page .section1 .container1440 .grid21 .detail-wrap .subwrap2 .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-row .nf-cell .nf-field-container.html-container .nf-field .field-wrap .nf-field-element p a {
  color: black;
  border-bottom: 1px solid black;
  padding-bottom: 2px;
}
.contact-page .section1 .container1440 .grid21 .img-wrap.desktop {
  display: block;
  width: 100%;
  height: 600px;
  position: sticky;
  top: 80px;
}
.contact-page .section1 .container1440 .grid21 .img-wrap.desktop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-page .section2 .container1440 {
  padding-left: 0;
  padding-right: 0;
}
.contact-page .section2 .container1440 .service-wrap {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.contact-page .section2 .container1440 .service-wrap .service-item {
  position: relative;
  overflow: hidden;
}
.contact-page .section2 .container1440 .service-wrap .service-item img {
  filter: brightness(0.7);
  transition: all ease-in-out 400ms;
}
.contact-page .section2 .container1440 .service-wrap .service-item .service-detail {
  text-align: center;
  padding: 60px 0px;
}
.contact-page .section2 .container1440 .service-wrap .service-item .service-detail h2 {
  font-family: "a-m";
  font-size: 80px;
  color: white;
  margin-bottom: 25px;
}
.contact-page .section2 .container1440 .service-wrap .service-item .service-detail div {
  font-family: "fc-r";
  font-size: 30px;
  color: white;
  margin-bottom: 15px;
}
.contact-page .section2 .container1440 .service-wrap .service-item .service-detail p {
  font-family: "fc-r";
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin-bottom: 25px;
}
.contact-page .section2 .container1440 .service-wrap .service-item .service-detail .white-button {
  font-family: "fc-sb";
  font-size: 16px;
  color: black;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  transition: all ease-in-out 400ms;
}
.contact-page .section2 .container1440 .service-wrap .service-item:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 400ms;
}
.contact-page .section2 .container1440 .service-wrap .service-item:hover .service-detail .white-button {
  color: white;
  background-color: #db7b34;
  transition: all ease-in-out 400ms;
}

.about-page .section1 {
  margin-top: 80px;
  padding: 100px 0px;
  background-color: #006d76;
}
.about-page .section1 .container1240 h1 {
  font-family: "fc-r";
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}
.about-page .section1 .container1240 .grid21 {
  row-gap: 30px;
}
.about-page .section1 .container1240 .grid21 .wrap h2 {
  font-family: "fc-r";
  font-size: 60px;
  margin-bottom: 20px;
  color: white;
  line-height: 1.3;
}
.about-page .section1 .container1240 .grid21 .wrap .load-but {
  padding: 15px 25px;
  background-color: white;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}
.about-page .section1 .container1240 .grid21 .wrap .load-but img {
  margin-right: 10px;
}
.about-page .section1 .container1240 .grid21 .wrap .load-but div {
  font-family: "fc-sb";
  font-size: 16px;
  color: #006d76;
}
.about-page .section1 .container1240 .grid21 p {
  font-family: "fc-r";
  font-size: 20px;
  line-height: 1.5;
  color: white;
}
.about-page .section2 {
  padding: 80px 0px 100px 0px;
}
.about-page .section2 .container980 .h2-head {
  font-family: "a-m";
  font-size: 100px;
  text-align: center;
  line-height: 1;
  margin-bottom: 80px;
  background: linear-gradient(64.81deg, #006d76 26.82%, #ea7424 83.72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about-page .section2 .container980 .flex-row-st-be {
  margin-bottom: 30px;
}
.about-page .section2 .container980 .flex-row-st-be .item .flex-row-cen-st {
  margin-bottom: 20px;
}
.about-page .section2 .container980 .flex-row-st-be .item .flex-row-cen-st img {
  margin-right: 5px;
}
.about-page .section2 .container980 .flex-row-st-be .item .flex-row-cen-st div {
  font-family: "fc-r";
  font-size: 30px;
}
.about-page .section2 .container980 .flex-row-st-be .item p {
  font-family: "fc-r";
  font-size: 18px;
  line-height: 1.4;
}
.about-page .section2 .container980 .flex-row-st-be .item1 {
  max-width: 360px;
}
.about-page .section2 .container980 .flex-row-st-be .item2 {
  max-width: 320px;
}
.about-page .section2 .container980 .vdo-wrap {
  width: 100%;
  height: 540px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 60px;
}
.about-page .section2 .container980 .vdo-wrap iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.about-page .section2 .container980 .wrap h2 {
  font-family: "fc-r";
  font-size: 40px;
  margin-bottom: 15px;
}
.about-page .section2 .container980 .wrap .flex-row-st-st {
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.about-page .section2 .container980 .wrap .flex-row-st-st p {
  max-width: 600px;
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.5;
  padding-top: 15px;
  color: #666666;
}
.about-page .section2 .container980 .wrap .flex-row-st-st .flex-col-st-st {
  row-gap: 40px;
}
.about-page .section2 .container980 .wrap .flex-row-st-st .flex-col-st-st .item span {
  font-family: "fc-r";
  font-size: 40px;
  color: #006d76;
}
.about-page .section2 .container980 .wrap .flex-row-st-st .flex-col-st-st .item div {
  font-family: "fc-r";
  font-size: 18px;
  margin-top: 10px;
}
.about-page .section3 {
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
.about-page .section3 .container1440 {
  padding-left: 80px;
  padding-right: 0px;
}
.about-page .section3 .container1440 h2 {
  font-family: "fc-r";
  font-size: 40px;
  margin-bottom: 50px;
  padding-top: 20px;
}
.about-page .section3 .container1440 .swiper {
  overflow: visible;
}
.about-page .section3 .container1440 .swiper .swiper-wrapper .swiper-slide {
  height: 640px;
  position: position;
}
.about-page .section3 .container1440 .swiper .swiper-wrapper .swiper-slide .img-wrap {
  width: 100%;
  height: 100%;
}
.about-page .section3 .container1440 .swiper .swiper-wrapper .swiper-slide .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page .section3 .container1440 .swiper .swiper-wrapper .swiper-slide .wrap {
  padding: 20px 60px 20px 20px;
  border-radius: 20px;
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 40px;
  background-color: white;
  min-height: 180px;
  width: -moz-fit-content;
  width: fit-content;
}
.about-page .section3 .container1440 .swiper .swiper-wrapper .swiper-slide .wrap h3 {
  font-family: "fc-sb";
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.about-page .section3 .container1440 .swiper .swiper-wrapper .swiper-slide .wrap p {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.4;
  max-width: 240px;
}
.about-page .section3 .container1440 .swiper .swiper-button-next {
  left: unset;
  right: 80px;
  top: -60px;
}
.about-page .section3 .container1440 .swiper .swiper-button-prev {
  left: unset;
  right: 140px;
  top: -60px;
}
.about-page .section3 .container1440 .swiper .swiper-button-next,
.about-page .section3 .container1440 .swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 100%;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.24);
}
.about-page .section3 .container1440 .swiper .swiper-button-next::after,
.about-page .section3 .container1440 .swiper .swiper-button-prev::after {
  color: black;
  transform: scale(0.5);
}
.about-page .section4 {
  padding: 120px 0px 100px 0px;
}
.about-page .section4 .container1280 .grid21 .wrap h2 {
  font-family: "fc-r";
  font-size: 40px;
  margin-bottom: 20px;
}
.about-page .section4 .container1280 .grid21 .wrap p {
  font-family: "fc-r";
  font-size: 18px;
  max-width: 420px;
  line-height: 1.5;
}
.about-page .section4 .container1280 .grid21 .wrap-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 30px;
}
.about-page .section4 .container1280 .grid21 .wrap-item .item div {
  font-family: "fc-r";
  font-size: 30px;
  margin-right: 10px;
  color: black;
}
.about-page .section5 {
  position: relative;
  padding: 170px 0px 120px 0px;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
.about-page .section5 .container1440 {
  height: 100%;
  display: flex;
}
.about-page .section5 .container1440 .consult-wrap {
  text-align: center;
  margin: 0 auto;
}
.about-page .section5 .container1440 .consult-wrap h2 {
  font-family: "fc-r";
  font-size: 40px;
  color: white;
  margin-bottom: 30px;
  line-height: 1.4;
}
.about-page .section5 .container1440 .consult-wrap .white-button {
  margin: 0 auto;
}
.about-page .section5 img {
  filter: brightness(0.7);
  height: auto !important;
  top: -260px;
}
.about-page .section6 {
  background-color: #f3dacb;
  position: relative;
}
.about-page .section6 .container1440 .step-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap {
  padding: 60px 0px;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail h2 {
  font-family: "fc-r";
  font-size: 34px;
  background: linear-gradient(to right, #000 10%, #ea7424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  margin-bottom: 50px;
  padding-top: 5px;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail h2 span {
  font-family: "a-m";
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item {
  margin-bottom: 30px;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .step-num {
  font-family: "a-m";
  width: 45px;
  height: 45px;
  background-color: #ea7424;
  font-size: 32px;
  color: white;
  margin-right: 20px;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st h3 {
  font-family: "fc-sb";
  font-size: 20px;
  margin-bottom: 10px;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st p {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st a div {
  padding: 5px 10px;
  border: 2px solid black;
  border-radius: 100px;
  font-family: "fc-sb";
  font-size: 14px;
  color: black;
}
.about-page .section6 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item:last-child {
  margin-bottom: 0px;
}
.about-page .section6 .step-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.about-page .section6 .step-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page .section7 {
  padding: 100px 0px;
}
.about-page .section7 .container1440 h2 {
  font-family: "fc-r";
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.about-page .section7 .container1440 .wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
}
.about-page .section7 .container1440 .wrap .item {
  width: 370px;
  height: 370px;
  background-color: #048893;
  border: 2px solid white;
  border-radius: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "fc-r";
  font-size: 22px;
  color: white;
  line-height: 1.4;
  margin-left: -50px;
}
.about-page .section8 {
  background-color: #048893;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
.about-page .section8 .container1440 .testi-wrap {
  padding: 100px 80px;
}
.about-page .section8 .container1440 .testi-wrap .flex-row-st-st {
  margin-bottom: 60px;
}
.about-page .section8 .container1440 .testi-wrap .flex-row-st-st .flex-col-st-st h2 {
  font-family: "fc-r";
  font-size: 34px;
  color: white;
  margin-bottom: 15px;
}
.about-page .section8 .container1440 .testi-wrap .flex-row-st-st .flex-col-st-st div {
  font-family: "fc-r";
  font-size: 20px;
  color: white;
}
.about-page .section8 .container1440 .testi-wrap .flex-row-st-st img {
  margin-left: 25px;
}
.about-page .section8 .container1440 .testi-wrap .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide {
  text-align: left;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 300px;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide blockquote {
  padding-left: 20px;
  font-family: "fc-sb";
  font-size: 22px;
  color: white;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen {
  padding-left: 20px;
  font-family: "fc-r";
  color: white;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen img {
  width: 35px;
  border-radius: 100px;
  margin-right: 15px;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen .flex-col-st-st div:first-child {
  font-size: 14px;
  line-height: 1.5;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen .flex-col-st-st div:last-child {
  font-size: 12px;
  line-height: 1.5;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .read-more {
  padding-left: 20px;
  margin-bottom: 15px;
  padding-left: 20px;
  font-family: "fc-r";
  font-size: 14px;
  color: white;
  cursor: pointer;
  text-decoration: underline;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-pagination {
  top: -100px;
  right: 0;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.22);
  padding: 5px;
  border-radius: 100px;
  position: absolute;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.about-page .section8 .container1440 .testi-wrap .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black;
}
.about-page .section9 .container1440 {
  padding-left: 0;
  padding-right: 0;
}
.about-page .section9 .container1440 .service-wrap {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.about-page .section9 .container1440 .service-wrap .service-item {
  position: relative;
  overflow: hidden;
}
.about-page .section9 .container1440 .service-wrap .service-item img {
  filter: brightness(0.7);
  transition: all ease-in-out 400ms;
}
.about-page .section9 .container1440 .service-wrap .service-item .service-detail {
  text-align: center;
  padding: 60px 0px;
}
.about-page .section9 .container1440 .service-wrap .service-item .service-detail h2 {
  font-family: "a-m";
  font-size: 80px;
  color: white;
  margin-bottom: 25px;
}
.about-page .section9 .container1440 .service-wrap .service-item .service-detail div {
  font-family: "fc-r";
  font-size: 30px;
  color: white;
  margin-bottom: 15px;
}
.about-page .section9 .container1440 .service-wrap .service-item .service-detail p {
  font-family: "fc-r";
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin-bottom: 25px;
}
.about-page .section9 .container1440 .service-wrap .service-item .service-detail .white-button {
  font-family: "fc-sb";
  font-size: 16px;
  color: black;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  transition: all ease-in-out 400ms;
}
.about-page .section9 .container1440 .service-wrap .service-item:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 400ms;
}
.about-page .section9 .container1440 .service-wrap .service-item:hover .service-detail .white-button {
  color: white;
  background-color: #db7b34;
  transition: all ease-in-out 400ms;
}

.country-page .section1 {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.country-page .section1 .bg-img.banner-bg {
  filter: brightness(0.7);
  height: auto;
  top: -400px;
  height: 115%;
}
.country-page .section1 .container1440 {
  height: 100%;
}
.country-page .section1 .container1440 .country-bg-mobile {
  display: none;
}
.country-page .section1 .container1440 .banner-wrap {
  width: 100%;
  height: 100%;
  display: flex;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap {
  margin-left: 70px !important;
  margin: auto 0;
  width: 420px;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item {
  padding: 20px;
  position: relative;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 {
  background-color: #048893;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 .stamp {
  position: absolute;
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  top: -60px;
  right: -60px;
  z-index: 10;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 .flex-row-cen-st {
  margin-bottom: 20px;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 .flex-row-cen-st img {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 .flex-row-cen-st h1 {
  font-family: "a-m";
  font-size: 26px;
  color: white;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 h2 {
  font-family: "fc-r";
  font-size: 30px;
  line-height: 1.25;
  color: white;
  margin-bottom: 10px;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 span {
  font-family: "fc-r";
  font-size: 22px;
  line-height: 1.5;
  color: white;
  margin-bottom: 10px;
  display: block;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 ul .flex-row-st-st {
  margin-bottom: 5px;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 ul .flex-row-st-st img {
  margin-right: 10px;
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 2px;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item1 ul .flex-row-st-st p {
  font-family: "fc-r";
  font-size: 14px;
  line-height: 1.5;
  color: white;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item2 {
  background-color: #ea7424;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item2 span {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.5;
  color: white;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item2 h3 {
  font-family: "fc-r";
  font-size: 40px;
  line-height: 1.5;
  color: white;
}
.country-page .section1 .container1440 .banner-wrap .country-wrap .item2 p {
  font-family: "fc-r";
  font-size: 14px;
  line-height: 1.5;
  color: white;
}
.country-page .section1 .banner-form {
  display: flex;
  align-items: center;
  padding: 0px 40px;
  margin-right: 0px;
  background-color: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transform: translatex(100%);
  width: 35%;
}
.country-page .section1 .banner-form .bg-img {
  display: none;
}
.country-page .section1 .banner-form .banner-form-wrap {
  width: 100%;
}
.country-page .section1 .banner-form .banner-form-wrap .flex-row-cen-be {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.country-page .section1 .banner-form .banner-form-wrap .flex-row-cen-be h3 {
  font-family: "fc-r";
  font-size: 34px;
  color: white;
}
.country-page .section1 .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen img {
  width: 45px;
  border-radius: 100px;
  margin-right: 15px;
}
.country-page .section1 .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen div {
  color: white;
}
.country-page .section1 .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen div div:first-child {
  font-family: "fc-sb";
  font-size: 14px;
  margin-bottom: 10px;
}
.country-page .section1 .banner-form .banner-form-wrap .flex-row-cen-be .flex-row-cen-cen div div:last-child {
  font-family: "fc-r";
  font-size: 12px;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-top: 10px;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont {
  font-weight: normal;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-title {
  display: none;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content {
  padding: 0;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content label {
  font-family: "fc-sb";
  font-size: 16px;
  color: white;
  font-weight: normal;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content input {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-label {
  margin-bottom: 5px !important;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container {
  margin-bottom: 15px !important;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .field-wrap.submit-wrap .nf-field-element {
  display: flex;
  overflow: hidden;
  border-radius: 100px;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .field-wrap.submit-wrap .nf-field-element input {
  margin: 0 auto;
  width: 100%;
  border-radius: 100px;
  background-color: #ea7424;
  font-family: "fc-sb";
  font-size: 18px;
  color: white;
  font-weight: normal;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.submit-container.label-above.textbox-container {
  margin-top: 15px;
  margin-bottom: 0px !important;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.listcountry-container .nf-field .nf-field-element .ninja-forms-field.nf-element {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.date-container .nf-field .nf-field-element input {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-field-container.listselect-container .nf-field .nf-field-element .ninja-forms-field.nf-element {
  font-family: "fc-r" !important;
  font-size: 16px;
  color: #414141;
  line-height: 1.3;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .ninja-forms-req-symbol {
  color: #ea7424;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout form .nf-form-content .nf-cell .nf-field-container.listselect-container.label-above.list-container .nf-field .nf-field-element select {
  background-color: white;
  background-image: url("../image/selecticon.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-origin: content-box;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-form-wrap.ninja-forms-form-wrap .nf-form-layout .nf-form-fields-required {
  display: none;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-response-msg p:first-child span {
  font-family: "fc-r" !important;
  font-size: 30px !important;
}
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-response-msg p,
.country-page .section1 .banner-form .banner-form-wrap .form-wrap .nf-form-cont .nf-response-msg span {
  font-family: "fc-r" !important;
  font-size: 18px !important;
}
.country-page .section1 .banner-form .banner-form-wrap p {
  font-family: "fc-r";
  font-size: 14px;
  color: white;
  text-align: center;
}
.country-page .section1 .banner-form .banner-form-wrap p a {
  padding-bottom: 2px;
  border-bottom: 0.5px solid white;
  color: white;
}
.country-page .section1 .banner-form.open {
  transform: translatex(0%);
  transition: all ease-in-out 700ms;
}
.country-page .section2 .section-sticky {
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
  margin-bottom: 100px;
  position: sticky;
  top: 80px;
  background-color: white;
  z-index: 100;
}
.country-page .section2 .section-sticky .flex-row-cen-st {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.country-page .section2 .section-sticky .flex-row-cen-st .tab.active {
  border-bottom: 3px solid #ea7424;
  color: black;
}
.country-page .section2 .section-sticky .flex-row-cen-st .tab {
  font-family: "fc-r";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  margin-top: 30px;
  padding-bottom: 15px;
  transition: all ease-in-out 300ms;
}
.country-page .section2 .section-sticky .flex-row-cen-st .tab:hover {
  color: black;
  transition: all ease-in-out 300ms;
}
.country-page .section2 .section-sticky .button-sticky {
  padding: 10px 20px;
  background-color: black;
  color: white;
  font-family: "fc-sb";
  font-size: 18px;
  border-radius: 100px;
  border: none;
  white-space: nowrap;
}
.country-page .section2 .sub-section1 .container980 h2 {
  font-family: "a-m";
  font-size: 34px;
  background: linear-gradient(88deg, #048893 20%, #ea7424 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
}
.country-page .section2 .sub-section1 .container980 h3 {
  font-family: "fc-r";
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.country-page .section2 .sub-section1 .container980 p {
  font-family: "fc-r";
  font-size: 20px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 50px;
}
.country-page .section2 .sub-section1 .container980 .update-box {
  padding: 40px 50px;
  background-color: #f3dacb;
  margin-bottom: 80px;
}
.country-page .section2 .sub-section1 .container980 .update-box .flex-row-cen-st {
  margin-bottom: 20px;
}
.country-page .section2 .sub-section1 .container980 .update-box .flex-row-cen-st img {
  margin-right: 5px;
}
.country-page .section2 .sub-section1 .container980 .update-box .flex-row-cen-st div {
  font-family: "a-m";
  font-size: 18px;
  background: linear-gradient(88deg, #ea7424 55%, #048893 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.country-page .section2 .sub-section1 .container980 .update-box p {
  font-family: "fc-r";
  font-size: 16px;
  color: black;
  line-height: 1.5;
  margin-bottom: 0px;
}
.country-page .section2 .sub-section2 {
  margin-bottom: 100px;
  scroll-margin-top: 250px;
  overflow: hidden;
}
.country-page .section2 .sub-section2 .container980 h2 {
  font-family: "fc-r";
  font-size: 34px;
  margin-bottom: 50px;
  background: linear-gradient(88deg, #048893 20%, #ea7424 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.5;
}
.country-page .section2 .sub-section2 .container980 .swiper {
  padding-bottom: 80px;
  overflow: visible;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-wrapper .swiper-slide .img-wrap {
  height: 140px;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-wrapper .swiper-slide .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-wrapper .swiper-slide .img-wrap div {
  height: 25px;
  width: 25px;
  background-color: #048893;
  display: grid;
  place-items: center;
  font-family: "a-m";
  font-size: 20px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-wrapper .swiper-slide h3 {
  font-family: "fc-sb";
  font-size: 20px;
  margin-bottom: 15px;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-wrapper .swiper-slide p {
  font-family: "fc-r";
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-button-next,
.country-page .section2 .sub-section2 .container980 .swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #ffffff;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.24);
  border-radius: 1000px;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-button-next::after,
.country-page .section2 .sub-section2 .container980 .swiper .swiper-button-prev::after {
  transform: scale(0.5);
  color: black;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-button-prev {
  top: unset;
  bottom: 20px;
}
.country-page .section2 .sub-section2 .container980 .swiper .swiper-button-next {
  top: unset;
  left: 60px;
  bottom: 20px;
}
.country-page .section2 .sub-section3 {
  margin-bottom: 100px;
  overflow: hidden;
}
.country-page .section2 .sub-section3 .container980 h2 {
  font-family: "fc-r";
  font-size: 34px;
  margin-bottom: 15px;
  background: linear-gradient(88deg, #048893 10%, #ea7424 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.7;
}
.country-page .section2 .sub-section3 .container980 p {
  font-family: "fc-r";
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.country-page .section2 .sub-section3 .container980 .country-table {
  margin-bottom: 20px;
  overflow: auto;
}
.country-page .section2 .sub-section3 .container980 .country-table .grid {
  display: grid;
  grid-template-columns: 45% 27.5% 27.5%;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.country-page .section2 .sub-section3 .container980 .country-table .grid.head {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.country-page .section2 .sub-section3 .container980 .country-table .grid.head div {
  font-family: "fc-sb";
  font-size: 18px;
}
.country-page .section2 .sub-section3 .container980 .country-table .grid.head .border {
  position: absolute;
  bottom: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(180deg, #d9d9d9 0%, rgba(217, 217, 217, 0) 100%);
}
.country-page .section2 .sub-section3 .container980 .country-table .grid.item {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.country-page .section2 .sub-section3 .container980 .country-table .grid.item div {
  line-height: 1.5;
}
.country-page .section2 .sub-section3 .container980 .country-table table {
  width: 100%;
  min-width: 980px;
}
.country-page .section2 .sub-section3 .container980 .country-table table thead {
  font-family: "fc-b";
  font-size: 14px;
  line-height: 1.5;
}
.country-page .section2 .sub-section3 .container980 .country-table table thead tr {
  text-align: center;
  position: relative;
}
.country-page .section2 .sub-section3 .container980 .country-table table thead tr th {
  padding-bottom: 15px;
}
.country-page .section2 .sub-section3 .container980 .country-table table thead tr th span {
  font-family: "fc-r";
}
.country-page .section2 .sub-section3 .container980 .country-table table thead tr th:first-child {
  width: 200px;
  text-align: left;
}
.country-page .section2 .sub-section3 .container980 .country-table table thead tr::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: -8px;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
}
.country-page .section2 .sub-section3 .container980 .country-table table tbody {
  font-family: "fc-r";
  font-size: 14px;
}
.country-page .section2 .sub-section3 .container980 .country-table table tbody tr {
  text-align: center;
}
.country-page .section2 .sub-section3 .container980 .country-table table tbody tr td {
  padding: 20px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.country-page .section2 .sub-section3 .container980 .country-table table tbody tr td:first-child {
  font-family: "fc-b";
  width: 200px;
  text-align: left;
}
.country-page .section2 .sub-section3 .container980 .country-table table tbody tr td:last-child {
  background-color: #f3dacb;
  font-family: "fc-b";
}
.country-page .section2 .sub-section3 .container980 .country-table table tbody tr:first-child td {
  padding-top: 25px;
}
.country-page .section2 .sub-section3 .container980 .annotation p {
  font-family: "fc-r";
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}
.country-page .section2 .sub-section4 {
  background-color: #f3dacb;
  position: relative;
  margin-bottom: 100px;
  scroll-margin-top: 250px;
  overflow: hidden;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap {
  padding: 60px 0px;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail h2 {
  font-family: "fc-r";
  font-size: 34px;
  background: linear-gradient(to right, #000 10%, #ea7424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  margin-bottom: 50px;
  padding-top: 5px;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail h2 span {
  font-family: "a-m";
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item {
  margin-bottom: 30px;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .step-num {
  font-family: "a-m";
  width: 45px;
  height: 45px;
  background-color: #ea7424;
  font-size: 32px;
  color: white;
  margin-right: 20px;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st h3 {
  font-family: "fc-sb";
  font-size: 20px;
  margin-bottom: 10px;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st p {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item .flex-col-st-st a div {
  padding: 5px 10px;
  border: 2px solid black;
  border-radius: 100px;
  font-family: "fc-sb";
  font-size: 14px;
  color: black;
}
.country-page .section2 .sub-section4 .container1440 .step-wrap .step-detail-wrap .step-detail .step-item:last-child {
  margin-bottom: 0px;
}
.country-page .section2 .sub-section4 .step-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.country-page .section2 .sub-section4 .step-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.country-page .section2 .sub-section4 .step-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.country-page .section2 .sub-section5 {
  margin-bottom: 120px;
  scroll-margin-top: 250px;
}
.country-page .section2 .sub-section5 .container980 .grid21 {
  grid-template-columns: 1.2fr 1.8fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap {
  max-width: 315px;
  position: sticky;
  height: -moz-fit-content;
  height: fit-content;
  top: 160px;
  bottom: 15px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap h2 {
  font-family: "fc-r";
  font-size: 34px;
  margin-bottom: 25px;
  background: linear-gradient(71.78deg, #048893 48.58%, #ea7424 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.5;
}
.country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap p {
  font-family: "fc-r";
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap .sticky-img {
  width: 100%;
  margin-bottom: 20px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap button {
  background-color: black;
  padding: 10px 20px;
  border-radius: 100px;
  color: white;
  font-family: "fc-sb";
  font-size: 18px;
  border: none;
  cursor: pointer;
  width: 100%;
}
.country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap button img {
  margin-right: 5px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .print {
  display: none;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .logo-print {
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: -10px;
  width: 400px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .footer-print {
  font-family: "fc-r";
  line-height: 1.5;
  font-size: 14px;
  margin-top: 40px;
  margin-left: -10px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item {
  margin-bottom: 15px;
  position: relative;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .e-wrap {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-right: 5px;
  margin-top: -1px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .e-wrap.hide img {
  display: none;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 15px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap .flex-row-cen-be h3 {
  max-width: 75%;
  font-family: "fc-sb";
  font-size: 18px;
  line-height: 1.5;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap .flex-row-cen-be h3 span:after {
  content: ". ";
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap .flex-row-cen-be .ex-but {
  font-family: "fc-sb";
  font-size: 14px;
  border: 2px solid black;
  padding: 5px;
  border-radius: 100px;
  cursor: pointer;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap p,
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap ol,
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap ul {
  margin-top: 10px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap p,
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap li {
  font-family: "fc-r";
  font-size: 16px;
  line-height: 1.7;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap p span {
  font-family: "fc-sb";
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap p strong {
  font-family: "fc-sb";
  color: red;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap ol,
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap ul {
  list-style: unset;
  margin-left: 15px;
}
.country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item:nth-last-child(2) .info-wrap {
  border-bottom: none;
}
.country-page .section2 .sub-section6 {
  position: relative;
  padding: 100px 0px 50px 0px;
  overflow: hidden;
  margin-bottom: 100px;
}
.country-page .section2 .sub-section6 .container1440 {
  height: 100%;
  display: flex;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap {
  text-align: center;
  margin: 0 auto;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap h2 {
  font-family: "fc-r";
  font-size: 34px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.4;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap h2 span {
  text-decoration: underline;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap .medium-title {
  font-family: "fc-r";
  font-size: 18px;
  line-height: 1.5;
  color: white;
  margin-bottom: 15px;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap .price {
  font-family: "fc-r";
  font-size: 18px;
  line-height: 1.5;
  color: white;
  margin-bottom: 15px;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap .price span {
  font-size: 40px;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap .small-title {
  font-family: "fc-r";
  font-size: 12px;
  line-height: 1.5;
  color: white;
  margin-bottom: 20px;
}
.country-page .section2 .sub-section6 .container1440 .consult-wrap .white-button {
  margin: 0 auto;
}
.country-page .section2 .sub-section6 img {
  filter: brightness(0.7);
  height: auto !important;
  top: -260px;
}
.country-page .section2 .sub-section7 {
  margin-bottom: 100px;
  scroll-margin-top: 250px;
}
.country-page .section2 .sub-section7 .container980 h2 {
  font-family: "fc-r";
  font-size: 34px;
  margin-bottom: 25px;
  background: linear-gradient(71.78deg, #048893 10%, #ea7424 13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.5;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item .toggle {
  position: relative;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item .toggle h3 {
  font-family: "fc-sb";
  font-size: 20px;
  line-height: 1.5;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item .toggle img {
  position: absolute;
  left: -35px;
  transform: rotate(0deg);
  transition: all ease-in-out 400ms;
  margin-top: 6px;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item .toggle.active img {
  transform: rotate(135deg);
  transition: all ease-in-out 400ms;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item .accordion-content {
  display: none;
  padding-top: 15px;
}
.country-page .section2 .sub-section7 .container980 .accordion .accordion-item .accordion-content p {
  font-family: "fc-r";
  font-size: 18px;
  line-height: 1.5;
}
.country-page .section3 {
  background-color: #048893;
  overflow: hidden;
}
.country-page .section3 .container1440 .testi-wrap {
  padding: 100px 80px;
}
.country-page .section3 .container1440 .testi-wrap .flex-row-st-st {
  margin-bottom: 60px;
}
.country-page .section3 .container1440 .testi-wrap .flex-row-st-st .flex-col-st-st h2 {
  font-family: "fc-r";
  font-size: 34px;
  color: white;
  margin-bottom: 15px;
}
.country-page .section3 .container1440 .testi-wrap .flex-row-st-st .flex-col-st-st div {
  font-family: "fc-r";
  font-size: 20px;
  color: white;
}
.country-page .section3 .container1440 .testi-wrap .flex-row-st-st img {
  margin-left: 25px;
}
.country-page .section3 .container1440 .testi-wrap .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide {
  text-align: left;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 300px;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide blockquote {
  padding-left: 20px;
  font-family: "fc-sb";
  font-size: 22px;
  color: white;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen {
  padding-left: 20px;
  font-family: "fc-r";
  color: white;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen img {
  width: 35px;
  border-radius: 100px;
  margin-right: 15px;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen .flex-col-st-st div:first-child {
  font-size: 14px;
  line-height: 1.5;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .flex-row-cen-cen .flex-col-st-st div:last-child {
  font-size: 12px;
  line-height: 1.5;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-wrapper .swiper-slide .read-more {
  padding-left: 20px;
  margin-bottom: 15px;
  padding-left: 20px;
  font-family: "fc-r";
  font-size: 14px;
  color: white;
  cursor: pointer;
  text-decoration: underline;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-pagination {
  top: -100px;
  right: 0;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.22);
  padding: 5px;
  border-radius: 100px;
  position: absolute;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.country-page .section3 .container1440 .testi-wrap .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black;
}
.country-page .section4 .container1440 {
  padding-left: 0;
  padding-right: 0;
}
.country-page .section4 .container1440 .service-wrap {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.country-page .section4 .container1440 .service-wrap .service-item {
  position: relative;
  overflow: hidden;
}
.country-page .section4 .container1440 .service-wrap .service-item img {
  filter: brightness(0.7);
  transition: all ease-in-out 400ms;
}
.country-page .section4 .container1440 .service-wrap .service-item .service-detail {
  text-align: center;
  padding: 60px 0px;
}
.country-page .section4 .container1440 .service-wrap .service-item .service-detail h2 {
  font-family: "a-m";
  font-size: 80px;
  color: white;
  margin-bottom: 25px;
}
.country-page .section4 .container1440 .service-wrap .service-item .service-detail div {
  font-family: "fc-r";
  font-size: 30px;
  color: white;
  margin-bottom: 15px;
}
.country-page .section4 .container1440 .service-wrap .service-item .service-detail p {
  font-family: "fc-r";
  font-size: 16px;
  color: white;
  line-height: 1.5;
  margin-bottom: 25px;
}
.country-page .section4 .container1440 .service-wrap .service-item .service-detail .white-button {
  font-family: "fc-sb";
  font-size: 16px;
  color: black;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  transition: all ease-in-out 400ms;
}
.country-page .section4 .container1440 .service-wrap .service-item:hover img {
  transform: scale(1.1);
  transition: all ease-in-out 400ms;
}
.country-page .section4 .container1440 .service-wrap .service-item:hover .service-detail .white-button {
  color: white;
  background-color: #db7b34;
  transition: all ease-in-out 400ms;
}

@media print {
  @page :footer {
    display: none;
  }
  @page :header {
    display: none;
  }
  @page {
    margin: 50px !important;
  }
  @page {
    size: auto;
    margin: 0;
    size: A4;
    color: #000 !important;
  }
  * {
    font-family: sans-serif !important;
    color: #000 !important;
  }
  h3 {
    font-weight: bold !important;
  }
  header,
  footer {
    display: none;
  }
  .country-page .section1,
  * .country-page .section3 *,
  .country-page .section4 * {
    display: none;
  }
  .country-page .section2 .section-sticky,
  .country-page .section2 .sub-section1,
  .country-page .section2 .sub-section2,
  .country-page .section2 .sub-section3,
  .country-page .section2 .sub-section4,
  .country-page .section2 .sub-section6,
  .country-page .section2 .sub-section7 {
    display: none;
  }
  .country-page .section2 .sub-section5 .container980 .grid21 {
    grid-template-columns: 1fr;
  }
  .country-page .section2 .sub-section5 .container980 .grid21 .sticky-wrap {
    display: none;
  }
  .country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap {
    width: 100%;
    padding: 25px;
  }
  .country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .item .info-wrap .flex-row-cen-be .ex-but {
    display: none;
  }
  .country-page .section2 .sub-section5 .container980 .grid21 .detail-wrap .print {
    display: block;
  }
}
.country-form-page {
  background-color: #f4f4f4;
  padding-bottom: 100px;
}
.country-form-page .banner {
  padding: 160px 0px 120px 0px;
  background-color: #006e77;
  height: auto;
}
.country-form-page .banner h1 {
  font-family: "fc-r";
  font-size: 60px;
  color: white;
  margin-bottom: 10px;
}
.country-form-page .banner p {
  font-family: "fc-r";
  font-size: 20px;
  color: white;
  opacity: 0.8;
  line-height: 1.6;
}
.country-form-page .banner p a {
  color: white;
  transition: all ease-in-out 300ms;
}
.country-form-page .banner p a:hover {
  color: #ea7424;
}
.country-form-page .nf-form-cont {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 6px;
}
.country-form-page .nf-form-cont .nf-form-title {
  display: none;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-progress-container {
  height: 15px;
  background-color: #d9d9d9;
  overflow: hidden;
  border-radius: 6px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-progress-container .nf-progress {
  background-color: #ea7424;
  height: 100%;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-breadcrumbs {
  display: flex;
  margin: 30px 0px !important;
  justify-content: space-between;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-breadcrumbs li.active a {
  color: #ea7424;
  border: 1px solid #ea7424;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-breadcrumbs li {
  display: grid;
  place-items: center;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-breadcrumbs li a {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  color: black;
  margin-right: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  text-align: center;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 10px 10px !important;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-header .nf-breadcrumbs::after {
  display: none !important;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body {
  background-color: #f1f1f1;
  padding: 50px 80px 50px 80px;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textbox-container .nf-field .field-wrap .nf-field-label label,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.date-container .nf-field .field-wrap .nf-field-label label,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textarea-container .nf-field .field-wrap .nf-field-label label {
  font-family: "fc-l";
  color: black;
  line-height: 1.5;
  font-size: 16px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textbox-container .nf-field .field-wrap .nf-field-element input,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textbox-container .nf-field .field-wrap .nf-field-element select,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textbox-container .nf-field .field-wrap .nf-field-element textarea,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.date-container .nf-field .field-wrap .nf-field-element input,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.date-container .nf-field .field-wrap .nf-field-element select,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.date-container .nf-field .field-wrap .nf-field-element textarea,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textarea-container .nf-field .field-wrap .nf-field-element input,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textarea-container .nf-field .field-wrap .nf-field-element select,
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.textarea-container .nf-field .field-wrap .nf-field-element textarea {
  background-color: #fbfbfb;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
  resize: none;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.listselect-container .nf-field .field-wrap .nf-field-label label {
  font-family: "fc-l";
  color: black;
  line-height: 1.5;
  font-size: 16px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.listselect-container .nf-field .field-wrap .nf-field-element select {
  background-color: #fbfbfb;
  border: 1px solid #bbbbbb;
  border-radius: 6px;
  cursor: pointer;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.listselect-container .nf-field .field-wrap .nf-field-element > div {
  background: none;
  border: none;
  border-radius: none;
  box-shadow: none;
  color: none;
  transition: none;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element button {
  font-family: "fc-r";
  font-size: 16px;
  width: 100%;
  background-color: transparent;
  border: 1px dashed #787878;
  margin-bottom: 5px;
  cursor: pointer;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element button span {
  color: black;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element .btn.nf-fu-button-cancel {
  display: none !important;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element input {
  display: none;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element .nf-fu-progress {
  background-color: #d1d1d1;
  border-radius: 6px;
  height: 15px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element .nf-fu-progress .nf-fu-progress-bar {
  height: 100%;
  background-color: #ea7424;
  border-radius: 6px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.file_upload-container .nf-field .field-wrap .nf-field-element .files_uploaded p a {
  color: #ea7424;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-body .nf-row .nf-cell .nf-field-container.submit-container .nf-field .field-wrap .nf-field-element input {
  width: 100%;
  border-radius: 100px;
  background-color: #ea7424;
  font-family: "fc-sb";
  font-size: 18px;
}
.country-form-page .nf-form-cont .nf-form-wrap .nf-form-layout form .nf-form-content .nf-mp-footer .nf-next-previous li input {
  font-family: "fc-sb";
  font-size: 18px;
  color: white;
  background-color: #ea7424;
  border-radius: 100px;
  cursor: pointer;
}

.country-page .section2 .sub-section3 .container980 .country-table table tbody tr:first-child td {
  width: 50%;
}

.country-page .section2 .sub-section3 .container980 .country-table table {
  width: 100%;
  min-width: 100%;
}

.country-page .section2 .sub-section3 .container980 .country-table table tbody tr td:first-child {
  padding-right: 15px;
  line-height: 1.4;
}

.country-page .section2 .sub-section6 .container1440 .consult-wrap .price {
  font-size: 36px;
}

/* General Navigation Styling */
.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-menu a,
.dropbtn {
  color: #fff; /* Main color */
  text-decoration: none;
  padding: 10px 15px;
  font-size: 18px;
  font-family: inherit;
  transition: color 0.3s ease;
}

.dropdown-content a {
  color: #000 !important;
}

.dropdown-content a:hover {
  color: #fff !important;
}

/* Hover & Active States */
.nav-menu a:hover,
.dropbtn:hover {
  color: #ea7424; /* Accent color */
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 300px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border: 1px solid #006e77;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content .start-price {
  font-size: 14px;
  color: #ea7424;
}

/* Dropdown Links */
.dropdown-content a {
  color: #000;
  padding: 10px 15px;
  display: block;
  font-family: inherit;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.dropdown-content a:hover {
  background-color: #006e77; /* Accent color */
  color: #fff;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.header-normal header .container1440 .nav-wrap .nav-left .dropbtn {
  color: black;
  transition: allease-in-out 300ms;
}

.header-normal header.animate .container1440 .nav-wrap .nav-left .dropbtn {
  color: white;
  transition: allease-in-out 300ms;
}/*# sourceMappingURL=main.css.map */