/*================ 1. Google Fonts =================*/
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap");
/*================ End Google Fonts =================*/

/*================ 2. Basic Styles =================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
:focus-visible {
  outline: none;
}
html {
  font-family: "Red Hat Display", sans-serif;
}
body {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: #002838;
  font-family: "Red Hat Display", sans-serif;
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
iframe {
  border: 0;
  width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
  margin: 0;
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.nav-links:before,
.nav-links:after,
.pagination:before,
.pagination:after,
.comment-author:before,
.comment-author:after,
.widget-area:before,
.widget-area:after,
.widget:before,
.widget:after,
.comment-meta:before,
.comment-meta:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after,
.pagination:after,
.comment-author:after,
.widget-area:after,
.widget:after,
.comment-meta:after {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
i {
  display: block;
}
i::before {
  content: "";
  display: block;
  background-size: cover !important;
}
.container {
  padding: 0;
  max-width: 1140px;
}
.mobile-only .custom-logo-link {
  display: none;
}
.swiper-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.swiper-button-next,
.swiper-button-prev {
  position: static;
  z-index: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1e1e1;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: auto;
  height: auto;
}
.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
  fill: #009ee0;
  fill-opacity: 1;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.hide-desktop {
  display: none;
}
/*================ End Basic Styles =================*/

