@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
/*Animate */
/*Vertical text */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime1 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-auto {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-in {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-fill-mode: forwards;
  opacity: 0;
}

#overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
footer {
  background: #1c2639;
}
footer .contact-form {
  max-width: 1100px;
  padding: 50px 130px 106px;
  background: #ffffff;
  border-radius: 4px;
  margin: 0 auto;
  margin-top: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  footer .contact-form {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  footer .contact-form {
    padding: 15px 15px 35px;
    margin-top: 28px;
  }
}
footer .contact-form__wrap {
  padding: 100px 0px 0px;
}
@media only screen and (max-width: 767px) {
  footer .contact-form__wrap {
    padding-bottom: 0px;
  }
}
footer .contact-form__wrap h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  footer .contact-form__wrap h3 {
    font-size: 20px;
  }
}
footer .contact-form__row {
  display: flex;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  footer .contact-form__row {
    flex-flow: wrap;
  }
}
footer .contact-form__row .label {
  width: 170px;
}
@media only screen and (max-width: 767px) {
  footer .contact-form__row .label {
    width: 100%;
  }
}
footer .contact-form__row .label p {
  text-align: left;
  font-weight: 700;
}
footer .contact-form__row .label p span.required {
  color: #e85726;
}
footer .contact-form__row .input {
  width: calc(100% - 170px);
}
@media only screen and (max-width: 767px) {
  footer .contact-form__row .input {
    width: 100%;
  }
}
footer .contact-form__row .input input,
footer .contact-form__row .input textarea {
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #767171;
}
footer .contact-form__row .input textarea {
  height: 240px;
}
footer .contact-form__row .input .wpcf7-not-valid-tip {
  text-align: left;
}
footer .contact-form__row .input .wpcf7-acceptance input[type=checkbox] {
  display: none;
}
footer .contact-form__row .input .wpcf7-acceptance input[type=checkbox]:checked ~ .wpcf7-list-item-label:before {
  background-image: url(../images/checked_contactform.png);
  background-size: 23px;
  background-repeat: no-repeat;
  background-position: center;
}
footer .contact-form__row .input .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0px;
}
footer .contact-form__row .input .wpcf7-acceptance .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #17479d;
}
footer .contact-form__row .input .wpcf7-acceptance .wpcf7-list-item-label a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #17479d;
}
footer .contact-form__row .input .wpcf7-acceptance .wpcf7-list-item-label span {
  font-size: 16px;
  line-height: 19px;
  color: #181818;
}
footer .contact-form__row .input .wpcf7-acceptance .wpcf7-list-item-label span.required {
  color: #e85726;
}
footer .contact-form__row .input .wpcf7-acceptance .wpcf7-list-item-label:before {
  content: "";
  height: 30px;
  width: 30px;
  border: 1px solid #000;
  display: inline-block;
  margin-right: 10px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
}
footer .contact-form__row .input.note {
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  footer .contact-form__row .input.note {
    margin-left: 0px;
    margin-top: 0px;
  }
}
footer .contact-form__row .input.note span.required {
  color: #e85726;
}
footer .contact-form_submit {
  text-align: center;
  padding-top: 20px;
}
footer .contact-form_submit input[type=submit],
footer .contact-form_submit button {
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.54%, #e94625 37.98%, #e67b27 67.42%, #e2b028 96.86%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  border: none;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  padding: 20px 30px;
  border: 1px solid transparent;
  border-right: 0px;
}
footer .contact-form_submit input[type=submit]:disabled,
footer .contact-form_submit button:disabled {
  cursor: not-allowed;
}
footer .wpcf7-response-output {
  display: none;
}
footer .profile-company__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0px 0px;
}
@media only screen and (max-width: 767px) {
  footer .profile-company__wrap {
    padding-top: 14px;
  }
}
footer .profile-company__wrap h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin: 50px 0px 60px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer .profile-company__wrap h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
footer .profile-company__item {
  display: flex;
  flex-flow: wrap;
}
footer .profile-company__item p {
  padding-top: 0;
  margin-bottom: 8px;
}
footer .profile-company__item .my-20 {
  margin-top: 20px;
  margin-bottom: 8px;
}
footer .profile-company__text {
  color: #fff;
  width: 100%;
  font-size: 14px;
}
footer .profile-company--label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  width: 100px;
  text-align: right;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  footer .profile-company--label {
    text-align: left;
    width: 100%;
    padding-bottom: 8px;
  }
}
footer .profile-company--content {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  footer .profile-company--content {
    padding-left: 20px;
  }
}
footer .profile-company--content__item:nth-child(2) {
  margin-top: 20px;
  margin-bottom: 20px;
}
footer .profile-company--content a {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  footer .profile-company--content a.company-website {
    text-decoration: underline;
  }
}
footer .profile-company__row {
  display: flex;
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  footer .profile-company__row {
    flex-flow: wrap;
    padding-bottom: 15px;
  }
}
footer .profile-company__column {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  footer .profile-company__column {
    width: 100%;
  }
}
footer .profile-company__footer {
  text-align: center;
  width: 100%;
  position: relative;
  padding: 65px 0px 27px;
}
@media only screen and (max-width: 767px) {
  footer .profile-company__footer {
    padding: 80px 0px 45px;
  }
}
footer .profile-company__footer--logo {
  position: absolute;
  left: 0;
  top: 30px;
}
@media only screen and (max-width: 767px) {
  footer .profile-company__footer--logo {
    top: 17px;
  }
}
@media only screen and (max-width: 767px) {
  footer .profile-company__footer--logo img {
    max-width: 87px;
  }
}
footer .profile-company__footer--copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #ffffff;
}
footer .divide {
  margin: 20px 0px;
  border: 1px solid #ffffff;
}

#modalConfirm .modal-content {
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content {
    padding: 0px;
  }
}
#modalConfirm .modal-content .modal-body {
  overflow-y: auto;
  height: 45vh;
}
@media only screen and (max-width: 1024px) {
  #modalConfirm .modal-content .modal-body {
    overflow-y: auto;
    height: 340px;
  }
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content .modal-body {
    padding: 25px 10px;
  }
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content h3 {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #1c2639;
  }
}
#modalConfirm .modal-content p {
  text-align: center;
  padding-bottom: 30px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content p {
    text-align: left;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content table tr {
    display: block;
    margin-bottom: 10px;
  }
}
#modalConfirm .modal-content table tr td {
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content table tr td {
    padding: 2px;
  }
}
#modalConfirm .modal-content table tr td.review-label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #181818;
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-content table tr td.review-label {
    display: block;
    width: 100%;
  }
}
#modalConfirm .modal-footer {
  display: flex;
  justify-content: center;
  border-top: 0px;
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-footer {
    padding-bottom: 30px;
  }
}
#modalConfirm .modal-footer > div {
  display: flex;
}
#modalConfirm .modal-footer button {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  width: 240px;
  padding: 20px 30px 20px 30px;
}
@media only screen and (max-width: 1024px) {
  #modalConfirm .modal-footer button {
    max-width: 160px;
    font-size: 20px;
    padding: 8px 6px;
  }
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-footer button {
    max-width: 143px;
    font-size: 18px;
    padding: 8px 6px;
  }
}
#modalConfirm .modal-footer button:nth-child(1) {
  margin-right: 70px;
  background: #f5f5f5;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  color: #181818;
}
@media only screen and (max-width: 767px) {
  #modalConfirm .modal-footer button:nth-child(1) {
    margin-right: 20px;
  }
}
#modalConfirm .modal-footer button:nth-child(1):hover {
  background: #a7a7a7;
  color: #ffffff;
}

#modalFinal {
  text-align: center;
}
#modalFinal .modal-content {
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  #modalFinal .modal-content {
    padding: 30px 0px 35px;
  }
}
#modalFinal .modal-body {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #modalFinal .modal-body h3 {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #1c2639;
    margin-bottom: 15px;
  }
}
#modalFinal .modal-body img {
  width: 188px;
  height: 170px;
}
@media only screen and (max-width: 767px) {
  #modalFinal .modal-body img {
    max-width: 174px;
    max-height: 161px;
  }
}
#modalFinal .modal-body .text-center {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #181818;
}
#modalFinal .modal-footer {
  border-top: 0px;
  justify-content: center;
}
#modalFinal .modal-footer .btn-secondary {
  margin: 15px 0px;
  background: #f5f5f5;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  padding: 20px 30px;
  color: #181818;
}
@media only screen and (max-width: 767px) {
  #modalFinal .modal-footer .btn-secondary {
    max-width: 143px;
    font-size: 18px;
    padding: 8px 16px;
    white-space: nowrap;
    width: 100%;
  }
}
#modalFinal .modal-footer .btn-secondary:hover {
  background: #a7a7a7;
  color: #ffffff;
}
#modalFinal .modal-footer img {
  width: 327px;
  height: 159px;
  left: 564px;
  top: 650px;
}
@media only screen and (max-width: 767px) {
  #modalFinal .modal-footer img {
    max-width: 220px;
    max-height: 107px;
  }
}
#modalFinal .modal-footer img:hover {
  cursor: pointer;
  opacity: 0.5;
}

/* Please ❤ this if you like it! */
/* #Primary
================================================== */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #212112;
  background-position: center;
  background-repeat: repeat;
  background-size: 7%;
  background-color: #fff;
  overflow-x: hidden;
  transition: all 200ms linear;
}

::selection {
  color: #fff;
  background-color: #8167a9;
}

::-moz-selection {
  color: #fff;
  background-color: #8167a9;
}

.label-for-menu {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .label-for-menu {
    display: block;
  }
}

/* #Navigation
================================================== */
.selection-header {
  position: sticky;
  top: 0px;
  z-index: 10;
  background-color: white;
  width: 100%;
  height: 88px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  .selection-header {
    height: 50px;
  }
  .selection-header .container {
    padding: 10px 16px;
  }
}

/* #Popup header */
.popup-header {
  background-color: #f2dc31;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 9;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.popup-header__wrapper {
  display: flex;
  align-items: center;
  padding: 12px 0px;
  justify-content: flex-end;
}

