@import url("https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: transparent !important;
  color: #212427;
  font-family: "Open Sans", sans-serif;
  font-family: "Raleway", Arial, sans-serif;
  width: 100%;
}
a {
  color: #03b5d2;
  text-decoration: none;
  transition: 0.5s;
}
a:hover,
a:active,
a:focus {
  color: #fb3640;
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 20px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0 0 10px 0;
  padding: 0;
}
h1,
h2,
h3 {
  color: #253880;
}
.subHeader {
  font-size: 16px;
  color: #5c5d61;
  padding-bottom: 15px;
}
@media (max-width: 562px) {
  .subHeader {
    font-size: 14px !important;
  }
  h6,
  p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5%;
  bottom: 3%;
  z-index: 996;
  background: #fb3640;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #253880;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
  # Back to arrow down
  --------------------------------------------------------------*/
@-webkit-keyframes scroll-inner {
  from {
    margin-top: 15%;
  }
  to {
    margin-top: 50%;
  }
}
@keyframes scroll-inner {
  from {
    margin-top: 15%;
  }
  to {
    margin-top: 50%;
  }
}
@-webkit-keyframes scroll-mouse {
  from {
    margin-top: 0;
  }
  to {
    margin-top: 15px;
  }
}
@keyframes scroll-mouse {
  from {
    margin-top: 0;
  }
  to {
    margin-top: 15px;
  }
}

div.mouse-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  height: 100px;
}
div.mouse {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 42px;
  border: solid 2px #fff;
  border-radius: 25px;
  -webkit-animation: scroll-mouse 3s;
  animation: scroll-mouse 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
span.scroll-down {
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  margin: 15% auto auto auto;

  -webkit-animation: scroll-inner 3s;
  animation: scroll-inner 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
.mouse-container {
  text-align: center;
}
.mouse-container p {
  color: white;
  padding-top: 5px;
  font-size: 10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../../img/homepage/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 120px 0px 0px 0px;
  z-index: 3;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 42%;
    background: #1b2f45;
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.6);
  inset: 0;
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  border-left: 2px solid #56b8e6;
  margin: 40px 0;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #03b5d2;
}

.hero .btn-get-started:hover {
  background: #fb3640;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: #56b8e6;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
body {
  background-color: transparent !important;
}
#header {
  height: 80px;
  z-index: 9999;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  width: 100%;
  position: fixed;
  top: 0px;
}
#header.header-scrolled {
  display: none;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
  #header.header-scrolled {
    display: block;
  }
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  max-height: 65px;
  margin-top: 8px;
}
/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar .contact-btn-6 {
  display: none;
}
.navbar .contact-btn {
  background-color: #fb3640;
  border-radius: 50px;
  width: fit-content;
}
.navbar .contact-btn a {
  color: white;
}
.navbar .contact-btn a:hover {
  background-color: #03b5d2;
  border-radius: 50px;
  color: white;
}
.navbar li a svg {
  margin-right: 6px;
  width: 18px;
}
.navbar .contact-btn-6 .copyright {
  display: none;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: black;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  padding: 0.5rem 1rem;
}
.navbar a i,
.navbar a:focus i {
  font-size: 16px;
  line-height: 0;
}
.navbar a:hover,
.navbar li:hover > a {
  color: #03b5d2;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #03b5d2;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.navbar .bi{
  margin: 0px 6px 0 2px;
  font-size: 16px;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
.navbar .contact-btn-6 .copyright {
  display: block;
}

.navbar .contact-btn-6 {
  display: none;
}

.navbar .contact-btn-6 {
  background-color: #fb3640;
  border-radius: 50px;
  margin-left: 20px;
  margin-right: 20px;
}
.navbar .contact-btn-6 a {
  color: white;
  justify-content: center;
  font-size: 14px;
  padding: 10px 20px;
  margin-top: 20px;
}
.navbar .contact-btn-6 a:hover {
  background-color: #03b5d2;
  border-radius: 50px;
  color: white;
}
/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #283d50;
  font-size: 28px !important;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(23, 35, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
  background-color: #253880;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 20px;
  font-size: 18px;
  color: #fff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #03b5d2;
}
.navbar-mobile li:nth-child(5) a:hover {
  color: #03b5d2;
  background-color: transparent;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #253880;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #03b5d2;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .dropdown .dropdown ul{
  visibility: visible;
}

.navbar-mobile li {
  top: 15%;
}
.navbar-mobile .contact-btn{
  display: none;
}
.navbar-mobile .contact-btn-6{
  display: block;
}
.navbar-mobile .contact-btn-6 .copyright {
  display: block;
  float: left;
  color: #ffffff !important;
  font-size: 12px;
}

/*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

@media (max-width: 575px) {
  section {
    padding: 40px 0;
  }
}
/* Sections Header
  --------------------------------*/
.section-header {
  padding-bottom: 40px;
}
.section-header p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}
.section-header p::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fb3640;
  margin: 4px 10px;
}
.section-header h2 {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2a2c39;
}

.section-header:has(:empty){
  display: none;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}
/* Section with background
  --------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
  text-align: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fb3640;
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumbs ol {
    display: none;
  }

  .breadcrumbs h2 {
    font-size: 30px;
  }
}
/*--------------------------------------------------------------
# Services index Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  margin-top: 0 !important;
}

.services-list .service-item .title a {
  color: #2a2c39;
}

.services-list .service-item .title a:hover {
  color: #03b5d2;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}
.services-list .service-item .index-more-div {
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.services-list .service-item .index-more-btn {
  color: #212427;
  font-size: small;
}
.services-list .service-item .index-more-btn:hover {
  color: #03b5d2;
}
.services-list .service-item:nth-child(6):has(a:empty){
  display: none;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
}

.why-us .slides {
  background-color: #f7f9fc;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: grey;
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fb3640;
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/* Contact Section
  --------------------------------*/
#contact {
  background: url("../img/contact/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  #contact {
    background-position: center 50px;
  }
}

#contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#contact .info-item + .info-item {
  margin-top: 40px;
}

