@font-face {
  font-family: "NexaLight";
  src: url(../fonts/NexaLight.otf);
}
@font-face {
  font-family: "NexaBold";
  src: url(../fonts/NexaBold.otf);
}
@font-face {
  font-family: "NexaHeavy";
  src: url(../fonts/NexaHeavy.otf);
}
@font-face {
  font-family: "NexaBook";
  src: url(../fonts/NexaBook.ttf);
}
@font-face {
  font-family: "NexaBlack";
  src: url(../fonts/NexaBlack.otf);
}
/*Debug Classes*/
.dbb {
  border: 1px solid red;
}

.dbb1 {
  border: 1px solid black;
}

/*Debug Classes*/
h1 {
  font-family: "NexaBlack";
  color: #1b3a4b;
  font-weight: bold;
  font-size: 3rem;
}

h2 {
  font-family: "NexaHeavy";
  font-size: 2.5rem;
  color: #1b3a4b;
}

h3 {
  font-family: "NexaBook";
  font-size: 2rem;
  color: #2e5c57;
  letter-spacing: 1.5;
}

h4 {
  font-family: "NexaHeavy";
  font-size: 1.5rem;
  color: #1b3a4b;
}

h5 {
  font-family: "NexaHeavy";
  font-size: 1rem;
  color: #1b3a4b;
}

h6 {
  font-family: "NexaHeavy";
  font-size: 0.5rem;
  color: #1b3a4b;
}