.popup-header__text {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  font-size: 18px; 
  line-height: 22px;
}

.popup-header__btn-close {
  background-color: transparent;
  border: 0;
  position: relative;
  top: 0;
  left: 15px;  
}

@media only screen and (max-width: 1024px) {
  .popup-header {
    top: 50px;
  }

  .popup-header__text {
    font-size: 12px;
    margin-left: 16px;
    line-height: 14px;
  }

  .popup-header__btn-close {
    left: 12px; 
  }
}

/* #Primary style
================================================== */
.bg-light {
  background-color: #fff !important;
  transition: all 200ms linear;
}

.section {
  position: relative;
  width: 100%;
  display: block;
}

.full-height {
  height: 100vh;
}

.over-hide {
  overflow: hidden;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: 40px;
  transform: translateY(-50%);
  z-index: 20;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #212112;
  text-align: center;
}

p {
  margin: 0;
  padding-top: 10px;
  opacity: 1;
}

body.hero-anime p {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 1700ms;
}

h1 span {
  display: inline-block;
  transition: all 300ms linear;
  opacity: 1;
  transform: translate(0);
}

body.hero-anime h1 span:nth-child(1) {
  opacity: 0;
  transform: translateY(-20px);
}

body.hero-anime h1 span:nth-child(2) {
  opacity: 0;
  transform: translateY(-30px);
}

body.hero-anime h1 span:nth-child(3) {
  opacity: 0;
  transform: translateY(-50px);
}

body.hero-anime h1 span:nth-child(4) {
  opacity: 0;
  transform: translateY(-10px);
}

body.hero-anime h1 span:nth-child(5) {
  opacity: 0;
  transform: translateY(-50px);
}

body.hero-anime h1 span:nth-child(6) {
  opacity: 0;
  transform: translateY(-20px);
}

body.hero-anime h1 span:nth-child(7) {
  opacity: 0;
  transform: translateY(-40px);
}

body.hero-anime h1 span:nth-child(8) {
  opacity: 0;
  transform: translateY(-10px);
}

body.hero-anime h1 span:nth-child(9) {
  opacity: 0;
  transform: translateY(-30px);
}

body.hero-anime h1 span:nth-child(10) {
  opacity: 0;
  transform: translateY(-20px);
}

h1 span:nth-child(1) {
  transition-delay: 1000ms;
}

h1 span:nth-child(2) {
  transition-delay: 700ms;
}

h1 span:nth-child(3) {
  transition-delay: 900ms;
}

h1 span:nth-child(4) {
  transition-delay: 800ms;
}

h1 span:nth-child(5) {
  transition-delay: 1000ms;
}

h1 span:nth-child(6) {
  transition-delay: 700ms;
}

h1 span:nth-child(7) {
  transition-delay: 900ms;
}

h1 span:nth-child(8) {
  transition-delay: 800ms;
}

h1 span:nth-child(9) {
  transition-delay: 600ms;
}

h1 span:nth-child(10) {
  transition-delay: 700ms;
}

body.hero-anime h1 span:nth-child(11) {
  opacity: 0;
  transform: translateY(30px);
}

body.hero-anime h1 span:nth-child(12) {
  opacity: 0;
  transform: translateY(50px);
}

body.hero-anime h1 span:nth-child(13) {
  opacity: 0;
  transform: translateY(20px);
}

body.hero-anime h1 span:nth-child(14) {
  opacity: 0;
  transform: translateY(30px);
}

body.hero-anime h1 span:nth-child(15) {
  opacity: 0;
  transform: translateY(50px);
}

h1 span:nth-child(11) {
  transition-delay: 1300ms;
}

h1 span:nth-child(12) {
  transition-delay: 1500ms;
}

h1 span:nth-child(13) {
  transition-delay: 1400ms;
}

h1 span:nth-child(14) {
  transition-delay: 1200ms;
}

h1 span:nth-child(15) {
  transition-delay: 1450ms;
}

#switch,
#circle {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

#switch {
  width: 60px;
  height: 8px;
  border: 2px solid #8167a9;
  border-radius: 27px;
  background: #000;
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  transform: translate(0);
  transition: all 300ms linear;
  transition-delay: 1900ms;
}

body.hero-anime #switch {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 1900ms;
}

#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}

.switched {
  border-color: #000 !important;
  background: #8167a9 !important;
}

.switched #circle {
  left: 43px;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  background: #fff;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
  padding: 10px !important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: rgba(129, 103, 169, 0.6);
}

body.dark {
  color: #fff;
  background-color: #1f2029;
}

body.dark .navbar-brand img {
  filter: brightness(100%);
}

body.dark h1 {
  color: #fff;
}

body.dark h1 span {
  transition-delay: 0ms !important;
}

body.dark p {
  color: #fff;
  transition-delay: 0ms !important;
}

body.dark .bg-light {
  background-color: #14151a !important;
}

body.dark .start-header {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

body.dark .start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

body.dark .nav-link {
  color: #fff !important;
}

body.dark .nav-item.active .nav-link {
  color: #999 !important;
}

body.dark .dropdown-menu {
  color: #fff;
  background-color: #1f2029;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

body.dark .dropdown-item {
  color: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
  border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
  background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  border-color: transparent;
}

/* #Media
================================================== */
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
  .nav-item:after {
    display: none;
  }
  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
  }
  .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded=true] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  body.dark .nav-item::before {
    background-color: #fff;
  }
  body.dark .dropdown-toggle::after {
    background-color: #fff;
  }
  body.dark .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
  }
}
/* #Link to page
================================================== */
.logo {
  bottom: 30px;
  right: 30px;
  display: block;
  z-index: 100;
  transition: all 250ms linear;
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(10%);
  transition: all 250ms linear;
}

body.dark .logo img {
  filter: brightness(100%);
}

header {
  padding: 16px 0px;
}
header #btn-morblog {
  margin-left: 30px;
  width: 150.5px;
  height: 33px;
  background-color: #fff;
  color: #03a2e5;
  border: 2px solid #03a2e5;
  border-radius: 4px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
header #btn-morblog:hover {
  background-color: #03a2e5;
  color: #fff;
  font-weight: 300;
}
header #btn-morblog:hover > i {
  background-color: #03a2e5;
  color: #fff;
}
header #link-icon {
  margin: 0px 0px 5px -4px;
  color: #03a2e5;
}
header .hidden-mobile {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  header .hidden-mobile {
    display: none;
  }
}
header .display-mobile {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header .display-mobile {
    display: flex;
    flex-direction: row;
  }
  header .display-mobile .text {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: -16px;
    color: #17479d;
    padding-left: 12.96px;
  }
}
header .mor-blog {
  margin-left: 30px;
  border-radius: 4px;
  padding: 8px 24px;
  border: 2px solid #03a2e5;
  color: #03a2e5;
  background-color: white;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  header .mor-blog i {
    color: white;
  }
}