/*================ 3. Typography =================*/
h1,
.heading-one {
  font-size: 64px;
  line-height: 80px;
}
h2,
.heading-two {
  font-size: 40px;
  line-height: normal;
}
h3,
.heading-three {
  font-size: 24px;
  line-height: 36px;
}
h4,
.heading-four {
  font-size: 20px;
  line-height: normal;
}
h5,
h6,
.heading-five,
.heading-six {
  font-size: 18px;
  line-height: normal;
}
h1,
h2,
.heading-one,
.heading-two {
  font-weight: 700;
}
h4,
h6,
.heading-four,
.heading-six {
  font-weight: 600;
}
h3,
h5,
.heading-three,
.heading-five {
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
.heading-one,
.heading-two,
.heading-three,
.heading-four,
.heading-five,
.heading-six {
  color: #002838;
}
p,
a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #002838;
  text-decoration: none;
}
a {
  display: inline-block;
}
.text-white > p {
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr {
  margin: 0 0 20px 0;
}
p:last-child {
  margin-bottom: 0;
}
dl,
ol,
ul {
  list-style-type: none;
  padding: 0;
}

/*================ End Typography =================*/

/*================ Color Style =================*/
.text-primary-site {
  color: #009ee0;
}
.text-secondary-site {
  color: #002838;
}
.text-light-site {
  color: #fbfeff;
}
.bg-primary-site {
  background: #009ee0;
}
.bg-secondary-site {
  background: #002838;
}
.bg-light-site {
  background: #f8f9fa;
}
.bg-light-blue {
  background: #f6faff;
}
/*================ End Color Style =================*/

/*================ Spacing Class =================*/
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.pb-30 {
  padding-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
/*================ End Spacing Class =================*/

/*================ Site Icons Style =================*/
i {
  display: flex;
}
i:before {
  content: "";
  display: inline-block;
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
}
.icon-plus::before {
  -webkit-mask-image: url(./assets/images/icon_add.svg);
  mask-image: url(./assets/images/icon_add.svg);
  width: 24px;
  height: 24px;
  background: #009ee0;
}
.icon-minus::before {
  -webkit-mask-image: url(./assets/images/icon_minus.svg);
  mask-image: url(./assets/images/icon_minus.svg);
  width: 24px;
  height: 24px;
}
.icon-address::before {
  -webkit-mask-image: url(./assets/images/icon_address.svg);
  mask-image: url(./assets/images/icon_address.svg);
  width: 40px;
  height: 40px;
}
.icon-mail::before {
  -webkit-mask-image: url(./assets/images/icon_mail.svg);
  mask-image: url(./assets/images/icon_mail.svg);
  width: 40px;
  height: 40px;
}
.icon-call::before {
  -webkit-mask-image: url(./assets/images/icon_call.svg);
  mask-image: url(./assets/images/icon_call.svg);
  width: 40px;
  height: 40px;
}
.icon-cin::before {
  -webkit-mask-image: url(./assets/images/icon_CIN.svg);
  mask-image: url(./assets/images/icon_CIN.svg);
  width: 40px;
  height: 40px;
}
.icon-grievance::before {
  -webkit-mask-image: url(./assets/images/icon_grievance.svg);
  mask-image: url(./assets/images/icon_grievance.svg);
  width: 40px;
  height: 40px;
}
/*================ End Site Icons Style =================*/

/*================ Common Elements Style =================*/
.solid-btn {
  display: inline-flex;
  gap: 10px;
  padding: 14px 32px;
  color: #fff;
  background-image: linear-gradient(120deg, #009ee0 50%, #fff 50%);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  border-radius: 12px;
  position: relative;
  background-size: 300%;
  border: 1px solid #009ee0;
  transition: all 0.6s;
}
.solid-btn:hover {
  color: #009ee0;
  background-position: 100%;
  transition: all 0.6s;
}
.solid-btn:hover svg path {
  fill: #009ee0;
  transition: all 0.6s;
}
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #009ee0;
  background-image: linear-gradient(120deg, #fbfeff 50%, #002838 50%);
  position: relative;
  background-size: 300%;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  color: #009ee0;
  transition: all 0.6s;
}
.line-btn:hover {
  color: #fff;
  background-position: 100%;
  transition: all 0.6s;
}
.line-btn:hover svg path {
  fill: #fff;
  transition: all 0.6s;
}
.line-btn svg path,
.solid-btn svg path {
  transition: all 0.6s;
}
.text-link,
.text-link svg {
  transition: all 0.4s ease-in-out;
}
.text-link:hover {
  color: #002838;
  transition: all 0.4s ease-in-out;
}
.text-link:hover svg {
  transform: translateX(8px);
  transition: all 0.4s ease-in-out;
}
.scrl-top-btn {
  position: fixed;
  right: 20px;
  bottom: 70px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #48c6e2;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 8;
}
.scrl-top-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 45px;
  height: 45px;
  background: #48c6e2;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.scrl-top-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*================ End Common Elements Style =================*/

/*================ Header Style =================*/
.site-header {
  padding: 0 60px;
  background: #fff;
  width: 100%;
  transition: all ease-in-out 0.4s;
}
.site-header .container-fluid {
  padding: 0;
}
.site-header.sticky {
  position: fixed;
  z-index: 9;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.04);
  transition: all ease-in-out 0.4s;
}
.site-nav,
.side-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.site-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 20px 0 0;
}
.nav-menu .menu-item a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: color 1s ease;
}
.nav-menu .menu-item a:before,
.nav-menu .menu-item a:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100%;
  width: 3px;
  transition: all 1s ease 0s;
}
.nav-menu .menu-item a:before {
  left: 50%;
}
.nav-menu .menu-item a:after {
  right: 50%;
}
.nav-menu .menu-item:hover > a {
  color: #009ee0;
  transition: all 1s ease 0s;
}
.nav-menu .menu-item:hover > a:before {
  left: -8px;
  background: #009ee0;
}
.nav-menu .menu-item:hover > a:after {
  right: -8px;
  background: #009ee0;
}
.nav-menu .sub-menu {
  display: block;
  position: absolute;
  z-index: 2;
  top: 56px;
  left: -38px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
}
.nav-menu > .menu-item {
  display: inherit;
  padding-bottom: 40px;
  margin-top: 40px;
}
.nav-menu .menu-item-has-children {
  position: relative;
  white-space: nowrap;
}
.nav-menu .menu-item-has-children li {
  border-bottom: 1px solid #efefef;
  padding: 12px 24px;
}
.nav-menu .menu-item-has-children li:last-child {
  border-bottom: 0;
}
.nav-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.drop-arrow {
  display: none;
}
.current-menu-item a {
  color: #009ee0;
}
/*================ End Header Style =================*/

/*================ Footer Style =================*/
.site-footer {
  position: relative;
  z-index: 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./assets/images/bg_business.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
.top-footer {
  padding: 45px 0;
  border-bottom: 1px solid #003c55;
}
.bottom-footer {
  padding-top: 30px;
}
.footer-links,
.footer-info {
  margin: 0;
  padding: 0;
}
.bottom-footer h6 {
  margin-bottom: 12px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  font-size: 14px;
  line-height: 24px;
  color: #e1e1e1;
  transition: all ease-in-out 0.4s;
}
.footer-info li {
  display: flex;
  margin-bottom: 20px;
}
.footer-info li:last-child,
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-info li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fbfeff;
  transition: all ease-in-out 0.4s;
}
.footer-info li a:hover,
.footer-links li a:hover {
  color: #009ee0;
  transition: all ease-in-out 0.4s;
}
.copyright {
  padding: 12px;
}
.copyright p,
.copyright a {
  font-size: 14px;
  line-height: 16px;
}
.copyright a {
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid #002838;
}
.copyright a:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
/*================ End Footer Style =================*/

