body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: medium;
  font-style: normal;
  margin: 0;
  font-size: 16px;
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden;
}
html {
  scroll-behavior: smooth;
}
:root {
  color-scheme: light;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 40px;
}

.btn .btn-arrow {
  display: inline-flex;
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(16, 62, 73, 0.6);
}

.btn-dark:hover {
  box-shadow: 0 20px 44px -12px rgba(16, 62, 73, 0.75);
  transform: translateY(-3px);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.4);
}

.btn-pill {
  padding: 11px 22px;
}

.nav-cta {
  background: #123e4b;
  color: #fff;
  border: 1px solid #123e4b;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(16, 62, 73, 0.7);
}
.site-header {
  background: #f4f4f4;
  padding: 20px 0;

}
.page .site-header{
  position: relative;
  z-index: 9;
  background: #f4f4f400;
}
.site-header.no-scroll {
  position: fixed;
  z-index: 99;
  background: #fff;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-scroll .logo {
  width: 120px;
  object-fit: contain;
  transition: all 0.4s ease;
}
.site-header.no-scroll {
  padding: 10px 0;
  transition: all 0.4s ease;
}
a {
  color: #123e4b;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
p strong {
  color: #052c47;
  display: block;
  margin-bottom: 12px;
}
.sol-content p strong {
  color: #fff;
}
.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
.hero-duration {
  margin: 15px 0;
}
.row.align-items-center {
  align-items: center;
}
.hero-features li {
  border: 1px solid #ffffff82;
  border-radius: 20px;
  padding: 10px 15px;
  color: #ffffffe0;
}
.sol-hero-img img {
  width: 100%;
}


.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  color: #fff;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link {
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
}

.nav-link:hover {
  transform: scale(1.05);
  font-weight: 600;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 1px;
  height: 16px;
  background: #000;

  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;

  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0s linear 0.2s;
}

.nav-link:hover::before {
  transform: translateY(2px);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

h1 {
  font-size: 46px;
  color: #123e4b;
  font-weight: 200;
  margin: 0;
}
h1 strong {
  font-weight: 600;
}
p {
  line-height: 26px;
  margin: 0;
}

.hero p {
  color: #123e4b;
  margin-top: 20px;
  margin-bottom: 0;
}
.hero-wrap {
  max-width: 530px;
}

.hero {
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  padding: 0;
  overflow-x: hidden;
}

.small {
  position: absolute;
  top: 28%;
  z-index: 9;
}
.big {
  position: relative;
  width: max-content;
  left: 100px;
}
.big > img {
  position: relative;
  z-index: 9;
}
.shadow {
  position: absolute;
  bottom: -5px;
  left: 9px;
}
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-62%, -74%);
  z-index: 9;
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  justify-content: space-between;
}

main .btn-pill {
  padding: 20px 40px;
  margin: 30px 0 0;
  cursor: pointer;
}

.btn.btn-pill.nav-cta.outline {
  background: #fff;
  color: #123e4b;
  border: 1px solid #123e4b;
}
.counter li {
  background: #d9d9d91f;
  min-height: 120px;
  border-radius: 30px;
  box-shadow: 6px 6px 14.8px 2px #00000030;
  padding: 8px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.counter ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

.counter-number {
  font-size: 44px;
}
.counter-label {
  font-size: 18px;
}

.subtitle {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  color: #123e4b;
}
h2 {
  font-size: 35px;
  font-weight: 600;
  color: #76a090;
  margin: 10px 0 15px;
  line-height: 45px;
}
.col-wrap p {
  font-size: 14px;
}
.row {
  display: flex;
  width: 100%;
  gap: 80px;
}
.col-md-5 {
  width: 40%;
}
.col-md-7 {
  width: 60%;
}

.why-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.why-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
.why-count {
  font-size: 91px;
  color: #026079;
  opacity: 10%;
  font-weight: bold;
}
h3 {
  margin: 0;
  color: #123e4b;
  line-height: 26px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  column-gap: 80px;
}

.subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.subtitle::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

section {
  padding: 80px 0;
}

.col-wrap {
  height: 100%;
}
.why-content {
  height: 100%;
}

.col-md-6 {
  width: 50%;
}

.about-section .row {
  align-items: center;
}

.about-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
}
.about-section .container {
  position: relative;
  height: 100%;
}

.about-section .bird svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: max-content;
}

.features-list li {
  position: relative;
  padding-left: 40px;
}