#contact .info-item i {
  font-size: 20px;
  background: #03b5d2;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

#contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #253880;
}

#contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
#contact .info-item a {
  color: #212427;
}
#contact .info-item a:hover {
  color: #03b5d2;
}
#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
}
#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #007bff;
}
#contact .php-email-form input {
  padding: 10px 15px;
  border: solid 1px #b4b9bd;
}
#contact .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: solid 1px #b4b9bd;
}
#contact .php-email-form button[type="submit"] {
  background: #fb3640;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  margin-top: 20px;
}
#contact .php-email-form button[type="submit"]:hover {
  background: #03b5d2;
  cursor: pointer;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #253880;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
  overflow: hidden;
}
#footer .footer-top {
  background: #253880;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 34px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #03b5d2;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#footer .footer-top .footer-links h3,
#footer .footer-top .footer-contact h3 {
  font-family: "Montserrat", sans-serif;
  color: #03b5d2;
}
#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a i {
  line-height: 0;
}
#footer .footer-top .social-links a:hover {
  background: #03b5d2;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}
#footer .footer-top .footer-links ul a:hover {
  color: #03b5d2;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact a:hover {
  color: #fb3640;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}
#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #03b5d2;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #03b5d2;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}
#footer .credits a {
  color: #bfddfe;
}
#footer .credits a:hover {
  color: #f1f7ff;
}
/*object {
      width: 100%;
      position: relative;
      float: left;
      min-height: 510px;
      height: auto;
  }
  
  object .header {
      height: -webkit-fill-available;
      min-height: auto;
      position: fixed;
      z-index: 9999;
  }*/
@media (max-width: 991px) {
  #footer {
    display: none;
  }
}

/* dropdown for footer */
#footer .dropdown-menu.overflow{
  overflow-y: scroll;
  max-height: 200px;
}

#footer .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
#footer .dropdown ul li {
  min-width: 200px;
}
#footer .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: black !important;
}
#footer .dropdown ul a i {
  font-size: 12px;
}
#footer .dropdown ul a:hover,
#footer.dropdown ul .active:hover,
#footer .dropdown ul li:hover > a {
  color: #03b5d2;
}
#footer .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
#footer .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
#footer .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/*--------------------------------------------------------------
# Services page Section
--------------------------------------------------------------*/
#services .services-item {
  padding-bottom: 100px;
  align-items: center;
}

#services .services-item:last-child {
  padding-bottom: 0px !important;
}

#services .services-photo img {
  height: auto;
  width: 100%;
}

#services .services-desc ul {
  padding-left: 0;
  font-size: 12px;
}

#services .services-desc span {
  font-weight: 700;
}

@media (max-width: 991px) {
  #services .services-item {
    padding-bottom: 40px;
  }
  #services .services-photo img {
    padding-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ef3645;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8eff6;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fb3640;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
  # Expertise
  --------------------------------------------------------------*/
#expertise {
  padding: 60px 0px 30px 0px;
  background-image: url("../img/services/expertise_bg.png");
  background-position: right;
  background-repeat: no-repeat;
  background-color: white;
}
#expertise h1 {
  color: #253880;
}
#expertise h5 {
  color: #253880;
  margin-bottom: 10px;
}
#expertise hr {
  color: #d7eaff;
  width: 80%;
  height: 2px;
}
#expertise img {
  height: 19px;
  padding-right: 15px;
}
@media (max-width: 1200px) {
  #expertise hr {
    width: 80%;
  }
}
@media (max-width: 992px) {
  #expertise {
    background-image: none;
  }
  #expertise hr {
    width: 100%;
  }
}
/*--------------------------------------------------------------
  # Products
  --------------------------------------------------------------*/
#product {
  width: 100%;
  padding: 230px 0px 30px 0px;
  background: white;
}
#product .productList {
  margin-bottom: 100px;
}
#product .row {
  justify-content: space-between;
}
#product p {
  color: #253880;
  text-align: center;
}
#product .techTools {
  margin-left: 0;
}
#product .productDesc .row {
  justify-content: flex-start;
}
#product .roundOutline {
  border-radius: 25px;
  border: 1px solid #253880;
  padding: 5px 15px;
  margin-right: 12px;
  max-width: fit-content;
  min-width: 40px;
}
@media (max-width: 576px) {
  #product .roundOutline {
    font-size: 11px;
    padding: 5px;
  }
}
#product h1 {
  color: #253880;
}
#product .btn-read-more {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 20px 20px 0 0;
  color: #fff;
  background: #fb3640;
}
#product .btn-read-more:hover {
  background: #253880;
  color: #fff;
}
#product .img-container {
  position: relative;
}
#product .img-container .item1 {
  float: left;
  position: relative;
  left: -70px;
  top: -36px;
}
#product .img-container .item2 {
  float: right;
  position: fixed;
  right: 60px;
  top: 25px;
}
#product .img-container .item3 {
  float: left;
  position: relative;
  top: -20px;
}
#product .img-container .item4 {
  float: right;
  position: absolute;
  right: -70px;
  top: 70px;
}
#product .img-container .item5 {
  float: left;
  position: absolute;
  left: -20px;
  top: 50px;
}
#product .img-container .item6 {
  float: right;
  position: fixed;
  right: 0px;
}
#product .img-container .item7 {
  float: left;
  position: relative;
  left: -140px;
  top: 50px;
}
@media (max-width: 992px) {
  #product .img-container .item1 {
    left: 20%;
    top: -36px;
  }
  #product .img-container .item2 {
    right: 20%;
    top: 25px;
  }
  #product .img-container .item4 {
    right: 0px;
    top: 70px;
  }
  #product .img-container .item5 {
    left: 0px;
    top: 50px;
  }
  #product .img-container .item6 {
    right: 2%;
    top: -55px;
  }
  #product .img-container .item7 {
    left: 2%;
    top: -20px;
  }
}
@media (max-width: 552px) {
  #product .img-container .item1 {
    left: 2%;
    top: -36px;
  }
  #product .img-container .item2 {
    right: 2%;
    top: 25px;
  }
  #product .img-container .item3 {
    top: -65px;
  }
  #product .img-container .item4 {
    width: 50%;
    top: 105px;
  }
  #product .img-container .item5 {
    width: 25%;
    top: 80px;
  }
  #product .img-container .item6 {
    right: 2%;
    top: -55px;
    width: 80%;
  }
  #product .img-container .item7 {
    left: 0;
    top: -20px;
    width: 50%;
  }
}
/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
#about {
  width: 100%;
  padding: 80px 0px 0px 0px;
}
#about .why {
  margin-bottom: 65px;
}
#about .why h1 {
  font-size: 60px;
}
#about .red-title {
  color: #fb3640;
}
#about .why h6 {
  bottom: 0;
  position: absolute;
}
#about .about_img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
#about hr {
  margin: 50px auto;
}
#about2 .counts {
  margin-bottom: 90px;
}
#about2 .countsRight img {
  border-radius: 20px 0px 0px 20px;
  width: 100%;
  object-fit: cover;
}
#about2 .countsLeft img {
  border-radius: 0px 20px 20px 0px;
  width: 100%;
  object-fit: cover;
}
#about2 .counter {
  margin-top: 30px;
}
#about2 .counter span {
  color: #253880;
  font-weight: 500;
}
#about3 {
  padding-top: 0px;
}
#about3 h1 {
  font-size: 60px;
}
#about3 .red-title {
  color: #fb3640;
}
#about3 .mission {
  padding-top: 30px;
  padding-bottom: 50px;
}
#about3 .mission h6 {
  bottom: 0;
  position: absolute;
}
#about3 .vision {
  padding-top: 60px;
}