body {
  font-family: "NexaLight" !important;
  font-size: 1.2rem;
  color: #000;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}
body a {
  color: #c0392b;
}
body a:hover {
  color: #1b3a4b;
  font-weight: 600;
}

.page-container {
  min-height: 100vh;
  padding: 50px 10vw;
}

.content-area {
  background-color: #f2f6fa;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.topbar {
  padding: 0 10vw;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  display: grid;
  align-content: end;
  min-height: 190px;
}
.topbar .header-container {
  margin-top: 15px;
}
.topbar .header-container .row {
  align-items: end;
}
.topbar .header-container .row .col-8 {
  display: flex;
  justify-content: right;
}
.topbar .logo img {
  width: 310px;
}

/*********************
  		MENU
/*********************/
.sidebar {
  display: none;
}

.menu-bar {
  margin-bottom: 5px;
  background: none;
  text-align: left;
}
.menu-bar .active {
  font-family: "NexaHeavy";
}

.menu-bar ul {
  display: inline-flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-bar ul li {
  padding-left: 0px;
  padding-right: 21px;
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  text-transform: lowercase;
  font-family: "NexaLight";
}

.menu-bar ul li:last-child {
  padding-right: 0;
}

.menu-bar ul li a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
}

.menu-bar ul li a::after {
  content: attr(data-text);
  height: 0;
  visibility: hidden;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  font-weight: 900;
}
@media speech {
  .menu-bar ul li a::after {
    display: none;
  }
}

.menu-bar ul li:hover {
  font-weight: 900;
}

.drop-down {
  display: none;
}

.menu-bar ul li:hover .drop-down {
  display: block;
  position: absolute;
  margin-left: -4%;
  z-index: 10;
}

.menu-bar ul li:hover .drop-down ul {
  display: block;
  margin: 10px;
}

.menu-bar ul li:hover .drop-down ul li {
  width: 140px;
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid #16648d;
  background-color: #1b3a4b;
  text-align: left;
  font-weight: 400;
}

.menu-bar ul li:hover .drop-down ul li:last-child {
  border: none;
}

.menu-bar ul li:hover .drop-down ul li:hover {
  background-color: #c8dfeb;
  color: #1b3a4b;
}

.menu-bar ul li:hover .drop-down ul li a {
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-family: NexaLight;
  font-size: 16px;
}

.menu-bar ul li:hover .drop-down ul li a:hover {
  background-color: #c8dfeb;
  color: #1b3a4b;
}

.hamburger-menus {
  display: none;
  position: relative;
  height: 20px;
  width: 23px;
  float: right;
  z-index: 999;
}

.hamburger-menu-items {
  display: none;
  z-index: 100;
  position: absolute;
  background: rgba(27, 58, 75, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  text-align: left;
  float: right;
  top: 0;
  right: 0;
  left: 0;
}
.hamburger-menu-items ul {
  padding: 0;
}
.hamburger-menu-items ul li {
  list-style: none;
  font-size: 25px;
  font-weight: 300;
  border-bottom: 1px solid white;
}
.hamburger-menu-items ul li a {
  color: white;
  text-transform: lowercase;
  text-decoration: none;
}
.hamburger-menu-items ul li:hover {
  font-weight: 900;
  cursor: pointer;
}
.hamburger-menu-items ul li:hover .drop-down {
  display: block;
  padding-left: 15px;
}
.hamburger-menu-items ul li:hover .drop-down li {
  list-style: none;
  font-size: 20px;
  border: none;
}
.hamburger-menu-items ul li:hover .drop-down li a {
  color: white;
}

.menu-toggle {
  display: unset !important;
}

.header-menu .line1,
.header-menu .line2,
.header-menu .line3 {
  height: 25%;
  width: 100%;
  margin-top: 3px;
  background-color: #f2f6fa;
  border-radius: 5px;
}

.line1,
.line2,
.line3 {
  height: 25%;
  width: 100%;
  margin-top: 3px;
  background-color: #1b3a4b;
  border-radius: 5px;
}

.toggle1 {
  transform: rotate(45deg) translate(7px, 6px);
  transition: transform 0.6s;
  background-color: white;
}

.toggle2 {
  display: none;
}

.toggle3 {
  transform: rotate(-45deg);
  transition: transform 0.6s;
  background-color: white;
}

/*End of Hamburger Menus*/
/************************************
  		End of MENU
************************************/
/*********************************************
					FLAG
**********************************************/
.flag {
  position: relative;
  float: right;
  top: 15px;
  z-index: 1;
}
.flag ul {
  display: inline-flex;
  list-style-type: none;
  margin: 0;
}
.flag ul li img {
  width: 50px;
}

.header-spacer {
  position: relative;
  float: right;
  top: 15px;
  height: 34px;
}

/*********************************************
			End of FLAG section
**********************************************/
/********************************************
				INTRO SECTION
*********************************************/
.no-padding {
  padding-right: 0 !important;
}

.ceo-intro {
  padding-top: 60px;
  padding-left: 10vw !important;
  padding-right: 0 !important;
}
.ceo-intro .image-float {
  width: 300px;
  height: 350px;
  background-image: url("../images/andrew2.png");
  background-repeat: no-repeat;
  background-position: top right;
  float: right;
}
.ceo-intro h1 {
  font-size: 3.1rem;
  font-weight: 800;
}
.ceo-intro .sub-title {
  line-height: 2rem;
}
.ceo-intro p {
  font-family: NexaLight;
  font-size: 18px;
  font-weight: 600;
  color: #474747;
  line-height: 1.5rem;
  text-align: left;
  width: 90%;
}

.banner-right {
  background-image: url("../images/banner-background-cropped.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  padding-right: 0;
  height: 100%;
  padding-top: 60px;
  position: relative;
}
.banner-right .banner-right-content {
  position: relative;
  z-index: 100;
  width: 75%;
}
.banner-right .banner-right-content .sub-title {
  color: #1b3a4b;
  margin-top: -15px;
}
.banner-right .banner-right-content p {
  font-family: NexaLight;
  font-size: 18px;
  font-weight: 600;
  color: #474747;
  line-height: 1.5rem;
  text-align: left;
}

.banner-right::before,
.banner-right::after {
  content: "";
  position: absolute;
  top: 60px;
  width: 100%; /* Adjust width as needed */
  height: 80%;
  z-index: 5; /* Ensure it appears above the background */
  background: red;
}

.banner-right::before {
  left: 0;
  background: rgba(255, 245, 50, 0.8); /* Yellow overlay */
  width: 76%;
}

.banner-right::after {
  right: 0;
  background: rgba(0, 120, 150, 0); /* Blue overlay */
  width: 10vw;
}

/********************************************
				End of INTRO SECTION
*********************************************/
.company-feature {
  height: 500px;
  overflow-y: hidden;
}
.company-feature .feature-image {
  background-image: var(--feature-image);
  padding: 0;
  border-radius: 0 50px 0 0;
  overflow: hidden;
  position: relative;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}
.company-feature .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
}
.company-feature .feature-intro {
  padding: 3vw 10vw 3vw 3vw;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.company-feature .feature-intro .feature-intro-title {
  font-size: 35px;
  font-family: "NexaHeavy";
  line-height: 1;
  color: #1b3a4b;
}
.company-feature .feature-intro .feature-intro-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #2e5c57;
}
.company-feature .feature-intro .feature-intro-para {
  font-size: 18px;
  font-weight: lighter;
  margin: 21px 0;
  flex: 1;
  overflow: hidden;
  max-height: calc(100% - 120px);
  padding-bottom: 60px;
}
.company-feature .feature-intro .feature-intro-pages {
  position: absolute;
  bottom: 3vw;
  left: 3vw;
  right: 10vw;
}
.company-feature .feature-intro .feature-help {
  font-size: 11px;
  color: #c0c0c0;
}

/* 	Home page Client Scroll End */
/*
 **********************************************
	Feature navigation dots - container
**********************************************
*/
.feature-intro-pages,
.feature-intro-pages-mobile {
  display: flex;
  gap: 15px;
}

.feature-intro-pages-mobile {
  display: flex;
  justify-content: end;
  gap: 15px;
}

.feature-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #e5e5e5;
  transition: all 0.3s ease;
}

.feature-intro-pages .active {
  background-color: #c0392b;
}

.feature-intro-pages-mobile .active {
  background-color: #c0392b;
}

.feature-dot:hover {
  background-color: #eac660;
}

/*
 **********************************************
	endof Feature navigation dots - container
**********************************************
*/
.clients {
  padding: 50px 5vw;
  text-align: center;
}
.clients img {
  width: auto;
  height: 114px;
  filter: blur(0.3px) grayscale(100%);
  -webkit-filter: blur(0.9px) grayscale(100%);
  padding: 10px;
  margin: 25px;
}
.clients img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}