.features {
  display: flex;
  justify-content: flex-end;
}
.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/tick.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.choose-section {
  background: linear-gradient(
    90deg,
    rgba(18, 62, 75, 1) 0%,
    rgba(18, 62, 75, 0.8) 100%
  );
  color: #fff;
  overflow-x: hidden;
}

.choose-section .subtitle {
  color: #fff;
}
.choose-section h2 {
  color: #fff;
}

.features-list li {
  font-size: 24px;
  font-weight: 300;
}

.choose-section .bird {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.choose-section {
  position: relative;
}
.choose-section .bird svg {
  width: 616px;
  height: 453px;
}

/* horizontal scroll */

.horizontal-scoll-wrapper {
  overflow: hidden;
}

.horizontal .card {
  color: #f6f2e8;
  display: flex;
  margin-left: 10%;
  height: 498px;
}
.card svg {
  position: absolute;
  filter: drop-shadow(12px 12px 20px rgba(18, 62, 75, 0.25));
}

.p-item h2 {
  color: #123e4b;
  display: flex;
  align-items: baseline;
  gap: 94px;
}
.p-item p {
  color: #123e4b;
  max-width: 370px;
}
.p-item {
  position: absolute;
}
.p-item.p1 {
  left: 442px;
  top: 32px;
}
.p-item.p2 {
  left: 700px;
  bottom: 82px;
}
.p-item.p3 {
  left: 1092px;
  top: 130px;
}
.p-item.p4 {
  left: 1480px;
  top: 264px;
}

.p-item.p5 {
  left: 1910px;
  top: 40px;
}
.p-item.p-bird {
  left: 2370px;

  padding-right: 200px;
}
.p-item {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.p-item.show {
  opacity: 1;
}
.process-section .subtitle {
  margin-top: 0;
}

.process-section .container {
  margin-bottom: 100px;
}
.p-item h2 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.p-item p {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease 0.2s;
}

.p-item.show h2,
.p-item.show p {
  opacity: 1;
  transform: translateY(0);
}

.sol-section {
  position: relative;
 background: url("../images/sol-bg_new.jpg") center/cover no-repeat;
  /* background: #76a09010; */
}

.logo.sol-logo {
    width: 160px; /* or whatever size you need */
    height: auto;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sol-img {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;

}
.section.sol-section .container {
  position: initial;
}
.section.sol-section {
  padding: 200px 0;
}

.sol-content .subtitle {
  color: #fcb216;
}

.sol-content h2 {
  color: #fcb216;
}

.sol-content p strong {
  color: #e42726;
}

.sol-content p {
  color: #fff;
}

.sol-content .nav-cta {
  background: #fff;
  color: #212257;
}

.sol-content {
  max-width: 620px;
  margin-left: auto;
  padding: 30px 50px;
  
  position: relative;
}

.text-center {
  text-align: center;
}
.works .text-center {
  max-width: 800px;
  margin: 0 auto;
}
.work-slider .slick-track {
  display: flex;
  gap: 30px;
}

.work-slider .slick-slide {
  height: auto;
}

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

.slider-dots .slick-dots {
  display: flex !important;

  justify-content: center;

  gap: 12px;

  margin-top: 35px;
}

.slider-dots li {
  list-style: none;
}
.work-slider {
  margin-top: 50px;
}
.work-slider .slick-list {
  padding-left: calc((100% - 1332px) / 2) !important;
}

.slider-dots button {
  width: 10px;

  height: 10px;

  padding: 0;

  border: 0;

  background: #ddd;

  border-radius: 50px;

  font-size: 0;

  cursor: pointer;

  transition: 0.35s ease;
}

/* active */

.slider-dots .slick-active button {
  width: 28px;

  background: #123d4d;
}

.testimonials-section {
  padding: 80px 0;
}

.testimonial-content {
  display: flex;
  overflow: hidden;
  border-radius: 30px;
  background: #0f4a5b;
}

.ts-image {
  width: 50%;
  position: relative;
}

.ts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  height: 620px;
}

.person-name {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 35px;
  font-style: italic;
  font-weight: 300;
  z-index: 9;
  width: 100%;
  text-align: center;
}

.ts-info {
  width: 50%;
  padding: 70px;
  color: #fff;
}

.stars {
  color: #ffc107;
  font-size: 26px;
  margin-bottom: 10px;
}

.ts-info h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 25px;
}

.ts-info .subtitle {
  color: #fff;
  margin: 0 0 10px;
}
.ts-info p {
  color: rgba(255, 255, 255, 0.85);
}

/* Thumbnails */
.testimonials {
  position: relative;
}
.testimonial-thumbs {
  position: relative;
  z-index: 5;
  width: 420px;
  margin-left: auto;
  margin-right: 80px;
  position: absolute;
  right: 0;
  bottom: 50px;
}

.testimonial-thumbs .slick-slide {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 5px solid #d9d9d9;
}

.testimonial-thumbs img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 4px solid transparent;
  transition: 0.3s;
}