#about3 .vision h1 {
  text-align: right;
}
#about3 .vision ul {
  padding-left: 0px;
  font-size: 12px;
}
@media (max-width: 992px) {
  #about2 .countsRight img {
    border-radius: 0;
  }
  #about2 .countsLeft img {
    border-radius: 0;
  }
  #about2 .counter h6 {
    font-size: 14px;
  }
  #about2 .counts {
    margin-bottom: 40px;
  }
  #about .why h1 {
    font-size: 40px;
    line-height: 35px;
  }
  #about .why h6 {
    font-size: 12px;
    position: relative !important;
    padding-top: 20px;
  }
  #about .why {
    margin-bottom: 20px;
  }
  #about3 h1 {
    font-size: 40px;
    line-height: 35px;
  }
  #about3 h6 {
    font-size: 12px;
    position: relative !important;
    padding-top: 20px;
  }
  #about3 .vision h1 {
    text-align: left;
  }
}
/*--------------------------------------------------------------
  # Career
  --------------------------------------------------------------*/
#career {
  width: 100%;
  padding: 120px 0px 30px 0px;
  background: white;
}
#career h1 {
  color: #253880;
}
#career .btn-joblist {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #fb3640;
}
#career .btn-joblist:hover {
  background: #253880;
  color: #fff;
}
#career h6 {
  padding-bottom: 20px;
}
#career .video {
  position: relative;
}
#career .video video {
  width: 100%;
  margin-top: 50px;
  border-radius: 20px;
}
#values {
  width: 100%;
  padding: 40px 0px 30px 0px;
  justify-content: center;
  background-color: #f7f9fc;
}
#values .valuesHeader {
  padding-bottom: 20px;
}
#values .row {
  justify-content: space-between;
}
#values .valuesBox {
  margin-bottom: 40px;
}
#values .valuesBox img {
  margin-bottom: 25px;
}
@media (max-width: 574px) {
  #career .video video {
    border-radius: 10px;
  }
  #values .valuesBox img {
    width: 30%;
  }
}
#benefits {
  width: 100%;
  padding: 40px 0px 30px 0px;
  background: white;
}
/* Hide every HTML inside .hover that would render outside*/
#benefits .hover {
  overflow: hidden;
}
/*Animate overlay and move it 'above'*/
#benefits .hover .overlay {
  transform: translate3d(-100%, 0, 0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Mouse enter event */
.hover.mouseenter.top .overlay {
  animation-name: slide--enter-top;
}
.hover.mouseenter.right .overlay {
  animation-name: slide--enter-right;
}
.hover.mouseenter.bottom .overlay {
  animation-name: slide--enter-bottom;
}
.hover.mouseenter.left .overlay {
  animation-name: slide--enter-left;
}
/* Mouse leave event */
.hover.mouseleave.top .overlay {
  animation-name: slide--leave-top;
}
.hover.mouseleave.right .overlay {
  animation-name: slide--leave-right;
}
.hover.mouseleave.bottom .overlay {
  animation-name: slide--leave-bottom;
}
.hover.mouseleave.left .overlay {
  animation-name: slide--leave-left;
}
/* Sliding animations ! */
@keyframes slide--enter-top {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--enter-right {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--enter-bottom {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--enter-left {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes slide--leave-top {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slide--leave-right {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slide--leave-bottom {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slide--leave-left {
  0% {
    transform: none;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
#benefits .layout {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
#benefits .hover {
  background-color: #253880;
  position: relative;
  display: flex;
  flex: 0 0 30%;
  margin: 50px 0 20px 0;
  z-index: 0;
  border-radius: 10px;
}
#benefits .content {
  flex: 1;
  text-align: left;
  z-index: 10;
  padding: 20px;
}
#benefits .benefitsList h2 {
  color: white;
}
#benefits .benefitsList p {
  color: white;
  margin-bottom: 0px;
}
#benefits .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: -10;
}
#benefits .overlay.bg1 {
  background-color: #ea4c88;
}
#benefits .overlay.bg2 {
  background-color: #eabe4c;
}
#benefits .overlay.bg3 {
  background-color: #924cea;
}
#benefits .overlay.bg4 {
  background-color: #ea684c;
}
#benefits .overlay.bg5 {
  background-color: #4f4cea;
}
#benefits .overlay.bg6 {
  background-color: #4ca8ea;
}
@media (max-width: 992px) {
  #benefits .hover {
    flex: 0 0 48%;
  }
}
@media (max-width: 574px) {
  #benefits .content {
    padding: 10px;
  }
  #benefits h2 {
    font-size: 20px;
  }
}
#career2 {
  width: 100%;
  padding: 35px 40px 35px 40px;
  background-color: #edfaff;
}
#career2 p {
  margin-bottom: 0;
}
#career2 .row {
  justify-content: space-between;
  align-items: center;
}
#career2 .career2Btn {
  text-align: right;
}
#career2 .btn-applyJob {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #fb3640;
}
#career2 .btn-applyJob:hover {
  background: #253880;
  color: #fff;
}
@media (max-width: 992px) {
  #career2 .career2Btn {
    text-align: left;
    padding-top: 20px;
  }
}
#photo {
  width: 100%;
  background: white;
}
#photo .photoWrap {
  overflow: hidden;
  padding-top: 60px;
}
#photo .photoContainer {
  width: 150%;
  align-self: center;
  height: fit-content !important;
  background-image: url("../img/career/gallery-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#photo img {
  border-radius: 20px;
}
#photo h6 {
  margin-bottom: 0;
  color: white;
}
#photo .bintan h6 {
  padding: 10px;
  background-color: #fb3640;
  max-width: fit-content;
  bottom: 56%;
  right: 12px;
  position: absolute;
}
#photo .dnd h6 {
  padding: 10px;
  background-color: #fb3640;
  max-width: fit-content;
  top: -20px;
  right: 12px;
  position: absolute;
}
#photo .birthday h6 {
  padding: 10px;
  background-color: #fb3640;
  max-width: fit-content;
  top: 0;
  left: 12px;
  position: absolute;
}
@media (max-width: 992px) {
  #photo .photoItem {
    padding-bottom: 40px;
  }
  #photo .bintan h6 {
    top: 0;
    bottom: auto;
  }
  #photo .dnd h6 {
    top: 0;
  }
}
@media (max-width: 574px) {
  #photo img {
    border-radius: 10px;
  }
}
/*--------------------------------------------------------------
  # Joblist
  --------------------------------------------------------------*/
