/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  /*===== Colors =====*/
  --hue-color: 242;

  /* HSL Color Mode */
  --skin-color: hsl(131, 94%, 31%);
  --title-color: black;
  --text-color: #333;
  --body-color: #fff;
  --box-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 38%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 26%);

  /*===== Font and Typography =====*/
  --body-font: 'Poppins', sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --biggest-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: .875rem;
  --smaller-font-size: .813rem;

  /*===== Font Weight =====*/
  --font-medium: 1000;
  --font-bold: 600;

  /*===== Margenes Bottom =====*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*===== Z Index =====*/
  --z-fixed: 10;
  --z-modal: 100;
}

/* Responsive Typography */
@media screen and (max-width: 1024px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
  }
}

/*=============== BASE ===============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
name,
email,
phone,
message,
input {
  font-display: swap;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2 {
  color: var(--title-color);
  font-weight: var(--font-bold);
  font-display: swap;
}

h3 {
  color: #000;
  font-display: swap;
}

ul {
  list-style: none;
  font-display: swap;
}

a {
  text-decoration: none;
  font-display: swap;
}

img {
  max-width: 100%;
  height: auto;
}

button,
name,
email,
phone,
message,
input {
  border: none;
  outline: none;
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 6.5rem 0 0;
}

.section__title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-3);
}

.section__title::before {
  content: attr(data-heading);
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--skin-color);
}

/* #Popup
================================================== */
.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.popup img {
  max-width: 60%;
  max-height: 100%;
}

.popup picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button {
  position: absolute;
  top: 8rem;
  left: 19.5rem;
  font-size: 62px;
  color: #fff;
  cursor: pointer;
  z-index: 999;
}

/* Additional CSS for the smaller image (you can adjust styles as needed) */
/* @media (max-width: 525px) {
  .popup img {
    max-width: 60%;
  }
} */


/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(0);
  padding: 20px 15px;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.bg-light {
  background-color: #fff;
  transition: all 200ms linear;
}

.start-header.scroll-on {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
  height: 24px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar-brand img {
  height: 28px;
  width: auto;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  display: none;
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  background-color: #fff;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.navbar-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #212121 !important;
  font-weight: 500;
  transition: all 200ms linear;
}

.nav-item:hover .nav-link {
  color: #0caa24 !important;
}

.nav-item.active .nav-link {
  color: #777 !important;
}

.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}

.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #0caa24;
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
}

/*===== Home Section =====*/
.home {
  background: url('../img/buildingLogoMockkk.webp');
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

.home__container {
  margin-left: 2rem;
  position: relative;
  height: 100%;
}

.home__social {
  position: absolute;
  top: 7rem;
  left: 0;
  display: flex;
  align-items: center;
  column-gap: 3.5rem;
}

.home__social-follow {
  margin-left: 2em;
  font-weight: var(--font-medium);
  position: relative;
}

.home__social-follow::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--text-color);
  right: -45%;
  top: 50%;
}

.home__social-links {
  display: inline-flex;
  column-gap: 1rem;
}

.home__social-link {
  font-size: 1.08rem;
  color: var(--text-color);
  transition: .3s;
}

.home__social-link:hover {
  transform: translateY(.25rem);
}

.home__img {
  display: none;
}

.home__data {
  margin-top: 14rem;
  margin-left: 2rem;
}

.home__title {
  font-size: 5.5rem;
}

.home__subtitle {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: var(--mb-0-75);
  color: hsl(131deg 95.63% 22.82%);
}

.home__description {
  font-weight: 600;
  max-width: 450px;
  margin-bottom: var(--mb-2);
}

.home__description img {
  width: 60%;
  /* Set the desired width */
  height: 60%;
  /* Set the desired height */
}

.my__info {
  display: flex;
  column-gap: 1.8rem;
  position: absolute;
  left: 0;
  bottom: 1.8rem;
}

.info__item {
  display: flex;
  align-items: center;
}

.info__title,
.info__subtitle {
  color: black;
  font-size: var(--small-font-size);
}

.info__icon {
  font-size: 1.8rem;
  color: var(--skin-color);
  margin-right: var(--mb-0-75);
}

/*===== Buttons =====*/
.button {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--skin-color);
  color: #fff;
  padding: .75rem 1.4rem;
  border-radius: .25rem;
  font-weight: var(--font-medium);
  position: relative;
  z-index: 1;
}

.button__home {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--skin-color);
  color: #fff;
  padding: .75rem 1.4rem;
  border-radius: .25rem;
  font-weight: var(--font-medium);
  position: relative;
  z-index: 1;
}

.button::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #343a40;
  z-index: -1;
  transform-origin: center;
  transform: scale(0);
  border-radius: .25rem;
  transition: .3s;
}

.button:hover::after {
  transform: scale(1);
}

.button__icon {
  font-size: 1.25rem;
}

.button__home {
  padding: 0.5rem 2.3rem;
  /* Adjust the padding for smaller screens */
}

/*===== About Section =====*/

.about {
  background: #F8F6F4;
}

.about__container {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  align-items: center;
}

.about__img {
  width: 56 0px;
  border-radius: 0.5rem;
  justify-self: center;
}

.about__heading {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
}

.about__description {
  text-align: justify;
  padding-right: 6rem;
  margin-bottom: var(--mb-2);
}

.about__info {
  grid-template-columns: repeat(3, 140px);
  column-gap: .5rem;
  margin-bottom: var(--mb-3);
}

.about__box {
  text-align: center;
  border-radius: .25rem;
  padding: 1rem 1.25rem;
  background-color: var(--box-color);
}

.about__icon {
  font-size: 1.5rem;
  color: var(--skin-color);
  margin-bottom: var(--mb-0-75);
}

.about__title {
  font-size: var(--small-font-size);
}

.about__subtitle {
  font-size: var(--smaller-font-size);
}

/*===== Qualification Section =====*/
.qualification__container {
  grid-template-columns: repeat(2, 230px);
  column-gap: 10rem;
  justify-content: center;
}

.qualification__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2);
}