.testimonial-thumbs .slick-current img {
  border-color: #fff;
  transform: scale(1.08);
}

.w-border {
  width: 86%;
  border: 2px solid #fff;
  height: 86%;
  position: absolute;
  left: 6%;
  top: 6%;
  border-radius: 30px;
  z-index: 9;
}

.testimonial-thumbs .slick-slide {
  margin: 0 10px;
}

.w-gradient {
  background: linear-gradient(
    to bottom,
    #d9d9d900 0%,
    #2e545f86 86%,
    #123e4b 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.f-input {
  border: 0;
  border-bottom: 1px solid #123e4b;
  padding: 10px 0 5px;
  font-size: 16px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  margin-top: 30px;
}
#message {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #123e4b;
  margin-top: 30px;
  height: 150px;
}
::placeholder {
  color: #123e4b;
  opacity: 0.5; /* Firefox defaults to lower opacity, setting 1 ensures vibrant color */
}

footer p {
  font-size: 14px;
  margin: 10px 0 20px;
}

.social {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.contact-img img {
  width: 100%;
}

.contact-img img {
  width: 100%;
}
h4 {
  font-size: 19px;
  font-weight: 600;
  color: #123e4b;
  margin: 0 0 18px;
}
.fm-wrap a {
  color: #123e4bcc;
  font-size: 14px;
}
.fm-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ham {
  cursor: pointer;
}
.mob-header {
  padding: 10px 0;
  display: none;
}

.mob-header .logo {
  width: 120px;
  object-fit: contain;
}
.ham svg {
  width: 36px;
}
.mob-header ul {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  visibility: hidden;
  transform: translateY(100%);

  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}
.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}
.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}
.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
footer {
  position: relative;
  min-height: 600px;
  padding-top: 80px;
}
footer .container {
  position: relative;
  z-index: 9;
}
.footer-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-img {
  display: none;
}

.inner-hero h1 {
  text-align: center;
  color: #123E4B;
  font-weight: 700;
}
.inner-hero {
  position: relative;
  overflow: hidden;
  padding:  200px 0 150px;
  margin-top: -98px;
}
.inner-hero_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-hero .container {
  position: relative;
  z-index: 1;
}
.mob-header.show .container {
  z-index: 99;
}
.all-services .why-grid {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 80px;
}

.all-services {
  border-bottom: 1px solid #becbce59;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-desc h2 {
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 12px;
}
.service-desc p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .big {
    left: 30px;
  }
  .big img {
    width: 80%;
  }
  .hero-wrap {
    /* min-width: 430px; */
  }
  .work-slider .slick-list {
    padding-left: 20px !important;
  }

.sol-img {
  position: relative;
  transform: none;
  max-width: 400px;
  object-fit: contain;
}

.section.sol-section .container {
  display: flex;
}
}

@media only screen and (max-width: 991px) {
  .hero-content {
    flex-direction: column;
  }
  #siteHeader {
    display: none;
  }
  .mob-header {
    display: block;
    position: relative;
    z-index: 9;
  }
  .mob-header.no-scroll {
  position: fixed;
  z-index: 99;
  background: #fff;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
  .mob-header.show ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  .big {
    left: 0;
    margin-top: 30px;
  }
  .counter ul {
    gap: 30px;
  }
  .counter li {
    align-items: flex-start;
  }
  .why-grid {
    column-gap: 30px;
  }
  .col-md-5 {
    width: 100%;
  }
  .col-md-7 {
    width: 100%;
  }
  .row {
    flex-direction: column;
    gap: 30px;
  }
  .why-content {
    max-width: 600px;
  }
  .col-md-6 {
    width: 100%;
  }
  .features-list {
    width: 100%;
  }

  .about-img {
    max-width: 600px;
    margin: 0 auto;
  }

  .ts-image {
    width: 100%;
  }
  .ts-info {
    width: 100%;
    padding: 0;
    min-height: 620px;
  }
  .testimonial-content {
    display: block;
    position: relative;
    width: 100%;
  }
  .ts-info .subtitle {
    padding: 50px 50px 0 50px;
  }
  .ts-info .stars {
    padding: 0 50px 0 50px;
  }
  .ts-info h2 {
    padding: 0 50px 0 50px;
  }
  .ts-info p {
    padding: 0 50px 0 50px;
  }

  .contact-img {
    display: none;
  }
  .contact .why-content {
    margin: 0 auto;
  }
  .all-services .why-grid {
  grid-template-columns: repeat(2, 1fr);
 
}

}