#jobList {
  width: 100%;
  padding: 120px 0px 40px 0px;
}
#jobList .jobBox {
  padding: 0 20px 0 20px;
}
#jobList .jobBoxBg {
  background-color: #edfaff;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
#jobList .jobBoxHeader {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#jobList .jobBoxHeader h6 {
  margin-bottom: 0;
  margin-left: 10px;
  text-align: left;
}
#jobList hr {
  color: #c9d9ff;
}
#jobList .jobBoxDesc p {
  text-align: left;
  font-size: 14px;
}
#jobList .requirements {
  margin: 0;
}
#jobList .roundOutline {
  font-size: 11px !important;
  color: #253880;
  border-radius: 25px;
  border: 1px solid #253880;
  padding: 5px 7px;
  margin-right: 6px;
  max-width: fit-content;
  min-width: 40px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #jobList .roundOutline {
    padding: 5px;
  }
}
#hiringProcess {
  width: 100%;
  padding: 60px 0px 0px 0px;
  background-color: #edfaff;
}
#hiringProcess .hiringSteps {
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
#hiringProcess .hiringBox {
  text-align: center;
  padding: 0 20px;
  z-index: 9;
  position: relative;
}
#hiringProcess .hiringBoxStep {
  border-radius: 50%;
  height: 65px;
  width: 65px;
  background-color: #253880;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 9;
  position: relative;
}
#hiringProcess .hiringBoxStep h1 {
  color: white;
  margin-bottom: 0 !important;
}
#hiringProcess .hiringRectangle {
  border: 3px solid #253880;
  background-color: white;
  border-radius: 10px;
  padding: 40px 15px 15px 15px;
  margin-top: -30px;
  height: 85%;
}
#hiringProcess .hiringRectangle p {
  margin-bottom: 0;
}
#hiringProcess hr {
  margin-top: -70px;
  color: #253880;
  height: 3px;
  opacity: 100%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#hiringProcess .hiringBox:hover .hiringRectangle {
  border-color: #fb3640;
}
#hiringProcess .hiringBox:hover .hiringBoxStep {
  background-color: #fb3640;
}
@media (max-width: 992px) {
  #hiringProcess .hiringBox {
    margin-bottom: 40px;
  }
  #hiringProcess .hiringRight img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
  }
  #hiringProcess hr {
    transform: rotate(90deg);
    margin-top: -300px;
    width: 400px;
  }
}
.bl-main > section:nth-child(3) {
  top: 50%;
  left: 0;
  background: #72cca7;
}
.bl-main > section:nth-child(4) {
  top: 50%;
  left: 50%;
  background: #10a296;
}
.bl-box {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 1;
}
.bl-box ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
}
.bl-box ul li {
  list-style-type: none;
  float: left;
  padding: 0 20px 0 20px;
  margin-top: 38px;
}
.bl-box ul li a {
  color: black;
}
.bl-icon {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
.bl-main > section .bl-icon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}