.timeline__item {
  width: 250px;
  /* Adjust the width as needed */
  margin: 0 2rem 1rem 1rem;
  /* Add some margin for spacing */
  box-sizing: border-box;
  text-align: center;
  /* Center-align the content */
  position: relative;
  /* Add position relative */
  padding-left: 20px;
  /* Create space for the line and dot */
}

.timeline__image {
  width: 100px;
  height: 100px;
  margin-left: 100px;
  /* Center the image horizontally */
  display: flex;
  justify-content: center;
  /* Center the image vertically */
  align-items: center;
  overflow: hidden;
  /* Hide overflowing image parts */
}

.timeline__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  /* Maintain aspect ratio and cover the entire space */
}


.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item::before {
  content: '';
  width: 1px;
  position: absolute;
  left: .48rem;
  top: 0;
  height: 100%;
  background-color: var(--skin-color);
}

.circle__dot {
  position: absolute;
  left: 0;
  top: 0;
  height: 1rem;
  width: 1rem;
  border: 2px solid var(--skin-color);
  border-radius: 50%;
  background-color: var(--skin-color);
  transition: .3s;
}

.timeline__item:hover .circle__dot {
  background-color: var(--body-color);
}

.timeline__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-25);
}

.tomeline__text {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-1);
}

.timeline__date {
  display: flex;
  align-items: center;
  column-gap: .4rem;
  font-size: var(--small-font-size);
  color: var(--skin-color);
}

/*===== Number Speak For Themselves =====*/
.running-number {
  background-color: #F8F6F4;
  padding: 50px;
  padding-top: 6.5rem;
}

.counter-up,
.counter-up2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contented {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box {

  /* Adjust the width of the box here */
  flex: calc(32% - 30px);
  /* Decreased width and added margin to create space between boxes */
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  text-align: center;
}

.icon {
  font-size: 48px;
  color: #555555;
}

.counter {
  font-size: 40px;
  font-weight: 500;
  color: #333333;
  margin: 10px 0;
}

.text {
  font-size: 18px;
  color: #777777;
}



/*===== Countries Section =====*/
.swiper {
  background: #fff;
  padding-top: 50px;
  width: 100%;
}

.swiper-slide {
  display: flex !important;
  height: 60% !important;
}

.swiper-container {
  display: flex;
  justify-content: center;
}

.swiper-wrapper {
  width: 100%;
  height: 35rem;
  display: flex;
  align-items: center;
}

.card {
  max-width: 300px;
  background-color: #fff;
  border-radius: 2em;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
  padding: 2em 1em;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 2em;
}

/* 
.swiper-slider:not(.swiper-slide-active) {
    filter: blur(1px);
} */

.card_image {
  width: 10em;
  height: 10em;
  border-radius: 50%;
  border: 5px solid #49a244;
  padding: 3px;
  margin-bottom: 2em;
}

.card_image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card_content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card_title {
  color: #111222;
  font-size: 1.5em;
  font-weight: 500;
  position: relative;
  top: .2em;
}

.card_name {
  color: #49a244;
}

.card_text {
  text-align: center;
  margin-top: 1.1em;
  margin: 1em 0;
}

.card_btn {
  background-color: #49a244;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: .5em;
  border-radius: .5em;
  margin-top: .5em;
  cursor: pointer;
}


/*===== Services Section =====*/

.services {
  background-color: #F8F6F4;
}

.services__container {
  grid-template-columns: repeat(3, 250px);
  justify-content: center;
  column-gap: 1.8rem;
}

.services__content {
  margin-top: 2em;
  position: relative;
  background-color: var(--box-color);
  padding: 6rem 0 2rem 2.5rem;
  border-radius: .75rem;
}



.services__title {
  color: var(--skin-color);
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
}

.services__button {
  color: #333;
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: .25rem;
  cursor: pointer;
}

.services__button-icon {
  font-size: 1rem;
  transition: .3s;
}

.services__button:hover .services__button-icon {
  transform: translateX(.25rem);
}

.services__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.services__modal-content {
  width: 500px;
  position: relative;
  background-color: var(--box-color);
  padding: 4.5rem 2.5rem 2.5rem;
  border-radius: .5rem;
}

.services__modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--skin-color);
  cursor: pointer;
}

.services__modal-title,
.services__modal-description {
  text-align: center;
}

.services__modal-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.services__modal-description {
  font-size: var(--small-font-size);
  padding: 0 3.5rem;
  margin-bottom: var(--mb-2);
}

.services__modal-services {
  row-gap: var(--mb-0-75);
}

