@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* color */
  --primary: #333333;
  --secondary: #0a6db8;
  --dark-blue: #003961;
  --dark-blue-1: #125b8e;
  --gray-light: #afafaf;
  --purple: #8E1F60;
  /* font */
  --roboto: "Roboto", sans-serif;
  --poppins: "Poppins", sans-serif;
  /* font-size */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
  --text-6xl: 3.75rem; /* 60px */
  --text-7xl: 4.5rem; /* 72px */
  --text-8xl: 6rem; /* 96px */
  --text-9xl: 8rem; /* 128px */
  font-size: 16px;
}

/* css reset */
body {
  font-family: var(--poppins);
  font-weight: 400;
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

button {
  border: none;
  padding: 0;
  padding: 0;
  font-size: 100%;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/*------------------------------------*\
#COMMON CLASS
\*------------------------------------*/
.section__header {
  text-align: center;
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--secondary);
}

.hidden {
  display: none;
}
.select2-container--default .select2-selection--single{
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    height: 45px !important;
    /*border:none !important;*/
}

.linear-wipe {
  text-align: center;
  background: linear-gradient(to right, #125c8f 20%, #8e1e5f 40%, #125c8f 60%, #8e1e5f 80%);
  background-size: 200% auto;
  color: #333333;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@media screen and (min-device-width: 992px) {
  .navbar ul li:hover > .dropdown-menu {
    display: block;
  }
}
/*------------------------------------*\
#MIXIN
\*------------------------------------*/
/*------------------------------------*\
#COLOR
\*------------------------------------*/
.text-primary {
  color: var(--primary);
}

.text-gray-light {
  color: #afafaf;
}

.bg-primary {
  background-color: var(--dark-blue);
}

.gradient-primary {
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
}

/*------------------------------------*\
#FONTS
\*------------------------------------*/
.poppins {
  font-family: var(--poppins);
}

.roboto {
  font-family: var(--roboto);
}

/*------------------------------------*\
#NAV BAR
\*------------------------------------*/
.navbar .dropdown-toggle::after {
  border: none;
  /* using style CSS custom property */
  font: var(--fa-font-solid);
  content: "\f107";
  vertical-align: 0;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: var(--dark-blue);
  font-weight: 600;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--purple);
}
.navbar .navbar-nav .nav-item .nav-link:active {
  color: var(--purple);
}
.navbar .nav-phone {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 1.5rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  cursor: pointer;
}
.navbar .nav-phone:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}
.navbar .dropdown-menu .dropdown-item {
  letter-spacing: -0.025em;
}
.navbar .dropdown-menu {
  background-color: #115c8f;
}
.navbar .dropdown-menu .dropdown-item {
  color: #fff;
}
.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--primary);
}

@media screen and (max-device-width: 1200px) {
  .navbar .nav-phone {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 1rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    font-size: var(--text-base);
  }
  .navbar .nav-phone:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
/*------------------------------------*\
#HERO SECTION
\*------------------------------------*/
.hero-bg {
  /*background-image: linear-gradient(90deg, rgba(17, 92, 143, 0.8) 0%, rgba(143, 30, 95, 0.8) 100%), url("../img/hero-bg.png");*/
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 2rem 0;
  border-bottom-right-radius: 1.5rem; /* 24px */
  border-bottom-left-radius: 1.5rem; /* 24px */
}
#products {
    padding-bottom: 1%;
    padding-top: 4%;
    background: #ffffff;
}
.recent-post h3 {
    color: #0a6db8;
    margin-top: 5%;
}
.recent-post p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.recent-post {
    padding-left: 30px;
    padding-top: 10px;
}
.service-title a{
    font-size: 13px;
    color: #333333;
    text-decoration: none;
    line-height: 1.1em;
    font-weight: bold;
}