.bl-content,
div.bl-panel-items > div > div {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  overflow-y: auto;
  top: 0px;
  left: 0px;
  bottom: 0px;
  padding: 20px;
  width: 100%;
}
/* Custom content */
.bl-content p {
  margin: 0 auto;
  padding-bottom: 15px;
  font-size: 1.7em;
  line-height: 1.8;
}
.bl-content h2 {
  font-size: 3em;
  font-weight: 300;
  margin: 0 0 20px 0;
  color: white;
}
.bl-content article {
  padding: 20px 40px 20px 0px;
}
.bl-content article h3 {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding-top: 20px;
  font-size: 1.4em;
}
.bl-content article a {
  color: rgba(0, 0, 0, 0.2);
}
.bl-content > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bl-content > ul li {
  display: inline-block;
  width: 20%;
  margin: 1%;
}
.bl-content > ul li a {
  display: block;
  padding: 0;
  border: 8px solid rgba(0, 0, 0, 0.1);
}
.bl-content > ul li a img {
  display: block;
  max-width: 100%;
}
/* Panel Items */
div.bl-panel-items,
div.bl-panel-items > div {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
div.bl-panel-items > div > div {
  margin: 0 auto;
  opacity: 1;
  pointer-events: auto;
  overscroll-behavior-y: contain;
}
div.bl-panel-items > div > div h3 {
  font-size: 2.4em;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: white;
}
div.bl-panel-items > div > div p {
  font-size: 1.3em;
}
div.bl-panel-items > div > div img {
  margin-bottom: 10px;
  max-width: 100%;
  align-items: center;
}
div.bl-panel-items {
  top: 100%;
  z-index: -9999;
  color: white;
}
div.bl-panel-items.bl-panel-items-show {
  position: fixed;
  z-index: 9999;
}
div.bl-panel-items a {
  color: white;
  text-decoration: underline;
}
div.bl-panel-items > div {
  background: #3ba5db;
  text-align: left;
  z-index: 0;
  opacity: 0;
  /*-webkit-transform: translateY(0);
    -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 0s linear 0.5s;
    -moz-transform: translateY(0);
    -moz-transition: -moz-transform 0.5s ease-in-out, opacity 0s linear 0.5s;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out, opacity 0s linear 0.5s;
    -ms-transform: translateY(0);*/
}
div.bl-panel-items nav {
  position: absolute;
  z-index: 9999;
  bottom: 191%;
  right: 25px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0.5s;
  -moz-transition: opacity 0.2s ease-in-out 0.5s;
  transition: opacity 0.2s ease-in-out 0.5s;
}
div.bl-panel-items ul {
  margin-right: 40px;
}
div.bl-panel-items li {
  line-height: 30px;
}
div.bl-panel-items.bl-panel-items-show nav span {
  float: left;
  margin: 5px;
  /*font-size: 2em;*/
  cursor: pointer;
}
div.bl-panel-items nav span.bl-next-work {
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  text-transform: uppercase;
  line-height: 2em;
  cursor: pointer;
  margin-right: 2em;
}
div.bl-panel-items.bl-panel-items-show nav {
  opacity: 1;
}
div.bl-panel-items.bl-panel-items-show nav i {
  font-size: 1.8em;
}
div.bl-panel-items > div.bl-show-work {
  z-index: 1000;
  opacity: 1;
  -webkit-transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transform: translateY(-100%);
  -moz-transition: -moz-transform 0.5s ease-in-out;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  -ms-transform: translateY(-100%);
}
div.bl-panel-items > div.bl-hide-current-work {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
  -webkit-transform: translateY(-100%) scale(0.5);
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -moz-transform: translateY(-100%) scale(0.5);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateY(-100%) scale(0.5);
  -ms-transform: translateY(-100%) scale(0.5);
  z-index: 0;
}
/* Transition classes and properties */
/* Separated for a better overview and control */
.bl-main > section {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.bl-main > section.bl-expand {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bl-main > section.bl-expand-top {
  z-index: 100;
}
div.bl-panel-items > div:nth-child(1) {
  background: #ea4c88;
  background-image: url("../img/joblist/pink.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(2) {
  background: #eabe4c;
  background-image: url("../img/joblist/yellow.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(3) {
  background: #924cea;
  background-image: url("../img/joblist/purple.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(4) {
  background: #ea684c;
  background-image: url("../img/joblist/red.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(5) {
  background: #4f4cea;
  background-image: url("../img/joblist/blue.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
div.bl-panel-items > div:nth-child(6) {
  background: #eabe4c;
  background-image: url("../img/joblist/yellow.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.bl-main.bl-expand-item > section:not(.bl-expand),
.bl-main.bl-expand-item > section.bl-scale-down {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.bl-box {
  -webkit-transition: opacity 0.2s linear 0.5s;
  -moz-transition: opacity 0.2s linear 0.5s;
  transition: opacity 0.2s linear 0.5s;
}
section.bl-expand .bl-box {
  opacity: 0;
  -webkit-transition: opacity 0s linear;
  -moz-transition: opacity 0s linear;
  transition: opacity 0s linear;
}
.bl-box h2 {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.no-touch section:not(.bl-expand) .bl-box:hover h2 {
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.bl-content,
.bl-icon-close {
  -webkit-transition: opacity 0.1s linear 0s;
  -moz-transition: opacity 0.1s linear 0s;
  transition: opacity 0.1s linear 0s;
}
section.bl-expand .bl-content,
section.bl-expand .bl-icon-close {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s linear 0.5s;
  -moz-transition: opacity 0.3s linear 0.5s;
  transition: opacity 0.3s linear 0.5s;
}
@media screen and (max-width: 46.5em) {
  .bl-content,
  .bl-box {
    font-size: 75%;
  }
  .bl-expand .bl-box {
    height: 130px;
  }
  .bl-content > ul li {
    width: 40%;
  }
}
.require {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 120px;
  height: 120px;
  margin: 20px;
  padding: 20px;
  float: left;
  text-align: center;
}
.require span {
  display: inline-block;
  font-weight: 700;
}
@media screen and (max-width: 519px) {
  .require {
    width: 90px;
    height: 90px;
    margin: 10px 12px;
    padding: 16px;
  }
  .require img {
    height: 40px;
  }
  .require span {
    font-size: 13px;
  }
}
/* ContactUs Section
  --------------------------------*/
#contactUs {
  background: url("../img/contact/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}
#contactUs .contact-img {
  position: absolute;
  bottom: 0;
}
#contactUs .contact-img img {
  height: auto;
  width: 38%;
  padding-left: 250px;
}
@media (max-width: 1300px) {
  #contactUs .contact-img {
    bottom: 0;
  }
  #contactUs .contact-img img {
    height: auto;
    width: 43%;
    padding-left: 0px;
  }
}
@media (max-width: 992px) {
  #contactUs .contact-img img {
    opacity: 0;
  }
}
@media (max-width: 640px) {
  #contactUs {
    background-position: center 50px;
  }
}

#contactUs:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#contactUs .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
#contactUs .php-email-form .error-message br + br {
  margin-top: 25px;
}
#contactUs .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
#contactUs .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
#contactUs .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
#contactUs .php-email-form input,
#contactUs .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
}
#contactUs .php-email-form input:focus,
#contactUs .php-email-form textarea:focus {
  border-color: #007bff;
}
#contactUs .php-email-form input {
  padding: 10px 15px;
  border: solid 1px #b4b9bd;
}
#contactUs .php-email-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: solid 1px #b4b9bd;
}
#contactUs .php-email-form button[type="submit"] {
  background: #fb3640;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  margin-top: 20px;
}
#contactUs .php-email-form button[type="submit"]:hover {
  background: #03b5d2;
  cursor: pointer;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Help Section
  --------------------------------*/
#faq {
  padding-bottom: 0;
}

#faq .faq_title {
  text-align: center;
}
#faq .accordion {
  --bs-accordion-border-color: transparent !important;
  padding-bottom: 50px;
}
#faq .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