.services__modal-service {
  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.services__modal-icon {
  color: var(--skin-color);
  font-size: 1.1rem;
}

.services__modal-info {
  font-size: var(--small-font-size);
}


.services__icon1 {
  display: block;
  font-size: 2.8rem;
  color: #1877F2;
  margin-bottom: var(--mb-1);
}

.services__icon2 {
  display: block;
  font-size: 2.8rem;
  color: #d62976;
  margin-bottom: var(--mb-1);
}

.services__icon3 {
  display: block;
  font-size: 2.8rem;
  color: #1D9BF0;
  margin-bottom: var(--mb-1);
}

.services__icon4 {
  display: block;
  font-size: 2.8rem;
  color: #25D366;
  margin-bottom: var(--mb-1);
}

.services__icon5 {
  display: block;
  font-size: 2.8rem;
  color: #FF0000;
  margin-bottom: var(--mb-1);
}

.services__icon6 {
  display: block;
  font-size: 2.8rem;
  color: #000;
  margin-bottom: var(--mb-1);
}



/* Active Modal*/
.active-modal {
  opacity: 1;
  visibility: visible;
}

/*===== Contact Section =====*/

.contact {
  padding-bottom: 6.5rem;
}

.contact.section {
  background-color: #F8F6F4;
}

.contact__container {
  grid-template-columns: 300px 340px;
  column-gap: 3rem;
  justify-content: center;
  align-items: center;
}

.contact__info {
  display: grid;
  padding: 10px;
  row-gap: 1rem;
}

.contact__card {
  background-color: var(--box-color);
  padding: 0.5rem;
  border-radius: .5rem;
  text-align: center;
}

.contact__card-icon {
  font-size: 1.8rem;
  color: var(--title-color);
  margin-bottom: var(--mb-0-25);
}

.contact__card-title,
.contact__card-data {
  font-size: var(--small-font-size);
}

.contact__card-title {
  font-weight: var(--font-medium);
}

.contact__card-data {
  display: block;
  margin-bottom: var(--mb-0-75);
}

.contact__button {
  color: var(--skin-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: .25rem;
  cursor: pointer;
}

.contact__button-icon {
  font-size: 1rem;
  transition: .3s;
}

.contact__button:hover .contact__button-icon {
  transform: translateX(.25rem);
}

.name__container,
.email__container,
.phone__container,
.message__container,
.input__container {
  position: relative;
  margin-top: .1rem;
  margin-bottom: 1.9rem;
}

.name,
.email,
.phone,
.message,
.input {
  width: 100%;
  border: 2px solid var(--text-color);
  background-color: transparent;
  padding: .6rem 1.2rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  letter-spacing: .5px;
  outline: none;
  border-radius: .50rem;
  transition: .3s;
}

textarea.name,
textarea.email,
textarea.phone,
textarea.message,
textarea.input {
  padding: .8rem 1.2rem;
  min-height: 140px;
  border-radius: .50rem;
  resize: none;
}

.name__container,
.email__container,
.phone__container,
.message__container,
.input__container label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  padding: 0 .4rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: var(--font-medium);
  pointer-events: none;
  z-index: 15;
  transition: .5s;
}

.name__container,
.email__container,
.phone__container,
.message__container,
.input__container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.name__container,
.email__container,
.phone__container,
.message__container,
.input__container span {
  position: absolute;
  top: 0;
  left: 25px;
  color: transparent;
  transform: translateY(-50%);
  font-size: var(--small-font-size);
  padding: 0 .4rem;
  pointer-events: none;
  z-index: var(--z-fixed);
}


.name__container span::before,
.email__container span::before,
.phone__container span::before,
.message__container span::before,
.name__container span::after,
.email__container span::after,
.phone__container span::after,
.message__container span::after,
.input__container span::before,
.input__container span::after {
  content: '';
  position: absolute;
  width: 10%;
  height: 5px;
  opacity: 0;
  background-color: var(--body-color);
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}

.name__container span::before,
.email__container span::before,
.phone__container span::before,
.message__container span::before,
.input__container span::before {
  left: 50%;
}

.name__container span::after,
.email__container span::after,
.phone__container span::after,
.message__container span::after,
.input__container span::after {
  right: 50%;
}

.name__container.focus label,
.email__container.focus label,
.phone__container.focus label,
.message__container.focus label,
.input__container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: var(--smaller-font-size);
}

.name__container.focus span::before,
.email__container.focus span::before,
.phone__container.focus span::before,
.message__container.focus span::before,
.name__container.focus span::after,
.email__container.focus span::after,
.phone__container.focus span::after,
.message__container.focus span::after,
.input__container.focus span::before,
.input__container.focus span::after {
  width: 50%;
  opacity: 1;
}

.contact__form button {
  cursor: pointer;
}



/*=============== FOOTER ===============*/
.footer {
  background-color: #151414;
  color: #8a8a8a;
  font-size: 14px;
  padding: 4rem;
}

.footer p {
  color: #8a8a8a;
}

.footer h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
  color: #8a8a8a;
  flex-basis: 24%;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-col-1 {
  flex-basis: 30%;
}

.footer-col-2 {
  flex: 1;
  text-align: center;
}

.footer-col-2 img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-col-3,
.footer-col-4 {
  flex-basis: 12%;
  text-align: center;
}

ul {
  list-style-type: none;
}

ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
  padding: 3rem 11rem;
}

.footer-cta {
  padding-bottom: 3rem;
  border-bottom: 1px solid #373636;
}

.contactus-row {
  display: flex;
  justify-content: start;
  gap: 13.5rem;
}

.single-cta i {
  color: #49a244;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}

.footer-content .row {
  display: flex;
  gap: 2rem;
}

.footer-content .row .mb-50 {
  max-width: 28rem;
}

.footer-content .row .mb-30 {
  max-width: 21.3rem;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #d62976;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #49a244;
}

.footer-widget ul li {
  /* display: inline-block; */
  text-decoration: none;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #49a244;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #333;
  border: 1px solid #49a244;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #49a244;
  padding: 13px 20px;
  border: 1px solid #49a244;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  align-content: center;
  background: #202020;
  padding: 25px 0;
  margin-top: 4rem;
}

.copyright-area .container .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #49a244;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #49a244;
}

.footer-menu li a {
  font-size: 14px;
  color: #fff;
}

/*=============== SCROLL BAR ===============*/
/* ::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .5rem;
} */


.title__color {
  color: #000;
}

/* ========= Office LOcations ============== */
/* Theme Name: Emcure
Theme URI: https://github.com/orangepreneur/emcure/
Author: Mukesh Joshi
Author URI: https://iammukesh.com/
Description: Emcure is a custom design built for Emcure Pharmaceuticals
Requires at least: 5.3
Tested up to: 5.8
Requires PHP: 5.6
Version: 1.4
Text Domain: emcure
Emcure WordPress Theme, (C) 2021 orangewp.com
*/




ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}



a {
  color: inherit;
  text-decoration: inherit;
}

code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}



.right-circle:after {
  content: " ";
  width: 20px;
  height: 20px;
  background-size: cover;
  margin-left: 10px;
  background-image: url(../images/right-gray.png);
}

.red-btn:after {
  content: " ";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
  margin-left: 10px;
  background-image: url(../images/right-white-red.png);
}

.red-btn.opened:after {
  transform: rotate(-90deg);
}

.btn-90:after {
  transform: rotate(90deg);
}

.red-btn {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 43, 48, var(--tw-bg-opacity));
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: #dd1818;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(221, 24, 24, 0));
  --tw-gradient-to: #870000;
  border-radius: 0.125rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.heading {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .heading {
    line-height: 46px;
  }
}

@media (min-width: 1024px) {
  .heading {
    font-size: 2.25rem;
  }
}

.subheading {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .subheading {
    font-size: 1.5rem;
    line-height: 2rem;
    line-height: 30px;
  }
}