@media only screen and (max-width: 1024px) {
  .ul {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .burger {
    cursor: pointer;
    display: block;
    width: 25px;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .burger div {
    background-color: #181818;
    border-radius: 5px;
    height: 2px;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.6, 0.13, 0.32, 1.46);
  }
  .burger .one,
  .burger .two {
    margin-bottom: 8px;
  }
}

.masthead {
  width: 100%;
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 1024px) {
  .masthead {
    margin-bottom: 0;
  }
}

.main-nav-list {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .main-nav-list {
    background-color: white;
    position: fixed;
    left: 0;
    width: 100%;
    top: 86px;
    transition: 0.3s all;
    top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .main-nav-list:after {
    content: "";
    background: #FFFFFF;
    height: 10px;
    width: 100%;
    position: absolute;
    top: -10px;
    left: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}

.menu-toggle {
  display: none;
}

@media only screen and (max-width: 1024px) {
  #input__menu-toggle:checked ~ .overlay-menu {
    position: fixed;
    top: 50px;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
  }
  #input__menu-toggle:checked ~ .main-nav-list {
    display: block;
    transition: 0.3s all;
  }
  #input__menu-toggle:checked ~ .masthead .burger .one {
    box-shadow: 1px 0.4px 10px rgba(0, 0, 0, 0.25);
    transform-origin: left;
    transform: translate(3%, 1px) rotate(45deg);
  }
  #input__menu-toggle:checked ~ .masthead .burger .two {
    background-color: transparent;
    box-shadow: none;
  }
  #input__menu-toggle:checked ~ .masthead .burger .three {
    box-shadow: 1px 0.4px 10px rgba(0, 0, 0, 0.25);
    transform-origin: left;
    transform: translate(1%, -1px) rotate(-45deg);
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 50px 0;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-top .btn-section {
    transition-property: opacity;
    opacity: 1;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #181818;
    width: 244px;
    background: #e9f7ff;
    padding: 12px 86px;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom {
    height: 142px;
    width: 100%;
    background-image: url("../images/bg-bottom.png");
    z-index: 1;
    background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px 0 50px;
    position: relative;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom:after {
    content: "";
    background: rgba(239, 247, 250, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom--desc {
    position: relative;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom--desc:before {
    content: "";
    height: 13px;
    width: 1px;
    background-color: #181818;
    transform: rotate(140deg);
    display: block;
    position: absolute;
    left: 0px;
    top: 18px;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom--desc:after {
    content: "";
    height: 13px;
    width: 1px;
    background-color: #181818;
    transform: rotate(30deg);
    display: block;
    position: absolute;
    right: 0px;
    top: 18px;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom span {
    padding: 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #181818;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 767px) {
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom span {
    font-size: 14px;
    z-index: 2;
  }
}
@media only screen and (max-width: 1024px) {
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom a button {
    font-size: 18px;
    color: #fff;
    z-index: 2;
    position: relative;
  }
  #input__menu-toggle:checked ~ .main-nav-list .header-bottom a button span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
  }
}
#input__menu-toggle:checked .header-bottom::before {
  z-index: 2;
  position: absolute;
  top: 0;
  height: 142px;
  width: 100%;
  background: rgba(239, 247, 250, 0.9);
}

@media only screen and (max-width: 1024px) {
  .ul {
    display: none;
  }
}

.btn-gradient {
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.54%, #e94625 37.98%, #e67b27 67.42%, #e2b028 96.86%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  color: #fff;
  font-size: 22px;
  padding: 8px 30px;
  font-weight: 700;
}
.btn-gradient:hover {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #17479d -20.91%, #824660 8.18%, #e94625 38.84%, #e67b27 69.93%, #e2b028 96.86%) border-box;
  cursor: pointer;
}
.btn-gradient:hover span {
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.18%, #e94625 38.84%, #e67b27 69.93%, #e2b028 96.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media only screen and (max-width: 1024px) {
  .btn-gradient {
    align-items: center;
  }
}

.menu-items {
  display: flex;
  align-items: flex-end;
}
.menu-items li:nth-last-child(1) a {
  margin-right: 0px;
}
.menu-items li a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #181818;
  margin-right: 24px;
  padding: 0;
}
.menu-items li a:hover {
  color: #0e4294;
}
@media only screen and (max-width: 1024px) {
  .menu-items {
    display: none;
  }
}

i {
  color: #ffc200;
  margin-right: 5px;
}
i:before {
  width: 20px;
  height: 15px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
i.mkt-phone:before {
  content: "";
  background-image: url("../images/phone@3x.png");
}
i.mkt-phone-fill:before {
  content: "";
  background-image: url("../images/phone_2@3x.png");
}
i.mkt-location:before {
  content: "";
  background-image: url("../images/orange_2@3x.png");
}
i.mkt-email:before {
  content: "";
  background-image: url("../images/email@3x.png");
}
i.mkt-clock:before {
  content: "";
  background-image: url("../images/clock@3x.png");
}
i.mkt-arrow_breadcrumb:before {
  content: "";
  background-image: url("../images/arrow-breadcrumb.png");
}
i.mkt-acreage:before {
  content: "";
  background-image: url("../images/orange_3@2x.png");
}
i.mkt-vip:before {
  content: "";
  background-image: url("../images/vip-label@3x.png");
}

.info-real {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.info-real li {
  display: flex;
  margin: 10px 0px;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #6b7787;
}
.info-real li:before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.info-real li.real__address:before {
  background-image: url("../images/add@2x.png");
}
.info-real li.real__area:before {
  background-image: url("../images/orange_3@2x.png");
}
.info-real li.real__create-date:before {
  background-image: url("../images/clock@3x.png");
}
.info-real li.real__view:before {
  background-image: url("../images/show@2x.png");
}

.pagination-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.pagination-container .wp-pagenavi {
  clear: both;
  display: flex;
}
.pagination-container .wp-pagenavi a,
.pagination-container .wp-pagenavi span {
  margin: 0 0.6rem;
  min-width: 30px;
  min-height: 30px;
  font-size: 1.5rem;
  line-height: 18px;
  text-align: center;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  border: 2px solid #dfe3e9;
  color: #cccccc;
}
.pagination-container .wp-pagenavi a:hover,
.pagination-container .wp-pagenavi span.current {
  color: #ffffff;
  border-color: #ffc200;
  background-color: #ffc200;
}
.pagination-container .wp-pagenavi span.current {
  font-weight: 400;
}

/**
 * PAGES
 */
.banner-section {
  background: linear-gradient(180deg, #1c84ff 0%, rgba(165, 239, 255, 0) 100%);
  padding: 150px 0px 220px;
}
@media only screen and (max-width: 1024px) {
  .banner-section {
    padding-bottom: 35px;
  }
}
.banner-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .banner-section__title {
    font-size: 24px;
    line-height: 29px;
    padding-top: 18px;
  }
}
.banner-section__left {
  margin-left: 92px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-section__left {
    padding-top: 0px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section__left {
    padding: 95px 1px 0;
    margin-left: 0;
  }
}
.banner-section__img {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img {
    top: -130px;
    position: relative;
  }
}
.banner-section__img__lineGroup {
  width: 621px;
  height: 377px;
  padding-left: 40px;
  animation-name: fadeUpAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
  right: 25px;
  position: absolute;
  transition-delay: 0.1s;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .banner-section__img__lineGroup {
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section__img__lineGroup {
    padding-right: 1px;
    padding-left: 1px;
    left: 20px;
    width: 358px;
    height: 211px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup {
    left: 0px;
  }
}
.banner-section__img__lineGroup-right {
  width: 70px;
  position: absolute;
}
@media only screen and (min-width: 1025px) {
  .banner-section__img__lineGroup-right {
    top: 101px;
    right: 83px;
  }
}
@media print {
  .banner-section__img__lineGroup-right {
    top: 101px;
    right: 83px;
  }
}
.ie8 .banner-section__img__lineGroup-right {
  top: 101px;
  right: 83px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup-right {
    display: none;
  }
}
.banner-section__img__lineGroup-01 {
  width: 153px;
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-delay: 0.2s;
  position: absolute;
  transition: all ease 2s;
}
@media only screen and (min-width: 1025px) {
  .banner-section__img__lineGroup-01 {
    top: -50px;
    right: 446px;
  }
  .banner-section__img__lineGroup-01:hover {
    top: -50px;
    right: 436px;
  }
}
@media print {
  .banner-section__img__lineGroup-01 {
    top: -50px;
    right: 446px;
  }
  .banner-section__img__lineGroup-01:hover {
    top: -50px;
    right: 436px;
  }
}
.ie8 .banner-section__img__lineGroup-01 {
  top: -50px;
  right: 446px;
}
.ie8 .banner-section__img__lineGroup-01:hover {
  top: -50px;
  right: 436px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup-01 {
    top: 6.5%;
    left: 30.2%;
  }
}
.banner-section__img__lineGroup-01-center {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  position: absolute;
  transition: top ease 1s;
}
@media only screen and (min-width: 1025px) {
  .banner-section__img__lineGroup-01-center {
    top: 37px;
    right: 324px;
  }
  .banner-section__img__lineGroup-01-center:hover {
    top: 27px;
    right: 324px;
  }
}
@media print {
  .banner-section__img__lineGroup-01-center {
    top: 37px;
    right: 324px;
  }
  .banner-section__img__lineGroup-01-center:hover {
    top: 27px;
    right: 324px;
  }
}
.ie8 .banner-section__img__lineGroup-01-center {
  top: 37px;
  right: 324px;
}
.ie8 .banner-section__img__lineGroup-01-center:hover {
  top: 27px;
  right: 324px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup-01-center {
    top: 13%;
    left: 45.2%;
  }
}
.banner-section__img__lineGroup-02 {
  width: 35px;
  animation-name: fadeUpAnime1;
  animation-fill-mode: forwards;
  opacity: 0;
  position: absolute;
  transition: top ease 4s;
}
@media only screen and (min-width: 1025px) {
  .banner-section__img__lineGroup-02 {
    top: 205px;
    right: 628px;
  }
  .banner-section__img__lineGroup-02:hover {
    top: 175px;
    right: 628px;
  }
}
@media print {
  .banner-section__img__lineGroup-02 {
    top: 205px;
    right: 628px;
  }
  .banner-section__img__lineGroup-02:hover {
    top: 175px;
    right: 628px;
  }
}
.ie8 .banner-section__img__lineGroup-02 {
  top: 205px;
  right: 628px;
}
.ie8 .banner-section__img__lineGroup-02:hover {
  top: 175px;
  right: 628px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup-02 {
    top: 20px;
    right: 10px;
  }
  .banner-section__img__lineGroup-02:hover {
    top: 10px;
    right: 10px;
  }
}
.banner-section__img__lineGroup-03 {
  margin-left: 250px;
  width: 60px;
  animation-name: fadeUpAnime2;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-delay: 3.5s;
  position: absolute;
  top: 33%;
  transition: top ease 1s;
}
@media only screen and (min-width: 1025px) {
  .banner-section__img__lineGroup-03 {
    top: 44px;
    right: 61px;
  }
  .banner-section__img__lineGroup-03:hover {
    top: 34px;
    right: 61px;
  }
}
@media print {
  .banner-section__img__lineGroup-03 {
    top: 44px;
    right: 61px;
  }
  .banner-section__img__lineGroup-03:hover {
    top: 34px;
    right: 61px;
  }
}
.ie8 .banner-section__img__lineGroup-03 {
  top: 44px;
  right: 61px;
}
.ie8 .banner-section__img__lineGroup-03:hover {
  top: 34px;
  right: 61px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup-03 {
    display: none;
  }
}
.banner-section__img__lineGroup-03-center {
  margin-left: 250px;
  animation-name: fadeUpAnime2;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-delay: 3.5s;
  position: absolute;
  transition: top ease 1s;
}
@media only screen and (min-width: 1025px) {
  .banner-section__img__lineGroup-03-center {
    top: 35px;
    right: 335px;
  }
  .banner-section__img__lineGroup-03-center:hover {
    top: 30px;
    right: 335px;
  }
}
@media print {
  .banner-section__img__lineGroup-03-center {
    top: 35px;
    right: 335px;
  }
  .banner-section__img__lineGroup-03-center:hover {
    top: 30px;
    right: 335px;
  }
}
.ie8 .banner-section__img__lineGroup-03-center {
  top: 35px;
  right: 335px;
}
.ie8 .banner-section__img__lineGroup-03-center:hover {
  top: 30px;
  right: 335px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__img__lineGroup-03-center {
    top: 18%;
    left: 41%;
  }
  .banner-section__img__lineGroup-03-center:hover {
    top: 21%;
    left: 41%;
  }
}
.banner-section__options {
  margin-left: 0px;
  margin-top: 40px;
  margin-bottom: 60px;
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  .banner-section__options {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.banner-section__options li {
  color: #0e4294;
  font-size: 16px;
  position: relative;
  font-weight: 500;
  padding-left: 40px;
  margin-bottom: 15px;
  line-height: 24px;
}
@media only screen and (max-width: 1024px) {
  .banner-section__options li {
    padding-left: 32px;
    font-size: 14px;
  }
}
.banner-section__options li::before {
  content: "";
  position: absolute;
  background-image: url(../images/checked-blue.png);
  display: block;
  width: 30px;
  height: 30px;
  margin-left: -50px;
  margin-top: 7px;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .banner-section__options li::before {
    margin-left: -50px;
  }
}
.banner-section .banner-wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 1px;
}
@media only screen and (max-width: 1024px) {
  .banner-section .banner-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .banner-section .banner-wrap .banner-section__left a {
    display: flex;
    justify-content: center;
    max-width: 246px;
    font-size: 18px;
    margin: 0 auto;
  }
}
.banner-section .btn-contact {
  padding: 20px 50px;
  border: 0px;
  font-size: 22px;
}

.partner-section {
  margin-top: -60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .partner-section {
    padding-bottom: 20px;
    margin: 15px;
  }
}
.partner-section__box {
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 793px;
  margin: 0 auto;
  padding: 38px;
}
@media only screen and (max-width: 1024px) {
  .partner-section__box {
    padding: 32px 1px;
  }
}
.partner-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .partner-section__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.partner-section__partners {
  display: flex;
  flex-flow: wrap;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .partner-section__partners {
    margin-top: 0px;
  }
}
.partner-section__partner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .partner-section__partner {
    padding: 10px;
  }
}
.partner-section__desc {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-section__desc p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: left;
  padding-top: 0px;
}
.partner-section__desc p .display-mobile {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .partner-section__desc p .display-mobile {
    display: contents;
  }
}
.partner-section__logo {
  text-align: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 1024px) {
  .partner-section__logo {
    height: 100px;
  }
}
.partner-section__logo img {
  width: 269px;
  height: 80;
}
@media only screen and (max-width: 1024px) {
  .partner-section__logo img {
    width: 136px;
    height: 40px;
  }
}
.partner-section__logo__right {
  text-align: center;
}
.partner-section__logo__right img {
  width: 150px;
  height: 150px;
}
@media only screen and (max-width: 1024px) {
  .partner-section__logo__right img {
    width: 100px;
    height: 100px;
  }
}

.group-section {
  background-color: #e9f7ff;
}
.group-section__items {
  display: flex;
  justify-content: space-between;
}
.group-section__items .slick-track {
  display: flex;
  justify-content: center;
}
.group-section__items .slick-slide {
  margin-right: 70px;
  width: calc(25% - 70px);
}
.group-section__items .slick-slide:nth-last-child(1) {
  margin-right: 0px;
}
@media only screen and (max-width: 1024px) {
  .group-section__items .slick-slide {
    margin-right: 25px;
  }
}
.group-section__item {
  width: calc(100% - 68px);
  display: flex;
  align-items: center;
  padding: 60px 0px;
  justify-content: center;
  margin-right: 68px;
}
@media only screen and (max-width: 1024px) {
  .group-section__item {
    padding: 30px 0px;
    margin-right: 25px;
  }
}
.group-section__item:last-child {
  margin-right: 0px;
}
.group-section__item--box {
  background-color: #fff;
  height: 90px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .group-section__item--box {
    height: 50px;
    border-radius: 10px;
  }
}
.group-section__item img {
  max-width: 225px;
}
@media only screen and (max-width: 1024px) {
  .group-section__item img {
    max-width: 115px;
  }
}

.qa-section {
  padding: 90px 8.5px 0px;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .qa-section {
    padding: 60px 8.5px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .qa-section {
    padding-bottom: 0px;
  }
}
.qa-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  color: #03a2e5;
}
@media only screen and (max-width: 1024px) {
  .qa-section__title {
    display: none;
  }
}
.qa-section__title__mobile {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .qa-section__title__mobile {
    display: block;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    color: #03a2e5;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .qa-section__title__mobile {
    line-height: 24px;
  }
}
.qa-section__items {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .qa-section__items {
    margin-top: 0px;
  }
}
.qa-section__item {
  width: 25%;
  visibility: visible;
}
@media only screen and (max-width: 1024px) {
  .qa-section__item {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.qa-section__options {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin-left: 0;
  padding-left: 0;
}
.qa-section__options li {
  position: relative;
  padding-left: 10px;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
}
@media only screen and (max-width: 1024px) {
  .qa-section__options li {
    font-size: 14px;
    line-height: 17px;
    margin-top: 10px;
  }
}
.qa-section__options li:before {
  content: "";
  width: 13px;
  height: 11px;
  background-image: url(../images/checked.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: 5px;
}
.qa-section__options li span {
  color: #03a2e5;
  font-family: "Inter";
}
.qa-section__options li .display-mobile {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .qa-section__options li .display-mobile {
    display: contents;
  }
}
.qa-section__img {
  background-color: #85afd5;
  border-radius: 50%;
  max-width: 185px;
  max-height: 185px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1024px) {
  .qa-section__img {
    max-width: 138px;
    max-height: 138px;
  }
}
.qa-section__img img {
  width: 185px;
}
@media only screen and (max-width: 1024px) {
  .qa-section__img img {
    width: 138px;
  }
}

.mor-section {
  background-color: #e9f7ff;
  padding: 200px 0px 0px;
  background-image: url("../images/bg-white.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  position: relative;
  margin-top: -1px;
}
@media only screen and (max-width: 1024px) {
  .mor-section {
    overflow: hidden;
    padding: 50px 0px 80px;
  }
}
.mor-section__title {
  display: block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  line-height: 48px;
  padding-bottom: 10px;
}
.mor-section__title span {
  font-size: 40px;
  color: #03a2e5;
  font-family: "Inter";
}
@media only screen and (max-width: 1024px) {
  .mor-section__title {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .mor-section__left {
    margin-top: -20px;
    z-index: 2;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mor-section__right {
    justify-content: center;
  }
}
@media only screen and (max-width: 1024px) {
  .mor-section__right {
    display: flex;
  }
}
.mor-section__title__mobile {
  display: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.mor-section__title__mobile .line-42 {
  line-height: 42px;
}
.mor-section__title__mobile .text-blue {
  line-height: 30px;
  font-size: 24px;
  color: #03a2e5;
  margin-bottom: 10px;
}
.mor-section__title__mobile .line-20 {
  line-height: 20px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__title__mobile {
    display: block;
    word-break: keep-all;
  }
}
.mor-section__bottom {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .mor-section__bottom {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .mor-section__bottom {
    margin-top: 20px;
  }
}
.mor-section__box {
  max-width: 510px;
  background: #ffffff;
  border-radius: 4px;
  padding: 20px 35px;
  z-index: 5;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .mor-section__box {
    padding: 20px 15px 35px;
  }
}
.mor-section__description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
}
@media only screen and (max-width: 1024px) {
  .mor-section__description {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .mor-section__description br {
    display: none;
  }
}
.mor-section__description br.is-mobile {
  display: block;
}
.mor-section__awards {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .mor-section__awards {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .mor-section__award {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .mor-section__award:nth-child(1) {
    padding-top: 5px;
  }
}
.mor-section__award:nth-child(1) .mor-section__desc {
  padding-top: 5px;
}
.mor-section__award:nth-child(2) {
  padding-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__award:nth-child(2) {
    padding-top: 12px;
  }
}
.mor-section__award img {
  width: 94px;
  height: 53px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__award img {
    width: 73px;
    height: 41px;
  }
}
.mor-section__award:nth-of-type(3) img {
  width: 78px;
  height: 78px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__award:nth-of-type(3) img {
    width: 60px;
    height: 61px;
  }
}
.mor-section__award:nth-of-type(4) img {
  width: 73px;
  height: 73px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__award:nth-of-type(4) img {
    width: 57px;
    height: 57px;
  }
}
.mor-section__desc {
  margin-top: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #03a2e5;
}
.mor-section__women {
  padding-left: 80px;
  margin-top: -100px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__women {
    padding-left: 10px;
    margin-top: 0;
    margin-left: -50px;
  }
}
@media only screen and (min-width: 1025px) {
  .mor-section__women img {
    margin-top: -100px;
  }
}
@media print {
  .mor-section__women img {
    margin-top: -100px;
  }
}
.ie8 .mor-section__women img {
  margin-top: -100px;
}
@media only screen and (max-width: 1024px) {
  .mor-section__women img {
    width: 198px;
    height: 280px;
  }
}
.mor-section .container {
  max-width: 1130px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mor-section .container {
    max-width: 600px;
  }
}

.specific-section {
  background: #85afd5;
  position: relative;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media only screen and (max-width: 1024px) {
  .specific-section {
    padding: 0px 0px 30px;
  }
}
.specific-section:after {
  content: "";
  background-image: url(../images/frame1.png);
  height: 1270px;
  width: 360px;
  display: block;
  position: absolute;
  left: 0;
  z-index: 1;
  top: -400px;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  left: -35px;
}
@media only screen and (max-width: 1024px) {
  .specific-section:after {
    width: 106px;
    max-height: 380px;
    background-size: cover;
    top: -130px;
    left: -10px;
  }
}
.specific-section:before {
  content: "";
  background-image: url(../images/frame2.png);
  height: 1270px;
  width: 360px;
  display: block;
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: -400px;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  opacity: 0.58;
}
@media only screen and (max-width: 1024px) {
  .specific-section:before {
    bottom: -50px;
    background-size: cover;
    width: 150px;
    max-height: 380px;
  }
}
.specific-section::-webkit-scrollbar {
  width: 0px;
}
.specific-section::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.specific-section::-webkit-scrollbar-thumb {
  background: #888;
}
.specific-section::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.specific-section__sticky {
  height: 100px;
  position: sticky;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .specific-section__sticky {
    height: 50px;
  }
}
.specific-section__scroll {
  overflow-y: scroll;
  height: 845px;
  position: relative;
  z-index: 2;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .specific-section__scroll {
    height: 845px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .specific-section__scroll {
    height: auto;
    overflow-y: auto;
  }
}
.specific-section__scroll::-webkit-scrollbar {
  width: 0px;
}
.specific-section__scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.specific-section__scroll::-webkit-scrollbar-thumb {
  background: #888;
}
.specific-section__scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.specific-section__head {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .specific-section__head {
    margin-bottom: 30px;
  }
}
.specific-section__head .about-us {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .specific-section__head .about-us {
    font-size: 20px;
    line-height: 24px;
  }
}
.specific-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #ffffff;
  margin-top: 3px;
}
@media only screen and (max-width: 1024px) {
  .specific-section__title {
    font-size: 20px;
    line-height: 24px;
    margin-top: 0px;
  }
}
.specific-section__items {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .specific-section__items {
    overflow: hidden;
  }
}
.specific-section__items:nth-child(3) .specific-section__box--description {
  padding-top: 30px;
}
.specific-section__item {
  margin-bottom: 100px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .specific-section__item {
    flex-flow: wrap;
    margin-bottom: 5px;
    margin-left: -25px;
  }
}
.specific-section__item--wrap {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .specific-section__item--wrap {
    flex-flow: wrap;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .specific-section__item:nth-child(1) {
    margin-left: 0px;
  }
}
.specific-section__item:nth-child(1) .specific-section__box {
  top: 50px;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .specific-section__item:nth-child(1) .specific-section__box {
    left: 25px;
    right: 0px;
    top: -45px;
  }
}
@media only screen and (max-width: 1024px) {
  .specific-section__item:nth-child(1) .specific-section__img {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .specific-section__item:nth-child(2) .specific-section__item--wrap {
    flex-direction: column-reverse;
  }
}
.specific-section__item:nth-child(2) .specific-section__box {
  right: -40px;
  margin-left: -80px;
  top: 40px;
}
@media only screen and (max-width: 767px) {
  .specific-section__item:nth-child(2) .specific-section__box {
    margin-left: 0px;
    left: 25px;
    right: 0px;
    top: -45px;
  }
}
@media only screen and (max-width: 1024px) {
  .specific-section__item:nth-child(3) {
    margin-left: 0px;
  }
}
.specific-section__item:nth-child(3) .specific-section__box {
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .specific-section__item:nth-child(3) .specific-section__box {
    top: -45px;
    right: 40px;
    left: 25px;
  }
}
.specific-section__item:nth-child(3) .specific-section__box--title {
  white-space: nowrap;
}
.specific-section__item:nth-child(3) .specific-section__box .specific-section__box--description p {
  padding-top: 35px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .specific-section__item:nth-child(3) .specific-section__box .specific-section__box--description p {
    padding-top: 10px;
  }
}
.specific-section__box {
  position: relative;
  width: 100%;
  top: 47px;
}
.specific-section__box--white {
  padding: 35px;
  border-radius: 10px;
  max-width: 720px;
  background: #ffffff;
  padding-left: 130px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  .specific-section__box--white {
    padding-left: 15px;
    padding-top: 60px;
    max-width: 333px;
  }
}
@media only screen and (max-width: 543.5px) {
  .specific-section__box--white {
    max-width: 320px;
  }
}
.specific-section__box--title .number {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 121px;
  color: #e9f7ff;
  position: absolute;
  left: 10px;
  top: -5px;
}
@media only screen and (max-width: 1024px) {
  .specific-section__box--title .number {
    font-size: 90px;
  }
}
.specific-section__box--title strong {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #181818;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .specific-section__box--title strong {
    font-size: 18px;
    line-height: 22px;
  }
}
.specific-section__box--description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #181818;
  padding-top: 10px;
}
.specific-section__box--description p {
  text-align: left;
  padding-top: 0;
}
@media only screen and (max-width: 1024px) {
  .specific-section__box--description {
    font-size: 14px;
    line-height: 17px;
  }
}
.specific-section__img img {
  width: 492px;
  height: 276.75px;
  border-radius: 8px;
}
@media only screen and (max-width: 1024px) {
  .specific-section__img img {
    width: 291px;
    height: 193.69px;
  }
}

.development-section {
  padding: 100px;
  background: rgba(233, 247, 255, 0.9);
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .development-section {
    padding: 55px 0px 30px;
  }
}
.development-section__body {
  margin-top: 70px;
}
@media only screen and (max-width: 1024px) {
  .development-section__body {
    margin-top: 30px;
  }
}
.development-section__footer {
  max-width: 1045px;
  margin: 0 auto;
  background: #ffffff;
  border: 3px solid #03a2e5;
  border-radius: 30px;
  padding: 40px 40px 20px 29px;
  margin-top: 25px;
}
@media only screen and (max-width: 1024px) {
  .development-section__footer {
    padding: 40px 15px 15px;
    margin-top: 15px;
  }
}
.development-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .development-section__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.development-section__title span {
  color: #03a2e5;
}
.development-section__sub {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #181818;
  margin-top: 25px;
}
@media only screen and (max-width: 1024px) {
  .development-section__sub {
    font-size: 14px;
  }
}
.development-section__options {
  display: flex;
  flex-flow: wrap;
}
.development-section__option {
  width: calc(33.3333333333% - 20px);
  margin-right: 20px;
  background-color: #fff;
  margin-bottom: 35px;
  padding: 25px;
  display: flex;
  align-items: center;
  visibility: visible;
}
@media only screen and (max-width: 1024px) {
  .development-section__option {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0px;
    padding-bottom: 10px;
  }
}
.development-section__option img {
  width: 93px;
  height: 65px;
  margin-top: 11px;
}
@media only screen and (max-width: 1024px) {
  .development-section__option img {
    max-width: 50px;
    height: auto;
    margin-top: 0px;
  }
}
.development-section__option:last-child {
  margin-right: 0px;
}
.development-section .wow.fadeInLeft.animated {
  opacity: 1;
  animation-name: fadeInLeft;
}
.development-section__right {
  margin-left: 20px;
  margin-top: -34px;
}
@media only screen and (max-width: 1024px) {
  .development-section__right {
    margin-top: -15px;
  }
}
.development-section__right--title {
  padding-top: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .development-section__right--title {
    font-size: 18px;
    line-height: 18px;
  }
}
.development-section__right--description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .development-section__right--description {
    font-size: 12px;
    margin-top: 5px;
  }
}
.development-section__box #btn-morblog {
  margin-left: 30px;
  width: 214.5px;
  height: 33px;
  background-color: #fff;
  color: #03a2e5;
  border: 2px solid #03a2e5;
  border-radius: 4px;
  padding: 8px 24px;
  font-family: "Inter";
  font-style: normal;
  font-size: 14px;
}
@media only screen and (max-width: 1024px) {
  .development-section__box #btn-morblog {
    height: 60px;
    margin-left: 0px;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.development-section__box #btn-morblog:hover {
  background-color: #03a2e5;
  color: #fff;
  font-weight: 300;
}
.development-section__box #btn-morblog:hover > i {
  background-color: #03a2e5;
  color: #fff;
}
.development-section__box #link-icon {
  color: #03a2e5;
  margin-left: 5px;
}
.development-section__box--heading {
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .development-section__box--heading {
    flex-flow: wrap;
    justify-content: left;
    margin-bottom: 20px;
  }
}
.development-section__box--heading h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #181818;
  margin-left: 45px;
}
@media only screen and (max-width: 1024px) {
  .development-section__box--heading h3 {
    margin-left: 0px;
    padding-top: 10px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .development-section__box--heading h3 {
    line-height: 24px;
  }
}
.development-section__box--heading img {
  width: 78px;
  height: 63px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .development-section__box--heading img {
    margin: 8px 25px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .development-section__box--heading img {
    margin: 0 auto;
  }
}
.development-section__box--body .label-blue {
  background: #03a2e5;
  border-radius: 4px;
  color: #fff;
  padding: 4px 20px;
  font-size: 14px;
}
.development-section__box--body ul {
  margin-left: 20px;
  padding-left: 0px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  flex-flow: wrap;
  color: #03a2e5;
  margin-bottom: 20px;
}
.development-section__box--body ul li {
  width: 50%;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .development-section__box--body ul li {
    width: 100%;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .development-section__box--body ul li {
    font-size: 14px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 543.5px) {
  .development-section__box--body ul li {
    white-space: normal;
  }
}
.development-section__box--wrapper {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .development-section__box--wrapper {
    padding-left: 0px;
  }
}
.development-section__box--footer {
  padding-top: 17px;
  display: flex;
  align-items: center;
  border-top: 1px solid #a7a7a7;
}
@media only screen and (max-width: 1024px) {
  .development-section__box--footer {
    flex-flow: wrap;
  }
}
.development-section__box--footer .development-section__box--right {
  margin-left: 46px;
}
@media only screen and (max-width: 1024px) {
  .development-section__box--footer .development-section__box--right {
    margin-left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}
.development-section__box--footer .development-section__box--right a {
  border: 2px solid #03a2e5;
  padding: 5px 20px;
  white-space: nowrap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: #03a2e5;
  flex: none;
  order: 0;
  flex-grow: 0;
  border-radius: 4px;
  margin-right: 20px;
  padding-right: 35px;
}
.development-section__box--left p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #181818;
  line-height: 20px;
  padding-left: 8px;
}
@media only screen and (max-width: 767px) {
  .development-section__box--left p {
    padding-left: 0px;
  }
}
.development-section__box hr {
  background-color: #a7a7a7;
  height: 1px;
}

.processing-section {
  padding: 100px 0px 50px 0;
}
@media only screen and (max-width: 1024px) {
  .processing-section {
    padding: 70px 0px 50px;
  }
}
.processing-section .container {
  max-width: 1180px;
}
.processing-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #181818;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  .processing-section__title {
    font-size: 20px;
  }
}
.processing-section__sub {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #181818;
  padding: 20px 0px;
}
.processing-section__sub p {
  padding-top: 0;
}
@media only screen and (max-width: 1024px) {
  .processing-section__sub {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
  }
}
.processing-section__items {
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .processing-section__items {
    padding-top: 15px;
  }
}
.processing-section__item {
  display: flex;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 35px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .processing-section__item {
    flex-flow: wrap;
    padding: 20px 15px;
    margin-bottom: 30px;
  }
}
.processing-section__item .processing-section__left {
  padding-right: 52px;
}
@media only screen and (max-width: 1024px) {
  .processing-section__item .processing-section__left {
    padding-right: 0px;
  }
}
.processing-section__item .processing-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: left;
  color: #0e4294;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .processing-section__item .processing-section__title {
    text-align: center;
    font-size: 18px;
    margin: 20px 0px;
  }
}
.processing-section__item .processing-section__description {
  max-width: 375px;
}
@media only screen and (max-width: 1024px) {
  .processing-section__item .processing-section__description {
    padding-top: 15px;
  }
}
.processing-section__item .processing-section__description p {
  text-align: left;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #181818;
  padding-top: 0px;
}
@media only screen and (max-width: 1024px) {
  .processing-section__item .processing-section__description p {
    padding-bottom: 5px;
  }
}
.processing-section__item .processing-section__description .text-20 {
  padding-bottom: 20px;
}
.processing-section__item .processing-section__description:nth-child(1) p {
  padding-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .processing-section__item .processing-section__right {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .processing-section__item .processing-section__right {
    display: none;
  }
}
.processing-section__item .processing-section__right img {
  width: 656px;
  height: 311px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .processing-section__item .processing-section__right img {
    max-width: 330px;
    height: auto !important;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .processing-section__item .processing-section__right img {
    width: 100%;
    height: 100%;
  }
}
.processing-section__item img {
  max-width: 100%;
}

.development_system-section {
  padding: 100px 0px 90px;
  background: #e9f7ff;
}
@media only screen and (max-width: 1024px) {
  .development_system-section {
    padding: 50px 30px 70px 30px;
  }
}
.development_system__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .development_system__title {
    font-size: 20px;
  }
}
.development_system__box {
  display: flex;
  justify-content: center;
}
.development_system__box ul {
  display: flex;
  list-style: none;
  padding-left: 0px;
}
@media only screen and (max-width: 1024px) {
  .development_system__box ul {
    padding-left: 0px;
  }
}
.development_system__box ul li {
  margin-right: 100px;
  width: 340px;
}
@media only screen and (max-width: 1024px) {
  .development_system__box ul li {
    max-width: 170px;
    margin-right: 18px;
  }
}
.development_system__box ul li:last-child {
  margin-right: 0px;
}
.development_system__box ul li .box {
  background-color: #fff;
  margin-top: 30px;
}
.development_system__box ul li .box-heading {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  background: #03a2e5;
  padding: 4px;
}
@media only screen and (max-width: 1024px) {
  .development_system__box ul li .box-heading {
    font-size: 18px;
  }
}
.development_system__box ul li .box-content {
  padding: 15px;
  text-align: center;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.development_system__box ul li .box-content .desc {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .development_system__box ul li .box-content .desc {
    font-size: 12px;
    line-height: 17px;
  }
}
.development_system__box ul li .box-content .desc strong {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .development_system__box ul li .box-content .desc strong {
    font-size: 14px;
    display: block;
  }
}
.development_system__box ul li .box-content .desc strong span.number {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .development_system__box ul li .box-content .desc strong span.number {
    font-size: 24px;
  }
}
.development_system__box ul li .box-content .desc .text-10 {
  margin-bottom: -11px;
}

.contract-section {
  padding: 28px 0px;
  display: flex;
  background-image: url(../images/bg-contract.png);
  position: relative;
  background-size: cover;
}
@media only screen and (max-width: 1024px) {
  .contract-section {
    padding: 15px 0px 50px;
    background-position: center top;
  }
}
.contract-section:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(239, 247, 250, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.contract-section__box {
  flex-flow: wrap;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.contract-section__desc {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #181818;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .contract-section__desc {
    font-size: 16px;
    line-height: 18px;
  }
  .contract-section__desc br:nth-child(1) {
    display: none;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .contract-section__desc br:nth-child(1) {
    display: block;
  }
}
@media only screen and (max-width: 543.5px) {
  .contract-section__desc {
    white-space: pre;
  }
}
.contract-section .btn-contact {
  margin-top: 20px;
  padding: 20px 30px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .contract-section .btn-contact {
    margin-top: 13px;
  }
}

.development_case-section {
  padding: 100px 0px 52px;
  background: #e9f7ff;
}
@media only screen and (max-width: 1024px) {
  .development_case-section {
    padding: 52px 0px 35px;
  }
}
.development_case__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .development_case__title {
    font-size: 24px;
  }
}
.development_case__items {
  padding-top: 55px;
}
@media only screen and (max-width: 1024px) {
  .development_case__items {
    padding-top: 22px;
  }
}
.development_case__items :nth-child(1) {
  animation-duration: 1s;
  animation-delay: 0.1s;
}
@media only screen and (max-width: 767px) {
  .development_case__items :nth-child(1) .development_case__left {
    margin-top: 15px;
  }
}
.development_case__items :nth-child(1) .development_case__left img {
  width: 232.41px;
  height: 139.92px;
}
@media only screen and (max-width: 767px) {
  .development_case__items :nth-child(1) .development_case__left img {
    width: auto !important;
  }
}
.development_case__items :nth-child(2) {
  animation-duration: 1s;
  animation-delay: 0.3s;
}
@media only screen and (max-width: 767px) {
  .development_case__items :nth-child(2) .development_case__left {
    margin-top: 15px;
  }
}
.development_case__items :nth-child(2) .development_case__left img {
  width: auto;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .development_case__items :nth-child(2) .development_case__left img {
    width: auto !important;
  }
}
.development_case__items :nth-child(3) {
  animation-duration: 1s;
  animation-delay: 0.5s;
}
@media only screen and (max-width: 767px) {
  .development_case__items :nth-child(3) .development_case__left {
    margin-top: 15px;
  }
}
.development_case__items :nth-child(3) .development_case__left img {
  width: 258.5px;
  height: 204.74px;
}
@media only screen and (max-width: 767px) {
  .development_case__items :nth-child(3) .development_case__left img {
    width: auto !important;
  }
}
.development_case__item {
  margin-bottom: 45px;
  padding: 15px 25px;
  display: flex;
  background: #ffffff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  align-items: center;
  height: 240px;
  cursor: pointer;
  border: 3px solid #fff;
}
@media only screen and (max-width: 1024px) {
  .development_case__item {
    flex-flow: wrap;
    height: auto;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.development_case__item:hover {
  border: 3px solid #03a2e5;
}
.development_case__item:hover .development_case__right {
  opacity: 0.7;
}
.development_case__left {
  width: 250px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .development_case__left {
    width: 100%;
  }
}
.development_case__left img {
  width: 232px;
  height: 140px;
}
.development_case__right {
  padding-left: 40px;
}
@media only screen and (max-width: 1024px) {
  .development_case__right {
    padding-left: 0px;
  }
}
.development_case__right .label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #03a2e5;
}
@media only screen and (max-width: 1024px) {
  .development_case__right .label {
    font-size: 14px;
    margin-top: 15px;
  }
}
.development_case__right .title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #181818;
  margin: 8px 0px;
}
.development_case__right .title br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .development_case__right .title br {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .development_case__right .title {
    font-size: 18px;
    margin-top: 0px;
  }
}
.development_case__right .field:nth-last-child(1) {
  display: flex;
}
.development_case__right .field:nth-last-child(1) label {
  width: 98px;
}
@media only screen and (max-width: 767px) {
  .development_case__right .field:nth-last-child(1) label {
    width: 138px;
  }
}
.development_case__right .field label {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #181818;
  margin-bottom: 8px;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .development_case__right .field label {
    font-size: 14px;
    margin-bottom: 0px;
  }
}
.development_case__right .field span {
  font-size: 14px;
  white-space: pre-wrap;
}

#caseStudyModal1 .modal-content,
#caseStudyModal2 .modal-content,
#caseStudyModal3 .modal-content {
  position: relative;
}
#caseStudyModal1 .modal-content .close,
#caseStudyModal2 .modal-content .close,
#caseStudyModal3 .modal-content .close {
  width: 41px;
  height: 41px;
  background-color: transparent;
  position: absolute;
  top: -50px;
  right: 0;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
@media only screen and (max-width: 1024px) {
  #caseStudyModal1 .modal-content .close,
  #caseStudyModal2 .modal-content .close,
  #caseStudyModal3 .modal-content .close {
    width: 35px;
    height: 35px;
    top: -40px;
  }
  #caseStudyModal1 .modal-content .close img,
  #caseStudyModal2 .modal-content .close img,
  #caseStudyModal3 .modal-content .close img {
    width: 20px;
    height: 21px;
  }
}
#caseStudyModal1 .modal-body,
#caseStudyModal2 .modal-body,
#caseStudyModal3 .modal-body {
  padding: 50px 65px 20px;
  overflow-y: auto;
  height: 80vh;
}
@media only screen and (max-width: 1024px) {
  #caseStudyModal1 .modal-body,
  #caseStudyModal2 .modal-body,
  #caseStudyModal3 .modal-body {
    padding: 5px 15px 20px;
    height: 400px;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body,
  #caseStudyModal2 .modal-body,
  #caseStudyModal3 .modal-body {
    padding: 15px;
    height: auto;
  }
}
#caseStudyModal1 .modal-body .case_study--box,
#caseStudyModal2 .modal-body .case_study--box,
#caseStudyModal3 .modal-body .case_study--box {
  padding: 0 12px;
}
#caseStudyModal1 .modal-body .case_study--img,
#caseStudyModal2 .modal-body .case_study--img,
#caseStudyModal3 .modal-body .case_study--img {
  text-align: center;
  margin: 0px 0px 50px 0px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body .case_study--img,
  #caseStudyModal2 .modal-body .case_study--img,
  #caseStudyModal3 .modal-body .case_study--img {
    margin: 32px 0px 10px;
  }
}
@media only screen and (max-width: 1024px) {
  #caseStudyModal1 .modal-body .case_study--img,
  #caseStudyModal2 .modal-body .case_study--img,
  #caseStudyModal3 .modal-body .case_study--img {
    margin: 0px 0px 20px 0px;
  }
}
#caseStudyModal1 .modal-body .case_study--img img,
#caseStudyModal2 .modal-body .case_study--img img,
#caseStudyModal3 .modal-body .case_study--img img {
  width: 328px;
  height: 201px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body .case_study--img img,
  #caseStudyModal2 .modal-body .case_study--img img,
  #caseStudyModal3 .modal-body .case_study--img img {
    max-width: 204px;
    height: auto;
  }
}
#caseStudyModal1 .modal-body .case_study--label,
#caseStudyModal2 .modal-body .case_study--label,
#caseStudyModal3 .modal-body .case_study--label {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #03a2e5;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body .case_study--label,
  #caseStudyModal2 .modal-body .case_study--label,
  #caseStudyModal3 .modal-body .case_study--label {
    display: none;
  }
}
#caseStudyModal1 .modal-body .case_study--title,
#caseStudyModal2 .modal-body .case_study--title,
#caseStudyModal3 .modal-body .case_study--title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #181818;
  margin: 5px 0px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body .case_study--title,
  #caseStudyModal2 .modal-body .case_study--title,
  #caseStudyModal3 .modal-body .case_study--title {
    display: none;
  }
}
#caseStudyModal1 .modal-body .case_study--field1, #caseStudyModal1 .modal-body .case_study--field2, #caseStudyModal1 .modal-body .case_study--field3,
#caseStudyModal2 .modal-body .case_study--field1,
#caseStudyModal2 .modal-body .case_study--field2,
#caseStudyModal2 .modal-body .case_study--field3,
#caseStudyModal3 .modal-body .case_study--field1,
#caseStudyModal3 .modal-body .case_study--field2,
#caseStudyModal3 .modal-body .case_study--field3 {
  margin-top: 5px;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body .case_study--field1, #caseStudyModal1 .modal-body .case_study--field2, #caseStudyModal1 .modal-body .case_study--field3,
  #caseStudyModal2 .modal-body .case_study--field1,
  #caseStudyModal2 .modal-body .case_study--field2,
  #caseStudyModal2 .modal-body .case_study--field3,
  #caseStudyModal3 .modal-body .case_study--field1,
  #caseStudyModal3 .modal-body .case_study--field2,
  #caseStudyModal3 .modal-body .case_study--field3 {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  #caseStudyModal1 .modal-body .case_study--field1, #caseStudyModal1 .modal-body .case_study--field2, #caseStudyModal1 .modal-body .case_study--field3,
  #caseStudyModal2 .modal-body .case_study--field1,
  #caseStudyModal2 .modal-body .case_study--field2,
  #caseStudyModal2 .modal-body .case_study--field3,
  #caseStudyModal3 .modal-body .case_study--field1,
  #caseStudyModal3 .modal-body .case_study--field2,
  #caseStudyModal3 .modal-body .case_study--field3 {
    word-break: break-all;
  }
}
#caseStudyModal1 .modal-body .case_study--field1 strong, #caseStudyModal1 .modal-body .case_study--field2 strong, #caseStudyModal1 .modal-body .case_study--field3 strong,
#caseStudyModal2 .modal-body .case_study--field1 strong,
#caseStudyModal2 .modal-body .case_study--field2 strong,
#caseStudyModal2 .modal-body .case_study--field3 strong,
#caseStudyModal3 .modal-body .case_study--field1 strong,
#caseStudyModal3 .modal-body .case_study--field2 strong,
#caseStudyModal3 .modal-body .case_study--field3 strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #181818;
}
#caseStudyModal1 .modal-body .case_study--field1 span, #caseStudyModal1 .modal-body .case_study--field2 span, #caseStudyModal1 .modal-body .case_study--field3 span,
#caseStudyModal2 .modal-body .case_study--field1 span,
#caseStudyModal2 .modal-body .case_study--field2 span,
#caseStudyModal2 .modal-body .case_study--field3 span,
#caseStudyModal3 .modal-body .case_study--field1 span,
#caseStudyModal3 .modal-body .case_study--field2 span,
#caseStudyModal3 .modal-body .case_study--field3 span {
  padding-left: 94px;
}
#caseStudyModal1 .modal-body .case_study--field3,
#caseStudyModal2 .modal-body .case_study--field3,
#caseStudyModal3 .modal-body .case_study--field3 {
  padding-bottom: 20px;
}
#caseStudyModal1 .modal-body .case_study--desc,
#caseStudyModal2 .modal-body .case_study--desc,
#caseStudyModal3 .modal-body .case_study--desc {
  border-top: 1px solid #a7a7a7;
  padding-top: 24px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-body .case_study--desc,
  #caseStudyModal2 .modal-body .case_study--desc,
  #caseStudyModal3 .modal-body .case_study--desc {
    border-top: 0px;
  }
}
#caseStudyModal1 .modal-footer,
#caseStudyModal2 .modal-footer,
#caseStudyModal3 .modal-footer {
  border-top: 0px;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal1 .modal-footer,
  #caseStudyModal2 .modal-footer,
  #caseStudyModal3 .modal-footer {
    padding-bottom: 50px;
  }
}
#caseStudyModal1 .modal-footer button,
#caseStudyModal2 .modal-footer button,
#caseStudyModal3 .modal-footer button {
  color: #181818;
  background-color: transparent;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  width: 90px;
  height: 33px;
  font-size: 14px;
  white-space: nowrap;
}
#caseStudyModal1 .modal-footer button:hover,
#caseStudyModal2 .modal-footer button:hover,
#caseStudyModal3 .modal-footer button:hover {
  background-color: grey;
  color: #e9f7ff;
}