#faq .accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #03b5d2;
}

#faq .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #fb3640;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

#faq .accordion button:hover,
#faq .accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

#faq .accordion button:hover::after,
#faq .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

#faq .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  color: #212427;
  margin-right: 10px;
}

#faq .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

#faq .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
#faq .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

#faq .accordion button[aria-expanded="true"] {
  color: #03b5d2;
}
#faq .accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
#faq .accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
#faq .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
#faq .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

#faq .faq_more {
  padding: 50px 0px 0px 0px;
  background-color: #edfaff;
  text-align: center;
}
#faq .faq_more_list {
  padding: 50px 0px;
}
#faq .faq_more_item {
  background-color: #253880;
  border-radius: 10px;
  height: 110px;
  margin-bottom: 30px;
}
#faq .faq_more_item:hover {
  background-color: #03b5d2;
}
#faq .faq_more_icon img {
  width: 80px;
  fill: green;
}
#faq .faq_more_item .row {
  padding-top: 15px;
}
#faq .faq_more_text {
  float: right;
  text-align: left;
}
#faq .faq_more_text h4 {
  color: white;
  padding-top: 10px;
}
#faq .faq_more_text h6 {
  color: white;
  padding-top: 0px;
}

#faq .accordion .accordion-item:has(.accordion-title:empty) {
  display: none;
}

@media (max-width: 992px) {
  #faq .faq_more_list .row {
    justify-content: center !important;
  }
}

/* Incorporation steps Section
  --------------------------------*/
#steps {
  background-color: #f7f9fc;
}

#steps ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
}

#steps li {
  --frontColor: white;
  --width: 15em;
  --inlineP: 0.5rem;
  --borderR: 4rem;
  --arrowW: 2rem;
  --arrowH: 1.5rem;

  counter-increment: cardnr;
  width: calc(var(--width) - var(--inlineP) * 2);
  display: grid;
  grid-template:
    "icon" var(--borderR)
    "title"
    "descr" 1fr;
  margin-inline: var(--inlineP);
  margin-bottom: calc(var(--borderR));
  position: relative;
}
#steps li .icon,
#steps li .title,
#steps li .descr {
  background: var(--frontColor);
  padding-inline: 1rem;
  padding-bottom: 1rem;
}
#steps li .icon,
#steps li .title {
  color: var(--accent-color);
  text-align: center;
  padding-bottom: 0.5rem;
}

.bi-envelope::before {
  content: \F73D;
}

#steps li .title,
#steps li .descr,
#steps li .icon {
  filter: drop-shadow(0.125rem 0.125rem 0.075rem rgba(0, 0, 0, 0.25));
}
#steps li .icon {
  grid-area: icon;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--borderR) 0 0 0;
  position: relative;
}

#steps li .title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0 !important;
}

#steps li .descr {
  grid-area: descr;
  font-size: 0.85rem;
  text-align: center;
}
#steps li .descr::before {
  content: "";
  width: var(--arrowW);
  height: var(--arrowH);
  position: absolute;
  right: 1.5rem;
  top: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#steps li::after {
  content: counter(cardnr, decimal-leading-zero);
  position: absolute;
  z-index: -1;

  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  top: var(--borderR);
  bottom: calc(var(--borderR) * -1);

  display: flex;
  align-items: flex-end;
  background: var(--accent-color);
  background-image: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.25),
    transparent 25% 75%,
    rgba(0, 0, 0, 0.25)
  );
  border-radius: 0 0 var(--borderR) 0;

  --pad: 1rem;
  padding: var(--pad);
  font-size: calc(var(--borderR) - var(--pad) * 2);
  color: white;
}

@media screen and (max-width: 519px) {
  #steps ol {
    justify-content: space-around;
  }
}

@media screen and (max-width: 992px) {
  #steps ol {
    gap: 2em;
  }
}

/* Incorporation requirements Section
  --------------------------------*/

#requirement .steps {
  position: relative;
}
#requirement .steps:before {
  top: -40px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: #fb3640;
  left: 50%;
  margin-left: -1px;
}

#requirement .timeline {
  margin: 0px auto;
  overflow: hidden;
  position: relative;
  padding: 0px;
  list-style-type: none;
}
#requirement .timeline .timeline-box {
  position: relative;
  float: left;
  clear: left;
  width: 45%;
  list-style-type: none;
  display: block;
  padding: 25px;
  background: #f7f9fc;
  z-index: 15;
}