@media (max-width: 767px) {
  .clients img {
    -webkit-filter: unset;
  }
}
.contact-bg {
  background-color: #e9e9e9 !important;
  padding: 50px 10vw;
}
.contact-bg .title {
  line-height: 3rem;
}
.contact-bg .sub-title {
  font-weight: 400;
}
.contact-bg .btn-whatsapp,
.contact-bg .btn-whatsapp:hover,
.contact-bg .btn-whatsapp:active,
.contact-bg .btn-whatsapp:visited {
  background-color: #30847c;
  border: none;
  border-radius: 25px;
  font-family: NexaHeavy;
  color: white;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 1px;
  width: 160px;
}
.contact-bg .btn-telegram,
.contact-bg .btn-telegram:hover,
.contact-bg .btn-telegram:active,
.contact-bg .btn-telegram:visited {
  background-color: #2aa8dc;
  border: none;
  border-radius: 25px;
  font-family: NexaHeavy;
  color: white;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 1px;
  width: 160px;
}
.contact-bg .con-img {
  width: 42px;
  height: 39px;
}
.contact-bg .contact-number {
  font-size: 1.2rem;
}
.contact-bg .contact-number b {
  font-family: NexaBold;
  font-weight: bold;
}
.contact-bg ::-webkit-input-placeholder {
  font-size: 15px !important;
  font-smooth: 2em;
}
.contact-bg .row .col-lg-6,
.contact-bg .row .col-md-6 {
  padding-bottom: 25px;
}
.contact-bg #contact_thanks {
  padding-bottom: 25px;
}

