:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --accent-color: #238d30; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --hover-color: #238d30;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: var(--accent-color);
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

/* Overlay */
.overlay {
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

.popup-card {
  transform: scale(0.95);
  transition: transform 0.4s ease;
}
.overlay.show .popup-card {
  transform: scale(1);
}

/******************************
	#page title
******************************/
.page-title {
  background: url("../images/page-title.jpg") center center/cover no-repeat
    local;
  width: 100%;
  height: 20vh;
  position: relative;
  text-align: center;
}

.page-title .container {
  height: 100%;
  display: table;
}

.page-title .container > .row {
  vertical-align: middle;
  display: table-cell;
}

.page-title h1 {
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 991px) {
  .page-title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

@media (max-width: 767px) {
  .page-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

section {
  padding: 60px 10px;
  overflow: hidden;
}

.section-bg,
.services .icon-box {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  color: #238d30;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #238d30;
  margin: 4px 10px;
}

.section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #238d30;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #556270;
}

@media (max-width: 992px) {
  .section-title h2::after {
    content: "";
    width: 40px;
    height: 1px;
    display: inline-block;
    background: #238d30;
    margin: 4px 10px;
  }

  .section-title h2::before {
    content: "";
    width: 40px;
    height: 1px;
    display: inline-block;
    background: #238d30;
    margin: 4px 10px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--contrast-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.linkedin {
  position: fixed;
  z-index: 996;
  opacity: 1;
  right: 15px;
  bottom: 150px;
  background: #1469c7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.linkedin i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.whatsapp {
  position: fixed;
  z-index: 996;
  opacity: 1;
  right: 15px;
  bottom: 60px;
  background: #31b51f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.call {
  position: fixed;
  z-index: 996;
  opacity: 1;
  right: 15px;
  bottom: 105px;
  background: #15135b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.call i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.whatsapp i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #f0fbff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #556270;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #556270;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--accent-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--accent-color);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #e1444d;
}

.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: 15px;
  text-transform: none;
  font-weight: 400;
}

.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: var(--accent-color);
}

.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;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .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(63, 73, 83, 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: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--accent-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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;
}

.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: var(--accent-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/

.home {
  width: 100%;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-2 {
  width: 100%;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  overflow: hidden;
  z-index: 1;
  filter: brightness(0.4);
}

.home video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  object-fit: cover;
  overflow: hidden;
  z-index: 1;
  filter: brightness(0.4);
}

.home .container-fluid,
.home-2 .container-fluid {
  position: absolute;
  z-index: 1;
}

.home-2 .container-fluid h1 {
  color: #fff;
  margin-left: 300px;
  font-weight: bolder;
  text-transform: uppercase;
}

.home .container-fluid h1 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.home .container-fluid .button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .container-fluid a {
  background-color: #238d30;
  color: white;
  font-size: 18px;
  padding: 10px 40px;
}

.home .container-fluid a:hover {
  background-color: #000000;
  color: white;
}

@media (max-width: 991px) {
  .home .container-fluid h1 {
    font-size: 28px;
  }
  .home-2 .container-fluid h1 {
    margin-left: 30px;
  }
}

.cta {
  background-color: #238d30;
  padding: 40px 10px;
}

.cta .button a {
  border: 3px solid #fff;
  color: #fff;
  font-size: 18px;
  padding: 10px 30px;
}

.cta .button a:hover {
  background-color: #000;
}

/*--------------------------------------------------------------
#0.8	industry-we-serve
--------------------------------------------------------------*/

.indusrty-we-serve {
  background: url(../images/work2_overlay.webp) center center/cover no-repeat
    local;
  background-color: #f1f1f1;
}

/*--------------------------------------------------------------
#0.8	our-products-section
--------------------------------------------------------------*/
.our-products {
  background: url(../images/work2_overlay.webp) center center/cover no-repeat
    local;
  background-color: #f1f1f1;
  padding-bottom: 70px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  background-color: #fff;
}

.testimonials .testimonial-item {
  background-color: var(--background-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 10px;
  margin: 0px 15px;
  border-radius: 10px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1b1b1b;
  float: left;
  width: 44px;
  height: 44px;
  background: #edeff1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #556270;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--accent-color);
  color: #fff;
}

.contact {
  width: 100%;
  background: #fff;
}

.contact .form-group {
  padding-bottom: 8px;
}

.contact .error-message {
  display: none;
  color: #fff;
  background: #ff0000;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .error-message br + br {
  margin-top: 25px;
}

.contact .sent-message {
  display: none;
  color: #fff;
  background: var(--accent-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact input,
.contact textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #238d30;
}

.contact input {
  height: 44px;
}

.contact textarea {
  padding: 10px 12px;
}

.contact button[type="submit"] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #f7f9fb;
  background-image: url("../images/logo/dots.png");
  background-size: cover;
  position: relative;
  font-size: 15px;
  width: 100%;
  overflow: hidden;
}

#footer .footer-top {
  background-color: #f7f9fb;
  background-image: url("../images/logo/dots.png");
  background-size: cover;
  position: relative;
  font-size: 15px;
  width: 100%;
  overflow: hidden;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-color);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: var(--default-color);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  position: relative;
  padding-bottom: 12px;
}

#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 i {
  padding-right: 2px;
  color: var(--default-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--default-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--default-color);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

#footer .credits a {
  color: var(--default-color);
  transition: 0.3s;
  font-weight: 600;
}

#footer .credits a:hover {
  color: var(--accent-color);
}