#caseStudyModal2 .modal-body .case_study--img img {
  width: 327px;
  height: 253px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal2 .modal-body .case_study--img img {
    max-width: 209px;
    height: 161px;
  }
}

#caseStudyModal3 .modal-body .case_study--img img {
  width: auto;
  height: 259px;
}
@media only screen and (max-width: 767px) {
  #caseStudyModal3 .modal-body .case_study--img img {
    height: auto;
    max-width: 138px;
  }
}

#privacy {
  background-color: #1c2639;
}
#privacy__header > h2 {
  color: #fff;
  text-align: center;
  margin: 60px 0px 60px 0px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
}
@media only screen and (max-width: 767px) {
  #privacy__header > h2 {
    padding: 25px 0;
    text-align: center;
    margin: 0;
    font-size: 20px;
  }
}
#privacy__content {
  background-color: #fff;
  width: 70%;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #privacy__content {
    width: 80%;
    padding-bottom: 40px;
  }
}
#privacy__content_text {
  margin: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}
@media only screen and (max-width: 767px) {
  #privacy__content_text {
    padding: 15px 0px;
    margin: 0;
  }
}
#privacy__content_text > p {
  margin-bottom: 10px;
}
#privacy #btn-privacy {
  width: 168px;
  height: 42px;
  background: #f5f5f5;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #181818;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
}
#privacy #btn-privacy:hover {
  width: 168px;
  height: 42px;
  background: gray;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
}
#privacy__footer {
  color: #fff;
  width: 70%;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
