/* Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--black);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
b,
i,
u,
ul,
ol,
li,
span {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* Text Stylings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}
h1 {
  color: var(--white);
  font-weight: 800;
  font-size: 45px;
  letter-spacing: 0.5px;
}
h2 {
  font-weight: 800;
  font-size: 38px;
  color: var(--primary);
}
h3 {
  font-weight: 700;
  font-size: 22px;
}
h4 {
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}
h5 {
  font-weight: 700;
  font-size: 18px;
  color: var(--heading);
}
p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.8px;
}
.section {
  padding: 110px 0;
}
/* Navabar */
nav {
  padding: 15px 0 !important; /* Important is applied due to the default bootstrap styling. */
  background-color: var(--white);
}
.navbar-brand {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.25rem; /* same as bootstrap font */
}
nav ul li a {
  font-family: var(--font-family);
  font-size: 15px;
  color: var(
    --black
  ) !important; /* Important is applied due to the default bootstrap styling. */
  font-weight: 600 !important;
  padding-left: 0 !important; /* Important is applied due to the default bootstrap styling as it was creating space for the active underline */
  padding-right: 0 !important;
}
nav ul li a.active {
  border-bottom: 1px solid var(--primary);
}
.nav-btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  background-color: var(--white);
  border: 1px solid var(--btn-border);
  padding: 10px 20px;
  transition: all 0.55s ease-in-out;
  border-radius: 4px;
}
.nav-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
}

/* Preloader */
#pre-loader1 {
  background: var(--primary) url(../../images/pre-loader/loading.gif) no-repeat
    center center;
  background-size: 25%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 10000 !important;
}
/* Scroll-Top Button */
#progress {
  background-color: var(--primary);
  position: fixed;
  bottom: 20px;
  right: 10px;
  cursor: pointer;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  z-index: 100;
}
#progress a {
  display: block;
  height: calc(100% - 12px);
  width: calc(100% - 12px);
  background-color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
#progress i {
  font-size: 40px;
  color: var(--primary);
  font-weight: 900;
}
/* Scroll slider Animation*/
.scroll-watcher {
  height: 5px;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  width: 100%;
  scale: 0 1;
  transform-origin: left;
  animation: scroll-watcher linear;
  animation-timeline: scroll();
}

@keyframes scroll-watcher {
  to {
    scale: 1 1;
  }
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

/* Home page */
/* Hero Section */
.hero {
  background-color: var(--primary);
}
.hero-home {
  padding-top: 35px;
}
.hero-left {
  padding-top: 50px;
  /* padding-bottom: 40px; */ /* unable to apply as the image floats on the top */
}
.hero-left h1 {
  width: 80%; /* width reduced as the content was divided into two lines due to typed JS */
  font-size: 32px;
}
.hero-home p {
  color: var(--white);
}
.hero-right img {
  width: 500px;
}
/* .hero-right {
  text-align: right;
} */
/* our best services section  */
.our-services {
  background-color: var(--bg);
}
.our-services .services-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.our-services .services-heading button {
  background: var(--primary);
  color: var(--white);
  transition: 0.5s ease-in-out;
}
.our-services .services-heading button:hover {
  background: var(--white);
  color: var(--primary);
}
/* our best services Carousel */
/* .carousel-home */
.carousel-card {
  background-color: var(--white);
  border-radius: 5px;
  padding: 25px;
  transition: all 0.45s ease-in;
  cursor: pointer;
  height: 480px;
  position: relative;
}
.carousel-card img {
  /* Important is applied here due to the owl carousel default image size */
  transition: all 0.45s ease-in;
  height: 240px;
  object-fit: cover;
  width: 100%;
}
.carousel-card a {
  font-family: var(--font3);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  transition: all 0.45s ease-in;
  position: absolute;
  bottom: 25px;
}
.carousel-card p {
  font-size: 15px;
  transition: all 0.45s ease-in;
  letter-spacing: 0.4px;
}
.carousel-card h5 {
  transition: all 0.45s ease-in;
}
/* .carousel-card:hover {
  background-color: var(--primary);
}
.carousel-card:hover h5,
.carousel-card:hover p,
.carousel-card:hover a {
  color: var(--white);
} */
/* .dubai-card .service-logo2 {
  display: none !important; 
}
.dubai-card:hover .service-logo2 {
  display: block !important;
}
.dubai-card:hover .service-logo {
  display: none !important;
} */
/* Owl Carousel - Custom Navigation */
.our-services .owl-nav {
  position: absolute;
  top: -45%;
  right: 2%;
}
.about-carousel .owl-next {
  position: absolute;
  top: 45%;
  right: 0;
}
.about-carousel .owl-prev {
  position: absolute;
  top: 45%;
  left: 0;
}
.owl-prev,
.owl-next {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary) !important;
  transition: all 0.25s ease-in-out;
}
.owl-prev i,
.owl-next i {
  color: var(--primary);
  opacity: 0.6;
}
.owl-next {
  margin-left: 10px;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: var(--primary) !important;
}
.owl-prev:hover i,
.owl-next:hover i {
  color: var(--white);
}
/* Why Choose Us ?  section */
.why-choose-us {
  background-color: var(--primary);
  position: relative;
  padding: 90px 0px;
}
.why-choose-heading h2 {
  text-align: center;
  margin-bottom: 70px;
  color: var(--white);
  font-size: 32px;
}
.why-choose-col h3 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 10px;
}
.why-choose-col p {
  color: var(--white);
  font-size: 16px !important;
}
.why-choose-col i {
  color: var(--white);
  font-weight: 600;
  font-size: 32px;
}
.why-choose-col {
  border-left: 1px solid var(--border-right);
  width: 25%; /* added now */
  text-align: center;
}
.why-head {
  padding-bottom: 10px;
}
.line-divider {
  width: 19%;
  height: 10px;
  background-color: var(--bg2);
  position: absolute;
  top: 50%;
}

