/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #063b82;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  width: 100%;
  height: 72px;
  background: #ffffff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  width: min(1180px, 92%);
  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo {
  width: 175px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
}

/* DESKTOP NAV */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;

  font-size: 14px;
  font-weight: 600;

  color: #063b82;

  padding: 27px 0;

  transition: 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #e90069;
}

.desktop-nav a.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 12px;

  height: 2px;

  background: #e90069;
}

/* HEADER CONTACT */

.header-contact {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-btn {
  min-width: 145px;

  height: 38px;

  padding: 0 15px;

  border-radius: 25px;

  background: linear-gradient(90deg, #ed006b, #e40072);

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  font-size: 14px;
  font-weight: 700;
}

.phone-icon {
  font-size: 14px;
}

.whatsapp-btn {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: #ffffff;

  border: 2px solid #1689dc;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1689dc;

  font-size: 20px;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

  display: none;

  flex-direction: column;
  justify-content: center;
  gap: 5px;

  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;

  background: #063b82;

  display: block;

  transition: 0.3s;
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;

  transition: 0.35s;

  z-index: 1090;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;

  top: 0;
  left: 0;

  width: 310px;
  max-width: 85%;

  height: 100vh;

  background: #ffffff;

  z-index: 1100;

  transform: translateX(-100%);

  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);

  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.12);

  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* MOBILE HEADER */

.mobile-menu-header {
  height: 80px;

  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #eeeeee;
}

.mobile-menu-header img {
  width: 145px;
}

.menu-close {
  width: 40px;
  height: 40px;

  border: 0;

  background: #f8f8f8;

  border-radius: 50%;

  color: #063b82;

  font-size: 28px;

  line-height: 1;

  cursor: pointer;
}

/* MOBILE NAV */

.mobile-nav {
  padding: 20px;
}

.mobile-nav a {
  display: block;

  padding: 17px 15px;

  color: #063b82;

  font-size: 16px;
  font-weight: 600;

  border-bottom: 1px solid #eeeeee;

  transition: 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #e90069;
  padding-left: 22px;
}

/* MOBILE CONTACT */

.mobile-contact {
  padding: 10px 20px;
}

.mobile-phone,
.mobile-whatsapp {
  display: flex;

  align-items: center;
  justify-content: center;

  height: 48px;

  margin-top: 10px;

  border-radius: 30px;

  font-weight: 600;

  font-size: 14px;
}

.mobile-phone {
  color: #ffffff;

  background: #063b82;
}

.mobile-whatsapp {
  color: #ffffff;

  background: #1dbf73;
}

/* =========================================
   HERO
========================================= */

.hero-section {
  position: relative;

  width: 100%;

  overflow: hidden;
}

.hero-slider {
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 700px;
  height: 700px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */

.hero-bg {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* CONTENT */

.hero-container {
  position: relative;

  z-index: 3;

  width: min(1180px, 92%);

  height: 100%;

  margin: auto;

  display: flex;

  align-items: center;
}

.hero-content {
  width: 520px;

  padding-bottom: 10px;
}

.small-title {
  display: inline-flex;

  align-items: center;

  color: #1551a0;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;

  margin-bottom: 12px;
}

.small-title::after {
  content: "";

  width: 30px;

  height: 2px;

  background: #e90069;

  margin-left: 10px;
}

.hero-content h1 {
  font-family: "DM Sans", sans-serif;

  color: #06418d;

  font-size: clamp(38px, 4vw, 57px);

  line-height: 1.02;

  font-weight: 500;

  margin-bottom: 17px;
}

.hero-content h1 strong {
  display: block;

  font-weight: 800;
}

.hero-content h1 em {
  display: block;

  font-family: "Playfair Display", serif;

  color: #ec0870;

  font-size: 1.08em;

  font-weight: 600;

  line-height: 0.95;
}

.hero-content p {
  width: 450px;

  max-width: 100%;

  color: #174b8d;

  font-size: 14px;

  line-height: 1.6;

  margin-bottom: 22px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;

  align-items: center;

  gap: 12px;
}

.primary-btn {
  height: 43px;

  padding: 0 20px;

  border-radius: 25px;

  color: #ffffff;

  background: linear-gradient(90deg, #ed006b, #e90070);

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  font-size: 12px;

  font-weight: 700;

  box-shadow: 0 7px 18px rgba(233, 0, 105, 0.2);

  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  height: 43px;

  padding: 0 18px;

  border-radius: 25px;

  color: #06418d;

  background: #ffffff;

  border: 1px solid #2872c5;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  font-size: 12px;

  font-weight: 700;
}

/* =========================================
   SLICK ARROWS
========================================= */

.hero-slider .slick-prev,
.hero-slider .slick-next {
  position: absolute;

  width: 52px;
  height: 52px;

  z-index: 20;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(6, 65, 141, 0.12);

  box-shadow: 0 8px 25px rgba(0, 35, 90, 0.15);

  transition: all 0.3s ease;
}

.hero-slider .slick-prev {
  left: 22px;
}

.hero-slider .slick-next {
  right: 22px;
}

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
  font-family: Arial, sans-serif;

  font-size: 0;

  opacity: 1;
}

.hero-slider .slick-prev::after,
.hero-slider .slick-next::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  top: 50%;

  border-top: 2px solid #06418d;
  border-right: 2px solid #06418d;

  transition: 0.3s;
}

/* LEFT */

.hero-slider .slick-prev {
  left: 28px;
}

.hero-slider .slick-prev::after {
  left: 21px;

  transform: translateY(-50%) rotate(-135deg);
}

/* RIGHT */

.hero-slider .slick-next {
  right: 28px;
}

.hero-slider .slick-next::after {
  right: 21px;

  transform: translateY(-50%) rotate(45deg);
}

/* HOVER */

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background: #e90070;
  border-color: #e90070;
}

.hero-slider .slick-prev:hover::after,
.hero-slider .slick-next:hover::after {
  border-color: #ffffff;
}

/* =========================================
   SLICK DOTS
========================================= */

.hero-slider .slick-dots {
  bottom: 18px;

  z-index: 20;
}

.hero-slider .slick-dots li button::before {
  color: #ffffff;

  font-size: 9px;

  opacity: 0.7;
}

.hero-slider .slick-dots li.slick-active button::before {
  color: #ed006b;

  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* =========================================
   REQUIREMENTS SECTION
========================================= */

.requirment {
  position: relative;
  width: 100%;
  padding: 55px 0;

  background:
    linear-gradient(
      110deg,
      rgba(237, 248, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.5) 45%,
      rgba(245, 251, 255, 0) 100%
    ),
    url("../Images/bg3.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* Decorative curved shape */

.requirment::before {
  content: "";

  position: absolute;

  left: -120px;
  bottom: -120px;

  width: 430px;
  height: 250px;

  border-top: 5px solid rgba(239, 0, 105, 0.12);

  border-radius: 50%;

  transform: rotate(-10deg);

  pointer-events: none;
}

.requirment-container {
  width: min(1180px, 92%);

  margin: auto;

  display: grid;

  grid-template-columns: 250px 1fr;

  gap: 35px;

  align-items: center;
}

/* =========================================
   INTRO
========================================= */

.requirment-intro {
  position: relative;

  z-index: 2;
}

.section-label {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #e90070;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.4px;

  margin-bottom: 10px;
}

.section-label::after {
  content: "";

  width: 30px;

  height: 2px;

  background: #e90070;
}

.requirment-intro h2 {
  color: #063b82;

  font-family: "Playfair Display", serif;

  font-size: 32px;

  line-height: 1.1;

  margin-bottom: 15px;
}

.requirment-intro p {
  color: #496b98;

  font-size: 14px;

  line-height: 1.6;

  margin-bottom: 20px;
}

/* BUTTON */

.section-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-width: 105px;

  height: 40px;

  padding: 0 18px;

  border-radius: 25px;

  background: linear-gradient(90deg, #e90070, #f00078);

  color: #ffffff;

  font-size: 14px;

  font-weight: 700;

  box-shadow: 0 7px 18px rgba(233, 0, 105, 0.15);

  transition: 0.3s;
}

.section-btn:hover {
  transform: translateY(-2px);
}

/* =========================================
   REQUIREMENT GRID
========================================= */

.requirment-list {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  background: rgba(255, 255, 255, 0.8);

  border-radius: 12px;

  overflow: hidden;

  border: 1px solid #edf2f8;

  box-shadow: 0 8px 30px rgba(18, 73, 130, 0.06);
}

.requirment-item {
  min-height: 145px;

  padding: 20px 12px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  border-right: 1px solid #e9eff6;

  border-bottom: 1px solid #e9eff6;

  transition: 0.3s;
}

.requirment-item:nth-child(4n) {
  border-right: none;
}

.requirment-item:nth-child(n + 5) {
  border-bottom: none;
}

.requirment-item:hover {
  background: #ffffff;

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(18, 73, 130, 0.08);

  z-index: 2;
}

/* ICON */

.requirment-icon {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  border: 1px solid #f2a7ca;

  background: linear-gradient(145deg, #ffffff, #f7faff);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 9px;

  color: #0752a0;

  font-size: 21px;

  box-shadow: 0 5px 12px rgba(233, 0, 105, 0.07);
}

.requirment-item h3 {
  color: #063b82;

  font-size: 14px;

  line-height: 1.3;

  font-weight: 700;

  margin-bottom: 5px;
}

.requirment-item p {
  color: #55739a;

  font-size: 12px;

  line-height: 1.4;

  max-width: 115px;
}

/* =========================================
   SERVICES SECTION
========================================= */

.services {
  position: relative;

  width: 100%;

  padding: 65px 0;

  background: #ffffff;

  overflow: hidden;
}

/* Decorative curves */

.services::before {
  content: "";

  position: absolute;

  left: -170px;
  bottom: -150px;

  width: 500px;
  height: 300px;

  border-top: 5px solid rgba(233, 0, 105, 0.1);

  border-radius: 50%;

  transform: rotate(-10deg);
}

.services-container {
  width: min(1180px, 92%);

  margin: auto;

  display: grid;

  grid-template-columns: 245px 1fr;

  gap: 30px;

  align-items: center;
}

/* =========================================
   SERVICES INTRO
========================================= */

.services-intro {
  position: relative;

  z-index: 2;
}

.services-intro h2 {
  font-family: "Playfair Display", serif;

  color: #063b82;

  font-size: 29px;

  line-height: 1.1;

  margin-bottom: 15px;
}

.services-intro p {
  color: #55739a;

  font-size: 14px;

  line-height: 1.6;

  margin-bottom: 20px;
}

/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 14px;
}

/* =========================================
   SERVICE CARD
========================================= */

.service-card {
  position: relative;

  background: #ffffff;

  border-radius: 10px;

  overflow: hidden;

  border: 1px solid #edf0f5;

  box-shadow: 0 7px 22px rgba(18, 73, 130, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(18, 73, 130, 0.14);
}

/* IMAGE */

.service-image {
  position: relative;

  height: 135px;

  overflow: hidden;
}

.service-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* PINK ICON */

.service-icon {
  position: absolute;

  left: 12px;

  bottom: -1px;

  width:45px;

  height: 45px;

  border-radius: 50%;

  background: #e90070;

  border: 3px solid #ffffff;

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;
}
.service-icon img{
    max-width: 25px;
    object-fit: contain;
}
/* CONTENT */

.service-content {
  padding: 17px 13px 18px;
}

.service-content h3 {
  color: #063b82;

  font-size: 13px;

  line-height: 1.3;

  min-height: 34px;

  margin-bottom: 8px;

  font-weight: 800;
}

.service-content p {
  color: #6882a2;

  font-size: 10px;

  line-height: 1.5;

  min-height: 30px;

  margin-bottom: 12px;
}

.service-content a {
  color: #e90070;

  font-size: 10px;

  font-weight: 700;

  display: inline-flex;

  align-items: center;

  gap: 6px;
}

.service-content a span {
  transition: 0.3s;
}

.service-content a:hover span {
  transform: translateX(4px);
}

/* =========================================
   ABOUT SECTION
========================================= */

.about {
  position: relative;

  padding: 85px 0;

  background: #ffffff;

  overflow: hidden;
}

.about::after {
  content: "";

  position: absolute;

  right: -180px;
  top: 50px;

  width: 420px;
  height: 220px;

  border: 3px solid rgba(233, 0, 105, 0.08);

  border-radius: 50%;

  transform: rotate(-25deg);

  pointer-events: none;
}

.about-container {
  width: min(1100px, 92%);

  margin: auto;

  display: grid;

  grid-template-columns: 0.9fr 1fr;

  gap: 75px;

  align-items: center;
}

/* IMAGE */

.about-image-wrap {
  position: relative;

  padding: 15px;
}

.about-image {
  height: 410px;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(6, 59, 130, 0.13);
}

.about-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.about-image-wrap::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  left: -5px;
  top: -5px;

  border-left: 4px solid #e90070;
  border-top: 4px solid #e90070;

  border-radius: 15px;

  z-index: 2;
}

/* EXPERIENCE */

.about-experience {
  position: absolute;

  right: -5px;
  bottom: 35px;

  width: 155px;

  min-height: 85px;

  padding: 15px;

  border-radius: 12px;

  background: #ffffff;

  box-shadow: 0 10px 30px rgba(6, 59, 130, 0.16);

  display: flex;

  align-items: center;

  gap: 10px;

  z-index: 3;
}

.about-experience strong {
  color: #e90070;

  font-size: 32px;

  line-height: 1;
}

.about-experience span {
  color: #063b82;

  font-size: 11px;

  font-weight: 700;

  line-height: 1.3;
}

/* CONTENT */

.about-content {
  position: relative;

  z-index: 3;
}

.about-content h2 {
  color: #063b82;

  font-family: "Playfair Display", serif;

  font-size: 39px;

  line-height: 1.08;

  margin-bottom: 18px;
}

.about-content p {
  color: #5c7597;

  font-size: 13px;

  line-height: 1.7;

  margin-bottom: 13px;
}

.about-content .about-lead {
  color: #315d91;

  font-size: 15px;

  font-weight: 600;
}

/* POINTS */

.about-points {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin: 22px 0;
}

.about-points div {
  color: #315d91;

  font-size: 11px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 8px;
}

.about-points span {
  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #e90070;

  color: #ffffff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 11px;
}

/* =========================================
   PROCESS
========================================= */

.process {
  padding: 75px 0;

  background: linear-gradient(135deg, #eef8ff, #ffffff);

  position: relative;

  overflow: hidden;
}

.process-container {
  width: min(1100px, 92%);

  margin: auto;
}

.process-heading {
  text-align: center;

  max-width: 600px;

  margin: 0 auto 45px;
}

.process-heading .section-label {
  justify-content: center;
}

.process-heading h2 {
  color: #063b82;

  font-family: "Playfair Display", serif;

  font-size: 40px;

  margin-bottom: 10px;
}

.process-heading p {
  color: #607b9e;

  font-size: 14px;
}

/* GRID */

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  position: relative;
}

/* CONNECTING LINE */

.process-grid::before {
  content: "";

  position: absolute;

  top: 67px;

  left: 12%;

  right: 12%;

  border-top: 2px dashed #c9d9eb;

  z-index: 0;
}

.process-item {
  text-align: center;

  position: relative;

  z-index: 1;
}

/* NUMBER */

.process-number {
  color: #e90070;

  font-size: 18px;

  font-weight: 800;

  margin-bottom: 8px;
}

/* ICON */

.process-icon {
  width: 72px;
  height: 72px;

  margin: auto;

  border-radius: 50%;

  background: #ffffff;

  border: 4px solid #edf6ff;

  box-shadow: 0 5px 20px rgba(6, 59, 130, 0.1);

  color: #0752a0;

  font-size: 25px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.process-item h3 {
  color: #063b82;

  font-size: 16px;

  margin: 15px 0 8px;
}

.process-item p {
  color: #66809f;

  font-size: 14px;

  line-height: 1.6;

  max-width: 190px;

  margin: auto;
}

/* =========================================
   WORKERS SECTION
========================================= */

/* =========================================
   WORKERS SECTION
========================================= */

.workrsSection {
  position: relative;

  padding: 80px 0;

  background: url("../Images/pattern3.png") center / cover no-repeat;

  overflow: hidden;
}

.workrs-container {
  width: min(1150px, 92%);

  margin: auto;
}

/* =========================================
   HEADING
========================================= */

.workers-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 35px;
}

.workers-heading h2 {
  margin: 5px 0 0;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 38px;

  line-height: 1.1;
}

.workers-heading > p {
  max-width: 300px;

  margin: 0 0 3px;

  color: #fbfbfbbd;

  font-size: 14px;

  line-height: 1.6;
}

/* =========================================
   SLICK SLIDER
========================================= */

.workers-slider {
  margin: 0 -10px;
}

.worker-slide {
  padding: 10px;
}

/* IMPORTANT
   Prevent Slick slides from changing height
*/

.workers-slider .slick-track {
  display: flex !important;
}

.workers-slider .slick-slide {
  height: inherit !important;
}

.workers-slider .slick-slide > div {
  height: 100%;
}

/* =========================================
   WORKER CARD
========================================= */

.worker-card {
  height: 100%;

  background: #ffffff;

  border-radius: 14px;

  overflow: hidden;

  border: 1px solid #e7edf5;

  box-shadow: 0 8px 28px rgba(6, 59, 130, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.worker-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 16px 38px rgba(6, 59, 130, 0.14);
}

/* =========================================
   WORKER IMAGE
========================================= */

.worker-image {
  position: relative;

  width: 100%;

  height: 240px;

  overflow: hidden;

  background: #edf7ff;
}

.worker-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: top;

  transition: transform 0.5s ease;
}

.worker-card:hover .worker-image img {
  transform: scale(1.06);
}

/* FLAG */

.worker-flag {
  position: absolute;

  left: 14px;
  bottom: 12px;

  width: 43px;
  height: 43px;

  border-radius: 50%;

  background: #ffffff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 21px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
}

/* =========================================
   CONTENT
========================================= */

.worker-content {
  padding: 19px 18px 20px;
}

.worker-content > span {
  color: #e90070;

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 1.2px;
}

.worker-content h3 {
  margin: 6px 0 7px;

  color: #063b82;

  font-size: 20px;

  line-height: 1.3;
}

.worker-content p {
  min-height: 34px;

  margin: 0 0 15px;

  color: #66809f;

  font-size: 14px;

  line-height: 1.6;
}

.worker-content a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #e90070;

  font-size: 10px;

  font-weight: 700;

  text-decoration: none;
}

.worker-content a b {
  font-size: 14px;

  transition: transform 0.25s ease;
}

.worker-content a:hover b {
  transform: translateX(4px);
}

/* =========================================
   SLICK ARROWS
========================================= */

.workers-slider .slick-prev,
.workers-slider .slick-next {
  position: absolute;

  top: 42%;

  z-index: 20;

  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 50%;

  background: #ffffff;

  box-shadow: 0 5px 20px rgba(6, 59, 130, 0.16);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.workers-slider .slick-prev {
  left: -25px;
}

.workers-slider .slick-next {
  right: -25px;
}

.workers-slider .slick-prev:hover,
.workers-slider .slick-next:hover {
  background: #e90070;

  transform: scale(1.05);
}

.workers-slider .slick-prev::before,
.workers-slider .slick-next::before {
  color: #063b82;

  font-family: Arial, sans-serif;

  font-size: 21px;

  font-weight: 700;

  opacity: 1;
}

.workers-slider .slick-prev:hover::before,
.workers-slider .slick-next:hover::before {
  color: #ffffff;
}

/* =========================================
   SLICK DOTS
========================================= */

.workers-slider .slick-dots {
  position: relative;

  bottom: auto;

  margin-top: 25px;
}

.workers-slider .slick-dots li {
  margin: 0 2px;
}

.workers-slider .slick-dots li button::before {
  color: #b8cce1;

  font-size: 8px;

  opacity: 1;
}

.workers-slider .slick-dots li.slick-active button::before {
  color: #e90070;
}

/* =========================================
   TESTIMONIAL
========================================= */

.testimonial {
  padding: 75px 0;

  background: url("../Images/pattern1.png") center / cover no-repeat;
  overflow: hidden;
}

.testimonial-container {
  width: min(850px, 90%);

  margin: auto;
}

.testimonial-heading {
  text-align: center;

  max-width: 580px;

  margin: 0 auto 35px;
}

.testimonial-heading .section-label {
  justify-content: center;
}

.testimonial-heading h2 {
  color: #063b82;

  font-family: "Playfair Display", serif;

  font-size: 39px;

  margin-bottom: 10px;
}

.testimonial-heading p {
  color: #68809f;

  font-size: 14px;

  line-height: 1.6;
}

/* SLIDER */

.testimonial-slider {
  margin: 0 -10px;
}

.testimonial-slide {
  padding: 10px;
}

/* CARD */

.testimonial-card {
  position: relative;

  background: #ffffff;

  border-radius: 15px;

  padding: 35px 40px;

  text-align: center;

  box-shadow: 0 10px 35px rgba(6, 59, 130, 0.09);

  border: 1px solid #edf2f7;
}

/* QUOTE */

.quote {
  position: absolute;

  top: 12px;
  left: 25px;

  color: #e90070;

  font-family: Georgia, serif;

  font-size: 60px;

  line-height: 1;

  opacity: 0.2;
}

/* STARS */

.stars {
  color: #f5a623;

  font-size: 13px;

  letter-spacing: 3px;

  margin-bottom: 17px;
}

.testimonial-card > p {
  color: #526f93;

  font-size: 14px;

  line-height: 1.8;

  max-width: 620px;

  margin: auto auto 22px;
}

/* CLIENT */

.client {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;
}

.client-avatar {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: linear-gradient(135deg, #e90070, #1261a8);

  color: #ffffff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-weight: 800;
}

.client div:last-child {
  text-align: left;
}

.client strong {
  display: block;

  color: #063b82;

  font-size: 12px;
}

.client span {
  color: #7890ac;

  font-size: 9px;
}

/* TESTIMONIAL ARROWS */

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  width: 42px;
  height: 42px;

  z-index: 10;

  background: #ffffff;

  border-radius: 50%;

  box-shadow: 0 5px 20px rgba(6, 59, 130, 0.12);
}

.testimonial-slider .slick-prev {
  left: -50px;
}

.testimonial-slider .slick-next {
  right: -50px;
}

.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  color: #063b82;

  font-size: 18px;
}

/* DOTS */

.testimonial-slider .slick-dots {
  bottom: -35px;
}

.testimonial-slider .slick-dots li button::before {
  font-size: 8px;

  color: #8aa6c4;
}

.testimonial-slider .slick-dots li.slick-active button::before {
  color: #e90070;
}

/* =========================================
   GET STARTED
========================================= */

.getstart {
  padding: 0;

  background:
    linear-gradient(
      90deg,
      rgb(1 17 54) 0%,
      rgb(0 97 227) 45%,
      rgb(3 67 145 / 0%) 100%
    ),
    url(../Images/pattern5.png) center / cover no-repeat;

  overflow: hidden;
}

.getstart-container {
  width: min(1100px, 92%);

  min-height: 360px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 0.8fr;

  align-items: center;
}

/* CONTENT */

.getstart-content {
  padding: 60px 0;
}

.getstart .section-label {
  color: #ff7fb5;
}

.getstart .section-label::after {
  background: #ff7fb5;
}

.getstart-content h2 {
  color: #ffffff;

  font-family: "Playfair Display", serif;

  font-size: 42px;

  line-height: 1.05;

  margin-bottom: 17px;
}

.getstart-content p {
  color: rgba(255, 255, 255, 0.78);

  font-size: 14px;

  line-height: 1.7;

  max-width: 500px;

  margin-bottom: 23px;
}

/* BUTTONS */

.getstart-buttons {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}

.getstart-primary,
.getstart-secondary {
  height: 44px;

  padding: 0 20px;

  border-radius: 25px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  font-size: 14px;

  font-weight: 700;
}

.getstart-primary {
  background: #e90070;

  color: #ffffff;
}

.getstart-secondary {
  background: #ffffff;

  color: #063b82;
}

/* IMAGE */

.getstart-image {
  height: 360px;

  align-self: stretch;

  position: relative;

  overflow: hidden;
}

.getstart-image::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;
}

.getstart-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #032d63;

  color: #ffffff;
}

/* MAIN */

.footer-main {
  padding: 65px 0 45px;
}

.footer-container {
  width: min(1100px, 92%);

  margin: auto;

  display: grid;

  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;

  gap: 45px;
}

/* ABOUT */

.footer-logo {
  display: block;

  width: 170px;

  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.img-white{
    filter: brightness(0) invert(1);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  line-height: 1.7;

  max-width: 280px;

  margin-bottom: 20px;
}

/* SOCIAL */

.footer-social {
  display: flex;

  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  color: #ffffff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 13px;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #e90070;

  transform: translateY(-2px);
}

/* COLUMNS */

.footer-column h3 {
  color: #ffffff;

  font-size: 18px;

  margin-bottom: 18px;

  position: relative;

  padding-bottom: 8px;
}

.footer-column h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 25px;

  height: 2px;

  background: #e90070;
}

.footer-column > a {
  display: block;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;

  margin-bottom: 11px;

  transition: 0.3s;
}

.footer-column > a:hover {
  color: #ffffff;

  padding-left: 4px;
}

/* CONTACT */

.footer-contact p {
  display: flex;

  gap: 10px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  line-height: 1.5;

  margin-bottom: 12px;
}

.footer-contact p span {
  color: #ff4e99;
}

/* WHATSAPP */

.footer-whatsapp {
  display: inline-flex !important;

  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  border-radius: 20px;

  background: #e90070;

  color: #ffffff !important;

  margin-top: 7px;

  font-weight: 700;

  transition: 0.3s;
}

.footer-whatsapp:hover {
  padding-left: 16px !important;

  transform: translateY(-2px);
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding: 18px 0;
}

.footer-bottom-container {
  width: min(1100px, 92%);

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);

  font-size: 9px;
}