@media only screen and (max-width: 767px) {
  #privacy__footer {
    text-align: center;
    margin-bottom: 20px;
  }
}
#privacy__footer .copy-right {
  text-align: center;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  #privacy__footer .copy-right {
    padding-top: 20px;
  }
}

* {
  font-family: "Inter";
}

:root {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 1.6rem;
  font-family: "Inter" !important;
}

.modal.show .modal-dialog {
  transform: translate(0, 36px) !important;
}

.modal-open .modal {
  overflow-y: hidden;
}

a {
  color: #1E2731;
}
a:hover, a:focus {
  color: #ffc200;
  text-decoration: none;
}

.container {
  max-width: 1320px;
}

.btn-gradient {
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.54%, #e94625 37.98%, #e67b27 67.42%, #e2b028 96.86%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  color: #fff;
  border: 0px;
  font-size: 22px;
  padding: 8px 30px;
  border: 1px solid transparent;
  border-right: 1px solid #e2b028;
}
.btn-gradient:hover {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #17479d -20.91%, #824660 8.18%, #e94625 38.84%, #e67b27 69.93%, #e2b028 96.86%) border-box;
  border: 1px solid transparent;
  border-right: 1px solid #e2b028;
  cursor: pointer;
}
.btn-gradient:hover span {
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.18%, #e94625 38.84%, #e67b27 69.93%, #e2b028 96.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.link-target {
  position: relative;
}
.link-target:after {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  background-image: url(../images/target_link.png);
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
}