/*Hover Fall Effect*/
.mission .row .col .card {
  width: 100%;
  padding: 55px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: #cacaca98;
}
.fall-item .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}
.fall-item .icon-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fall-item .icon-content .bi {
  font-size: 80px;
  color: var(--accent-color);
}

.fall-item .icon-content p {
  color: var(--default-color);
  font-size: 20px;
  font-weight: bolder;
  text-transform: uppercase;
}

.fall-effect .mask p {
  position: relative;
  color: #fff;
  text-align: justify;
  padding: 30px;
}

.fall-effect .mask {
  background-color: var(--accent-color);
  top: -200px;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0.2s;
  -moz-transition: all 0.2s ease-out 0.2s;
  -o-transition: all 0.2s ease-out 0.2s;
  -ms-transition: all 0.2s ease-out 0.2s;
  transition: all 0.2s ease-out 0.2s;
}

.fall-effect .mask p {
  color: #ffffff;
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  -o-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-300px);
  -webkit-transition: all 0.1s ease-in-out 0.1s;
  -moz-transition: all 0.1s ease-in-out 0.1s;
  -o-transition: all 0.1s ease-in-out 0.1s;
  -ms-transition: all 0.1s ease-in-out 0.1s;
  transition: all 0.1s ease-in-out 0.1s;
}

.fall-effect:hover .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  top: 0px;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}

.fall-effect:hover p {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(60px);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.products .container .card {
  border-radius: 0;
}

.products .container .card .card-body {
  padding: 0;
}

.products .container .card .card-body .card-title {
  padding: 12px;
  color: var(--default-color);
  background-color: #d8eec0;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  margin: 0;
}

.products .container .card .card-body .card-content {
  padding: 10px;
  font-weight: bolder;
  font-size: 14px;
  margin: 0;
  border-bottom: 1px solid #000;
}

.products .container .card .card-body .card-content .bx {
  font-weight: bolder;
}

.mapping-container {
  position: relative;
  width: 100%;
}

.mapping-container img {
  width: 100%;
  height: auto;
  display: block;
}

.dot {
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: red;
  border-radius: 50%;
  cursor: pointer;
}

/* Tooltip styling */
.dot:hover::after {
  content: attr(data-country);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
}

/* Responsive positioning for demo - update these values based on your image */
.dot.india {
  top: 43.4%;
  left: 64.7%;
}
.dot.denmark {
  top: 9%;
  left: 31.9%;
}
.dot.alaskausa {
  top: 12.9%;
  left: 4.2%;
}
.dot.canada {
  top: 20.7%;
  left: 13.6%;
}
.dot.usa {
  top: 31.8%;
  left: 11.8%;
}
.dot.mexico {
  top: 41.2%;
  left: 8.2%;
}
.dot.brazil {
  top: 64.24%;
  left: 23.2%;
}
.dot.australia {
  top: 73.24%;
  left: 83.2%;
}
.dot.tanzania {
  top: 61.2%;
  left: 51.8%;
}
.dot.ethiopia {
  top: 50.7%;
  left: 52.85%;
}
.dot.dubai {
  top: 39.8%;
  left: 57.3%;
}
.dot.lanka {
  top: 51.5%;
  left: 66.9%;
}
.dot.thailand {
  top: 46.3%;
  left: 73.4%;
}
.dot.myanmar {
  top: 42.4%;
  left: 71%;
}
.dot.bhutan {
  top: 37.5%;
  left: 69.9%;
}
.dot.korea {
  top: 32.2%;
  left: 80%;
}
.dot.belgium {
  top: 24.2%;
  left: 41.9%;
}
.dot.colombia {
  top: 54.4%;
  left: 16.34%;
}
.dot.russia {
  top: 14%;
  left: 64.66%;
}
.dot.kenya {
  top: 56.3%;
  left: 52.8%;
}
.dot.uk {
  top: 20.5%;
  left: 40.1%;
}
.dot.china {
  top: 34.2%;
  left: 73.4%;
}
.dot.nepal {
  top: 37.5%;
  left: 67.55%;
}
.dot.oman {
  top: 45.6%;
  left: 57.7%;
}
.dot.qatar {
  top: 38.3%;
  left: 59.23%;
}
.dot.saudi {
  top: 41.2%;
  left: 54.72%;
}
.dot.uganda {
  top: 55.5%;
  left: 50.8%;
}
.dot.southafrica {
  top: 77.8%;
  left: 47.6%;
}
.dot.nigeria {
  top: 50.5%;
  left: 42.7%;
}

@media (max-width: 768px) {
  .dot {
    width: 5px;
    height: 5px;
  }

  .dot:hover::after {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* Page Header career */
.page-header-career {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("../images/careers_department.webp") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
}

.page-header-career h1 {
  font-size: 2.8rem;
  color: white;
  font-weight: bolder;
  margin-bottom: 15px;
}

/* Why Join Us */
.benefits {
  border: 0;
  margin: 0;
}

.benefits p {
  border: 1px solid var(--accent-color);
  padding: 28px;
  margin: 0;
  border-radius: 8px;
  font-weight: 500;
}