.footer-bottom-container > div {
  display: flex;

  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);

  font-size: 9px;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* =========================================
   ABOUT COMPANY SECTION
========================================= */

.aboutcompany {
  position: relative;

  width: 100%;

  min-height: 430px;

  overflow: hidden;

  background:
    linear-gradient(90deg, rgba(2, 53, 119, 0), rgba(3, 67, 145, 0)),
    url("../Images/about1.png") center / cover no-repeat;

  color: #ffffff;
}

/* BACKGROUND DECORATION */

.aboutcompany::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 48%;
  height: 100%;

  background: linear-gradient(
    135deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 55%
  );

  pointer-events: none;
}

/* PINK CURVE */

.aboutcompany::after {
  content: "";

  position: absolute;

  left: -80px;
  bottom: -110px;

  width: 470px;
  height: 210px;

  border-top: 3px solid #ed0872;

  border-radius: 50%;

  transform: rotate(-12deg);

  opacity: 0.9;

  pointer-events: none;
}

/* =========================================
   CONTAINER
========================================= */

.aboutcompany-container {
  position: relative;

  z-index: 2;

  width: min(1100px, 94%);

  min-height: 430px;

  margin: auto;

  display: grid;

  grid-template-columns: 38% 62%;

  align-items: center;
}

/* =========================================
   LEFT SIDE
========================================= */