.hero {
  gap: 2.5rem;
}
.hero .hero__text {
  padding: 1rem 0;
  color: #fff;
  letter-spacing: -0.05em;
}
.hero .hero__text h3 {
  font-size: 1.875rem;
}
.hero .hero__text h1 {
  font-size: 4.5rem;
  font-weight: 600;
}
h1 {
    font-size: 2.5rem;
}
.news_date {
    font-size: 13.5px;
    margin-top: 15px;
    color: #a6a6a6;
    margin-bottom: 0px;
}
.hero .form-control:focus {
  box-shadow: none;
}
.hero .form-select:focus {
  box-shadow: none;
}
.hero .hero__form {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: -0.05em;
  border-radius: 0.5rem;
}
.hero .hero__form h2 {
  font-size: 2.25rem;
  padding: 0.5rem 0 1rem 0;
  letter-spacing: -0.05em;
}
.hero ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--gray-light);
  opacity: 1; /* Firefox */
}
.hero .hero__submit {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 0.5rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.hero .hero__submit:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

/**
 * Media query for hero section
 */
@media (max-width: 767px) {
  .hero .hero__text h3 {
    font-size: 1rem;
  }
  .hero .hero__text h1 {
    font-size: 2rem;
  }
}
@media screen and (max-device-width: 991px) {
  .hero {
    gap: 1rem;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1200px) {
  .hero .hero__text h3 {
    font-size: 1.5rem;
  }
  .hero .hero__text h1 {
    font-size: 3.2rem;
  }
}
@media screen and (min-device-width: 1201px) and (max-device-width: 1400px) {
  .hero .hero__text h3 {
    font-size: 1.5rem;
  }
  .hero .hero__text h1 {
    font-size: 4rem;
  }
}
/*------------------------------------*\
#WHO WE ARE SECTION
\*------------------------------------*/
.who-we-are .who-we-are__text h3 {
  font-size: 3.5rem;
  color: var(--secondary);
  letter-spacing: -0.05em;
  font-weight: 600;
  padding: 0.8rem 0;
  margin-top: 1rem;
}
.who-we-are .who-we-are__text p {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
  letter-spacing: -0.05em;
  font-weight: 300;
}
.who-we-are .who-we-are__text .who-we-are__text__img {
  height: 6rem;
}
.who-we-are .who-we-are__text .who-we-are__text__slider {
  margin-top: 4rem;
}
.who-we-are .who-we-are__text .who-we-are__text__slider .slider__card {
  border: 1px solid #e3e3e3;
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  width: 250px;
  text-align: center;
  background-color: #fff;
}
.who-we-are .who-we-are__text .who-we-are__text__slider .slider__card img {
  height: 5.5rem;
}
.who-we-are .who-we-are__text .who-we-are__text__slider .slider__card .ratings {
  color: #ffc400;
}
.who-we-are .who-we-are__text .who-we-are__text__slider .slider__card p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-light);
}
.who-we-are .who-we-are__img .img__bg {
  padding-right: 2.5rem;
}
.who-we-are .who-we-are__img .img__bg .img__container {
  width: 100%;
  margin-bottom: 20px;
  height: 120%;
  background: rgb(17, 92, 143);
  background: linear-gradient(0deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  border-radius: 0.5rem;
  box-shadow: -9px 10px 10px 0px rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: -9px 10px 10px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: -9px 10px 10px 0px rgba(0, 0, 0, 0.17);
}
.who-we-are .who-we-are__img .img__bg .img__container img {
  height: 100%;
  width: 100%;
  position: relative;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  top: 20px;
  left: 20px;
}

@media (max-width: 576px) {
  .who-we-are .who-we-are__text h3 {
    font-size: 3rem;
  }
  .who-we-are .who-we-are__text .who-we-are__text__img {
    height: 3.5rem;
  }
}
/*------------------------------------*\
#SERVICE SECTION
\*------------------------------------*/
.service {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
}
.service .service__tab_list {
  border-bottom: 1px solid #e3e3e3;
}
.service .service__tab_list li:nth-child(n) {
  border-right: 1px solid #e3e3e3;
}
.service .service__tab_list .service__tab button {
  position: relative;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: -0.05em;
}
.service .service__tab_list .service__tab button.active {
  font-weight: 600;
  color: var(--secondary);
}
.service .service__tab_list .service__tab button.active::after {
  content: "";
  position: absolute;
  width: 1.3rem;
  height: 5px;
  border-radius: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
}
.service .service__tab__container {
  padding: 2rem 3rem;
}
.service .service__tab__container .container__left {
  padding-right: 2rem;
}
.service .service__tab__container .container__left img {
  width: 70%;
}
.service .service__tab__container .container__left p {
  font-size: var(--text-xl);
  font-weight: 300;
}
.service .service__tab__container .container__right ul li a {
  color: var(--secondary);
  font-size: var(--text-lg);
  text-decoration: underline;
}
.service .service__tab__container .container__right ul li a:hover {
  color: var(--dark-blue);
}
.service .service__tab__container .container__right button {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 0.5rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.service .service__tab__container .container__right button:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

/**
 * Media query for service section
 */
@media (max-width: 992px) {
  .service .service__tab_list li:nth-child(n) {
    border-right: none;
  }
  .service .service__tab_list li:nth-child(n) {
    border-bottom: 1px solid #e3e3e3;
  }
  .service .service__tab_list li:last-child {
    border-bottom: none;
  }
  .service .service__tab_list .service__tab {
    border-right-width: 0px;
    border-left-width: 1px;
  }
}
@media screen and (max-device-width: 568px) {
  .service .service__tab__container {
    padding: 1rem;
  }
  .service .service__tab__container .container__left {
    padding-right: 2rem;
  }
  .service .service__tab__container .container__left img {
    width: 100%;
  }
  .service .service__tab__container .container__left p {
    font-size: var(--text-lg);
  }
  .service .service__tab__container .container__right ul li a {
    font-size: var(--text-lg);
  }
}
/*------------------------------------*\
#TECHNOLOGY SECTION
\*------------------------------------*/
.technology .tech__logo_container .tech-logo {
  height: 6rem;
}
.technology .tech__logo_container .tech-logo img {
  height: 3.5rem;
  max-width: 100%;
  display: inline-block;
}

/*------------------------------------*\
#GALLERY SECTION
\*------------------------------------*/
.gallery .gallery__btn__group {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
}
.gallery .gallery__btn__group .gallery__btn {
  background-color: #fff;
  border: 1px solid #707070;
  padding: 0.9rem 2rem;
  font-size: var(--text-lg);
  font-weight: 300;
  border-radius: 10px;
  letter-spacing: -0.05rem;
}
.gallery .gallery__btn__group .gallery__btn.active {
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  color: #fff;
  font-weight: 500;
}
.gallery .gallery__slider .gallery__slider__card {
  position: relative;
  width: 350px;
  border: 1px solid #eeeeee;
  height: 500px;
  background-color: #d1d1d1;
  overflow: hidden;
  border-radius: 10px;
}
.gallery .gallery__slider .gallery__slider__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery .gallery__slider .gallery__slider__card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(17, 92, 143);
  background: linear-gradient(180deg, rgba(17, 92, 143, 0.2) 0%, rgba(143, 30, 95, 0.9) 100%);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  border-radius: 10px;
}
.gallery .gallery__slider .gallery__slider__card:hover .overlay {
  height: 100%;
}
.gallery .gallery__slider .gallery__slider__card:hover .overlay .gallery__slider__btn {
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 600;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.05rem;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  transition: 0.5s ease;
}
.gallery .gallery__slider .gallery__slider__card:hover .overlay .gallery__slider__btn:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-device-width: 992px) {
  .gallery .gallery__btn__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery .gallery__btn__group .gallery__btn {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
# CLIENTS REVIEW SECTION
\*------------------------------------*/
.clients .slider {
  max-width: 100%;
  margin: 0 auto;
}
.clients .slick-track {
  padding-top: 53px;
  padding-bottom: 53px;
}
.clients .slick-slide {
  transition: transform 0.3s ease-in-out;
}
.clients .slick-slide:not(.slick-current) {
  filter: brightness(0.5);
}
.clients .slick-slide.slick-current {
  transform: scale(1.2);
  position: relative;
  z-index: 1;
}
.clients .clients__card {
  border-radius: 8px;
  overflow: hidden;
  letter-spacing: -0.05rem;
  width: 28rem;
  height: 18rem;
  display: flex;
}
.clients .clients__card .clients__card__text {
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  padding: 2rem 1rem;
  color: #fff;
}
.clients .clients__card .clients__card__text p {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.5rem;
}
.clients .clients__card .clients__card__text h4 {
  margin-top: 2rem;
  font-size: var(--text-base);
  font-weight: 600;
}
.clients .clients__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-device-width: 576px) {
  .clients {
    /* the slides */
    /* the parent */
  }
  .clients .slick-slide {
    margin: 0 15px;
  }
  .clients .slick-list {
    margin: 0 -15px;
  }
  .clients .slick-slide.slick-current {
    transform: scale(1);
  }
  .clients .clients__card {
    width: 90vw;
    height: 20rem;
  }
  .clients .clients__card .clients__card__text p {
    font-size: var(--text-sm);
  }
  .clients .clients__card .clients__card__text h4 {
    font-size: var(--text-sm);
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 768px) {
  .clients {
    /* the slides */
    /* the parent */
  }
  .clients .slick-slide {
    margin: 0 10px;
  }
  .clients .slick-list {
    margin: 0 -10px;
  }
  .clients .slick-slide.slick-current {
    transform: scale(1);
  }
  .clients .clients__card {
    width: 70vw;
    height: 20rem;
    display: flex;
  }
  .clients .clients__card .clients__card__text p {
    font-size: var(--text-sm);
    font-weight: 400;
  }
  .clients .clients__card .clients__card__text h4 {
    font-size: var(--text-sm);
    font-weight: 600;
  }
}
/*------------------------------------*\
# FEATURED SECTION
\*------------------------------------*/
.featured .featured__slider .card {
  width: 24rem;
  object-fit: cover;
  object-position: center;
}
.featured .featured__slider .card .card-body .card-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.featured .featured__slider .card .card-body .card-text {
  font-size: var(--text-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.featured .featured__slider .card .card-body span {
  color: var(--secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
}
.featured .featured__slider .card .card-body span:hover {
  color: var(--dark-blue);
}
.featured .featured__slider .card .card-body .date {
  font-size: var(--text-sm);
  color: var(--gray-light);
}

@media screen and (max-device-width: 576px) {
  .featured .featured__slider .card {
    width: 18rem;
  }
}
/*------------------------------------*\
# JOIN US SECTION
\*------------------------------------*/
.join-us-bg {
  background-image: linear-gradient(90deg, rgba(17, 92, 143, 0.8) 0%, rgba(143, 30, 95, 0.8) 100%), url("../img/join-us.jpg");
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 95%;
  margin: 0 auto;
  border-radius: 10px;
}
.join-us-bg .join-us {
  text-align: center;
  width: 60%;
}
.join-us-bg .join-us h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.05rem;
  font-weight: 600;
  color: #fff;
}
.join-us-bg .join-us p {
  color: #fff;
  padding: 1rem 0;
  font-size: var(--text-lg);
  letter-spacing: -0.05rem;
}
.join-us-bg .join-us .join-us__btn {
  color: var(--secondary);
  padding: 0.875rem 4rem;
  background-color: #f8f8f8;
  font-weight: 700;
  display: inline-block;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}
.join-us-bg .join-us .join-us__btn:hover {
  background-color: #eee;
}

@media screen and (max-device-width: 576px) {
  .join-us-bg .join-us h2 {
    font-size: var(--text-2xl);
  }
  .join-us-bg .join-us p {
    font-size: var(--text-base);
  }
}
@media screen and (max-device-width: 768px) {
  .join-us-bg .join-us {
    width: 100%;
  }
}
@media screen and (min-device-width: 769px) and (max-device-width: 992px) {
  .join-us-bg .join-us {
    width: 80%;
  }
}
/*------------------------------------*\
# FAQ SECTION
\*------------------------------------*/
.faq .faq__left .faq__title {
  font-size: var(--text-5xl);
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -0.05rem;
}
.faq .faq__left .faq__img {
  width: 90%;
  margin-top: 4rem;
}
.faq .faq__right .accordion-item .accordion-button {
  font-weight: 600;
  font-size: var(--text-xl);
  color: #707070;
  letter-spacing: -0.05rem;
  background-color: #f8f8f8;
}
.faq .faq__right .accordion-button:focus {
  box-shadow: none;
}
.faq .faq__right .accordion-button:not(.collapsed) {
  color: var(--secondary);
}
.faq .faq__right .accordion-body {
  font-size: var(--text-lg);
  line-height: 1.75rem;
}

@media screen and (max-device-width: 768px) {
  .faq .faq__left .faq__title {
    font-size: var(--text-4xl);
  }
  .faq .faq__left .faq__img {
    width: 100%;
  }
  .faq .faq__right .accordion-item .accordion-button {
    font-size: var(--text-base);
  }
  .faq .faq__right .accordion-body {
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
# CONTACT US SECTION
\*------------------------------------*/
.contact-us {
  background-color: #f8f8f8;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 2rem 1rem;
}
.contact-us .contact__us__left {
  padding: 0 2rem;
}
.contact-us .contact__us__left h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.05rem;
}
.contact-us .contact__us__left p {
  font-size: var(--text-lg);
  letter-spacing: -0.05rem;
}
.contact-us .contact__us__right .hero__form {
  font-weight: 600;
  letter-spacing: -0.05em;
  border-radius: 0.5rem;
}
.contact-us .contact__us__right .hero__form .form-control:focus {
  box-shadow: none;
}
.contact-us .contact__us__right .hero__form .form-select:focus {
  box-shadow: none;
}
.contact-us .contact__us__right .hero__form h2 {
  font-size: var(--text-3xl);
  padding: 0 0 1rem 0;
  letter-spacing: -0.05em;
}
.contact-us .contact__us__right ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--gray-light);
  opacity: 1; /* Firefox */
}
.contact-us .contact__us__right .hero__submit {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 0.5rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.contact-us .contact__us__right .hero__submit:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

@media screen and (max-device-width: 576px) {
  .contact-us {
    padding: 2rem 1rem;
  }
  .contact-us .contact__us__left {
    padding: 0 1rem;
  }
  .contact-us .contact__us__left h3 {
    font-size: var(--text-lg);
  }
  .contact-us .contact__us__left p {
    font-size: var(--text-base);
    letter-spacing: -0.05rem;
  }
}
/*------------------------------------*\
# STAT SECTION
\*------------------------------------*/
.stat {
  border: 1px solid #e3e3e3;
}
.stat .stat__icon {
  height: 8.5rem;
}
.stat .stat__number {
  font-size: var(--text-7xl);
  font-weight: 600;
}
.stat .stat__card {
  padding: 2rem 4rem;
}
.stat .stat__card:nth-child(n) {
  border-right: 1px solid #e3e3e3;
}
.stat .stat__card:last-child {
  border-right: none;
}
.stat .stat__description {
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

@media screen and (min-device-width: 769px) and (max-device-width: 992px) {
  .stat .stat__card:nth-child(n) {
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
  .stat .stat__card:nth-child(n+3) {
    border-bottom: none;
  }
  .stat .stat__card:nth-child(even) {
    border-right: none;
  }
}
@media screen and (max-device-width: 768px) {
  .stat .stat__card:nth-child(n) {
    border-bottom: 1px solid #e3e3e3;
    border-right: none;
  }
  .stat .stat__card:last-child {
    border-bottom: none;
  }
}
/*------------------------------------*\
# FOOTER SECTION
\*------------------------------------*/
.footer-bg {
  background-color: var(--dark-blue);
}

.footer {
  color: #fff;
  letter-spacing: -0.05rem;
}
.footer .footer__logo {
  height: 10rem;
}
.footer .footer__address h3 {
  font-size: var(--text-xl);
  font-weight: 600;
}
.footer .footer__address p {
  font-size: var(--text-lg);
  font-weight: 300;
}
.footer .footer__social__media h4 {
  font-size: var(--text-xl);
  font-weight: 600;
}
.footer .footer__social__media .social__media__icon {
  font-size: var(--text-3xl);
}
.footer .footer__social__media .social__media__icon a {
  color: #fff;
  transition: 0.1s ease;
}
.footer .footer__social__media .social__media__icon a:hover {
  transform: scale(1.2);
}
.footer .footer__header {
  font-size: var(--text-2xl);
  font-weight: 600;
}
.footer .footer__list ul li a {
  color: #fff;
  text-decoration: underline;
  transition: 0.2s ease;
}
.footer .footer__list ul li a:hover {
  color: #0095ff;
}
.footer .footer__list .footer__faq li a {
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 600;
  text-decoration: underline;
  transition: 0.2s ease;
}
.footer .footer__list .footer__faq li a:hover {
  color: #0095ff;
}

/**\
#PRODUCT PAGE START
\*------------------------------------*/
/*------------------------------------*\
#PRODUCT HERO SECTION
\*------------------------------------*/
.product-hero-bg {
  background-color: #f1f1f1;
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-hero .product-hero__text h1 {
  font-size: var(--text-6xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--dark-blue-1);
}
.product-hero .product-hero__text p {
  font-size: var(--text-lg);
  font-weight: 300;
  padding: 2rem 0;
}
.product-hero .product-hero__text a {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1.2rem 3rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  margin-top: 10px;
}
.product-hero .product-hero__text a:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}
.product-hero .product-hero__img {
  text-align: center;
}
.product-hero .product-hero__img img {
  width: 100%;
}

@media screen and (max-device-width: 576px) {
  .product-hero .product-hero__text h1 {
    font-size: var(--text-4xl);
  }
  .product-hero .product-hero__text p {
    font-size: var(--text-lg);
    font-weight: 300;
    padding: 1rem 0;
  }
  .product-hero .product-hero__text button {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    margin-top: 2rem;
    width: 100%;
  }
  .product-hero .product-hero__text button:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
  .product-hero .product-hero__img img {
    width: 90%;
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .product-hero .product-hero__text p {
    font-size: var(--text-lg);
    font-weight: 300;
    padding: 1rem 0;
  }
  .product-hero .product-hero__text button {
    margin-top: 4rem;
  }
  .product-hero .product-hero__img img {
    width: 80%;
  }
}
/*------------------------------------*\
#PRODUCT PROJECT
\*------------------------------------*/
.product-project h2 {
  font-size: var(--text-6xl);
  font-weight: 600;
  color: var(--dark-blue-1);
  letter-spacing: -0.07em;
}
.product-project p {
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.product-project .project__container {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  overflow: hidden;
}
.product-project .project__container .project__container__tab {
  border-right: 1px solid #e3e3e3;
}
.product-project .project__container .project__container__tab li {
  color: var(--dark-blue-1);
  letter-spacing: -0.05em;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-lg);
  padding: 1.5rem;
  border-bottom: 1px solid #e3e3e3;
  transition: 0.2s ease;
}
.product-project .project__container .project__container__tab li:last-child {
  border-bottom: none;
}
.product-project .project__container .project__container__tab li.active {
  background: #9fd4ff;
  position: relative;
}
.product-project .project__container .project__container__tab li.active::after {
  content: "";
  width: 0;
  height: 0;
  right: 0;
  transform: translate(100%, -50%);
  top: 50%;
  border-top: 20px solid transparent;
  border-left: 35px solid #9fd4ff;
  border-bottom: 20px solid transparent;
  position: absolute;
}
.product-project .project__container .project__container__panel {
  max-height: 37.2rem;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 1rem 2.5rem;
}
.product-project .project__container .project__container__panel .card {
  height: 9.8rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
}
.product-project .project__container .project__container__panel .card h4 {
  font-size: var(--text-lg);
  color: var(--secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.product-project .project__container .project__container__panel .card p {
  font-size: var(--text-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  color: var(--primary);
}
.product-project .project__container .project__container__panel .card .read-more {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--secondary);
  cursor: pointer;
}

@media screen and (max-device-width: 576px) {
  .product-project h2 {
    font-size: var(--text-4xl);
  }
  .product-project p {
    font-size: var(--text-lg);
  }
  .product-project .project__container .project__container__tab {
    border-right: none;
  }
  .product-project .project__container .project__container__tab li {
    font-size: var(--text-base);
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e3e3e3;
  }
  .product-project .project__container .project__container__tab li:last-child {
    border-bottom: 1px solid #e3e3e3;
  }
  .product-project .project__container .project__container__tab li.active::after {
    display: none;
  }
  .product-project .project__container .project__container__panel {
    padding: 1.5rem 1rem;
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .product-project h2 {
    font-size: var(--text-5xl);
  }
  .product-project .project__container .project__container__tab {
    border-right: none;
  }
  .product-project .project__container .project__container__tab li {
    border-bottom: 1px solid #e3e3e3;
  }
  .product-project .project__container .project__container__tab li:last-child {
    border-bottom: 1px solid #e3e3e3;
  }
  .product-project .project__container .project__container__tab li.active::after {
    display: none;
  }
  .product-project .project__container .project__container__panel {
    padding: 1.5rem;
  }
}
/*------------------------------------*\
#PRODUCT CARD
\*------------------------------------*/
.product-cards .product__card {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background-color: #f8f8f8;
  width: 100%;
  height: 25rem;
}
.product-cards .product__card .card__text h4 {
  font-size: var(--text-4xl);
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--dark-blue-1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.product-cards .product__card .card__text p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6; /* number of lines to show */
  line-clamp: 6;
  -webkit-box-orient: vertical;
  word-break: break-word;
  width: 100%;
  font-size: var(--text-base);
  font-weight: 300;
  margin-top: 1rem;
}
.product-cards .product__card .card__text span {
  color: var(--dark-blue-1);
  font-weight: 600;
  cursor: pointer;
}
.product-cards .product__card .card__text span:hover {
  color: var(--secondary);
}
.product-cards .product__card .button {
  border: 1px solid #e3e3e3;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  color: #707070;
  font-weight: 600;
    text-align: center;
}

@media screen and (max-device-width: 576px) {
  .product-cards .product__card {
    padding: 1.5rem;
  }
  .product-cards .product__card .card__text h4 {
    font-size: var(--text-3xl);
  }
}
/*------------------------------------*\
#PRODUCT PAGE START
\**/
/**\
#PRODUCT--HEALTH PAGE START
\*------------------------------------*/
/*------------------------------------*\
#HEALTH HERO SECTION
\*------------------------------------*/
.health-hero-bg {
  background-color: #f8f8f8;
}

.health-hero {
  padding: 5rem 0;
}
.health-hero .text {
  letter-spacing: -0.05em;
}
.health-hero .text h1 {
  font-size: var(--text-5xl);
  font-weight: 600;
}
.health-hero .text h1 span {
  color: #407bff;
}
.health-hero .text p {
  font-size: var(--text-lg);
  margin-top: 1rem;
}
.health-hero .view-btn {
  padding: 0.6rem 2rem;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  font-weight: 600;
  color: #407bff;
  transition: 0.2s ease;
}
.health-hero .view-btn:hover {
  border: 1px solid #407bff;
}
.health-hero .contact-btn {
  padding: 0.6rem 2rem;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  font-weight: 600;
  color: #1b2e35;
  transition: 0.2s ease;
}
.health-hero .contact-btn:hover {
  border: 1px solid #1b2e35;
}

@media screen and (max-device-width: 768px) {
  .health-hero {
    padding: 3.5rem 0;
  }
  .health-hero .text {
    letter-spacing: -0.05em;
  }
  .health-hero .text h1 {
    font-size: var(--text-3xl);
  }
  .health-hero .text p {
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
#HEALTH FEATURES SECTION
\*------------------------------------*/
.health__header {
  text-align: center;
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.health-features .features__img {
  width: 80%;
}
.health-features ul li .icon {
  height: 1.5rem;
}
.health-features ul li p {
  font-size: var(--text-lg);
}

@media screen and (max-device-width: 576px) {
  .health__header {
    text-align: left;
    font-size: var(--text-3xl);
  }
  .health-features .features__img {
    width: 100%;
  }
  .health-features ul li .icon {
    height: 1.2rem;
  }
  .health-features ul li p {
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
#HEALTH WHY CHOOSE US SECTION
\*------------------------------------*/
.health-bg {
  background-color: rgba(217, 229, 255, 0.29);
}

.health__choose .header__des {
  font-size: var(--text-lg);
  padding: 2rem 0;
  text-align: center;
  max-width: 60rem;
  letter-spacing: -0.05em;
}
.health__choose .choose__faq h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.07em;
}

@media screen and (max-device-width: 576px) {
  .health__choose .header__des {
    font-size: var(--text-base);
    text-align: left;
  }
  .health__choose .choose__faq h3 {
    font-size: var(--text-2xl);
  }
}
/*------------------------------------*\
#HEALTH SERVICE SECTION
\*------------------------------------*/
.health-partner .tech__logo_container .logo {
  height: 6rem;
}
.health-partner .tech__logo_container .logo img {
  height: 3.5rem;
  max-width: 100%;
  display: inline-block;
}

/*------------------------------------*\
#HEALTH SERVICE SECTION
\*------------------------------------*/
.health-service .feature__card {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 1.5rem;
  background-color: #fff;
  letter-spacing: -0.05em;
  height: 20rem;
}
.health-service .feature__card .icon img {
  height: 4rem;
}
.health-service .feature__card .feature__text h4 {
  margin-top: 1.5rem;
  font-size: var(--text-xl);
  font-weight: 600;
}
.health-service .feature__card .feature__text p {
  font-size: var(--text-base);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  margin-top: 1rem;
}
.health-service .feature__card .feature__text .read-more {
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
}

/*------------------------------------*\
#PRODUCT--HEALTH PAGE END
\**/
/**\
#CONTACT PAGE START
\*------------------------------------*/
/*------------------------------------*\
#CONTACT HERO SECTION
\*------------------------------------*/
.contact-hero-bg {
  background-color: #f3f3f3;
}

.contact-hero .contact-hero__text h2 {
  font-size: var(--text-7xl);
  font-weight: 600;
  letter-spacing: -0.07em;
}
.contact-hero .contact-hero__text p {
  font-size: var(--text-2xl);
  letter-spacing: -0.05em;
  font-weight: 300;
  max-width: 28rem;
}
.contact-hero .contact-hero__text p .send-msg {
  color: #8f1e5f;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: 0.2s ease;
}

@media screen and (max-device-width: 576px) {
  .contact-hero .contact-hero__text h2 {
    font-size: var(--text-5xl);
  }
  .contact-hero .contact-hero__text p {
    font-size: var(--text-xl);
  }
}
/*------------------------------------*\
#CONTACT FORM
\*------------------------------------*/
.contact-form .address__container .header__text {
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: -0.05em;
  position: relative;
}
.contact-form .address__container .header__text::after {
  content: "";
  width: 6rem;
  position: absolute;
  border-radius: 5px;
  bottom: 4px;
  margin-left: 3px;
  height: 3px;
  background-color: #333333;
}
.contact-form .address__container .address .address__icon svg {
  height: 2rem;
}
.contact-form .address__container .address .address__text {
  font-size: var(--text-lg);
  letter-spacing: -0.05em;
}
.contact-form .address__container .address .address__text p {
  font-weight: 600;
}
.contact-form .form-control:focus {
  box-shadow: none;
}
.contact-form .form-select:focus {
  box-shadow: none;
}
.contact-form .hero__form {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #e3e3e3;
  padding: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: -0.05em;
  border-radius: 0.5rem;
  margin-top: -20rem;
}
.contact-form .hero__form h2 {
  font-size: 2.25rem;
  padding: 0.5rem 0 1rem 0;
  letter-spacing: -0.05em;
}
.contact-form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--gray-light);
  opacity: 1; /* Firefox */
}
.contact-form .hero__submit {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 0.5rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.contact-form .hero__submit:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

@media screen and (max-device-width: 992px) {
  .contact-form .hero__form {
    margin-top: 2rem;
  }
  .contact-form .hero__form h2 {
    font-size: 2.25rem;
    padding: 0.5rem 0 1rem 0;
    letter-spacing: -0.05em;
  }
  .contact-form ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--gray-light);
    opacity: 1; /* Firefox */
  }
  .contact-form .hero__submit {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 0.5rem;
    border-radius: 7px;
    font-size: var(--text-lg);
  }
  .contact-form .hero__submit:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
/*------------------------------------*\
#CONTACT IMG
\*------------------------------------*/
.contact-image {
  margin: 0 auto;
}
.contact-image img {
  width: 95%;
  max-height: 50rem;
  object-fit: cover;
  object-position: center;
}

/*------------------------------------*\
#LOCATION
\*------------------------------------*/
.contact-location ul li {
  padding: 1.8rem 1rem;
  font-size: var(--text-2xl);
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.contact-location ul li:nth-child(even) {
  background-color: #5092c1;
}
.contact-location ul li:nth-child(even).active {
  position: relative;
}
.contact-location ul li:nth-child(even).active::after {
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
  border-left: 25px solid transparent;
  border-top: 40px solid #5092c1;
  border-right: 25px solid transparent;
  position: absolute;
}
.contact-location ul li:nth-child(odd) {
  background-color: var(--dark-blue-1);
}
.contact-location ul li:nth-child(odd).active {
  position: relative;
}
.contact-location ul li:nth-child(odd).active::after {
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
  border-left: 25px solid transparent;
  border-top: 40px solid #135c8f;
  border-right: 25px solid transparent;
  position: absolute;
}
.contact-location .location {
  height: 30rem;
  background-color: #9fd4ff;
}

/*------------------------------------*\
#CONTACT PAGE END
\**/
/**\
#SERVICE PAGE START
\*------------------------------------*/
/*------------------------------------*\
# SERVICE HERO
\*------------------------------------*/
.service-hero-bg {
  background: rgb(51, 98, 204);
  background: linear-gradient(90deg, rgba(51, 98, 204, 0.15) 0%, rgba(0, 150, 255, 0.15) 100%);
}
.service-hero-bg .service-hero__text {
  padding: 8rem 0;
  text-align: center;
}
.service-hero-bg .service-hero__text h1 {
  font-size: var(--text-5xl);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.service-hero-bg .service-hero__text h1 span {
  font-weight: 600;
}
.service-hero-bg .service-hero__text p {
  font-size: var(--text-xl);
  max-width: 56rem;
  margin-top: 1rem;
}

/*------------------------------------*\
#SERVICE FEATURED
\*------------------------------------*/
.service-featured a {
  color: var(--primary);
}
.service-featured h2 {
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: -0.05em;
  text-align: center;
}
.service-featured h2 span {
  color: #a1a1a1;
}
.service-featured p {
  font-size: var(--text-xl);
  text-align: center;
  margin-top: 1.2rem;
  max-width: 58rem;
}
.service-featured .feature__card {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  background-color: #f8f8f8;
  height: 24rem;
}
.service-featured .feature__card .icon img {
  height: 5rem;
}
.service-featured .feature__card .feature__text h4 {
  margin-top: 2rem;
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--secondary);
}
.service-featured .feature__card .feature__text p {
  font-size: var(--text-lg);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.service-featured .feature__card .feature__text .read-more {
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-device-width: 576px) {
  .service-hero-bg .service-hero__text {
    padding: 6rem 0;
    text-align: left;
  }
  .service-hero-bg .service-hero__text h1 {
    font-size: var(--text-4xl);
  }
  .service-hero-bg .service-hero__text p {
    font-size: var(--text-lg);
  }
  .service-featured h2 {
    font-size: var(--text-3xl);
    text-align: left;
  }
  .service-featured p {
    font-size: var(--text-lg);
    text-align: left;
  }
  .service-featured .feature__card {
    height: 22rem;
  }
}
/*------------------------------------*\
#SERVICE PAGE START
\**/
/**\
#NEWS PAGE START
\*------------------------------------*/
/*------------------------------------*\
#NEWS HERO SECTION
\*------------------------------------*/
.news-hero .news-hero__text h1 {
  font-size: var(--text-6xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--dark-blue-1);
}
.news-hero .news-hero__text p {
  font-size: var(--text-lg);
  font-weight: 300;
  padding: 2rem 0;
}
.news-hero .news-hero__text .btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1.2rem 3rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  margin-top: 5rem;
}
.news-hero .news-hero__text .btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}
.news-hero .news-hero__text .search-box {
  position: relative;
  border-radius: 10px;
  margin-top: 4rem;
  border: 1px solid #e3e3e3;
  overflow: hidden;
}
.news-hero .news-hero__text .search-box input {
  width: 100%;
  height: 3.8rem;
  padding: 0 2rem 0 3.5rem;
  border: none;
}
.news-hero .news-hero__text .search-box input::placeholder {
  color: #e3e3e3;
}
.news-hero .news-hero__text .search-box .search-btn {
  background-color: #fff;
  position: absolute;
  height: 100%;
  color: #e3e3e3;
  width: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--text-2xl);
}
.news-hero .news-hero__img {
  text-align: center;
}
.news-hero .news-hero__img img {
  width: 100%;
}

@media screen and (max-device-width: 576px) {
  .news-hero .news-hero__text h1 {
    font-size: var(--text-4xl);
  }
  .news-hero .news-hero__text p {
    font-size: var(--text-lg);
    font-weight: 300;
    padding: 1rem 0;
  }
  .news-hero .news-hero__text .btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    margin-top: 2rem;
    width: 100%;
  }
  .news-hero .news-hero__text .btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
  .news-hero .news-hero__img img {
    width: 90%;
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .news-hero .news-hero__text p {
    font-size: var(--text-lg);
    font-weight: 300;
    padding: 1rem 0;
  }
  .news-hero .news-hero__text .btn {
    margin-top: 4rem;
  }
  .news-hero .news-hero__img img {
    width: 80%;
  }
}
/*------------------------------------*\
#NEWS GALLERY SECTION
\*------------------------------------*/
.news-gallery a {
  color: var(--primary);
}
.news-gallery .gallery__btn__group {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
}
.news-gallery .gallery__btn__group .gallery__btn {
  background-color: #fff;
  border: 1px solid #707070;
  padding: 0.9rem 2rem;
  font-size: var(--text-lg);
  font-weight: 300;
  border-radius: 10px;
  letter-spacing: -0.05rem;
}
.news-gallery .gallery__btn__group .gallery__btn.active {
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  color: #fff;
  font-weight: 500;
}
.news-gallery .featured .featured__slider .card {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.news-gallery .featured .featured__slider .card .card-body .card-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.news-gallery .featured .featured__slider .card .card-body .card-text {
  font-size: var(--text-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.news-gallery .featured .featured__slider .card .card-body span {
  color: var(--secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
}
.news-gallery .featured .featured__slider .card .card-body span:hover {
  color: var(--dark-blue);
}
.news-gallery .featured .featured__slider .card .card-body .date {
  font-size: var(--text-sm);
  color: var(--gray-light);
}
.news-gallery .view__more__btn {
  background-color: #f8f8f8;
  padding: 0.8rem 3rem;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  cursor: pointer;
  font-size: var(text-lg);
  transition: 0.2s ease;
}
.news-gallery .view__more__btn:hover {
  background-color: #eeeeee;
}
.g-recaptcha{
    width: auto;

    border-radius: 4px;
    border-right: 1px solid #d8d8d8;
    overflow: hidden;
}

@media screen and (max-device-width: 1200px) {
  .news-gallery .gallery__btn__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .news-gallery .gallery__btn__group .gallery__btn {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
  }
    .gallery .gallery__btn__group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .gallery.gallery__btn__group .gallery__btn {
        padding: 0.9rem 2rem;
        font-size: var(--text-base);
    }
}
/*------------------------------------*\
#NEWS PAGE START
\**/
/**\
#ABOUT PARTNER PAGE START
\*------------------------------------*/
/*------------------------------------*\
#ABOUT HERO START COMMON
\*------------------------------------*/
.about-hero-bg {
  background-color: #f3f3f3;
  min-height: 20rem;
}

.about-hero .hero__text h2 {
  font-size: var(--text-8xl);
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: -0.07em;
}
.about-hero .hero__text p {
  font-size: var(--text-xl);
  letter-spacing: -0.05em;
  font-weight: 300;
}

@media screen and (max-device-width: 768px) {
  .about-hero .hero__text h2 {
    font-size: var(--text-6xl);
  }
  .about-hero .hero__text p {
    font-size: var(--text-lg);
  }
}
/*------------------------------------*\
#ABOUT PARTNER BRAND START
\*------------------------------------*/
.partner-brand .brand__card {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
}
.partner-brand .brand__card .brand__logo {
  height: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 90%;
  transform: translate(-50%, -50%);
  padding: 0.5rem;
}
.partner-brand .brand__card .view-details {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f3f3f3;
  color: var(--primary);
  text-align: center;
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 600;
  padding: 0.8rem;
  opacity: 0;
  transition: 0.5s ease;
}
.partner-brand .brand__card:hover .view-details {
  opacity: 1;
  display: block;
}
.partner-brand .brand__card:hover .view-details:hover {
  background-color: #e2e2e2;
}

/*------------------------------------*\
#ABOUT PARTNER PAGE END
\**/
/**\
#ABOUT MEDIA PAGE START
\*------------------------------------*/
/*------------------------------------*\
#VISUAL MEDIA
\*------------------------------------*/
.visual-media {
  /* the slides */
  /* the parent */
}
.visual-media .media__text h4 {
  font-size: var(--text-5xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--gray-light);
}
.visual-media .media__text p {
  font-size: var(--text-lg);
  letter-spacing: -0.05em;
  font-weight: 300;
}
.visual-media .media__text .more__btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 0.8rem 2.5rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  margin-top: 5rem;
}
.visual-media .media__text .more__btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}
.visual-media .slick-slide {
  margin: 0 27px;
}
.visual-media .slick-list {
  margin: 0 -27px;
}
.visual-media .slider {
  max-width: 100%;
  margin: 0 auto;
}
.visual-media .slick-track {
  padding-top: 53px;
  padding-bottom: 53px;
}
.visual-media .slick-slide {
  transition: transform 0.3s ease-in-out;
}
.visual-media .slick-slide:not(.slick-current) {
  filter: brightness(0.5);
}
.visual-media .slick-slide.slick-current {
  transform: scale(1.2);
  position: relative;
  z-index: 1;
}
.visual-media .media__card {
  border-radius: 8px;
  width: 22rem;
  height: 14rem;
  background-color: #a1a1a1;
  overflow: hidden;
}

/*------------------------------------*\
#PRINT MEDIA
\*------------------------------------*/
.print-media .header__text h4 {
  font-size: var(--text-5xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--gray-light);
  text-align: center;
}
.print-media .header__text p {
  font-size: var(--text-lg);
  letter-spacing: -0.05em;
  max-width: 50rem;
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
}
.print-media .media__card .image__container {
  position: relative;
  width: 100%;
  padding-top: 50%;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
}
.print-media .media__card .image__container .media__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.print-media .media__card .image__container .overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.77) 0%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.print-media .media__card .image__container .image__text {
  position: absolute;
  color: #fff;
  z-index: 999;
  bottom: 0;
  margin: 1rem;
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.07em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.print-media .media__card .card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  padding: 0.8rem 1rem;
}

@media screen and (max-device-width: 576px) {
  .print-media .header__text h4 {
    text-align: left;
  }
  .print-media .header__text p {
    text-align: left;
  }
  .print-media .media__card .image__container .image__text {
    font-size: var(--text-sm);
  }
  .print-media .media__card .card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    padding: 0.5rem;
  }
}
@media screen and (max-device-width: 992px) {
  .print-media .media__card .image__container .image__text {
    font-size: var(--text-sm);
    margin: 0.5rem;
  }
}
/*------------------------------------*\
#MEMORIES
\*------------------------------------*/
.memories .gallery a {
  display: inline-block;
  overflow: hidden;
  height: 20rem;
}
.memories .gallery a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  -webkit-transition: -webkit-transform 0.15s ease;
  -moz-transition: -moz-transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  -ms-transition: -ms-transform 0.15s ease;
  transition: transform 0.15s ease;
  position: relative;
  transition: 0.5s ease;
}
.memories .gallery a img:hover {
  scale: 1.2;
}
.memories .header__text h4 {
  font-size: var(--text-5xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--gray-light);
  text-align: center;
}
.memories .gallery__btn__group {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
}
.memories .gallery__btn__group .gallery__btn {
  background-color: #fff;
  border: 1px solid #707070;
  padding: 0.9rem 2rem;
  font-size: var(--text-lg);
  font-weight: 300;
  border-radius: 10px;
  letter-spacing: -0.05rem;
}
.memories .gallery__btn__group .gallery__btn.active {
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  color: #fff;
  font-weight: 500;
}
.memories .gallery {
  display: flex;
  flex-wrap: wrap;
  min-width: 320px;
}
.memories .gallery__card {
  width: 33.33%;
  overflow: hidden;
  position: relative;
}
.memories .gallery__card .image {
  z-index: 1;
  height: 100%;
}
.memories .gallery__card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
  transform: scale(1);
  padding: 3px;
}
.memories .view__more__btn {
  background-color: #f8f8f8;
  padding: 0.8rem 3rem;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  cursor: pointer;
  font-size: var(text-lg);
  transition: 0.2s ease;
}
.memories .view__more__btn:hover {
  background-color: #eeeeee;
}
.memories .gallery__card:hover .image img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .memories .gallery__card {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .memories .gallery__card {
    width: 100%;
  }
}
@media screen and (max-device-width: 1200px) {
  .memories .gallery__btn__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .memories .gallery__btn__group .gallery__btn {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
#ABOUT MEDIA PAGE START
\**/
/**\
#HEALTH CARE PAGE START
\*------------------------------------*/
/*------------------------------------*\
#HEALTHCARE HERO
\*------------------------------------*/
.healthcare-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../img/healthcare-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 2rem 0;
}

.healthcare-hero {
  padding: 5rem 0;
  color: #fff;
}
.healthcare-hero .hero__header {
  font-size: var(--text-7xl);
  font-weight: 600;
}
.healthcare-hero .hero__des {
  font-size: var(--text-lg);
  padding: 2rem 0;
  max-width: 50rem;
  font-weight: 300;
}
.healthcare-hero .hero__btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 6rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.healthcare-hero .hero__btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

@media screen and (max-device-width: 576px) {
  .healthcare-hero {
    padding: 2rem 0;
  }
  .healthcare-hero .hero__header {
    font-size: var(--text-5xl);
  }
  .healthcare-hero .hero__des {
    font-size: var(--text-base);
    padding: 2rem 0;
  }
  .healthcare-hero .hero__btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    width: 100%;
  }
  .healthcare-hero .hero__btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .healthcare-hero {
    padding: 2rem 0;
  }
  .healthcare-hero .hero__header {
    font-size: var(--text-6xl);
  }
  .healthcare-hero .hero__des {
    padding: 2rem 0;
  }
  .healthcare-hero .hero__btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    width: 50%;
  }
  .healthcare-hero .hero__btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
/*------------------------------------*\
#ABOUT HEALTHCARE
\*------------------------------------*/
.about-health-care .text h2 {
  font-size: var(--text-5xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--gray-light);
}
.about-health-care .text p {
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.about-health-care .health-image img {
  max-height: 30rem;
}

@media screen and (max-device-width: 576px) {
  .about-health-care .text h2 {
    font-size: var(--text-4xl);
  }
  .about-health-care .text p {
    font-size: var(--text-base);
  }
  .about-health-care .health-image img {
    max-height: 30rem;
    object-fit: cover;
    object-position: center;
  }
}
/*------------------------------------*\
#HEALTHCARE LIFE VIDEO
\*------------------------------------*/
.health-care-life {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 2rem;
}
.health-care-life h2 {
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: var(--gray-light);
  text-align: center;
}
.health-care-life .video-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);*/
}
.health-care-life .video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.health-care-life .video-container .video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.health-care-life .play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.health-care-life #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.health-care-life .play-button-wrapper svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

@media screen and (max-device-width: 576px) {
  .health-care-life {
    padding: 0.5rem;
  }
  .health-care-life .play-button-wrapper svg {
    width: 50px;
    height: 50px;
  }
  .health-care-life .video-container {
    border-radius: 5px;
  }
}
/*------------------------------------*\
#HEALTHCARE NEWS
\*------------------------------------*/
.health-care-news a {
  color: var(--primary);
}
.health-care-news .header__text h2 {
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--gray-light);
}
.health-care-news .header__text .view__all {
  color: #0044FF;
  cursor: pointer;
  text-decoration: underline;
  font-size: var(--text-lg);
}

@media screen and (max-device-width: 576px) {
  .health-care-news .header__text h2 {
    font-size: var(--text-3xl);
  }
}
/*------------------------------------*\
#HEALTH CARE PAGE START
\**/
/**\
#ABOUT US PAGE START
\*------------------------------------*/
/*------------------------------------*\
#ABOUT US HERO
\*------------------------------------*/
.about-us-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../img/about-us-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 2rem 0;
}

.about-us-hero {
  padding: 5rem 0;
  color: #fff;
}
.about-us-hero .hero__header {
  font-size: var(--text-7xl);
  font-weight: 600;
}
.about-us-hero .hero__des {
  font-size: var(--text-lg);
  padding: 2rem 0;
}
.about-us-hero .hero__des .read-more {
  color: var(--secondary);
  cursor: pointer;
  transition: 0.5s ease;
}
.about-us-hero .hero__des .read-more:hover {
  text-decoration: underline;
}
.about-us-hero .hero__btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 6rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.about-us-hero .hero__btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

@media screen and (max-device-width: 576px) {
  .about-us-hero {
    padding: 2rem 0;
  }
  .about-us-hero .hero__header {
    font-size: var(--text-5xl);
  }
  .about-us-hero .hero__des {
    font-size: var(--text-base);
    padding: 2rem 0;
  }
  .about-us-hero .hero__btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    width: 100%;
  }
  .about-us-hero .hero__btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .about-hero {
    padding: 2rem 0;
  }
  .about-hero .hero__header {
    font-size: var(--text-6xl);
  }
  .about-hero .hero__des {
    padding: 2rem 0;
  }
  .about-hero .hero__btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    width: 50%;
  }
  .about-hero .hero__btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
/*------------------------------------*\
#ABOUT US VIDEO SECTION
\*------------------------------------*/
.about-us-video {
  background-color: #fff;
  border-radius: 20px;
  padding: 1.2rem;
  margin-top: -2rem;
  position: relative;
  z-index: 99;
}
.about-us-video .video-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);*/
}
.about-us-video .video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us-video .video-container .video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.about-us-video .play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.about-us-video #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.about-us-video .play-button-wrapper svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

@media screen and (max-device-width: 576px) {
  .about-us-video {
    padding: 0.5rem;
    border-radius: 10px;
  }
  .about-us-video .play-button-wrapper svg {
    width: 50px;
    height: 50px;
  }
  .about-us-video .video-container {
    border-radius: 5px;
  }
}
/*------------------------------------*\
#MISSION SECTION
\*------------------------------------*/
.mission .mission__text .mission__text__left h4 {
  font-size: var(--text-3xl);
  font-weight: 600;
    /*color: var(--gray-light);*/

  letter-spacing: -0.07em;
    cursor: pointer;
}
.mission .mission__text .mission__text__left h5 {
  font-size: var(--text-3xl);
    font-weight: 600;
  /*color: var(--gray-light);*/
  letter-spacing: -0.07em;
  margin-top: 1.5rem;
    cursor: pointer;
}
.active_class {
    color: var(--purple);
}
.mission .mission__text .mission__text__right {
  padding: 2rem 4rem;
  font-size: var(--text-3xl);
  letter-spacing: -0.05em;
  font-weight: 600;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background-color: #f8f8f8;
  position: relative;
}
.mission .mission__text .mission__text__right .fa-quote-left {
  position: absolute;
  top: 0;
  left: 0;
  color: #303030;
  opacity: 5%;
  font-size: 6em;
  transform: translateY(-19%);
}
.mission .mission__text .mission__text__right .fa-quote-right {
  position: absolute;
  color: #303030;
  opacity: 5%;
  font-size: 6em;
  bottom: 0;
  transform: translateY(19%);
  right: 0;
}

@media screen and (max-device-width: 576px) {
  .mission .mission__text .mission__text__right {
    padding: 1rem;
    font-size: var(--text-2xl);
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .mission .mission__text .mission__text__right {
    padding: 1.5rem;
  }
}
/*------------------------------------*\
#MANAGEMENT SECTION
\*------------------------------------*/
.profile .header {
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--purple);
  letter-spacing: -0.07em;
  text-align: center;
}
.profile .profile__card {
  position: relative;
}
.profile .profile__card img {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.profile .profile__card .card__text {
  background-color: rgba(248, 248, 248, 0.7);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 95%;
  transform: translate(-50%, -10%);
}
.profile .profile__card .card__text h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.05em;
}
.profile .profile__card .card__text p {
  font-size: var(--text-lg);
  letter-spacing: -0.05em;
  color: purple;
  padding: 0.2rem 0;
}
.profile .profile__card .card__text .social__icon {
  font-size: var(--text-xl);
}
.profile .profile__card .card__text .social__icon a {
  color: var(--primary);
  display: inline-block;
  transition: 0.2s ease;
}
.profile .profile__card .card__text .social__icon a:hover {
  transform: scale(1.2);
}
.profile .view__more {
  display: inline-block;
  padding: 0.5rem 2rem;
  background-color: #f8f8f8;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 300;
}
.profile .view__more:hover {
  background-color: #ebebeb;
}

@media screen and (max-device-width: 576px) {
  .profile .header {
    font-size: var(--text-3xl);
    text-align: left;
  }
  .profile .profile__card {
    position: relative;
  }
  .profile .profile__card img {
    width: 100%;
    height: 30rem;
  }
  .profile .profile__card .card__text h4 {
    font-size: var(--text-xl);
  }
}
/*------------------------------------*\
#AWARDS SECTION
\*------------------------------------*/
.award-bg {
  background-color: #F8F8F8;
}

.awards {
  position: relative;
}
.awards .header {
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: -0.05em;
  text-align: center;
}
.awards .awards-card {
  width: 20rem;
  position: relative;
}
.awards .awards-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.awards .awards-card .overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.awards .awards-card .image__text {
  position: absolute;
  word-break: break-word;
  color: #fff;
  z-index: 999;
  bottom: 0;
  margin: 1rem;
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.07em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.awards .slider-btn {
  position: absolute;
  bottom: 0;
  z-index: 999;
  right: 1rem;
  transform: translateY(-50%);
}
.awards .slider-btn button {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #fff;
}

@media screen and (max-device-width: 576px) {
  .awards .header {
    font-size: var(--text-3xl);
    text-align: left;
  }
}
/*------------------------------------*\
#GROWTH SECTION
\*------------------------------------*/
.growth .growth__text h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.07em;
  font-weight: 600;
}
.growth .growth__text p {
  font-size: var(--text-lg);
  margin-top: 1rem;
}
.growth .growth__text .btn {
  padding: 0.8rem 3rem;
  border: 1px solid #e3e3e3;
  background-color: #f8f8f8;
  margin-top: 2rem;
  border-radius: 10px;
  font-size: var(--text-lg);
  font-weight: 500;
  transition: 0.2s ease;
}
.growth .growth__text .btn:hover {
  background-color: #ebebeb;
}
.growth .text-1 {
  padding: 1rem 0 1rem 2rem;
}
.growth .text-2 {
  padding: 1rem 2rem 1rem 0;
}

@media screen and (max-device-width: 576px) {
  .growth .growth__text h2 {
    font-size: var(--text-3xl);
  }
  .growth .growth__text p {
    font-size: var(--text-base);
  }
  .growth .growth__text .btn {
    width: 100%;
  }
}
@media screen and (max-device-width: 992px) {
  .growth .text-1 {
    padding: 1rem 1rem 1rem 0;
  }
  .growth .text-2 {
    padding: 1rem 1rem 1rem 0;
  }
}
/*------------------------------------*\
#ABOUT PAGE START
\**/
/**\
#HIRE PAGE START
\*------------------------------------*/
/*------------------------------------*\
#HIRE HERO SECTION
\*------------------------------------*/
.hire-hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/hire-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 2rem 0;
}

.hire-hero {
  padding: 5rem 0;
  color: #fff;
}
.hire-hero .hero__header {
  font-size: var(--text-7xl);
  font-weight: 600;
  letter-spacing: -0.07em;
}
.hire-hero .hero__header span {
  color: #407BFF;
}
.hire-hero .hero__btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 2rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  font-weight: 400;
}
.hire-hero .hero__btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}
.hire-hero .hero__btn__white {
  letter-spacing: -0.05em;
  background-color: #fff;
  transition: all 0.2s ease-out;
  padding: 1rem 2rem;
  border-radius: 7px;
  font-size: var(--text-lg);
}
.hire-hero .hero__btn__white:hover {
  background-color: #dddddd;
}