@media only screen and (max-width: 767px) {
  .big img {
    width: 100%;
  }
  .counter ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-image img {
    height: auto;
  }
  .ts-info {
    min-height: auto;
    padding-bottom: 200px;
  }
  .testimonial-thumbs {
    position: relative;
    margin: -100px 0 0 30px;
    width: 100%;
  }
  .horizontal .card svg {
    width: 0;
    display: none;
  }
  .p-item {
    position: unset;
  }

  .p-img {
    width: 70px;
    height: 70px;
    background: #75e2ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-img img {
    width: 36px;
  }
  .horizontal .card {
    flex-direction: column;
    gap: 30px;
    height: auto;
  }
  .process-section .container {
    margin-bottom: 50px;
  }
  .logos::before,
  .logos::after {
    display: none;
  }
  .work-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
 .section.sol-section .container {
    flex-direction: column;
    align-items: center;
  }
  .section.sol-section {
  padding: 80px 0;
}
}
.p-item img {
  background: #75e2ff;
  border-radius: 50%;
  padding: 10px;
}

.testimonial-thumbs .slick-list {
  overflow: hidden;
}
#choose-section .row {
  align-items: center;
}

.f-input:focus-visible {
  outline: none;
}
textarea:focus-visible {
  outline: none;
}
textarea::-webkit-input-placeholder {
  font-family: "Inter", sans-serif;
}

textarea::-moz-placeholder {
  font-family: "Inter", sans-serif;
}

textarea:-ms-input-placeholder {
  font-family: "Inter", sans-serif;
}

textarea::placeholder {
  font-family: "Inter", sans-serif;
}

.f-input {
  width: 100%;
}
@media only screen and (max-width: 567px) {
  .testimonial-thumbs .slick-slide {
    width: 60px;
    height: 60px;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .testimonial-thumbs {
    margin: -100px 0 0 0px;
  }
  .ts-info .subtitle {
    padding: 20px 20px 0 20px;
  }
  .ts-info .stars {
    padding: 0 20px 0 20px;
  }
  .ts-info h2 {
    padding: 0 20px 0 20px;
  }
  .ts-info p {
    padding: 0 20px 0 20px;
  }

  .p-item.p1 {
    left: 44px;
    top: 0px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .sol-img {
    position: relative;
    width: 110%;
    transform: none;
    left: unset;
    top: unset;
    margin-left: -20px;
  }
  .sol-content {
    padding: 30px 0 50px;
  }

  .p-item h2 {
    font-size: 26px;
    margin: 0;
  }
  .why-count {
    font-size: 50px;
  }
  .p-item.p2 {
    left: 300px;
    bottom: 40px;
  }
  .p-item.p3 {
    left: 500px;
    top: 50px;
  }
  .p-item.p4 {
    left: 800px;
    top: unset;
    bottom: 70px;
  }

  .p-item.p5 {
    left: 1030px;
    top: 10px;
  }
  .p-item.p-bird {
    left: 1395px;
    padding-right: 0;
    top: 183px;
  }
  .p-item.p-bird svg {
    width: 150px;
  }
  .features-list li {
    font-size: 20px;
  }

  .big {
    width: fit-content;
  }
  .small img {
    max-width: 100px;
  }
  .middle img {
    max-width: 154px;
  }
  .footer-bg {
    object-position: bottom;
    object-fit: contain;
  }
  .ws-item img {
    width: 100%;
  }
  .work-slider .slick-list {
    padding-left: 0 !important;
  }
   .all-services .why-grid {
  grid-template-columns: repeat(1, 1fr);
 
}
 .work-grid {
  grid-template-columns: repeat(1, 1fr);
}
#choose-section .bird svg {
  width: 100%;
}
}