.contact-section {
  padding: 50px 0px;
  background-color: #03a2e5;
}
@media only screen and (max-width: 767px) {
  .contact-section {
    padding: 33px 0px;
  }
}
.contact-section__box {
  max-width: 890px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contact-section__box {
    flex-flow: wrap;
  }
}
.contact-section__box--left {
  box-sizing: border-box;
  border: 2px solid #fff;
  color: #fff;
  margin-right: 160px;
  padding: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section__box--left {
    margin-right: 50px;
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section__box--left {
    margin-right: 0px;
    font-size: 16px;
    padding: 15px 30px;
    width: 100%;
    text-align: center;
  }
}
.contact-section__box--right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px 30px;
  gap: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 20px 30px;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .contact-section__box--right {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 543.5px) {
  .contact-section__box--right {
    padding: 20px 28px;
    white-space: nowrap;
  }
}
.contact-section__box--right a {
  font-style: normal;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.54%, #e94625 37.98%, #e67b27 67.42%, #e2b028 96.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-section__box--right:hover {
  background: linear-gradient(90deg, #17479d -20.91%, #824660 8.54%, #e94625 37.98%, #e67b27 67.42%, #e2b028 96.86%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.contact-section__box--right:hover a {
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.services-section {
  padding: 100px 60px 60px;
}
@media only screen and (max-width: 767px) {
  .services-section {
    padding: 30px 0px 25px;
  }
}
.services-section__heading {
  padding-bottom: 90px;
}
@media only screen and (max-width: 1024px) {
  .services-section__heading {
    padding-bottom: 40px;
    padding-top: 20px;
  }
}
.services-section__title {
  margin-bottom: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .services-section__title {
    margin-bottom: 0;
    font-size: 20px;
    padding: 0px 22px 22px 22px;
  }
}
.services-section__sub {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 767px) {
  .services-section__sub {
    font-size: 14px;
  }
}
.services-section__top {
  background: #e9f7ff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  .services-section__top {
    background: transparent;
    box-shadow: none;
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box .tab-content .tab-pane {
    display: block;
    background-color: #e9f7ff;
    margin-top: 30px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box .tab-content .tab-pane:nth-child(1) .tab-title {
    padding-top: 15px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #03a2e5;
    position: relative;
    display: inline-block;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box .tab-content .tab-pane:nth-child(1) .tab-title:after {
    content: "";
    width: 29px;
    height: 29px;
    background-image: url(../images/arrow-down.png);
    position: absolute;
    left: 0px;
    top: 18px;
    background-repeat: no-repeat;
    background-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box .tab-content .tab-pane:nth-child(2) .tab-title {
    padding-top: 15px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #032e61;
    position: relative;
    display: inline-block;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box .tab-content .tab-pane:nth-child(2) .tab-title:after {
    content: "";
    width: 29px;
    height: 29px;
    background-image: url(../images/arrow-down-2.png);
    position: absolute;
    left: 0px;
    top: 18px;
    background-repeat: no-repeat;
    background-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box ul {
    display: none;
  }
}
.services-section__box ul li {
  width: 50%;
  background-color: #989898;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .services-section__box ul li {
    width: 100%;
  }
}
.services-section__box ul li a {
  padding: 23px;
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  position: relative;
  color: #fff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.services-section__box ul li a:before {
  content: "";
  width: 29px;
  height: 29px;
  background-image: url(../images/arrow-right.png);
  position: absolute;
  left: 124px;
  background-repeat: no-repeat;
  background-size: 29px;
  margin-top: -3px;
}
.services-section__box ul li.active {
  background-color: transparent;
}
.services-section__box ul li.active a {
  color: #03a2e5;
  padding: 20px;
}
.services-section__box ul li.active a:before {
  content: "";
  width: 29px;
  height: 29px;
  background-image: url(../images/arrow-down.png);
  position: absolute;
  left: 124px;
  top: 22px;
  background-repeat: no-repeat;
  background-size: 29px;
  margin-top: -3px;
}
.services-section__box ul li:nth-child(1) a:before {
  left: 123px;
}
.services-section__box ul li:nth-child(2) a::before {
  left: 180px;
}
.services-section__box .consulting-box {
  display: flex;
  justify-content: center;
  padding: 84px 77px 93px 100px;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .consulting-box {
    flex-flow: wrap;
    padding: 10px 0px 30px;
    margin: 15px;
  }
}
.services-section__box .consulting-left img {
  width: 501px;
  height: 354px;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .consulting-left img {
    max-width: 270px;
    height: 100%;
  }
}
.services-section__box .consulting-right {
  padding-left: 56px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .services-section__box .consulting-right {
    padding-left: 0px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .services-section__box .consulting-right {
    padding-left: 0px;
    padding-top: 20px;
  }
}
.services-section__box .consulting-right__box {
  background: #ffffff;
  border-radius: 38px;
  padding: 41px 43px 29px 28px;
  max-width: 444px;
  height: 353px;
}
@media only screen and (max-width: 767px) {
  .services-section__box .consulting-right__box {
    height: auto;
    padding: 32px 10px 32px 28px;
  }
}
.services-section__box .consulting-right__title h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #03a2e5;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .consulting-right__title h2 {
    font-size: 18px;
    line-height: 22px;
  }
}
.services-section__box .consulting-right__desc p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  line-height: 19px;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .consulting-right__desc p {
    font-size: 14px;
    line-height: 17px;
  }
}
.services-section__box .development-box {
  display: flex;
  justify-content: space-around;
  padding: 86px 38px 89px 103px;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .development-box {
    flex-flow: wrap;
    padding: 10px 0px 15px;
  }
}
.services-section__box .development-left {
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  .services-section__box .development-left {
    padding-left: 0;
  }
}
.services-section__box .development-left img {
  width: 517px;
  height: 366px;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .development-left img {
    max-width: 274px;
    max-height: 194px;
  }
}
.services-section__box .development-right__box {
  background: #ffffff;
  border-radius: 38px;
  padding: 41px 30px 25px 28px;
  max-width: 440px;
}
@media only screen and (max-width: 767px) {
  .services-section__box .development-right__box {
    padding: 32px 11px 32px 28px;
    margin: 15px;
  }
}
.services-section__box .development-right__title h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #032e61;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .development-right__title h2 {
    font-size: 18px;
  }
}
.services-section__box .development-right__desc p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  line-height: 19px;
  padding-top: 20px;
  color: #181818;
}
@media only screen and (max-width: 1024px) {
  .services-section__box .development-right__desc p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .services-section__box .development-right__desc p br {
    display: none;
  }
}
.services-section__box .development-right__desc :nth-child(1) {
  padding-top: 10px;
}
.services-section__bottom {
  padding: 30px 0 40px;
}
.services-section__bottom h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #03a2e5;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .services-section__bottom h3 {
    font-size: 20px;
    text-align: left;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .services-section__bottom h3 img {
    position: absolute;
    left: 0px;
    top: 15px;
    width: 32px;
  }
}
.services-section__steps {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .services-section__steps {
    margin-right: 10px;
  }
}
.services-section__step {
  visibility: visible;
  padding: 20px;
  padding-right: 75px;
  margin-right: -20px;
  margin-top: 35px;
  width: 252px;
  height: 217px;
}
@media only screen and (max-width: 1024px) {
  .services-section__step {
    height: auto;
    width: 100px;
    margin-right: -10px;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    padding-right: 40px;
    margin-top: 8px;
  }
}
.services-section__step:nth-child(1) {
  animation-delay: 0.2s;
  animation-duration: 1s;
  background-image: url(../images/box-step1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}
.services-section__step:nth-child(2) {
  animation-delay: 0.2s;
  animation-duration: 1s;
  background-image: url(../images/box-step2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 4;
}
.services-section__step:nth-child(3) {
  animation-delay: 0.2s;
  animation-duration: 1s;
  background-image: url(../images/box-step3.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
}
.services-section__step:nth-child(4) {
  animation-delay: 0.2s;
  animation-duration: 1s;
  background-image: url(../images/box-step4.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .services-section .step {
    padding-top: 25px;
  }
}
.services-section .step-label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .services-section .step-label {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 0px;
  }
}
.services-section .step-icon {
  text-align: center;
}
.services-section .step-icon img {
  width: 70px;
}
@media only screen and (max-width: 1024px) {
  .services-section .step-icon img {
    width: 25px;
  }
}
.services-section .step-desc {
  margin-top: 15px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .services-section .step-desc {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 5px;
  }
}

.procedure-section {
  padding: 100px 0px;
  background: #e9f7ff;
}
@media only screen and (max-width: 767px) {
  .procedure-section {
    padding: 52px 0px 70px;
  }
}
.procedure-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 767px) {
  .procedure-section__title {
    font-size: 20px;
  }
}
.procedure-section__sub {
  padding-top: 35px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #181818;
}
@media only screen and (max-width: 767px) {
  .procedure-section__sub {
    font-size: 14px;
    line-height: 18px;
    padding-top: 22px;
  }
}
.procedure-section__body {
  display: flex;
  padding: 60px 0px 0;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .procedure-section__body {
    flex-flow: wrap;
    padding-top: 35px;
  }
}
.procedure-section__body--left {
  width: 40%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .procedure-section__body--left {
    padding-bottom: 30px;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--left {
    width: 100%;
    padding-bottom: 30px;
  }
}
.procedure-section__body--left img {
  width: 407px;
  height: 255.66px;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--left img {
    max-width: 100%;
    max-height: 225px;
  }
}
.procedure-section__body--right {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right {
    padding-left: 0px;
  }
}
.procedure-section__body--right ul {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right ul {
    padding-left: 0px;
  }
}
.procedure-section__body--right ul li {
  display: flex;
  padding: 30px 0px;
  border-top: 1px solid #a7a7a7;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right ul li {
    flex-flow: wrap;
    justify-content: center;
  }
}
.procedure-section__body--right ul li img {
  width: 66.8px;
  height: 76px;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right ul li img {
    height: auto;
  }
}
.procedure-section__body--right ul li:last-child {
  border-bottom: 1px solid #a7a7a7;
}
.procedure-section__body--right ul li .procedure-section__content {
  padding-left: 51px;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right ul li .procedure-section__content {
    padding-left: 0px;
  }
}
.procedure-section__body--right ul li .procedure-section__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #0e4294;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right ul li .procedure-section__title {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
  }
}
.procedure-section__body--right ul li .procedure-section__description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #181818;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .procedure-section__body--right ul li .procedure-section__description {
    font-size: 12px;
  }
}