@media screen and (max-device-width: 576px) {
  .hire-hero {
    padding: 2rem 0;
  }
  .hire-hero .hero__header {
    font-size: var(--text-5xl);
  }
  .hire-hero .hero__btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    width: 100%;
  }
  .hire-hero .hero__btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
  .hire-hero .hero__btn__white {
    width: 100%;
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .hire-hero {
    padding: 2rem 0;
  }
  .hire-hero .hero__header {
    font-size: var(--text-6xl);
  }
  .hire-hero .hero__des {
    padding: 2rem 0;
  }
  .hire-hero .hero__btn {
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    background: rgb(17, 92, 143);
    background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
    transition: all 1s ease-out;
    padding: 1rem 2rem;
    border-radius: 7px;
    font-size: var(--text-lg);
    width: 100%;
  }
  .hire-hero .hero__btn:hover {
    background: rgb(143, 30, 95);
    background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
  }
}
/*------------------------------------*\
#HIRE 2ND NAV SECTION
\*------------------------------------*/
@media screen and (min-device-width: 1200px) {
  .hire-nav .navbar-nav {
    gap: 2rem;
  }
}
@media screen and (min-device-width: 992px) {
  .hire-nav ul li:hover > .dropdown-menu {
    display: block;
  }
}
/*------------------------------------*\
#HIRE DEVELOPER
\*------------------------------------*/
.hire__header {
  text-align: center;
  font-size: var(--text-4xl);
  font-weight: 600;
  letter-spacing: -0.07em;
}
.hire__header .icon {
  color: var(--purple);
  margin-right: 0.3rem;
}
.hire__header span {
  color: #407BFF;
  margin-right: 0.3rem;
}