.why-pill {
  background-color: var(--bg2);
  height: 100%;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
  /* vertical-align: middle; */
  /* text-align: center; */
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Ready to Start Your Dream Career in Dubai? */
.ready-to-start {
  background-image: url(../../images/home/ready-to-start/ready-to-start-1.png);
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 90px 0px;
}
.ready-to-start button {
  background: var(--primary);
  color: var(--white);
  margin-top: 20px;
}
/* Footer */
footer {
  padding: 40px 0;
  background-color: var(--bg);
}
.footer-social {
  display: flex; /* is apllied as the contents were placing one below the other */
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.social-link {
  border: 1px solid var(--bg2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex; /* is applied to center the icons inside the div */
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.social-link i {
  color: var(--grey);
}
footer p {
  font-weight: 500;
  color: var(--grey);
  font-size: 15px;
}
/* Send a Message Modal */
.modal {
  left: -12%;
}
.modal-form {
  justify-content: space-between;
}
.modal .modal-image img {
  height: 525px;
  width: 430px;
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
}
.modal-form {
  width: 360px;
}
.form-head {
  display: flex;
  align-items: center;
}
.form-head button {
  margin-left: auto;
}
/* .modal .form-overlay{
  background-color: rgba(0, 0, 0, 0.762);
  border-bottom-left-radius: 0.5rem ;
  border-top-left-radius: 0.5rem  ;
  height: 100% ;
width: 50%; 
position: absolute;
top: 0;
} */
.modal .modal-addrs {
  position: absolute;
  top: 18%;
  left: 10%;
}
.modal .addrs-box {
  display: flex;
  gap: 20px;
}
.modal .addrs-box h3,
.modal .addrs-box i {
  color: var(--white);
}
.modal input,
.modal textarea,
.modal select {
  background-color: var(--bg);
  border-color: var(--p);
}
.form-head h3 {
  font-family: var(--second-family);
  color: var(--primary);
}
.modal label {
  font-family: var(--second-family);
  color: var(--p);
  margin-bottom: 0;
}
.modal .addrs-box p {
  color: var(--bg2);
}
.modal .addrs-box i {
  margin-top: 5px;
}
.btn-modl {
  background-color: var(--primary);
  color: var(--white);
  width: 100%;
}
.btn-modl:hover {
  border-color: var(--primary);
}
/* .modal .modal-image{
  background-image: url(.//../../images/form/form-bg.jpg) !important;
} */
.modal .modal-content {
  height: 525px !important; /* important applied to overwrite the default bootstrap style */
  width: 800px;
}
.modal-form-main {
  justify-content: space-between;
}
/* About us page */
/* Hero */
.hero-about-left {
  padding-top: 40px;
}
/* WHO WE ARE */
.who-we-are {
  background-color: var(--bg);
}
p {
  color: var(--p);
}
/* below styling is applied as the original image was smaller and the left content was updated later on */
.who-we-are-right {
  height: 100%; /* is applied to fit the content to the center */
  position: relative;
  align-content: center;
}
.dubai-tower {
  height: 460px;
  object-fit: cover;
}
.year-exp {
  width: fit-content;
  background-color: var(--primary);
  position: absolute;
  bottom: 17%;
  left: 57%;
  text-align: center;
  border-radius: 10px;
}
.year-exp h2,
.year-exp h6 {
  font-family: var(--second-family);
}
.year-exp h2 {
  font-weight: 700;
}
/* Core Values */
.core-values {
  background-color: var(--primary);
  position: relative;
}
.core-value-cards {
  position: absolute;
  top: 80%;
}
.core-value-cards .core-card {
  background-color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.45s ease-in-out;
}
.core-card p {
  height: 90px; /* is applied as the card size was changing at certain breakpoints */
  font-size: 15px;
  /* letter-spacing: 0.5px; */
}
.core-card img {
  width: 70px;
}
/* .core-card:hover {
  background-color: var(--primary);
  box-shadow: var(--black) 0px 2px 4px 0px, var(--white) 0px 2px 16px 0px;
}
.core-card:hover h5,
.core-card:hover p {
  color: var(--white);
} */
/* Core Values blank section */
.core-blank {
  background-color: var(--bg);
  padding-bottom: 150px !important;
}
/* 500+ Successful Job Placements */
.successfull-jobs {
  background-color: var(--bg2);
}
.jobs-box {
  text-align: center;
}
.jobs-box img {
  border-radius: 50%;
  width: 170px;
  height: 170px;
  object-fit: cover;
}
.jobs-box h3 {
  font-family: var(--third-family);
  color: var(--primary);
  font-weight: 800;
  font-size: 32px;
}
.jobs-box h3 i {
  color: var(--primary);
  /* font-weight: 800 !important; */
}
.jobs-box h6 {
  font-family: var(--second-family);
  color: var(--primary);
  font-weight: 600;
}
/* About us carousel */
.about-carousel {
  background-color: var(--bg);
}
.about-carousel-card {
  text-align: center;
}
.about-carousel-card img {
  width: 130px !important; /* important is applied to overwrite the default owl carousel image size*/
}
.about-carousel-card .quote-img {
  position: absolute;
  margin: auto;
  left: 65px;
  width: 40px !important;
  right: 0;
  top: 74px;
}
.about-carousel-card h6,
.about-carousel-card img {
  /* text-align: center; */
  margin-left: auto;
  margin-right: auto;
}

.about-carousel-card h6,
.about-carousel-card p {
  color: var(--primary);
  font-family: var(--second-family);
  line-height: 22px;
}
.about-carousel-card h6 {
  /* margin: 0 200px; */
  width: 50%; /* was applied as per the design */
}
.about-carousel-card p {
  font-size: 13px;
  font-weight: 500;
}
/* Services Page */
/* Tailored Service Packages  */
.service-packages {
  background-color: var(--bg);
}
.tailored-h2 {
  width: 55%;
}
.package {
  /* background-color: red; */
  border-radius: 10px;
  border: 1px solid var(--black);
  transition: all 0.45s ease-in;
}
.pack-1 {
  background-color: var(--white);
}
.pack-2 {
  background-color: var(--primary);
}
.pack-1 .standardP {
  background-color: var(--primary);
  color: var(--white);
}
.pack-2 .standardP {
  background-color: var(--white);
  color: var(--primary);
}
.package .standardP {
  width: fit-content; /* width is applied as the div was taking the full line width */
  border-radius: 50px;
  font-family: var(--second-family);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 15px;
  text-transform: uppercase;
}
.package h2 {
  font-weight: 600;
  font-size: 34px;
}
.pack-1 p {
  font-size: 13px;
  border-bottom: 1px solid var(--black);
}
.pack-2 p {
  font-size: 13px;
  border-bottom: 1px solid var(--white);
}
.package h6 {
  color: var(--primary);
}
.package i {
  opacity: 0.8;
  font-size: 20px;
}
.pack-1 i {
  color: var(--p);
}
.pack-2 i,
.pack-2 h2,
.pack-2 h6,
.pack-2 p,
.pack-2 ul li {
  color: var(--white);
}
.package ul {
  height: 400px;
}
.pack-1 ul li {
  color: var(--primary);
  font-size: 1rem; /* same as the default h6 */
}
.pack-2 ul li {
  font-size: 1rem; /* same as the default h6 */
}
.pack-li {
  display: flex;
  gap: 5px;
}
.pack-1 button {
  background-color: var(--primary);
  color: var(--white);
}
.pack-2 button {
  color: var(--primary);
}
.package button {
  border-radius: 150px;
  border: none;
  width: 100%; /* applied as per the design */
  padding: 12px 0;
  margin-top: 35px;
  font-size: 18px;
}
.package button span {
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 5px;
}
.pack-1:hover {
  background-color: var(--primary);
  /* box-shadow: var(--black) 5px 5px, var(--black) 10px 10px; */
}
.pack-1:hover li,
.pack-1:hover h6,
.pack-1:hover h2,
.pack-1:hover i,
.pack-1:hover p {
  color: var(--white);
  border-color: var(--white);
}
.pack-1:hover button {
  background-color: var(--white);
  color: var(--primary);
}
.pack-1:hover .standardP {
  background-color: var(--white);
  color: var(--primary);
}
/* FAQ - Accordion Section */
.accordion {
  --bs-accordion-bg: var(--primary) !important;
  --bs-accordion-btn-bg: var(--primary) !important;
  --bs-accordion-active-bg: var(--primary) !important;
  --bs-accordion-btn-active-color: var(--white) !important;
  --bs-accordion-btn-focus-box-shadow: none !important;
  --bs-accordion-btn-focus-border-color: unset !important;
  --bs-accordion-border-color: none !important;
  /* position: relative; */
}
.accordion button {
  color: var(
    --white
  ) !important; /* important is added as the color was changing to blue when active */
  padding-left: 40px;
  font-family: var(--second-family);
  font-size: 22px;
  font-weight: 300;
}
.accordion-body {
  color: var(--white);
  width: 60%; /* was appied as the content was overflowing */
  font-family: var(--second-family);
  font-weight: 300;
  padding-left: 40px;
  padding-top: 0; /* added this to remove the default bootstrap style */
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z'%3E%3C/path%3E%3C/svg%3E") !important; /* important is added to overwrite the default bootstrap accordion icon */
  position: absolute;
  left: 0;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 11H5V13H19V11Z'%3E%3C/path%3E%3C/svg%3E") !important; /* important is added to overwrite the default bootstrap accordion icon */
  position: absolute;
  left: 0;
}
/* FAQ below blank section */
.faq-blank {
  background-color: var(--bg);
}
/* Contact page */
.hero-contact h5 {
  font-weight: 500;
  letter-spacing: 0.5px;
}
.contact-p {
  padding-right: 80px;
}
.contact-info a {
  color: var(--white);
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 1px;
}
/* Form */
.contact-form {
  background-color: var(--white);
  border-radius: 5px;
  position: absolute;
  right: 0%;
  width: 100%;
  border: 0.5px solid var(--bg2);
}
.contact-form label {
  color: var(--p);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: var(--bg);
  resize: none;
}
.contact-form .btn-2 {
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--bg2);
  padding: 6px 0;
  color: var(--p);
  border-radius: 5px;
  transition: all 0.45s ease-in-out;
}
.contact-form button:hover {
  background-color: var(--primary);
  color: var(--white);
}
.form-check input {
  border: 1.5px solid var(--black);
}
.form-check label {
  color: var(--black);
  /* padding-right: 100px; */
  width: 90%; /* width is added as the padding made the form bigger in size from the right */
}
.form-check a {
  font-weight: 500;
  color: var(--black);
  border-bottom: 1.3px solid var(--black);
}
/* Map section */
.map-blank,
.map-sec {
  background-color: var(--bg);
}
.map-sec {
  padding-top: 145px;
}
.map-left {
  margin-right: 60px; /* styled as per the design */
}
.map-left iframe {
  /* heigth and width was applied to match the design */
  height: 700px;
  width: 100%;
}
.map-right {
  /* styled as per the design */
  height: 100%;
  align-content: center;
}
.map-right p {
  font-family: var(--third-family);
  color: var(--black);
}
.map-right h2 {
  color: var(--black);
  opacity: 0.8; /* styled as per the desgin */
}
.nav-contact .container {
  padding-right: 0; /* padding was removed for the nav & form alignment */
}
/* Responsive */
@media (max-width: 575px) {
  #pre-loader1 {
    background-size: 40% !important;
  }
  #joincommunityModal .modal-content {
    width: 100% !important;
  }
  .section {
    padding: 80px 0px;
  }
  .quote-box img {
    top: 27px !important;
  }
  /* Preloader */
  #pre-loader1 {
    background-size: 400px;
  }
  /* Text Styling */
  h2 {
    font-size: 25px;
  }
  p,
  .accordion button {
    font-size: 16px;
  }
  nav .nav-btn {
    width: 45%; /* applied the width as the button was occuping the whole screen on smaller screen */
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
  }
  /* Hero */
  .hero-left {
    padding-bottom: 35px;
    padding-top: 0; /* removed the padding as there was extra space on small screens */
  }
  .hero-left h1 {
    width: 100%;
  }
  /* our best services section  */
  .our-services h2 {
    padding-right: 0px;
  }
  /* our best services Carousel  */
  .carousel-card {
    text-align: center;
  }
  .carousel-card img {
    margin: auto;
  }
  .our-services .owl-nav,
  .about-carousel .owl-nav {
    position: absolute;
    top: unset;
    right: 35%;
    margin-top: 20px;
  }
  .about-carousel .owl-prev,
  .about-carousel .owl-next {
    position: static;
  }
  .about-carousel-card h6 {
    width: 100%;
  }
  /* Contact Page */
  .contact-info {
    flex-direction: column;
  }
  .top-banner-content button {
    margin-bottom: 10px !important;
  }
  .top-banner {
    padding: 90px 0px !important;
  }
  .services-heading {
    display: block !important;
  }
  .services-heading h2 {
    margin-bottom: 20px !important;
  }
  .navbar-nav.gap-5 {
    gap: 0rem !important;
  }
}
@media (max-width: 767px) {
  .year-exp {
    bottom: 7%;
    left: 51%;
  }
  /* Modal */
  .modal {
    left: 0%;
  }
  .modal .modal-content {
    width: 100% !important; /* important applied to overwrite the default bootstrap style */
  }
  .modal .modal-image {
    display: none;
  }
  /* .modal-form-main{
    display: block;
  } */
  .modal-form {
    width: 100%;
    padding-left: 20px;
  }
  .hero_left {
    order: 1 !important;
  }
  .hero_right {
    order: 2 !important;
  }
}
@media (max-width: 992px) {
  .qrcodeModal .modal-dialog {
    padding: 10px !important;
    margin: auto !important;
  }
  .transaction-image {
    display: none;
  }
  .qrcodeModal .modal-content {
    height: 100% !important;
  }
  .qrcodeModal .modal-form {
    padding-left: 0px !important;
    margin-top: 20px;
  }
  .qrcodeModal .modal-form form {
    height: 100% !important;
    overflow-y: hidden !important;
  }
  .core-value-cards.pe-4 {
    padding-right: 0px !important;
  }
  nav ul li a.active {
    border-bottom: none;
  }
  .nav-contact .container {
    padding-right: 0.75rem; /* padding was removed for the nav & form alignment on larger display. Now adding it back now as per bootstrap default size */
  }
  h2 {
    font-size: 30px;
  }
  .hero-right {
    text-align: center;
  }
  /* Why Choose Us ?  section */
  .why-choose-us {
    padding-top: 40px;
  }
  .why-col1 {
    order: 2;
  }
  .why-col2 {
    order: 1;
  }
  .line-divider {
    display: none !important;
  }
  /* .offset-lg-1{
    display: none;
  } */
  .why-choose-col {
    /* border-left: unset; */
    width: 100%;
  }
  .why-choose-col-left {
    flex-direction: column;
    gap: 50px;
    padding-left: 0;
  }
  .why-choose-main,
  .why-pill {
    border-top-left-radius: 0; /* removed the radius for smaller devices */
    border-bottom-left-radius: 0;
  }
  .why-pill {
    padding: 55px 0;
  }
  .why-choose-col {
    padding-left: 0; /* padding was applied on larger screen as per the design */
    text-align: center;
  }
  .why-head {
    justify-content: center;
  }
  /* Footer */
  .footer-logo {
    text-align: center;
  }
  /* ABout us page */
  /* WHO we are */
  .who-we-are-right {
    margin-top: 30px;
  }
  .core-card {
    text-align: center;
  }
  .core-card img {
    /* margin was applied as the text alignment was not working */
    margin-left: auto;
    margin-right: auto;
  }
  .core-card p {
    height: unset;
  }
  .core-value-cards {
    position: static;
    margin-top: 50px;
  }
  .core-blank {
    display: none;
  }
  .about-carousel {
    padding-bottom: 140px;
  }
  /* Service Page */
  /* Packages */
  .tailored-h2 {
    width: 100%;
  }
  .package ul {
    height: unset;
  }
  /* Accordion */
  .accordion-body {
    width: 100%;
  }
  .contact-form {
    position: static;
  }
  .contact-p {
    padding-right: 15px;
  }
  .form-check label {
    width: 100%;
  }
  .map-blank {
    display: none;
  }
  .map-sec {
    padding-top: 30px;
  }
  .map-left {
    margin-right: 0;
  }
  .top-banner .top-banner-content {
    width: unset !important;
  }
  .explore_form {
    width: unset !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  nav .nav-btn {
    width: 30%; /* applied the width as the button was occuping the whole screen on smaller screen */
    padding-left: 10px;
    text-align: start;
  }
  .hero-left h1 {
    font-size: 35px;
  }
  .year-exp {
    bottom: 7%;
    left: 66%;
  }
  .modal .modal-image img {
    width: 308px;
  }
  .modal .modal-content {
    width: 655px !important; /* important applied  to overwrite the default bootsrap style */
  }
  .modal .modal-addrs {
    left: 5%;
  }
  .modal-form {
    padding-left: 10px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  h5 {
    font-size: 17px;
  }
  p {
    font-size: 18px;
  }
  /* our best services section  */
  .our-services h2 {
    padding-right: 0px;
    /* padding was applied to the larger screen as per the design */
  }
  .carousel-card {
    padding: 15px 0 15px 15px; /* Padding is changed as some of the cards were changing its height */
  }
  .carousel-card p {
    font-size: 14px;
  }
  .our-services .owl-nav {
    position: absolute;
    top: unset;
    right: 0%;
    margin-top: 20px;
  }
  .about-carousel .owl-nav {
    position: absolute;
    top: unset;
    left: 42%;
    margin-top: 30px;
  }
  .about-carousel .owl-prev,
  .about-carousel .owl-next {
    position: static;
  }
  .about-carousel-card h6 {
    width: 100%;
  }
  /* About Page */
  /* Hero */
  .hero-about-left h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 35px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 18px;
  }
  .modal .modal-content {
    width: 762px !important; /* important applied  to overwrite the default bootsrap style */
  }
  .modal .modal-image img {
    width: 408px;
  }
  /* Home page */
  /* Hero */
  /* below styling added due to the hero image floating to the top */
  .hero-left {
    padding-top: 0;
  }
  .hero-left p {
    padding-right: 0;
  }
  /* our best services Carousel  */
  .our-services h2 {
    padding-right: 300px;
  }
  /* Below styling is applied due to the change in the carousel card size  */
  .carousel-card p,
  .carousel-card a {
    font-size: 13px;
  }
  .carousel-card img {
    width: 56px !important; /* important is applied to overwite the default owl carousel size */
  }
  /* About Page */
  /* Hero */
  .hero-about-left h2 {
    font-size: 33px;
  }
  .year-exp {
    bottom: 22%;
    left: 48%;
  }
  .tailored-h2 {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .why-pill h2 {
    font-size: 33px;
  }
}
@media (min-width: 1400px) {
  /* Home page */
  /* below styling is added to fix the alignment on larger screens */
  .hero-home .hero-left {
    height: 100%;
    align-content: center;
    padding-right: 50px;
    padding-top: 0;
  }
  .tailored-h2 {
    width: 45%; /* applied as per the design */
  }
  .who-we-are h2 {
    width: 85%; /* applied as per the design */
  }
}
/* top-banner */
.top-banner {
  background: linear-gradient(rgba(0, 17, 58, 0.7), rgba(0, 17, 58, 0.1)),
    url(../../images/home/hero-sec/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 630px;
  padding: 170px 0px;
}
.top-banner .top-banner-content {
  width: 800px;
  margin: auto;
}
.top-banner .top-banner-content p {
  color: var(--white);
  margin-bottom: 40px;
}
.top-banner .top-banner-content h2 {
  color: var(--white);
  font-weight: 800;
  font-size: 45px;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.top-banner-content button {
  padding: 15px 35px;
}
.explore_form {
  width: 900px;
  margin: auto;
  background: var(--white);
  padding: 50px;
  border-radius: 5px;
  box-shadow: 0px 2px 8px #ddd;
}
.explore-form {
  background: var(--bg);
}
.explore-form .form-control:focus {
  color: unset;
  background-color: unset;
  border-color: unset;
  outline: unset;
  box-shadow: unset;
}
.explore-form .form-select:focus {
  border-color: none;
  outline: unset;
  box-shadow: unset;
}
.quote-box {
  background: var(--white);
  padding: 70px 45px;
  border-radius: 15px;
  border-bottom: 2px solid var(--primary);
  text-align: center;
  position: relative;
}
.quote-box p {
  font-size: 24px;
}
.quote-box span {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.8px;
  color: var(--primary);
}
.about-read-more {
  padding: 15px 50px;
}
.quote-box img {
  position: absolute;
  left: 37px;
  top: 44px;
}
.core-values-heading {
  justify-content: space-between;
  align-items: center;
}
.position-dropdown input {
  width: 52% !important;
}
.active_highlight {
  background-color: var(--primary) !important;
}
.active_highlight.pack-2 {
  background-color: unset;
}
.active_highlight .standardP {
  background-color: var(--white);
  color: var(--primary);
}
.active_highlight i,
.active_highlight h2,
.active_highlight h6,
.active_highlight p,
.active_highlight ul li {
  color: var(--white);
}
.active_highlight p {
  font-size: 13px;
  border-bottom: 1px solid var(--white);
}
.active_highlight button {
  background: var(--white);
  color: var(--primary);
}
/* join our community popup */
#joincommunityModal.modal {
  left: unset;
}
#joincommunityModal .modal-content {
  width: 500px;
  margin: auto;
  text-align: center;
  height: unset !important;
}
.join-community-popup {
  padding: 40px;
}

.join-community-popup .footer-social {
  margin-top: 40px;
  gap: 20px;
}
.join-community-popup .social-link i {
  font-size: 20px;
}
.join-community-popup .social-link {
  width: 50px;
  height: 50px;
}
#joincommunityModal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 10px;
}
/* qrcode modal */
.qrcodeModal .modal-content {
  /* width: 600px !important; */
  /* overflow-y: auto; */
}
.qrcodeModal .modal-body {
  padding: 30px;
}
.qrcodeModal input,
.qrcodeModal textarea,
.qrcodeModal select {
  background: none;
  border: 1px solid #dee2e6;
}
.qrcodeModal input:focus {
  box-shadow: none;
}
.qr-code img {
  display: block;
  width: 180px;
}
.transaction-image img {
  height: 460px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  width: 320px;
  object-fit: cover;
}
.qrcodeModal .modal-form form {
  height: 418px;
  overflow-y: auto;
}
.qrcodeModal .modal-form .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 1;
  border-radius: 2px;
  font-size: 10px;
}
.qrcodeModal {
  left: unset !important;
}
.qrcodeModal .modal-dialog {
  margin: 40px auto;
  max-width: 800px;
}
.qrcodeModal .modal-form .btn-close:focus {
  box-shadow: none;
}