#requirement .timeline .timeline-box .timeline-title {
  color: #3c3c3c;
  font-weight: 700;
  font-size: 1em;
  float: left;
  padding-top: 8px;
}
#requirement .timeline .timeline-box .timeline-details {
  clear: both;
  padding-top: 5px;
}
#requirement .timeline .timeline-box span {
  position: absolute;
  top: -15px;
  right: 24px;
  font-size: 8em;
  font-weight: 700;
  color: #fb3640;
  opacity: 0.1;
  z-index: -1;
}
@media all and (max-width: 600px) {
  #requirement .timeline .timeline-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
#requirement .timeline .timeline-box:hover:after {
  background: #ff4769;
}
@media all and (min-width: 600px) {
  #requirement .timeline .timeline-box:after {
    display: block;
    content: " ";
    height: 9px;
    width: 9px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -12%;
    top: 1.5em;
    border: 2px solid #ff4769;
  }
}
#requirement .timeline .timeline-box {
  margin-bottom: 2.5em;
  border-radius: 10px;
}
#requirement .timeline .timeline-box:nth-of-type(1n):before {
  position: absolute;
  top: 15px;
  right: -10px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-left: 10px solid #f8f8f8;
  border-right: 0 solid #f8f8f8;
  border-bottom: 10px solid transparent;
  content: " ";
}
#requirement .timeline .timeline-box:nth-of-type(2n) {
  float: right;
  clear: right;
}
#requirement .timeline .timeline-box:nth-of-type(2n):before {
  right: auto;
  left: -10px;
  position: absolute;
  top: 15px;
  display: inline-block;
  border-top: 10px solid transparent;
  border-right: 10px solid #f8f8f8;
  border-left: 0 solid #f8f8f8;
  border-bottom: 10px solid transparent;
  content: " ";
}
@media all and (min-width: 600px) {
  #requirement .timeline .timeline-box:nth-of-type(2n) {
    margin-top: 3em;
  }
}
#requirement .timeline .timeline-box:nth-child(2n):after {
  left: -12%;
  right: auto;
}

#requirement .timeline-box:hover,
.timeline-box:focus {
  transform: translate(0, -5px);
  -webkit-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
}

#requirement .timeline-box:hover,
.timeline-box:focus {
  -webkit-box-shadow: 0px 3px 0px 0px #ff4769;
  -moz-box-shadow: 0px 3px 0px 0px #ff4769;
  box-shadow: 0px 3px 0px 0px #ff4769;
}

#requirement .timeline-box {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}

/* Pricing Section
  --------------------------------*/
#pricing {
  background-color: #253880;
}

#pricing .price_title h1 {
  color: white;
  font-weight: 700;
}

#pricing .price_title h1:nth-child(2) {
  font-weight: 500;
}

#pricing .price_details i {
  color: white;
  font-style: normal;
}

#pricing .price_details ul {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#pricing .price h1 {
  color: #03b5d2;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

#pricing .price span {
  font-size: 32px;
  line-height: 36px;
  margin-right: 12px;
}

#pricing .price p {
  color: white;
}

#pricing .price h5 {
  color: white;
  margin-bottom: 0;
}

#pricing button {
  background: #fb3640;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
}

#pricing button:hover {
  background: #03b5d2;
}

@media screen and (max-width: 992px) {
  #pricing .row {
    gap: 2em;
  }

  #pricing .price_details {
    justify-content: flex-start;
  }

  #pricing button {
    position: relative;
  }
}

/* 4Box Section
  --------------------------------*/
#boxes {
  overflow: inherit;
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}
#boxes .box_item {
  color: white;
  padding: 10px;
}

#boxes .box_inside {
  background-color: #253880;
  padding: 20px;
  border-radius: 10px;
  min-height: 98px;
}

@media (max-width: 991px) {
  #boxes .box_inside {
    min-height: auto;
  }
}

@media (max-width: 552px) {
  #boxes {
    overflow: hidden;
  }
  #boxes .box_inside {
    min-height: 98px;
  }

  #boxes i {
    display: none;
  }
}

@media (max-width: 376px) {
  #boxes .box_inside {
    min-height: 115px;
  }
  #boxes h5{
    font-size: 18px;
  }
}

#boxes h4 {
  color: white;
  margin-bottom: 0;
}

#boxes i {
  float: right;
  color: white;
}

#boxes i:hover {
  color: #03b5d2;
}

/* Tooltip attribute */
#boxes [data-tooltip] {
  position: relative;
  z-index: 99;
  cursor: pointer;
  overflow: visible;
}

/* Tooltip content hidden by default */
#boxes [data-tooltip]:before,
#boxes [data-tooltip]:after {
  transition: all 1.3s ease-in-out;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Tooltip position */
#boxes [data-tooltip]:before {
  position: absolute;
  top: 30px;
  left: 70px;
  padding: 12px;
  width: 200px;
  border-radius: 5px;
  background-color: #03b5d2;
  color: white;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 15px;
  line-height: 21px;
}

/* Tooltip visible on hover */
#boxes [data-tooltip]:hover:before,
#boxes [data-tooltip]:hover:after {
  transition: all 1.3s ease-in-out;
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Secretary Section
  --------------------------------*/

#secretary {
  background-color: #f7f9fc;
}
#secretary .secretary-first {
  margin-bottom: 80px;
}

#secretary .secretary-item-1 {
  margin-bottom: 80px;
}

#secretary button {
  background: #fb3640;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
  position: absolute;
  bottom: 0;
  margin-top: 10px;
}

#secretary button:hover {
  background: #03b5d2;
}

@media (max-width: 991px) {
  #secretary .secretary-photo img {
    padding-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  #secretary button {
    position: relative;
  }
}

/* Secretary services Section
  --------------------------------*/
#secretary_services .row {
  gap: 2em;
  align-items: center;
}

#secretary_services .card {
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #253880 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
}
#secretary_services .card_desc {
  text-align: left;
}
#secretary_services h3 {
  font-weight: 600;
  color: #253880;
  margin: 0;
}
#secretary_services .row p {
  margin: 0;
}
#secretary_services .icon-wrapper {
  background-color: #253880;
  position: relative;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
#secretary_services .card:hover {
  background-position: 0 100%;
}
#secretary_services .card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #253880;
}
#secretary_services .card:hover h3 {
  color: #ffffff;
}
#secretary_services .card:hover p {
  color: #f0f0f0;
}

#secretary_services .col-12:has(p:empty) {
  display: none;
}

@media (max-width: 576px) {
  #secretary_services .row{
    justify-content: center;
  }
}

/* Accounting services Section
  --------------------------------*/
#subservices .row {
  padding-bottom: 20px;
  gap: 2em;
}