.hire-dev .hire__text {
  width: 80%;
  margin: 0 auto;
}
.hire-dev .hire__text .hire__des {
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: -0.05em;
  margin-top: 1rem;
}
.hire-dev .video__container {
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}
.hire-dev .video__container .video_wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */
}
.hire-dev .video__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hire-dev .hire__stat {
  width: 80%;
  margin: 0 auto;
}
.hire-dev .hire__stat .stat__card {
  padding: 2rem;
}
.hire-dev .hire__stat .stat__card .card__text {
  text-align: center;
  color: #407BFF;
}
.hire-dev .hire__stat .stat__card .card__text h4 {
  font-size: var(--text-4xl);
  font-weight: 600;
}
.hire-dev .hire__stat .stat__card:nth-child(n) {
  border-right: 1px solid #000;
}
.hire-dev .hire__stat .stat__card:last-child {
  border-right: none;
}
.hire-dev .hire__stat .stat__description {
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

@media screen and (min-device-width: 768px) and (max-device-width: 1200px) {
  .hire-dev .hire__stat .stat__card:nth-child(n) {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .hire-dev .hire__stat .stat__card:nth-child(n+5) {
    border-bottom: none;
  }
  .hire-dev .hire__stat .stat__card:nth-child(even) {
    border-right: none;
  }
}
@media screen and (max-device-width: 768px) {
  .hire-dev .hire__stat .stat__card:nth-child(n) {
    border-bottom: 1px solid #000;
    border-right: none;
  }
  .hire-dev .hire__stat .stat__card:last-child {
    border-bottom: none;
  }
}
@media screen and (max-device-width: 576px) {
  .hire-dev .hire__header {
    text-align: left;
    font-size: var(--text-3xl);
  }
  .hire-dev .hire__header span {
    color: #407BFF;
    margin-right: 0.3rem;
  }
  .hire-dev .hire__text {
    width: 100%;
  }
  .hire-dev .hire__text .hire__des {
    text-align: left;
    font-size: var(--text-base);
  }
  .hire-dev .video__container {
    width: 100%;
    border-radius: 5px;
    margin-top: 2rem;
  }
}
@media screen and (max-device-width: 576px) {
  .hire__header {
    text-align: left;
    font-size: var(--text-3xl);
  }
  .hire__header span {
    color: #407BFF;
    margin-right: 0.3rem;
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 992px) {
  .hire-dev .hire__text {
    width: 100%;
  }
  .hire-dev .hire__text .hire__des {
    font-size: var(--text-base);
  }
  .hire-dev .video__container {
    width: 80%;
    border-radius: 5px;
    margin-top: 2rem;
  }
}
/*------------------------------------*\
#HIRIRING BP FEATURED
\*------------------------------------*/
.bp-featured {
  width: 80%;
  letter-spacing: -0.05em;
  margin: 0 auto;
}
.bp-featured p {
  padding: 1.5rem 0;
}
.bp-featured .bp-featured__img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}
.bp-featured .slider__card {
  width: 200px;
  background-color: #fafafa;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
}
.bp-featured .slider__card img {
  max-width: 100%;
  height: 3rem;
}

@media screen and (max-device-width: 1200px) {
  .bp-featured {
    width: 100%;
  }
  .slider__card img {
    max-height: 2.5rem;
  }
}
/*------------------------------------*\
#HIRIRING BP AWARDS
\*------------------------------------*/
.bp-awards {
  width: 80%;
  letter-spacing: -0.05em;
  margin: 0 auto;
}
.bp-awards p {
  padding: 1.5rem 0;
}
.bp-awards .awards__card {
  text-align: center;
  width: 100%;
}
.bp-awards .awards__card img {
  max-width: 100%;
  align-self: end;
}
.bp-awards .awards__card figcaption {
  padding: 1rem 0;
  height: 20%;
}

@media screen and (max-device-width: 1200px) {
  .bp-awards {
    width: 100%;
    letter-spacing: -0.05em;
    margin: 0 auto;
  }
  .bp-awards p {
    padding: 1.5rem 0;
  }
  .bp-awards .awards__card {
    text-align: center;
    width: 100%;
  }
  .bp-awards .awards__card img {
    max-width: 100%;
    align-self: end;
    max-height: 100%;
  }
  .bp-awards .awards__card figcaption {
    padding: 1rem 0;
    height: 20%;
  }
}
/*------------------------------------*\
#HIRIRING MODEL
\*------------------------------------*/
.hiring-model .it__expert {
  width: 80%;
  letter-spacing: -0.05em;
}
.hiring-model .it__expert .sub__title {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  margin-top: 2rem;
}
.hiring-model .it__expert .hire__des {
  padding: 1rem 0;
}
.hiring-model .it__expert .experties__list {
  width: 90%;
  margin: 0 auto;
}
.hiring-model .it__expert .experties__list ul > li {
  position: relative;
  text-indent: 5px;
  font-size: var(--text-lg);
}
.hiring-model .it__expert .experties__list ul > li::before {
  content: "";
  position: absolute;
  width: 20px;
  background-color: #000;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}
.hiring-model .it__expert .btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 2rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  font-weight: 400;
  width: 50%;
}
.hiring-model .it__expert .btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}
.hiring-model .hiring-model__resource {
  width: 80%;
  letter-spacing: -0.05em;
}
.hiring-model .hiring-model__resource .hiring__type__card {
  background-color: #F5F5F5;
  text-align: center;
  padding: 1.5rem 0.5rem;
  border: 1px solid #e3e3e3;
}
.hiring-model .hiring-model__resource .hiring__type__card h2 {
  font-size: var(--text-3xl);
  font-weight: 600;
}
.hiring-model .hiring-model__resource .hiring__type__card p {
  font-size: var(--text-sm);
  margin-top: 0.5rem;
}
.hiring-model .hiring-model__resource .team__card h2 {
  font-size: var(--text-xl);
  font-size: 600;
  text-align: center;
  padding: 1rem 0;
  font-weight: 600;
}
.hiring-model .hiring-model__resource .team__card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  object-position: center;
}
.hiring-model .hiring-model__resource .team__card p {
  font-size: var(--text-sm);
  margin: 0.5rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.hiring-model .hiring-model__resource .btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 2rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  font-weight: 400;
  width: 50%;
}
.hiring-model .hiring-model__resource .btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