.aboutcompany-left {
  position: relative;

  min-height: 330px;

  display: flex;

  align-items: flex-end;

  justify-content: center;
}

/* WORKER IMAGE */

.aboutcompany-worker {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 270px;
  height: 330px;

  object-fit: contain;

  object-position: bottom center;

  z-index: 2;
}

/*
   The image should ideally be a PNG
   with transparent background.
*/

/* TAGLINE */

.aboutcompany-tagline {
  position: absolute;

  left: 235px;

  top: 75px;

  width: 135px;

  color: #ffffff;

  font-family: "Brush Script MT", "Segoe Script", cursive;

  font-size: 23px;

  line-height: 1.05;

  transform: rotate(-5deg);

  z-index: 4;
}

.aboutcompany-tagline span {
  display: block;

  color: #ed0872;

  font-family: Arial, sans-serif;

  font-size: 38px;

  line-height: 0.8;

  margin-top: 4px;

  margin-left: 55px;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.aboutcompany-content {
  padding: 32px 25px 25px 20px;

  position: relative;

  z-index: 3;
}

/* LABEL */

.aboutcompany-label {
  display: block;

  color: #ff2384;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.4px;

  margin-bottom: 5px;
}

/* HEADING */

.aboutcompany-content h2 {
  margin: 0 0 9px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 30px;

  line-height: 1.1;

  font-weight: 700;
}

/* DESCRIPTION */

.aboutcompany-description {
  max-width: 550px;

  margin: 0 0 20px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 14px;

  line-height: 1.55;
}

/* =========================================
   FEATURES
========================================= */

.aboutcompany-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  column-gap: 55px;

  row-gap: 18px;

  max-width: 560px;
}