#subservices .card {
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #253880 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
}
#subservices h3 {
  font-size: 16px;
  font-weight: 600;
  color: #253880;
  margin: 1em 0;
  margin-bottom: 0;
}
#subservices .icon-wrapper {
  background-color: #253880;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  margin-top: 0;
}
#subservices .card:hover {
  background-position: 0 100%;
}
#subservices .card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #253880;
}
#subservices .card:hover h3 {
  color: #ffffff;
}
#subservices .card:hover p {
  color: #f0f0f0;
}

@media (max-width: 991px) {
  #subservices .card {
    margin: 0 10px 0 10px;
  }
}

@media (max-width: 552px) {
  #subservices .card {
    margin: 0 0 0 10px;
  }
}


/* 10boxes
  --------------------------------*/
  #subservices .card:has(h3:empty) {
    visibility: hidden;
  }

  @media (max-width: 991px) {
    #subservices .card:has(h3:empty) {
      display: none;
    }
  }

/* list-tick
  --------------------------------*/
  #list-tick ul {
    list-style: none;
    padding-left: 0;
  }
  
  #list-tick ul li:before {
    content: '✓';
    font-weight: 700;
  }

  #list-tick ul li:has(a:empty) {
    display: none;
  }

  #list-tick ul li a[href=""] {
    color: #212427;
  }
  
/* 2grp
  --------------------------------*/
  #grp_2 ul {
    list-style: none;
    padding-left: 0;
  }

  #grp_2 ul li:before {
    content: '✓';
    font-weight: 700;
  }

  #grp_2 .card{
    background-color: #f7f9fc;
    padding: 20px;
    border: none;
    min-height: 100%;
  }

  #grp_2 .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #03b5d2;
    width: fit-content;
    margin-top: 20px;
}

#grp_2 .btn-get-started:empty{
  display: none;
}

#grp_2 li:empty{
  display: none;
}

#grp_2 .card:has(h3:empty){
  display: none;
}


@media (max-width: 576px) {
  #grp_2 .card:first-child{
    margin-bottom: 20px;
    min-height: auto;
  }
}


/*--------------------------------------------------------------
# left-right
--------------------------------------------------------------*/
#left-right{
  padding-top: 33px;
}
#left-right .row>*{
  padding-left: 0;
  padding-right: 0;
}

#left-right .row{
  align-items: center;
}

#left-right .row:nth-child(even){
  background-color: #f7f9fc;
}

#left-right .text{
  padding-left: 10%;
  padding-right: 10%;
}

#left-right p{
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #left-right .text{
    padding-bottom: 20px;
    padding-top: 20px;
  }

  #left-right .row:first-child .text{
    padding-bottom: 20px;
    padding-top: 0;
  }
  
}

/*--------------------------------------------------------------
# blog
--------------------------------------------------------------*/
#blog h2{
  text-align: center;
  color: #2a2c39;
}

#blog h5{
  color: #253880;
  margin-top: 15px;
}

#blog .row{
  justify-content: space-around;
}

#blog .blog-list{
 margin-bottom: 35px;
 background-color: #f7f9fc;
 border-radius: 10px;
 min-height: 130px;
}

#blog img {
  min-width: 135%;
}

.blog-left{
  padding-left: 0;
  overflow: hidden;
}

.blog-middle {
  text-align: left;
}

.blog-list a:hover h5{
  color: #03b5d2 !important;
}

.blog-list p {
  color: #2a2c39;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 10px;
}

.blog-list .date {
  color: #2a2c39;
  font-size: small;
}

#blog img {
  border-radius: 10px 0 0 10px;
}

.blog li {
  list-style-type: disc;
  text-align: left;
}

.blog p {
  text-align: left;
}

#留学资讯, #school-news{
  text-align: center;
}

.blog h4{
  color: #253880;
}

.blog img {
  border-radius: 10px;
  margin-bottom: 40px;
  width: 80%;
}

.blog{
  background-color: #f7f9fc;
    border-radius: 20px;
    margin: 80px auto;
    padding: 40px 0;
}

.blog ul{
  padding-left: 1rem;
}

.blog .content{
  margin: auto;
  width: 70%;
  text-align: center;
}

.blog h4{
  text-align: left;
}

.blog .top{
  border-bottom: solid 1px #2538803d;
    margin-bottom: 60px;
}

.blog .top p{
  text-align: center !important;
}

@media (max-width: 1200px) {
  #blog img {
    min-width: 180%;
  }
}

@media (max-width: 992px) {
  #blog img {
    min-width: 135%;
  }
}

@media (max-width: 576px) {
  #blog, .blog{
    padding-top: 60px;
  }   

  #blog .blog-list{
    border-radius: 0;
  }

  #blog img {
    border-radius: 0;
  }

  .blog p img {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .blog{
      margin: 30px auto auto 0;
      padding: 40px 0;
      border-radius: 0;
  }

  .blog .content{
    width: 90%;
  }

  .blog .top{
      margin-bottom: 40px;
  }
}

@media (max-width: 376px) {
  #blog img {
    min-width: 200%;
  }
}


/*--------------------------------------------------------------
# pagination
--------------------------------------------------------------*/
.pagination {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .pages {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.pagination .page-number {
  cursor: pointer;
  background-color: white;
  color: #999;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s ease;
}

.pagination .active {
  font-size: 1.3em;
  height: 40px;
  width: 40px;
  background-color: #253880;
  color: white;
}

.pagination .active.page-number:hover {
  color: white;
}

.pagination .page-number:hover {
  color: #03b5d2;
}

.pagination button {
  width: 120px;
  padding: 8px 16px;
  background-color: #ffffff00;
  color: #253880;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination button:hover {
  color: #03b5d2;
}

.pagination button:disabled {
  background-color: #ffffff00;
  color: #ccc;
  cursor: not-allowed;
}

.pagination .arrow {
  font-size: 1.2em;
}

.pagination .nav-text {
  font-size: 0.7em;
  letter-spacing: 0.3em;
}

/*--------------------------------------------------------------
# title
--------------------------------------------------------------*/
#title{
  margin-top: 80px;
}

/*--------------------------------------------------------------
# img-gallery
--------------------------------------------------------------*/
#img-gallery .container .images{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  grid-gap: 2rem;
  img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
  }
}