@media screen and (max-device-width: 768px) {
  .hiring-model .it__expert {
    width: 100%;
  }
  .hiring-model .it__expert .sub__title {
    padding: 1rem 0;
    text-align: left;
    margin-top: 1rem;
  }
  .hiring-model .it__expert .hire__des {
    padding: 1rem 0;
  }
  .hiring-model .it__expert .experties__list {
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
  }
  .hiring-model .it__expert .experties__list ul > li {
    text-indent: 5px;
    font-size: var(--text-base);
  }
  .hiring-model .it__expert .experties__list ul > li::before {
    width: 10px;
  }
  .hiring-model .it__expert .btn {
    width: 100%;
  }
  .hiring-model .hiring-model__resource {
    width: 100%;
  }
  .hiring-model .hiring-model__resource .hiring__type__card h2 {
    font-size: var(--text-2xl);
  }
  .hiring-model .hiring-model__resource .team__card h2 {
    font-size: var(--text-xl);
  }
  .hiring-model .hiring-model__resource .team__card img {
    height: 12rem;
  }
  .hiring-model .hiring-model__resource .btn {
    width: 100%;
  }
}
@media screen and (min-device-width: 769px) and (max-device-width: 1200px) {
  .hiring-model .it__expert {
    width: 100%;
  }
  .hiring-model .it__expert .sub__title {
    padding: 1rem 0;
    text-align: center;
    margin-top: 1rem;
  }
  .hiring-model .it__expert .hire__des {
    padding: 1rem 0;
  }
  .hiring-model .it__expert .experties__list {
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
  }
  .hiring-model .it__expert .experties__list ul > li {
    text-indent: 5px;
    font-size: var(--text-base);
  }
  .hiring-model .it__expert .experties__list ul > li::before {
    width: 10px;
  }
  .hiring-model .hiring-model__resource {
    width: 100%;
  }
}
/*------------------------------------*\
#OFFERINGS
\*------------------------------------*/
.offerings {
  width: 80%;
  margin: 0 auto;
}
.offerings .offerings__text {
  margin-top: 2rem;
}
.offerings .offerings__text .offerings__card {
  letter-spacing: -0.05em;
  padding: 1rem;
}
.offerings .offerings__text .offerings__card h4 {
  font-size: var(--text-3xl);
  font-weight: 600;
  padding: 1rem 0;
  letter-spacing: -0.07em;
}