.contact-submit-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: -25px !important;
}
.contact-submit-row .contact-disclaimer {
  flex: 1;
  min-width: 200px;
}
.contact-submit-row .contact-disclaimer p {
  margin: 0;
  line-height: 1.4;
}

#contact-form-submit {
  padding-top: 25px;
}

#contact-submit {
  background-color: #1b3a4b;
  border-color: #1b3a4b;
}

.btn-primary {
  background-color: #1b3a4b !important;
  color: #f2f6fa !important;
}

.footer {
  z-index: 50;
  position: relative;
  background-color: #1b3a4b;
  color: white;
  width: 100%;
}
.footer .row {
  display: flex;
  align-items: center;
}
.footer .footer-info {
  padding: 20px 0 20px 10vw;
}
.footer .copyright {
  font-family: Nexabold;
  font-size: 0.75rem;
  font-weight: bold;
}
.footer .footer-text {
  font-size: 0.75rem;
  width: 80%;
  text-align: justify;
  margin-bottom: 0 !important;
}
.footer .footer-text a {
  text-decoration: none;
  font-size: 0.75rem;
  color: #ff4040;
  font-weight: bold;
}
.footer .footer-text a:hover {
  color: #f2f6fa;
}
.footer .right {
  background: linear-gradient(to right, #fff, #bfbfbf);
  border-top-left-radius: 130px;
  min-height: 153px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .right .sm-background ul {
  display: inline-flex;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer .right .sm-background ul li {
  padding-left: 5px;
}
.footer .right .sm-background ul li a img {
  transition: 0.5s;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.footer .right .sm-background li a:hover img {
  transform: rotate(50deg);
}

/*
**********************************************
			WORDPRESS DEFAULTS
**********************************************
*/
.post_container .entry-title {
  text-align: center;
}
.post_container .wp-block-pullquote {
  padding: 2em 0;
}

/* Default styling for Quote blocks */
.wp-block-quote {
  color: #2e5c57; /* default text color */
}

/* Optional: tweak appearance */
.wp-block-quote {
  border-left: 4px solid #c0392b;
  padding-left: 1em;
  margin: 1.5em 0;
}

/*
**********************************************
			endof WORDPRESS DEFAULTS
**********************************************
*/
/*
**********************************************
			MEDIA QUERIES
**********************************************
*/
@media (max-width: 575px) {
  body {
    background-color: #f1f6fa !important;
  }
  .hamburger-menu-items {
    left: 30vw !important;
  }
  .topbar {
    min-height: unset;
    padding: 10px 10vw;
  }
  .topbar .header-container .row {
    align-items: center;
  }
  .topbar .header-container .logo {
    position: relative;
    margin-left: unset;
  }
  .topbar .header-container .logo img {
    width: 140px;
  }
  .topbar .header-container .flag {
    top: 25px;
  }
  .topbar .header-container .flag ul li img {
    width: 35px;
  }
  .topbar .header-container .header-spacer {
    top: 25px;
    height: 24px;
  }
  .topbar .header-container .hamburger-menus {
    display: unset !important;
  }
  .topbar .header-container .carousel-menu-mobile,
  .topbar .header-container .sidebar {
    left: 30vw !important;
  }
  .topbar .header-container .menu-bar {
    display: none;
  }
  .topbar .header-container .menu-display {
    z-index: 1000;
  }
  .container {
    margin-bottom: 0 !important;
    min-height: unset !important;
  }
  .home .content-area {
    display: none;
  }
  .home .content-area-mobile {
    display: unset !important;
  }
  .home .content-area-mobile .col {
    padding: 0;
  }
  .home .content-area-mobile .row {
    margin-left: 0;
    margin-right: 0;
  }
  .home .content-area-mobile .company-intro-mobile {
    position: relative;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile {
    background-image: url("../images/banner-background-cropped.jpg");
    min-height: 375px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile {
    padding-top: 60px;
    padding-left: 10vw;
    position: relative;
    z-index: 50;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile .title {
    font-size: 1.3rem !important;
    margin-bottom: 5px;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile .sub-title {
    font-size: 1rem;
    color: #2e5c57;
    line-height: 0.9;
    font-family: "NexaBook";
    margin-bottom: 10px;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile p {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    width: 85%;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile::before,
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile::after {
    content: "";
    position: absolute;
    top: 45px;
    width: 100%; /* Adjust width as needed */
    min-height: 80%;
    z-index: 5; /* Ensure it appears above the background */
    background: red;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile::before {
    background: rgba(255, 245, 50, 0.8); /* Yellow overlay */
    width: 90vw;
  }
  .home .content-area-mobile .company-intro-mobile .banner-right-mobile::after {
    right: 0;
    background: rgba(0, 120, 150, 0); /* Blue overlay */
    width: 10vw;
  }
  .home .content-area-mobile .ceo-intro-mobile {
    padding: 20px 10vw;
  }
  .home .content-area-mobile .ceo-intro-mobile .intro-text {
    font-size: 0.9rem;
    margin-top: 10px;
    line-height: 1.3;
  }
  .home .content-area-mobile .ceo-intro-mobile .sub-title {
    color: #2e5c57;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: "NexaBook";
  }
  .home .content-area-mobile .ceo-intro-mobile .line {
    border: 1px solid #c0392b;
    width: 80px;
    height: 5px;
    background-color: #c0392b;
  }
  /*FEATURE SECTION max 575px*/
  .company-feature {
    display: none !important;
  }
  .company-feature-mobile {
    display: unset !important;
    height: 367px;
  }
  .company-feature-mobile .feature-image-mobile {
    background-image: var(--feature-image);
    margin-bottom: 15px;
    margin-right: 10vw;
    background-size: cover;
    height: 55vw;
    border-top-right-radius: 20px;
  }
  .company-feature-mobile .feature-intro-mobile {
    margin: 0 0 70px 0 !important;
    padding: 15px 10vw;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-title-mobile {
    display: unset !important;
    font-family: "NexaHeavy";
    font-size: 1.2rem;
    color: #1b3a4b;
    margin-right: auto;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-subtitle-mobile {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2e5c57;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-para-mobile {
    font-size: 0.9rem;
    font-weight: lighter;
    flex: 1;
    overflow: hidden;
    min-height: 170px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-pages-mobile {
    position: absolute;
    top: 15px;
    right: 10vw;
    display: flex;
    gap: 10px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-dot {
    width: 10px;
    height: 10px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-help-mobile {
    margin-top: 10px;
    font-size: 10px;
    color: #c0c0c0;
  }
  /*endof FEATURE SECTION max 575px*/
  /*FOOTER SECTION max 575px*/
  .footer {
    display: none;
  }
  .footer-mobile {
    display: unset !important;
    color: #005a7c;
    width: 100%;
  }
  .footer-mobile .footer-mobile-margin .sm-background {
    width: auto;
    margin-top: -25px;
    position: absolute;
  }
  .footer-mobile .footer-mobile-margin .sm-background ul {
    list-style: none;
    display: flex;
    padding-left: 0 !important;
  }
  .footer-mobile .footer-mobile-margin .sm-background ul li {
    padding: 0 5px 0 5px;
  }
  .footer-mobile .footer-mobile-margin .sm-background ul li img {
    width: 50px;
    border-radius: 25px;
  }
  .footer-mobile .footer-info {
    text-align: center;
    height: auto;
    font-size: 0.9rem;
    padding: 10px 10vw;
    background: linear-gradient(to right, #1b3a4b, #2e5c57);
  }
  .footer-mobile .footer-info .copyright {
    font-family: Nexabold;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
    color: #f2f6fa;
  }
  .footer-mobile .footer-info .footer-text {
    text-align: center;
    color: #f2f6fa;
  }
  .footer-mobile a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #ff4040;
    font-weight: bold;
  }
  .footer-mobile a:hover {
    color: #f2f6fa;
  }
  /*endof FOOTER SECTION  max 575px*/
}
@media (min-width: 576px) and (max-width: 767px) {
  body {
    background-color: #f1f6fa !important;
  }
  .topbar {
    min-height: unset;
    padding: 10px 10vw;
  }
  .topbar .header-container .row {
    align-items: center;
  }
  .topbar .header-container .logo img {
    width: 180px;
  }
  .topbar .header-container .flag {
    top: 26px;
    background: unset;
    padding: 0;
  }
  .topbar .header-container .flag ul li img {
    width: 45px;
  }
  .topbar .header-container .header-spacer {
    top: 26px;
    height: 31px;
  }
  .topbar .header-container .menu-bar {
    display: none;
  }
  .topbar .header-container .hamburger {
    display: unset !important;
  }
  .topbar .header-container .sidebar {
    left: 170px;
  }
  .ceo-intro .image-float {
    display: none;
  }
  .ceo-intro h1 {
    font-size: 2.2rem !important;
  }
  .ceo-intro .sub-title {
    font-size: 1.4rem !important;
    width: unset;
  }
  .ceo-intro p {
    width: 85%;
    font-size: 0.8rem;
  }
  .company-intro .banner-right-content h2 {
    font-size: 1.3rem !important;
    margin-bottom: 5px;
  }
  .company-intro .banner-right-content .sub-title {
    font-size: 1rem !important;
    color: #2e5c57;
    margin-top: 7px;
    line-height: 0.9;
    margin-bottom: 5px;
  }
  .company-intro .banner-right-content p {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    width: 90%;
  }
  .content-area-mobile {
    height: 450px;
  }
  .content-area-mobile .company-intro-mobile {
    position: relative;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile {
    background-image: url("../images/banner-background-cropped.jpg");
    min-height: 430px;
    background-size: cover;
    background-position: top right;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile {
    padding-top: 40px;
    position: relative;
    z-index: 50;
    width: 80%;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile .title {
    font-size: 1.2rem;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile .sub-title {
    font-size: 0.85rem;
    color: #05486b;
    margin-top: -10px;
    margin-bottom: 8px;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile .banner-right-content-mobile p {
    font-size: 0.8rem;
    font-weight: 600;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile::before,
  .content-area-mobile .company-intro-mobile .banner-right-mobile::after {
    content: "";
    position: absolute;
    top: 45px;
    width: 100%; /* Adjust width as needed */
    min-height: 80%;
    z-index: 5; /* Ensure it appears above the background */
    background: red;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile::before {
    background: rgba(255, 245, 50, 0.8); /* Yellow overlay */
    width: 80%;
  }
  .content-area-mobile .company-intro-mobile .banner-right-mobile::after {
    right: 0;
    background: rgba(0, 120, 150, 0); /* Blue overlay */
    width: 10vw;
  }
  .content-area-mobile .ceo-intro-mobile {
    padding: 0 10vw 0 10vw;
  }
  .content-area-mobile .ceo-intro-mobile .intro-text {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  .content-area-mobile .banner-left-mobile img {
    height: 275px;
    float: right;
  }
  .content-area-mobile .banner-left-mobile .title {
    margin-bottom: 0;
    padding-left: 10vw;
  }
  .content-area-mobile .banner-left-mobile .sub-title {
    color: #2e5c57;
    font-size: 20px;
    padding-left: 10vw;
  }
  .content-area-mobile .banner-left-mobile .line {
    border: 1px solid #c0392b;
    width: 100px;
    height: 5px;
    margin-left: 10vw;
    background-color: #c0392b;
  }
  /*FEATURE SECTION 576-767*/
  .company-feature {
    display: none !important;
  }
  .company-feature-mobile {
    display: unset !important;
    margin-top: 100px;
  }
  .company-feature-mobile .feature-image-mobile {
    display: block;
    background-image: var(--feature-image);
    margin-bottom: 15px;
    height: 55vw;
    background-size: cover;
    margin-right: 10vw;
    border-top-right-radius: 30px;
  }
  .company-feature-mobile .feature-intro-mobile {
    padding: 10px 10vw;
    margin-bottom: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-title-mobile {
    display: unset !important;
    font-size: 25px;
    font-family: "NexaHeavy";
    color: #1b3a4b;
    margin-right: auto;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-subtitle-mobile {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2e5c57;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-para-mobile {
    font-size: 16px;
    font-weight: lighter;
    flex: 1;
    overflow: hidden;
    max-height: 180px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-pages-mobile {
    position: absolute;
    top: 10px;
    right: 10vw;
    display: flex;
    gap: 15px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-pages-mobile a {
    color: #000;
    text-decoration: none;
  }
  .company-feature-mobile .feature-intro-mobile .feature-intro-pages-mobile a:hover {
    color: grey;
  }
  .company-feature-mobile .feature-intro-mobile .feature-dot {
    width: 11px;
    height: 11px;
  }
  .company-feature-mobile .feature-intro-mobile .feature-help-mobile {
    margin-top: 10px;
    font-size: 10px;
    color: #c0c0c0;
  }
  /*endof FEATURE SECTION 576-767*/
  /*Footer section of 576-767*/
  .footer {
    display: none;
  }
  .footer-mobile {
    display: unset !important;
    color: #005a7c;
    width: 100%;
    padding: 20px 0 0 0;
  }
  .footer-mobile .sm-background {
    width: auto;
    margin-top: -30px;
    position: absolute;
  }
  .footer-mobile .sm-background ul {
    list-style: none;
    display: flex;
    padding-left: 0 !important;
  }
  .footer-mobile .sm-background ul li {
    padding: 0 5px 0 5px;
  }
  .footer-mobile .sm-background ul li img {
    width: 60px;
    border-radius: 25px;
  }
  .footer-mobile .footer-info {
    margin: 0 !important;
    height: auto;
    text-align: center;
    font-size: 0.85rem;
    padding: 0 10vw;
    background: linear-gradient(to right, #1b3a4b, #2e5c57);
  }
  .footer-mobile .footer-info .copyright {
    font-family: Nexabold;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    margin-top: 35px;
    color: #f2f6fa;
  }
  .footer-mobile .footer-info .footer-text {
    font-size: 0.75rem;
    text-align: center;
    color: #f2f6fa;
  }
  .footer-mobile a {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    color: #ff4040;
  }
  .footer-mobile a:hover {
    color: #f2f6fa;
  }
  /*endof Footer section of 576-767*/
}
@media (min-width: 768px) and (max-width: 991px) {
  .topbar {
    padding: 0 10vw;
    height: auto;
  }
  .topbar .logo img {
    width: 200px;
  }
  .topbar .flag img {
    width: 45px;
  }
  .topbar .header-spacer {
    height: 31px;
  }
  .menu-bar ul li {
    font-size: 18px;
    padding-right: 15px;
  }
  .menu-bar ul li:last-child {
    padding-right: 0px;
  }
  .ceo-intro .image-float {
    display: none;
  }
  .ceo-intro p {
    width: 95%;
  }
  .banner-right {
    padding-top: 45px;
  }
  .banner-right-content h2 {
    font-size: 2rem !important;
  }
  .banner-right-content .sub-title {
    font-size: 1.2rem !important;
    letter-spacing: 0px;
  }
  .banner-right-content p {
    line-height: 1.3 !important;
  }
  .banner-right::before,
  .banner-right::after {
    top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 849px) {
  .company-feature .feature-intro .feature-intro-para {
    max-height: 270px;
  }
}
@media (min-width: 992px) and (max-width: 1050px) {
  .ceo-intro h1 {
    font-size: 2rem !important;
  }
  .ceo-intro .sub-title {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .topbar .logo img {
    width: 245px;
  }
  .topbar .menu-bar ul li {
    font-size: 21px;
  }
}

/*# sourceMappingURL=style.css.map */