/* FEATURE */

.aboutcompany-feature {
  display: flex;

  align-items: center;

  gap: 14px;
}

/* ICON */

.aboutcompany-icon {
  flex: 0 0 45px;

  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff3b91, #e50068);

  display: flex;

  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.aboutcompany-icon span {
  color: #ffffff;

  font-size: 22px;

  line-height: 1;
}

/* FEATURE TEXT */

.aboutcompany-feature h3 {
  margin: 0;

  color: #ffffff;

  font-size: 16px;

  line-height: 1.4;

  font-weight: 700;
}

.aboutcompany-feature p {
  margin: 0;

  color: #ffffff;

  font-size: 14px;

  line-height: 1.4;

  font-weight: 400;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-contact {
    display: none;
  }

  .hero-slide {
    height: 460px;
  }

  .hero-content {
    width: 470px;
  }

  /*    REQUIREMENTS TABLET */

  .requirment-container {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .requirment-intro {
    text-align: center;

    max-width: 500px;

    margin: auto;
  }

  .section-label {
    justify-content: center;
  }

  .requirment-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /*     SERVICES MOBILE */

  .services-container {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .services-intro {
    text-align: center;

    max-width: 500px;

    margin: auto;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;

    gap: 35px 25px;
  }

  .footer-about {
    grid-column: span 2;
  }

  .aboutcompany-container {
    grid-template-columns: 40% 60%;

    width: 96%;
  }

  .aboutcompany-worker {
    width: 245px;

    height: 310px;
  }

  .aboutcompany-tagline {
    left: 190px;

    font-size: 20px;
  }

  .aboutcompany-content {
    padding-left: 10px;
  }

  .aboutcompany-features {
    column-gap: 25px;
  }

  .workrsSection {
    padding: 65px 0;
  }

  .workers-heading h2 {
    font-size: 32px;
  }

  .workers-heading > p {
    max-width: 240px;
  }

  .workers-slider .slick-prev {
    left: -18px;
  }

  .workers-slider .slick-next {
    right: -18px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  /* HEADER */

  .site-header {
    height: 65px;
  }

  .header-inner {
    width: 90%;
  }

  .logo {
    width: 145px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* HERO */

  .hero-slide {
    min-height: 620px;
    height: 620px;
  }

  .hero-bg img {
    object-position: 65% center;
  }

  /*
       Add a white gradient behind text
       so text remains readable.
    */

  .hero-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.88) 42%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 100%
    );
  }

  .hero-container {
    width: 88%;
    align-items: flex-start;
    padding-top: 70px;
    min-height: 620px;
    height: 100%;
  }

  .hero-content {
    width: 100%;

    max-width: 390px;
  }

  .small-title {
    font-size: 9px;

    letter-spacing: 1px;
  }

  .hero-content h1 {
    font-size: 40px;

    line-height: 1.05;
  }

  .hero-content p {
    width: 100%;

    font-size: 13px;

    max-width: 330px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .primary-btn,
  .secondary-btn {
    height: 42px;
  }

  /* SLICK ARROWS */

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    width: 34px;
    height: 34px;
  }

  .hero-slider .slick-prev {
    left: 10px;
  }

  .hero-slider .slick-next {
    right: 10px;
  }

  .hero-slider .slick-prev::before,
  .hero-slider .slick-next::before {
    font-size: 18px;
  }

  /*    REQUIREMENTS MOBILE */
  .requirment {
    padding: 45px 0;
  }

  .requirment-container {
    width: 90%;
  }

  .requirment-intro h2 {
    font-size: 29px;
  }

  .requirment-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirment-item {
    min-height: 145px;

    padding: 15px 8px;
  }

  .requirment-item:nth-child(4n) {
    border-right: 1px solid #e9eff6;
  }

  .requirment-item:nth-child(2n) {
    border-right: none;
  }

  .requirment-item:nth-child(n + 5) {
    border-bottom: 1px solid #e9eff6;
  }

  .requirment-item:nth-child(n + 7) {
    border-bottom: none;
  }

  /*     SERVICES MOBILE */

  .services {
    padding: 50px 0;
  }

  .services-container {
    width: 90%;
  }

  .services-intro h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }

  .service-image {
    height: 150px;
  }

  .about {
    padding: 60px 0;
  }

  .about-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .about-image-wrap {
    max-width: 550px;

    width: 100%;

    margin: auto;
  }

  .about-image {
    height: 400px;
  }

  .about-content {
    text-align: center;
  }

  .about-content .section-label {
    justify-content: center;
  }

  .about-points {
    text-align: left;
  }

  .workers-heading {
    display: block;

    text-align: center;
  }

  .workers-heading .section-label {
    justify-content: center;
  }

  .workers-heading h2 {
    font-size: 31px;

    margin-bottom: 12px;
  }

  .workers-heading > p {
    margin: auto;
  }

  .workers-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }

  .worker-image {
    height: 180px;
  }

  .testimonial {
    padding: 55px 0 70px;
  }

  .testimonial-heading h2 {
    font-size: 31px;
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  .testimonial-card > p {
    font-size: 12px;
  }

  .testimonial-slider .slick-prev,
  .testimonial-slider .slick-next {
    display: none !important;
  }

  .getstart-container {
    grid-template-columns: 1fr;
  }

  .getstart-content {
    padding: 55px 0;
    text-align: center;
  }

  .getstart-content .section-label {
    justify-content: center;
  }

  .getstart-content h2 {
    font-size: 34px;
  }

  .getstart-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .getstart-buttons {
    justify-content: center;
  }

  .getstart-image {
    height: 250px;
  }

  .footer-main {
    padding: 50px 0 35px;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom-container {
    flex-direction: column;

    text-align: center;
  }

  .footer-bottom-container > div {
    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;
  }

  .aboutcompany {
    min-height: auto;

    padding: 0;
  }

  .aboutcompany-container {
    width: 100%;

    display: flex;

    flex-direction: column;
  }

  /* IMAGE AREA */

  .aboutcompany-left {
    min-height: 350px;

    height: 350px;

    width: 100%;

    background: linear-gradient(180deg, #06498f, #023a7c);

    overflow: hidden;
  }

  .aboutcompany-worker {
    width: 270px;

    height: 350px;

    left: 50%;

    transform: translateX(-50%);
  }

  .aboutcompany-tagline {
    left: auto;

    right: 12%;

    top: 75px;

    font-size: 21px;

    width: 125px;
  }

  /* CONTENT */

  .aboutcompany-content {
    padding: 35px 25px 40px;

    text-align: center;
  }

  .aboutcompany-label {
    font-size: 9px;
  }

  .aboutcompany-content h2 {
    font-size: 30px;
  }

  .aboutcompany-description {
    margin-left: auto;
    margin-right: auto;

    max-width: 500px;

    font-size: 12px;
  }

  /* FEATURES */

  .aboutcompany-features {
    grid-template-columns: 1fr 1fr;

    column-gap: 15px;

    row-gap: 22px;

    text-align: left;

    max-width: 500px;

    margin: 25px auto 0;
  }

  .aboutcompany-feature {
    gap: 9px;
  }

  .aboutcompany-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;
  }

  .aboutcompany-feature h3,
  .aboutcompany-feature p {
    font-size: 10px;
  }

  .workrsSection {
    padding: 55px 0 65px;
  }

  .workers-heading {
    display: block;

    text-align: center;

    margin-bottom: 25px;
  }

  .workers-heading .section-label {
    justify-content: center;
  }

  .workers-heading h2 {
    font-size: 30px;

    margin-bottom: 12px;
  }

  .workers-heading > p {
    max-width: 400px;

    margin: auto;
  }

  /*
       Remove arrows completely
       on mobile
    */

  .workers-slider .slick-prev,
  .workers-slider .slick-next {
    display: none !important;
  }

  .workers-slider {
    margin: 0;
  }

  .worker-slide {
    padding: 5px 10px;
  }

  .worker-image {
    height: 280px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .hero-slide {
    min-height: 590px;
    height: 590px;
  }

  .hero-container {
    padding-top: 55px;
    min-height: 590px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 12px;

    max-width: 290px;
  }

  .hero-buttons {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
  }

  .primary-btn,
  .secondary-btn {
    width: auto;
  }

  /*     SERVICES MOBILE */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 190px;
  }

  .service-content {
    padding: 18px;
  }

  .service-content h3 {
    font-size: 15px;

    min-height: auto;
  }

  .service-content p {
    font-size: 11px;

    min-height: auto;
  }

  .about-image {
    height: 320px;
  }

  .about-experience {
    right: 0;
    bottom: 20px;

    width: 140px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .workers-heading h2 {
    font-size: 27px;
  }

  .worker-slide {
    padding: 5px;
  }

  .worker-image {
    height: 300px;
  }

  .worker-content {
    padding: 18px;
  }

  .aboutcompany-left {
    min-height: 320px;

    height: 320px;
  }

  .aboutcompany-worker {
    width: 240px;

    height: 320px;
  }

  .aboutcompany-tagline {
    right: 5%;

    top: 65px;

    font-size: 18px;

    width: 110px;
  }

  .aboutcompany-tagline span {
    font-size: 32px;

    margin-left: 45px;
  }

  .aboutcompany-content {
    padding: 30px 18px 35px;
  }

  .aboutcompany-content h2 {
    font-size: 27px;
  }

  .aboutcompany-features {
    grid-template-columns: 1fr;

    gap: 18px;

    max-width: 260px;
  }

  .aboutcompany-feature {
    justify-content: flex-start;
  }
}