.red-dot {
  display: flex;
  align-items: center;
}

.red-dot.baseline {
  display: flex;
  align-items: baseline;
}

.red-dot:before {
  content: " ";
  display: inline-block;
  --tw-bg-opacity: 1;
  background-color: rgba(221, 24, 24, var(--tw-bg-opacity));
  border-radius: 9999px;
  flex-shrink: 0;
  height: 0.5rem;
  margin-right: 0.75rem;
  width: 0.5rem;
}

.red-line {
  display: flex;
  align-items: baseline;
}

.red-line:before {
  content: " ";
  display: inline-block;
  --tw-bg-opacity: 1;
  background-color: rgba(221, 24, 24, var(--tw-bg-opacity));
  flex-shrink: 0;
  height: 0.25rem;
  margin-right: 0.75rem;
  width: 1rem;
}

img {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-timing-function: linear;
  transition-duration: 0.1s;
}

img:hover {
  transform: scale(1.02);
}

.zoomOnHover {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-timing-function: linear;
  transition-duration: 0.1s;
}

.slideAnimation:hover .zoomOnHover {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}

/* @media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
} */

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.bg-primary-offwhite {
  --tw-bg-opacity: 1;
  background-color: rgba(250, 250, 250, var(--tw-bg-opacity));
}

.bg-primary-light {
  --tw-bg-opacity: 1;
  background-color: rgba(221, 24, 24, var(--tw-bg-opacity));
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(201, 1, 1, var(--tw-bg-opacity));
}