@media screen and (max-device-width: 1200px) {
  .offerings {
    width: 100%;
  }
  .offerings .offerings__text {
    margin-top: 2rem;
  }
  .offerings .offerings__text .offerings__card {
    letter-spacing: -0.05em;
    padding: 0.2rem;
  }
  .offerings .offerings__text .offerings__card h4 {
    font-size: var(--text-2xl);
    font-weight: 600;
    padding: 1rem 0;
    letter-spacing: -0.07em;
  }
  .offerings .offerings__text .offerings__card p {
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
#RECRUITMENT
\*------------------------------------*/
.recruitment {
  width: 80%;
}
.recruitment .recruitment__card {
  text-align: center;
  padding: 2.5rem 0.5rem;
  background-color: #fff;
  width: 100%;
  letter-spacing: -0.05em;
}
.recruitment .recruitment__card h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
}
.recruitment .recruitment__step li {
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
}
.recruitment .recruitment__step li span {
  font-weight: 600;
}
.recruitment .btn {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  background: rgb(17, 92, 143);
  background: linear-gradient(90deg, rgb(17, 92, 143) 0%, rgb(143, 30, 95) 100%);
  transition: all 1s ease-out;
  padding: 1rem 2rem;
  border-radius: 7px;
  font-size: var(--text-lg);
  font-weight: 400;
  width: 50%;
}
.recruitment .btn:hover {
  background: rgb(143, 30, 95);
  background: linear-gradient(90deg, rgb(143, 30, 95) 0%, rgb(17, 92, 143) 100%);
}

@media screen and (max-device-width: 768px) {
  .recruitment {
    width: 100%;
  }
  .recruitment .recruitment__card h4 {
    font-size: var(--text-xl);
  }
  .recruitment .recruitment__step li {
    font-size: var(--text-base);
  }
  .recruitment .btn {
    width: 100%;
  }
}
@media screen and (min-device-width: 769px) and (max-device-width: 1200px) {
  .recruitment .btn {
    width: 80%;
  }
}
/*------------------------------------*\
#HIRE TECHNOLOGY
\*------------------------------------*/
.hire-technology .hire-technology__text {
  width: 80%;
}
.hire-technology .gallery__btn__group {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
}
.hire-technology .gallery__btn__group .gallery__btn {
  background-color: #fff;
  color: var(--gray-light);
  padding: 0.5rem 2rem;
  font-size: var(--text-lg);
  font-weight: 300;
  border-radius: 10px;
  letter-spacing: -0.05rem;
}
.hire-technology .gallery__btn__group .gallery__btn.active {
  background-color: #f8f8f8;
  color: #000;
  font-weight: 500;
  border: 1px solid #e3e3e3;
}
.hire-technology .tech__logo_container .tech-logo img {
  height: 3rem;
  max-width: 100%;
  display: inline-block;
}

@media screen and (max-device-width: 576px) {
  .hire-technology .hire-technology__text {
    width: 100%;
  }
  .hire-technology .gallery__btn__group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .hire-technology .gallery__btn__group .gallery__btn {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
  }
}
@media screen and (min-device-width: 577px) and (max-device-width: 1200px) {
  .hire-technology .gallery__btn__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .hire-technology .gallery__btn__group .gallery__btn {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
  }
}
/*------------------------------------*\
#HIRING ADVANTAGE
\*------------------------------------*/
.hiring-advantage {
  width: 90%;
  margin: 0 auto;
}
.hiring-advantage .features {
  margin-top: 4rem;
}
.hiring-advantage .features .image__box {
  background-color: #fff;
  padding-top: 75%;
  border-radius: 15px;
  position: relative;
  width: 100%;
}
.hiring-advantage .features .image__box .image__container__left {
  position: absolute;
  left: 1.5rem;
  top: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.hiring-advantage .features .image__box .image__container__left img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.hiring-advantage .features .image__box .image__container__right {
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.hiring-advantage .features .image__box .image__container__right img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.hiring-advantage .features .text {
  padding: 2rem;
}
.hiring-advantage .features .text h3 {
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.07em;
}
.hiring-advantage .features .text p {
  font-size: var(--text-lg);
  margin-top: 1rem;
}

@media screen and (max-device-width: 576px) {
  .hiring-advantage {
    width: 100%;
  }
  .hiring-advantage .features {
    margin-top: 2rem;
  }
  .hiring-advantage .features .image__box .image__container__left {
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    border-radius: 10px;
  }
  .hiring-advantage .features .image__box .image__container__right {
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    border-radius: 10px;
  }
  .hiring-advantage .features .text {
    padding: 1rem 0.5rem;
  }
  .hiring-advantage .features .text p {
    font-size: var(--text-base);
    margin-top: 1rem;
  }
}
@media screen and (max-device-width: 992px) {
  .hiring-advantage {
    width: 100%;
  }
}
/*------------------------------------*\
#HIRING OUR WORKS
\*------------------------------------*/
.hiring-our-works .image___gallery .image__container--one {
  width: 65%;
  padding-top: 32%;
  position: relative;
}
.hiring-our-works .image___gallery .image__container--one img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  border-radius: 15px;
  overflow: hidden;
}
.hiring-our-works .image___gallery .image__container--two {
  width: 35%;
  padding-top: 32%;
  position: relative;
}
.hiring-our-works .image___gallery .image__container--two img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-device-width: 576px) {
  .hiring-our-works .image___gallery .image__container--one {
    width: 100%;
    padding-top: 49%;
    position: relative;
  }
  .hiring-our-works .image___gallery .image__container--one img {
    padding: 0.2rem;
    border-radius: 15px;
  }
  .hiring-our-works .image___gallery .image__container--two {
    width: 100%;
    padding-top: 91%;
    position: relative;
  }
  .hiring-our-works .image___gallery .image__container--two img {
    padding: 0.2rem;
    border-radius: 15px;
  }
}
/*------------------------------------*\
#HIRE PAGE END
\**/

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