.is-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .is-mobile {
    display: block;
  }
}

.mobile-hide {
  display: block;
}
@media only screen and (max-width: 767px) {
  .mobile-hide {
    display: none;
  }
}

.animation-effect {
  transition: all 1.5s;
}

.move-right {
  transition: all 0.5s;
  transition: margin 0.5s ease, opacity 0.5s 0s ease;
  animation: ani_main_right_icon 2s ease-in-out 0s infinite alternate;
}

.move-up-1 {
  transition: all 0.5s;
  transition: margin 0.5s ease, opacity 0.5s 0s ease;
  animation: ani_main_icon 2s ease-in-out 0s infinite alternate;
}
.move-up-1 .move-up-3 {
  transition: all 0.5s;
  transition: margin 0.5s ease, opacity 0.5s 0s ease;
  animation: ani_main_icon 2s ease-in-out 0s infinite alternate;
}

.move-up {
  transition: all 0.5s;
  transition: margin 3s ease, opacity 2s 0s ease;
  animation: ani_main_icon 2s ease-in-out 0s infinite alternate;
}

.move-up-3 {
  transition: all 0.5s;
  transition: margin 3s ease, opacity 2s 0s ease;
  animation: ani_main_icon 2s ease-in-out 0s infinite alternate;
}

@keyframes ani_main_icon {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ani_main_right_icon {
  0% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=main.css.map */