.bg-primary-footer {
  --tw-bg-opacity: 1;
  background-color: rgba(40, 43, 48, var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-black {
  --tw-gradient-from: #000;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.from-primary-light {
  --tw-gradient-from: #dd1818;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(221, 24, 24, 0));
}

.via-transparent {
  --tw-gradient-stops: var(--tw-gradient-from), transparent,
    var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.to-primary-dark {
  --tw-gradient-to: #870000;
}

.bg-opacity-30 {
  --tw-bg-opacity: 0.3;
}

.bg-cover {
  background-size: cover;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

.border-primary {
  --tw-border-opacity: 1;
  border-color: rgba(201, 1, 1, var(--tw-border-opacity));
}

.hover\:border-primary:hover {
  --tw-border-opacity: 1;
  border-color: rgba(201, 1, 1, var(--tw-border-opacity));
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-b-4 {
  border-bottom-width: 4px;
}

.box-border {
  box-sizing: border-box;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.h-2 {
  height: 0.5rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-28 {
  height: 7rem;
}

.h-36 {
  height: 9rem;
}

.h-44 {
  height: 11rem;
}

.h-52 {
  height: 13rem;
}

.h-60 {
  height: 15rem;
}

.h-64 {
  height: 16rem;
}

.h-72 {
  height: 18rem;
}

.h-96 {
  height: 24rem;
}

.h-300 {
  height: 300px;
}

.h-350 {
  height: 350px;
}

.h-400 {
  height: 400px;
}

.h-500 {
  height: 500px;
}

.h-600 {
  height: 600px;
}

.h-auto {
  height: auto;
}

.h-px {
  height: 1px;
}

.h-full {
  height: 100%;
}

.h-xs {
  height: 0.3rem;
}

.text-17 {
  font-size: 17px;
}

.text-22 {
  font-size: 22px;
}

.text-40 {
  font-size: 40px;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-25 {
  line-height: 25px;
}

.leading-30 {
  line-height: 30px;
}

.leading-34 {
  line-height: 34px;
}

.leading-55 {
  line-height: 55px;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-body {
  line-height: 26px;
}

.list-disc {
  list-style-type: disc;
}

.m-1 {
  margin: 0.25rem;
}

.m-4 {
  margin: 1rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-60 {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mb-40 {
  margin-bottom: 10rem;
}

.mb-60 {
  margin-bottom: 15rem;
}

.-mt-10 {
  margin-top: -2.5rem;
}

.-mt-20 {
  margin-top: -5rem;
}

.-mt-32 {
  margin-top: -8rem;
}

.-mt-40 {
  margin-top: -10rem;
}

.-mt-80 {
  margin-top: -20rem;
}

.max-h-28 {
  max-height: 7rem;
}

.max-w-1500 {
  max-width: 1500px;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-wrapper {
  max-width: 1250px;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.overflow-hidden {
  overflow: hidden;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.resize {
  resize: both;
}

* {
  --tw-shadow: 0 0 #0000;
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty);
  --tw-ring-offset-width: 0;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.text-primary-heading {
  --tw-text-opacity: 1;
  color: rgba(42, 45, 46, var(--tw-text-opacity));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgba(201, 1, 1, var(--tw-text-opacity));
}

.text-primary-body {
  --tw-text-opacity: 1;
  color: rgba(114, 120, 122, var(--tw-text-opacity));
}

.text-primary-footer {
  --tw-text-opacity: 1;
  color: rgba(40, 43, 48, var(--tw-text-opacity));
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-heading {
  letter-spacing: 5.76px;
}

.tracking-sectionH {
  letter-spacing: -0.9px;
}

.visible {
  visibility: visible;
}

.break-all {
  word-break: break-all;
}

.w-2 {
  width: 0.5rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-20 {
  width: 5rem;
}

.w-52 {
  width: 13rem;
}

.w-80 {
  width: 20rem;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-1\/6 {
  width: 16.666667%;
}

.w-4\/6 {
  width: 66.666667%;
}

.w-full {
  width: 100%;
}

.w-max {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.z-50 {
  z-index: 50;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter,
    -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.ease-linear {
  transition-timing-function: linear;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-100 {
  transition-duration: 0.1s;
}

.duration-200 {
  transition-duration: 0.2s;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {

  100%,
  75% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {

  100%,
  75% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@-webkit-keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.filter {
  --tw-blur: var(--tw-empty);
  --tw-brightness: var(--tw-empty);
  --tw-contrast: var(--tw-empty);
  --tw-grayscale: var(--tw-empty);
  --tw-hue-rotate: var(--tw-empty);
  --tw-invert: var(--tw-empty);
  --tw-saturate: var(--tw-empty);
  --tw-sepia: var(--tw-empty);
  --tw-drop-shadow: var(--tw-empty);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur {
  --tw-blur: blur(8px);
}

.break-inside {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

@media (max-width: 400px) {
  .redStrip .h2 {
    font-size: 1.2rem;
  }
}

.swiper-pagination-bullet-active {
  --tw-bg-opacity: 1;
  background-color: rgba(221, 24, 24, var(--tw-bg-opacity));
}

.researchSwiper .swiper-pagination-bullet-active {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

@media (min-width: 800px) {
  li:hover .sub-menu {
    display: block;
  }
}

@media (max-width: 1030px) {
  .sub-menu li:before {
    content: " - ";
  }
}

.redStrip {
  background: transparent linear-gradient(95deg, var(--unnamed-color-dd1818) 0, #870000 100%) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(95deg, #2f8700 0, #0dab05 100%) 0 0 no-repeat padding-box !important;
}

.dropdown {
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.dropdown svg {
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter,
    -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  transition-duration: 150ms;
  color: rgb(21, 255, 0);
}

.dropdown.opened svg {
  transform: rotate(180deg);
}

#menu li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  #menu li {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  #menu .sub-menu li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

#menu .sub-menu li {
  min-width: 250px;
}

@media (min-width: 768px) {
  .md\:bg-primary-footer {
    --tw-bg-opacity: 1;
    background-color: rgba(40, 43, 48, var(--tw-bg-opacity));
  }

  .md\:rounded-none {
    border-radius: 0;
  }

  .md\:rounded-lg {
    border-radius: 0.5rem;
  }

  .md\:rounded-xl {
    border-radius: 0.75rem;
  }

  .md\:flex {
    display: flex;
  }

  .md\:table-cell {
    display: table-cell;
  }

  .md\:grid {
    display: grid;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:h-2 {
    height: 0.5rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:h-40 {
    height: 10rem;
  }

  .md\:h-60 {
    height: 15rem;
  }

  .md\:h-80 {
    height: 20rem;
  }

  .md\:h-500 {
    height: 500px;
  }

  .md\:h-600 {
    height: 600px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:text-36 {
    font-size: 2.25rem;
  }

  .md\:text-54 {
    font-size: 54px;
  }

  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:leading-30 {
    line-height: 30px;
  }

  .md\:leading-34 {
    line-height: 34px;
  }

  .md\:leading-55 {
    line-height: 55px;
  }

  .md\:leading-81 {
    line-height: 81px;
  }

  .md\:m-0 {
    margin: 0;
  }

  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .md\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .md\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .md\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .md\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .md\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .md\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .md\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .md\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .md\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .md\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .md\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .md\:ml-3 {
    margin-left: 0.75rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mt-5 {
    margin-top: 1.25rem;
  }

  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:mt-12 {
    margin-top: 3rem;
  }

  .md\:mt-20 {
    margin-top: 5rem;
  }

  .md\:mb-20 {
    margin-bottom: 5rem;
  }

  .md\:mb-40 {
    margin-bottom: 10rem;
  }

  .md\:mt-60 {
    margin-top: 15rem;
  }

  .md\:mb-3\.5 {
    margin-bottom: 0.875rem;
  }

  .md\:-mt-20 {
    margin-top: -5rem;
  }

  .md\:-mt-80 {
    margin-top: -20rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .md\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .md\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .md\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pl-20 {
    padding-left: 5rem;
  }

  .md\:relative {
    position: relative;
  }

  .md\:-top-52 {
    top: -13rem;
  }

  .md\:shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
      var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:w-384 {
    width: 384px;
  }

  .md\:w-500 {
    width: 500px;
  }

  .md\:w-700 {
    width: 700px;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-2\/3 {
    width: 66.666667%;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-2\/6 {
    width: 33.333333%;
  }

  .md\:w-4\/6 {
    width: 66.666667%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:masonry-2-col {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 1em;
    column-gap: 1em;
  }
}

@media (min-width: 1024px) {
  .lg\:rounded-xl {
    border-radius: 0.75rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:h-40 {
    height: 10rem;
  }

  .lg\:h-60 {
    height: 15rem;
  }

  .lg\:h-80 {
    height: 20rem;
  }

  .lg\:h-300 {
    height: 300px;
  }

  .lg\:h-400 {
    height: 400px;
  }

  .lg\:h-500 {
    height: 500px;
  }

  .lg\:h-600 {
    height: 600px;
  }

  .lg\:h-700 {
    height: 700px;
  }

  .lg\:text-22 {
    font-size: 22px;
  }

  .lg\:text-40 {
    font-size: 40px;
  }

  .lg\:text-44 {
    font-size: 44px;
  }

  .lg\:text-54 {
    font-size: 54px;
  }

  .lg\:text-56 {
    font-size: 56px;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:leading-30 {
    line-height: 30px;
  }

  .lg\:leading-34 {
    line-height: 34px;
  }

  .lg\:leading-55 {
    line-height: 55px;
  }

  .lg\:leading-81 {
    line-height: 81px;
  }

  .lg\:leading-tight {
    line-height: 1.25;
  }

  .lg\:m-12 {
    margin: 3rem;
  }

  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }

  .lg\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .lg\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .lg\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .lg\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .lg\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .lg\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mb-0 {
    margin-bottom: 0;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .lg\:mt-6 {
    margin-top: 1.5rem;
  }

  .lg\:mb-8 {
    margin-bottom: 2rem;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:mr-12 {
    margin-right: 3rem;
  }

  .lg\:ml-20 {
    margin-left: 5rem;
  }

  .lg\:mt-24 {
    margin-top: 6rem;
  }

  .lg\:mt-32 {
    margin-top: 8rem;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem;
  }

  .lg\:mb-40 {
    margin-bottom: 10rem;
  }

  .lg\:mb-60 {
    margin-bottom: 15rem;
  }

  .lg\:-ml-4 {
    margin-left: -1rem;
  }

  .lg\:-mt-20 {
    margin-top: -5rem;
  }

  .lg\:-mr-20 {
    margin-right: -5rem;
  }

  .lg\:-ml-20 {
    margin-left: -5rem;
  }

  .lg\:-mt-24 {
    margin-top: -6rem;
  }

  .lg\:-mt-32 {
    margin-top: -8rem;
  }

  .lg\:-mt-40 {
    margin-top: -10rem;
  }

  .lg\:-mt-52 {
    margin-top: -13rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-12 {
    padding: 3rem;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .lg\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .lg\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .lg\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .lg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem;
  }

  .lg\:pl-12 {
    padding-left: 3rem;
  }

  .lg\:pl-16 {
    padding-left: 4rem;
  }

  .lg\:pb-20 {
    padding-bottom: 7rem;
  }

  .lg\:pl-20 {
    padding-left: 5rem;
  }

  .lg\:pl-32 {
    padding-left: 8rem;
  }

  .lg\:pb-40 {
    padding-bottom: 10rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:tracking-tight {
    letter-spacing: -0.025em;
  }

  .lg\:w-40 {
    width: 10rem;
  }

  .lg\:w-384 {
    width: 384px;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-2\/3 {
    width: 66.666667%;
  }

  .lg\:w-1\/4 {
    width: 25%;
  }

  .lg\:w-1\/5 {
    width: 20%;
  }

  .lg\:w-2\/5 {
    width: 40%;
  }

  .lg\:w-3\/5 {
    width: 60%;
  }

  .lg\:w-2\/6 {
    width: 33.333333%;
  }

  .lg\:w-3\/6 {
    width: 50%;
  }

  .lg\:w-4\/6 {
    width: 66.666667%;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }
}

@media (min-width: 1280px) {
  .xl\:block {
    display: block;
  }

  .xl\:w-2\/5 {
    width: 40%;
  }

  .xl\:w-3\/5 {
    width: 60%;
  }
}

@media (min-width: 1536px) {
  .\32xl\:h-banner {
    height: 640px;
  }

  .\32xl\:text-54 {
    font-size: 54px;
  }

  .\32xl\:text-56 {
    font-size: 56px;
  }

  .\32xl\:leading-81 {
    line-height: 81px;
  }

  .\32xl\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .\32xl\:mt-10 {
    margin-top: 2.5rem;
  }

  .\32xl\:mt-32 {
    margin-top: 8rem;
  }

  .\32xl\:mb-40 {
    margin-bottom: 10rem;
  }

  .\32xl\:-mt-20 {
    margin-top: -5rem;
  }

  .\32xl\:-mt-40 {
    margin-top: -10rem;
  }

  .\32xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .\32xl\:pr-24 {
    padding-right: 6rem;
  }

  .\32xl\:pl-28 {
    padding-left: 7rem;
  }

  .\32xl\:pb-40 {
    padding-bottom: 10rem;
  }

  .\32xl\:w-993 {
    width: 993px;
  }

  .\32xl\:w-2\/5 {
    width: 40%;
  }

  .\32xl\:w-4\/5 {
    width: 80%;
  }

  .\32xl\:w-1\/6 {
    width: 16.666667%;
  }

  .\32xl\:w-2\/6 {
    width: 33.333333%;
  }

  .\32xl\:w-3\/6 {
    width: 50%;
  }

  .\32xl\:gap-6 {
    gap: 1.5rem;
  }

  .\32xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .\32xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .\32xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }
}




/*========== BREAKPOINTS ==========*/
/* For Large Devices */
@media screen and (max-width: 1408px) {

  .popup img {
    max-width: 70%;
  }

  .close-button {
    top: 13rem;
    left: 14rem;
    font-size: 60px;
  }

  .container {
    margin-left: var(--mb-2-5);
    margin-right: var(--mb-2-5);
  }

  .home__title {
    font-size: 3.8rem;
  }

  .home__subtitle {
    font-size: 2rem;
  }

  .button {
    margin-top: 30px;
    padding: 0.5rem 1.2rem;
    /* Adjust the padding for smaller screens */
  }

  .button__icon {
    font-size: 1rem;
    /* Adjust the icon size for smaller screens */
  }

  .footer-section {
    padding: 3rem;
  }

  .contactus-row {
    gap: 8.6rem;
  }
}

@media screen and (max-width: 1216px) {
  .popup img {
    max-width: 75%;
  }

  .close-button {
    top: 12rem;
    left: 10rem;
    font-size: 55px;
  }

  .about__container {
    column-gap: 2.5rem;
  }

  .home__description img {
    width: 50%;
    /* Set the desired width */
    height: 50%;
    /* Set the desired height */
  }


  .about__description {
    padding-right: 0;
  }

  .work__container {
    grid-template-columns: repeat(2, 330px);
    gap: 2.5rem;
  }
}

@media screen and (max-width: 1024px) {

  .popup img {
    max-width: 75%;
  }

  .close-button {
    top: 13rem;
    left: 8.5rem;
    font-size: 50px;
  }

  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .home__description img {
    width: 45%;
    /* Set the desired width */
    height: 45%;
    /* Set the desired height */
  }


  .home__title {
    font-size: 3.5rem;
  }

  .home__data {
    margin-top: 10rem;
  }

  .home__subtitle {
    font-size: 2rem;
  }

  .button__home {
    margin-top: 20px;
    padding: 0.5rem 0.8rem;
    /* Adjust the padding for smaller screens */
  }

  .button__home__icon {
    font-size: 1rem;
    /* Adjust the icon size for smaller screens */
  }

  .box {
    padding: 13px;
  }

  .pb-10 {
    padding-bottom: 3.5rem;
  }

  .sidebar {
    width: 100%;
    z-index: 999;
    transform: translateX(-100%);
  }

  .show-sidebar {
    transform: translateX(0);
  }

  .nav__logo,
  .btn__share {
    display: none;
  }

  .nav__menu {
    height: 100%;
    width: 100%;
    transform: rotate(0deg) translateX(0);
    display: flex;
    justify-content: center;
  }

  .nav__list {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .nav__link {
    padding: 1rem 0;
    line-height: 1.5;
  }

  .nav__link.active-link::after,
  .nav__link:hover::after {
    bottom: 0;
  }

  .nav__close {
    display: block;
  }

  .nav__toggle {
    display: flex;
  }

  .about__container {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .about__img {
    width: 560px;
  }

  .about__data {
    text-align: center;
  }

  .about__info {
    justify-content: center;
  }

  .about__box {
    padding: .75rem .5rem;
  }

  .about__description {
    padding: 0 4rem;
  }

  .qualification__container {
    grid-template-columns: repeat(2, 215px);
    column-gap: 4rem;
  }

  .skills__container {
    grid-template-columns: 340px 300px;
  }

  .skills__list {
    row-gap: 1.7rem;
  }

  .work__card {
    padding: 1rem;
  }

  .work__img {
    margin-bottom: var(--mb-0-75);
  }

  .work__title {
    margin-bottom: var(--mb-0-25);
  }

  .services__container {
    grid-template-columns: repeat(3, 220px);
  }

  .testimonial__card {
    padding: 1.25rem 1.5rem;
  }

  .portfolio__item-details {
    margin-bottom: var(--mb-1-5);
  }

  .details__info li {
    margin-bottom: var(--mb-0-5);
  }

  .details__title {
    margin-bottom: var(--mb-0-75);
  }

  .footer-section {
    padding: 3rem 2rem;
  }

  .contactus-row {
    gap: 7.3rem;
  }

  .footer-content .row {
    gap: 1.5rem;
  }

  .footer-content .row .mb-50 {
    max-width: 22.5rem;
  }

  .footer-content .row .mb-30 {
    max-width: 15.5rem;
  }

  .subscribe-form input {
    padding: 14px 24px;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .popup img {
    max-width: 80%;
  }

  .close-button {
    top: 9rem;
    left: 5.5rem;
    font-size: 42px;
  }
}


/* For Medium Devices */
@media screen and (max-width: 768px) {

  .home {
    background-image: url("../img/buildingLogoMockkk_medium\ \(1\).webp");
  }

  .start-header {
    padding: 20px 0;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .home__title {
    line-height: 0.9;
    margin-bottom: 6px;
    font-size: 3.5rem;
  }

  .home__subtitle {
    font-size: 1.4rem;
  }

  .home__data {
    margin: 140px 0px 0px 32px;
  }

  .button__home {
    margin-top: 40px;
  }

  .button__home {
    padding: 0.5rem .8rem;
    /* Adjust the padding for smaller screens */
  }

  .button__home__icon {
    font-size: 1rem;
    /* Adjust the icon size for smaller screens */
  }

  .swiper-wrapper {
    height: 26rem
  }

  .card {
    max-width: 250px;
  }

  .card_image {
    width: 7em;
    height: 7em;
  }

  .card_title {
    font-size: 1.3em;
  }

  .card_name {
    font-size: 0.95em;
  }

  .home__data {
    margin-top: 10rem;
  }

  .about__img {
    height: 185px;
    width: 330px;
  }

  .skills__container {
    grid-template-columns: 300px;
    row-gap: 3rem;
  }

  .work__container {
    grid-template-columns: 330px;
  }

  .services__container {
    grid-template-columns: repeat(2, 270px);
    gap: 1.5rem;
  }

  .services__content {
    padding: 3.5rem .5rem 1.25rem 1.5rem;
  }

  .services__icon {
    font-size: 1.5rem;
  }

  .justify-between {
    display: flex;
  }

  .contact__container {
    grid-template-columns: 360px;
    row-gap: 3rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .footer__socials {
    justify-self: start;
  }

  .footer__links {
    flex-direction: column;
    row-gap: 1.5rem;

  }

  .footer__bg {
    padding: 2rem 0 3rem;
  }

  .footer__copy {
    margin-top: var(--mb-3);
  }

  .portfolio__popup-inner {
    width: 420px;
    padding: 2.8rem 1.5rem 2.5rem;
  }

  .portfolio__popup-content {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }

  .details__title {
    font-size: var(--normal-font-size);
  }

  .portfolio__popup-close {
    top: .5rem;
  }

  .contactus-row {
    gap: 2.8rem;
  }

  .single-cta i {
    font-size: var(--h2-font-size);
  }

  .cta-text h4 {
    font-size: var(--normal-font-size);
  }

  .cta-text span {
    font-size: var(--small-font-size);
  }

  .footer-content .row {
    gap: 1rem;
  }

  .footer-content .row .mb-50 {
    max-width: 15.7rem;
  }

  .footer-logo img {
    max-width: 140px;
  }

  .footer-text p {
    font-size: var(--smaller-font-size);
  }

  .footer-content .row .mb-30 {
    max-width: 10.5rem;
  }

  .footer-widget-heading h3 {
    font-size: var(--normal-font-size);
  }

  .footer-widget ul li {
    font-size: 0.75rem;
  }

  .subscribe-form input {
    padding: 10px 10px;
    font-size: var(--smaller-font-size);
  }

  .footer-social-icon span {
    font-size: var(--normal-font-size)
  }

  .footer-social-icon a {
    font-size: 14px;
  }

  .footer-social-icon i {
    width: 32px;
    height: 32px;
    line-height: 34px;
  }

  .copyright-text p {
    font-size: 10px;
  }

  .footer-menu li {
    margin-left: 12px;
  }

  .footer-menu li a {
    font-size: 10px;
  }

  .subscribe-form button {
    padding: 8px 10px;
  }

  .Extra-Space {
    height: 4.5rem;
    background-color: #F8F6F4;
  }
}

@media screen and (min-width: 525px) and (max-width: 576px) {
  .popup img {
    max-width: 80%;
  }

  .close-button {
    top: 11rem;
    left: 4rem;
    font-size: 40px;
  }
}

@media screen and (max-width: 576px) {

  .nav__toggle {
    right: initial;
    left: 1.5rem;
  }

  .collapse {
    display: none;
  }

  .navbar {
    display: block;
  }

  .show-nav {
    display: block;
  }

  .navbar-toggler {
    display: flex;
    position: absolute;
    bottom: 5.5px;
    left: 30.3rem;
  }

  .navbar-nav {
    position: absolute;
    flex-direction: column;
    left: 41%;
    background-color: #F8F6F4;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    animation: slideInFromTop .5s ease-in-out;
  }

  @keyframes slideInFromTop {
    0% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(0);
    }

  }

  .home {
    background-image: none;
    height: initial;
    align-items: initial;
    padding: 4.5rem 0 2rem;
  }


  .home__title {
    font-weight: 3100;
    margin-top: 80px;
    font-size: 2.7rem;
  }

  .home__subtitle {
    font-size: 24px;
    font-weight: 500;
  }

  .button__home {
    /* position: fixed; ============Rishav Raj*/
    margin-top: 260px;
  }

  .button__home {
    padding: 0.5rem 1rem;
    /* Adjust the padding for smaller screens */
  }

  .button__home__icon {
    font-size: 1.2rem;
    /* Adjust the icon size for smaller screens */
  }

  .home__data {
    margin-left: 10px;
    margin-top: 0;
  }

  .home__description {
    display: none;
  }

  .qualification__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .services__container {
    grid-template-columns: repeat(1, 300px);
  }

  .justify-between {
    flex-direction: column;
    align-items: start;
  }

  .text-2xl {
    margin-left: 0.6rem;
  }

  .home {
    background-image: url("../img/wall2.png.webp");


    height: 100vh;
  }




  /* 
  .home__img {
    padding: 5px;
    display: block;
    border: 4px solid #0dab05;
    border-radius: .75rem;
    width: 257px;
    justify-self: center;
  }

  .home__img img {
    border-radius: .75rem; */
  /* Rounded corners for the image */
  /* width: 100%; */
  /* Ensure the image fills the container */
  /* height: auto; */
  /* Maintain aspect ratio */
  /* } */

  .home__social {
    left: initial;
    right: -1rem;
    flex-direction: column;
    row-gap: 3.5rem;
  }

  .home__social {
    left: initial;
    right: -1rem;
    flex-direction: column;
    row-gap: 3.5rem;
  }

  .home__social-follow {
    font-size: var(--smaller-font-size);
    transform: rotate(90deg);
  }

  .home__social-links {
    flex-direction: column;
    row-gap: .25rem;
  }

  .home__social-link {
    font-size: var(--normal-font-size);
  }

  .my__info {
    display: none;
  }

  .about__info {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__description {

    padding: 0;
  }

  .services__modal-content {
    padding: 4.5rem 1.5rem 2.5rem;
  }

  .services__modal-description {
    padding: 0;
  }

  .contact__container,
  .work__container {
    grid-template-columns: 300px;
  }

  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-self: flex-start;
  }

  .contactus-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-section {
    padding: 3rem 2rem;
  }

  .footer-content .row {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-content .row .mb-50 {
    max-width: 25rem;
  }

  .footer-text p {
    font-size: var(--small-font-size);
  }

  .footer-widget ul li {
    font-size: var(--small-font-size);
  }

  .footer-content .row .mb-30 {
    max-width: 20rem;
  }

  .mb-10 {
    max-width: 18rem;
  }

  .copyright-area .container .row {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .copyright-text p {
    font-size: 9.7px;
  }

  .footer-menu li a {
    font-size: 9.7px;
  }
}

@media screen and (max-width: 425px) {
  .popup img {
    max-width: 100%;
  }

  .close-button {
    top: 12rem;
    left: 22.5rem;
    font-size: 38px;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__subtitle {
    font-size: 1.2rem;
  }

  .home {
    position: relative;
  }


  .button__home {
    margin-top: 300px;
    position: sticky;
    bottom: 0;
  }

  .button__home {
    padding: 0.5rem 0.2rem;
    /* Adjust the padding for smaller screens */
  }

  .button__home__icon {
    font-size: 1rem;
    /* Adjust the icon size for smaller screens */
  }

  .text-2xl {
    font-size: 1.11rem;
  }

  .services__container {
    grid-template-columns: repeat(1, 260px);
  }

  .navbar-toggler {
    left: 20.4rem;
  }

  .navbar-nav {
    left: 42%;
  }

  .box {
    width: 100%;
    flex: none;
  }

  .contented {
    justify-content: center;
  }
}

@media screen and (max-width: 391px) {
  .close-button {
    top: 13rem;
    left: 20.5rem;
    font-size: 35px;
  }

  .home__data {
    margin-left: 10px;
  }

  .home__title {
    margin-top: 60px;
    font-size: 2.4rem;
    /* Adjust the font size as needed */
    text-align: left;
    /* Align the text to the left */
  }

  .home__subtitle {
    font-size: 20px;
  }

  .home__description {
    font-size: 18px;
  }


  .button__home {
    /* margin-top: 350px; */
    /* Rishav Raj */
    padding: 0.3rem 0.1rem;
    /* Adjust the padding for smaller screens */
  }

  .button__home__icon {
    font-size: 1.2rem;
    /* Adjust the icon size for smaller screens */
  }

  .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    background-color: #fff;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timeline__image {
    margin-left: 0;
  }

  .timeline__item {
    margin: 0;
  }

}

/* For Small Devices */
@media screen and (max-width: 361px) {

  .close-button {
    top: 13rem;
    left: 19rem;
    font-size: 32px;
  }

  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img {
    display: block;
    width: 250px;
    justify-self: center;
  }

  .home__container {
    align-items: center;
  }

  .home__title {
    font-size: 2rem;
  }

  .home__subtitle {
    font-size: var(--normal-font-size);
  }

  .navbar-toggler {
    left: 19rem;
  }

  .navbar-nav {
    left: 41%;
  }

  .section {
    padding: 4.5rem 0 0;
  }

  .about__info {
    grid-template-columns: repeat(2, 1fr);
    row-gap: .5rem;
  }

  .contact__container,
  .work__container,
  .skills__container,
  .qualification__container {
    grid-template-columns: 1fr;
  }

  .box {

    padding: 15px;
  }

  .skills__title {
    font-size: var(--normal-font-size);
  }

  .work__item {
    font-size: var(--small-font-size);
  }

  .work__filters {
    column-gap: .25rem;
  }

  .services__container {
    grid-template-columns: repeat(1, 240px);
  }

  .text-2xl {
    font-size: 1.019rem;
  }

  .services__content {
    padding-right: 3.5rem;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timeline__image {
    margin-left: 0;
  }
}