/*================ Home page Style =================*/
.banner-sec .swiper-slide,
.about-sec,
.counter-sec,
.business-sec,
.career-form-sec {
  position: relative;
}
.banner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    128deg,
    rgba(0, 40, 56, 0.6) 0%,
    rgba(0, 40, 56, 0) 100%
  );
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.slide-subtitle {
  max-width: 536px;
}
.banner-sec .swiper-slide img {
  width: 100%;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #009ee0;
}
.about-sec,
.career-form-sec {
  z-index: 0;
  overflow: hidden;
}
.about-sec::before,
.career-form-sec::before {
  content: "";
  width: 50%;
  height: 100%;
  border-radius: 842px;
  opacity: 0.4000000059604645;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 158, 224, 0.43) 0%,
    rgba(0, 158, 224, 0) 100%
  );
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.about-sec::after,
.career-form-sec::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(./assets/images/bg_about.png) no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.career-form-sec::before {
  right: inherit;
}
.career-form-sec::after {
  background-position: left bottom;
}
.counter-sec::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(./assets/images/bg_counters.png) no-repeat;
  background-size: cover;
}
.counter {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}
.counter li {
  position: relative;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter li::after {
  content: "";
  width: 6px;
  height: 100%;
  background: linear-gradient(239deg, #d8f0fa 0%, #009ee0 100%);
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 0;
}
.count-wrap .heading-two {
  min-width: 100px;
}
.counter li:last-child:after {
  display: none;
}
.capability-box {
  border-radius: 8px;
  border: 1px solid rgba(217, 217, 217, 0.93);
  background: #fbfeff;
  padding: 20px;
  text-align: center;
  height: 100%;
}
.capability-box img {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 20px;
}
.product-slider .swiper-slide {
  text-align: center;
}
.product-slider .swiper-slide .img-box,
.product-box .img-box {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-slider .swiper-slide img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.product-sec .swiper-nav,
.plant-gallery-sec .swiper-nav {
  justify-content: flex-end;
}
.product-box {
  text-align: center;
}
.product-box .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.product-box .img-box:hover img,
.product-slider .swiper-slide:hover img {
  transform: scale(1.2);
  transition: all 0.4s ease-in-out;
}
.business-sec {
  z-index: 0;
}
.business-sec::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(./assets/images/bg_business.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
}
/*================ End Home page Style =================*/

/*================ Titlebar/CTA Style =================*/
.titlebar {
  position: relative;
  z-index: 0;
  background-position: center;
}
.titlebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 56, 0.8);
  z-index: -1;
}
.cta-box {
  padding: 40px;
  text-align: center;
  border-radius: 24px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #009ee0;
}
.cta-box::before,
.quality-control .blue-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./assets/images/bg_business.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
/*================ End Titlebar/CTA Style =================*/

/*================ About Page Style =================*/
.about-journey-sec .img-box,
.manufacture-block .img-box {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.about-journey-sec .img-box img,
.manufacture-block .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-journey-sec .blue-box {
  position: relative;
}
.values-sec {
  background: #f6faff;
}
.value-box {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(217, 217, 217, 0.93);
  background: #fff;
  height: 100%;
}
.value-box img {
  max-width: 60px;
  margin-bottom: 16px;
}
/*================ End About Page Style =================*/

/*================ Infrastructure Page Style =================*/
.nav-pills {
  display: inline-flex;
  background: #c7eeff;
  border-radius: 30px;
  padding: 6px;
  flex-wrap: nowrap;
}
.nav-pills .nav-link {
  border-radius: 20px;
  color: #002838;
  font-weight: 500;
  padding: 12px 40px;
  transition: all 0.15s ease-in;
}
.nav-pills .nav-link.active {
  background: #009ee0;
  transition: all 0.15s ease-in;
}
.swiper-container {
  position: relative;
  overflow: hidden;
}
.plant-gallery .swiper-wrapper {
  transition-timing-function: linear;
}
.manufacture-facility .icon-box {
  width: 80px;
  height: 80px;
  border: 1px solid #009ee0;
  border-radius: 8px;
  padding: 6px;
}
.manufacture-facility .icon-box img {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
}
.manufacture-facility .manufacture-block:nth-child(odd) .contact-col {
  margin-top: 0;
  margin-bottom: 24px;
}
.manufacture-facility .manufacture-block:nth-child(even) .contact-col {
  order: 2;
  margin-top: 24px;
  margin-bottom: 0;
}
.manufacture-facility .manufacture-block:nth-child(odd):last-child {
  padding-bottom: 0;
}
.manufacture-facility .manufacture-block:nth-child(even) {
  background: linear-gradient(90deg, #f2fbff 0%, #dff6ff 100%);
}
.counter-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.counter-list li {
  width: 33.33%;
  padding: 0 12px 24px;
}
.product-counter-box {
  border-radius: 12px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  padding: 16px;
  height: 100%;
}
.product-counter-box img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.product-counter-box .count-content {
  padding-left: 20px;
  margin-left: 12px;
  border-left: 1px solid #efefef;
}
/*================ End Infrastructure Page Style =================*/

/*================ Quality Page Style =================*/
.quality-control .blue-box {
  height: 100%;
  padding: 24px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quality-control .quality-row {
  border-radius: 24px;
  overflow: hidden;
}
/*================ End Quality Page Style =================*/

/*================ Business Development Page Style =================*/
.business-models-wrap:last-child .value-box > p,
.business-models-wrap:last-child .value-box > h3 {
  color: #002838 !important;
}
.business-models-wrap:last-child .value-box > a {
  color: #009ee0 !important;
}
.business-models-wrap:last-child .value-box > a svg path {
  fill: #009ee0;
}
/*================ End Business Development Page Style =================*/

/*================ Career Page Style =================*/
.career-stroy {
  overflow: hidden;
}
.career-stroy .img-box {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.career-stroy .img-box::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(319deg, #009ee0 0%, rgba(0, 158, 224, 0) 100%);
  transition: all 0.4s ease-in-out;
}
.career-stroy .img-box img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.career-stroy .img-box:hover::after {
  top: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
}
.impact-row .img-box::after {
  left: -20px;
  right: inherit;
  top: 20px;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(-219deg, #009ee0 0%, rgba(0, 158, 224, 0) 100%);
}
.impact-row .img-box:hover::after {
  left: 0;
  top: 0;
  transition: all 0.4s ease-in-out;
}
.approach-sec .nav-pills .nav-link {
  padding: 12px 20px;
}
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.04);
}
.wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-checkbox .wpcf7-list-item label {
  cursor: pointer;
}
.file-col p {
  margin-bottom: 0;
  font-size: 12px;
}
/*================ End Career Page Style =================*/

/*================ Contact Page Style =================*/
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-info i::before {
  background: #009ee0;
}
.contact-info .info-item {
  margin-bottom: 20px;
}
.contact-info .info-item:last-child {
  margin-bottom: 0;
}
.contact-info a span {
  transition: all 0.4s ease-in-out;
}
.contact-info a:hover span {
  transition: all 0.4s ease-in-out;
  color: #009ee0;
}
.bottom-footer .contact-info i::before {
  background: #e1e1e1;
  transition: all 0.4s ease-in-out;
}
.bottom-footer .contact-info a:hover i::before {
  background: #009ee0;
  transition: all 0.4s ease-in-out;
}
/*================ End Contact Page Style =================*/

/*================ Management Team Page Style =================*/
.team-box {
  border-radius: 8px;
  border: 1px solid rgba(217, 217, 217, 0.93);
  background: #fbfeff;
  position: relative;
  padding: 24px;
  height: 100%;
  z-index: 0;
}
.team-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(./assets/images/bg_about.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  z-index: -1;
}
/*================ End Management Team Page Style =================*/

/*================ Common Page Style =================*/
.main-content .entry-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  padding-left: 20px;
  padding-bottom: 6px;
}
.main-content .entry-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #009ee0;
  border-radius: 50%;
}
/*================ End Common Page Style =================*/
/*================ Thank You Page Style =================*/
.thank-you-block {
  padding: 40px;
  border: 1px solid rgba(217, 217, 217, 0.93);
  border-radius: 16px;
  text-align: center;
}
.thank-you-image {
  display: inline-block;
  margin: 0 auto;
  max-width: 120px;
}
/*================ End Thank You Page Style =================*/
/*================ Error Page Style =================*/
.error-page-text {
  font-size: 120px;
  line-height: 180px;
  color: #202020;
}
.error-page-text span {
  color: #009ee0;
}
/*================ End Error Page Style =================*/
