@font-face {
  font-family: "graphik";
  src: url("../fonts/graphik/GraphikArabic-Regular.woff2") format("woff2"),
    url("../fonts/graphik/GraphikArabic-Regular.woff") format("woff"),
    url("../fonts/graphik/GraphikArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "graphik";
  src: url("../fonts/graphik/GraphikArabic-Medium.woff2") format("woff2"),
    url("../fonts/graphik/GraphikArabic-Medium.woff") format("woff"),
    url("../fonts/graphik/GraphikArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "graphik";
  src: url("../fonts/graphik/GraphikArabic-Semibold.woff2") format("woff2"),
    url("../fonts/graphik/GraphikArabic-Semibold.woff") format("woff"),
    url("../fonts/graphik/GraphikArabic-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "graphik";
  src: url("../fonts/graphik/GraphikArabic-Bold.woff2") format("woff2"),
    url("../fonts/graphik/GraphikArabic-Bold.woff") format("woff"),
    url("../fonts/graphik/GraphikArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  scrollbar-width: thin;
  scrollbar-color: #2a9df4 #f1f1f1;
  scroll-behavior: unset !important;
}

body {
  font-family: graphik;
  font-weight: 400;
  color: #03254c;
}
body::-webkit-scrollbar {
  background-color: #f1f1f1;
  width: 4px;
  border-radius: 3px;
}
body::-webkit-scrollbar-thumb {
  background-color: #2a9df4;
  border-radius: 3px;
}
html[dir="ltr"] body {
  text-transform: capitalize;
}

.overflow {
  overflow: hidden;
}

.container {
  --bs-gutter-x: 40px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

.container-fluid {
  --bs-gutter-x: 40px;
}

.row {
  --bs-gutter-x: 30px;
}
.row > * {
  --bs-gutter-x: 30px;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* General Resets */
* {
  outline: 0 !important;
}

input::-moz-placeholder {
  color: inherit;
}

input::placeholder {
  color: inherit;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  outline: 0;
}

a,
img,
button,
input,
select {
  transition: all 0.3s ease;
}

[role="button"] {
  cursor: pointer;
}

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

input {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}
input::-webkit-inner-spin-button,
input::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

select {
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: left 25px top 50%;
}
html[dir="ltr"] select {
  background-position: right 25px top 50%;
}
@media (max-width: 767px) {
  select {
    background-position: left 10px top 50%;
  }
  html[dir="ltr"] select {
    background-position: right 10px top 50%;
  }
}

.fa-linkedin::before {
  content: "\f0e1";
}

.fa-twitter::before {
  content: "\e61b";
}

.fa-facebook::before {
  content: "\f39e";
}

.primary-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 180px;
  padding: 0 25px;
  height: 55px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-image: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
  transform: perspective(1px);
  transition: all 0.3s ease-in-out;
}
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #2a9df4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.primary-btn:focus {
  color: #fff;
}
.primary-btn:hover {
  color: #fff;
}
.primary-btn:hover::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .primary-btn {
    padding: 0 20px;
    min-width: unset;
    height: 50px;
    font-size: 16px;
  }
}

.secondary-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
  padding: 0 25px;
  height: 55px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #03254c;
  transition: all 0.3s ease-in-out;
}
.secondary-btn:focus {
  color: #fff;
}
.secondary-btn:hover {
  color: #fff;
  background-color: #2a9df4;
}
@media (max-width: 767px) {
  .secondary-btn {
    padding: 0 20px;
    min-width: unset;
    height: 50px;
    font-size: 16px;
  }
}

.btns-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .btns-content {
    justify-content: center;
  }
}

.has-shape {
  position: relative;
  overflow: hidden;
}
.has-shape::after {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline-end: -1px;
  height: 121px;
  aspect-ratio: 71/121;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 4;
}
html[dir="ltr"] .has-shape::after {
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
html[lang="en-US"] .has-shape::after {
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 767px) {
  .has-shape::after {
    height: 91px;
  }
}

.has-pattern {
  position: relative;
  overflow: hidden;
}
.has-pattern .pattern-content {
  position: relative;
  z-index: 2;
}
.has-pattern .pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  z-index: 1;
}

.section-head {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 847px;
  margin: 0 auto 45px;
}
.section-head.align-start {
  align-items: start;
  text-align: start;
  margin-inline: 0;
}
@media (max-width: 991px) {
  .section-head.align-start {
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .section-head {
    margin-bottom: 25px;
  }
}
.section-head :last-child {
  margin: 0;
}

.section-icon {
  width: 47px;
  aspect-ratio: 47/41;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .section-icon {
    margin-bottom: 10px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #03254c;
  line-height: 1.333;
  margin: 0 0 30px;
}
.dark-section .section-title {
  color: #fff;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.section-desc {
  color: #03254c;
  font-size: 20px;
  line-height: 1.9;
  margin: 0 0;
}
.dark-section .section-desc {
  color: #a8bed8;
}
@media (max-width: 767px) {
  .section-desc {
    font-size: 16px;
  }
}

.custom-slider .swiper-pagination {
  position: relative;
  inset: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 50px 0 0;
}
.custom-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000;
  opacity: 0.5;
  border-radius: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.custom-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #2a9df4;
}
.custom-slider .swiper-pagination:has(.swiper-pagination-bullet:only-child) {
  display: none;
}
@media (max-width: 767px) {
  .custom-slider .swiper-pagination {
    margin-top: 30px;
  }
}

.testimonials-slider .swiper-pagination {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  border-radius: 0;
  height: 60px;
  padding: 0 28px;
  text-align: right;
  color: #03254c;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

html[lang="en-US"] .contact-form .form-control {
  text-align: left;
}

html[dir="ltr"] .form-control {
  text-align: left;
}
.form-control::-moz-placeholder {
  color: #808080;
  font-weight: 400;
}
.form-control::placeholder {
  color: #808080;
  font-weight: 400;
}
.form-control:focus {
  background-color: #f2f2f2;
  border-color: #2a9df4;
  outline: none;
  box-shadow: none;
}
.form-control:is(textarea) {
  height: 100px;
  resize: none;
  padding-block: 20px 15px;
}

.submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 121px;
  padding: 0 25px;
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-image: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
  transform: perspective(1px);
  margin-inline-start: auto;
  transition: all 0.3s ease-in-out;
}
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #2a9df4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.submit-btn:focus {
  color: #fff;
}
.submit-btn:hover {
  color: #fff;
}
.submit-btn:hover::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .submit-btn {
    width: 100%;
  }
}

.main-section {
  overflow: hidden;
}

.main-content {
  position: relative;
  z-index: 3;
  min-height: 677px;
  padding: 100px 0;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (max-width: 1199px) {
  .main-content {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .main-content {
    min-height: 400px;
    padding: 70px 0;
  }
}

.main-info {
  width: 100%;
  max-width: 810px;
  color: #fff;
  margin: auto;
}

.main-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .main-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.main-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.333;
  margin: 0 0 25px;
}
@media (max-width: 767px) {
  .main-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.main-btn {
  background: none;
  background-color: #fff;
  color: #03254c;
  min-width: 200px;
  margin: 0 auto;
}
.main-btn::after {
  background-image: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
}
.main-btn:focus {
  color: #03254c;
}
.main-btn:hover {
  color: #fff;
  background: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
}

.main-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}

.about-content {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 97px;
  align-items: end;
}
.about-content .section-head {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .about-content .section-head {
    margin-bottom: 25px;
  }
}
.about-content .section-title {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .about-content .section-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .about-content .section-desc {
    font-size: 18px;
  }
}
.about-content .btns-content {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .about-content .btns-content {
    margin-bottom: 40px;
  }
}
.about-content .has-shape::after {
  background-color: #03254c;
}

.about-section.about-page .about-content .has-shape::after {
  background-color: #fff;
}
@media (max-width: 1199px) {
  .about-content {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
    width: 100%;
    max-width: 555px;
    gap: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about-content {
    gap: 15px;
  }
}

.about-end {
  flex-shrink: 0;
  width: 49%;
  max-width: 555px;
}
@media (max-width: 991px) {
  .about-end {
    width: 100%;
  }
}

.about-img {
  width: 100%;
}
.about-start .about-img {
  aspect-ratio: 487/409;
}
@media (max-width: 991px) {
  .about-start .about-img:after {
    background-color: #fff;
  }
}
.about-end .about-img {
  aspect-ratio: 555/699;
}

.services-slider .swiper-slide {
  width: 360px;
}
@media (max-width: 767px) {
  .services-slider .swiper {
    overflow: unset;
  }
}

.services-btn {
  margin: 60px auto 0;
}
.services-btn:after {
  background-color: #fff;
}
.services-btn:hover {
  color: #03254c;
}
@media (max-width: 767px) {
  .services-btn {
    margin-top: 40px;
  }
}

.service-item {
  width: 100%;
  max-width: 360px;
}
.service-item .service-img {
  width: 100%;
  aspect-ratio: 360/238;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-item .service-img img {
  transition: all 0.3s ease-in-out;
}
.service-item .service-img:hover img {
  transform: scale(1.1);
}
.service-item .service-title {
  font-size: 18px;
  font-weight: 600;
  color: #03254c;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0;
}
.dark-section .service-item .service-title {
  color: #fff;
}
.service-item .service-title a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.service-item .service-title a:hover {
  color: #2a9df4;
}

.features-content {
  z-index: 3;
  display: flex;
  gap: 145px;
  align-items: start;
}
.features-content .section-head {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .features-content .section-head {
    margin-bottom: 25px;
  }
}
.features-content .section-title {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .features-content .section-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 1199px) {
  .features-content {
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .features-content {
    flex-direction: column;
    gap: 50px;
  }
}

.features-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
  width: 46%;
  max-width: 520px;
}
@media (max-width: 1199px) {
  .features-items {
    width: 55%;
  }
}
@media (max-width: 991px) {
  .features-items {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .features-items {
    gap: 30px 15px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 30px;
  padding: 33px;
}
@media (max-width: 767px) {
  .feature-item {
    padding: 0;
  }
}
.feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #2a9df4;
}
.feature-item .feature-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #03254c;
  height: 60px;
  margin: 0;
}
@media (max-width: 480px) {
  .feature-item .feature-title {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .features-btn {
    margin: 0 auto;
  }
}

.projects-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (max-width: 1199px) {
  .projects-list {
    gap: 0;
  }
}
@media (max-width: 991px) {
  .projects-list {
    gap: 40px;
  }
}

.project-item {
  display: flex;
  align-items: center;
  gap: 63px;
}
@media (max-width: 1199px) {
  .project-item {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .project-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .project-item {
    gap: 20px;
  }
}
.project-item .project-assets {
  width: 60%;
  max-width: 654px;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .project-item .project-assets {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .project-item .project-assets {
    width: 100%;
    max-width: unset;
  }
}
.project-item .project-img {
  position: relative;
  z-index: 1;
  display: flex;
  aspect-ratio: 654/441;
  overflow: hidden;
}
.project-item .project-img img {
  transition: all 0.3s ease-in-out;
}
.project-item .project-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /*background: #03254c;*/
  /*background: linear-gradient(0deg, #03254c 0%, rgba(255, 255, 255, 0) 50%);*/
  /*opacity: 0.3;*/
  transition: all 0.3s ease-in-out;
}
.project-item .project-img::after {
  content: "";
  /*background-image: url(../images/pattern/watermark.png);*/
  background-size: contain;
  width: 182px;
  aspect-ratio: 182/37;
  position: absolute;
  bottom: 44px;
  inset-inline-end: 40px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .project-item .project-img::after {
    bottom: 20px;
    inset-inline-end: 20px;
    width: 130px;
  }
}
@media (max-width: 991px) {
  .project-item .project-img::after {
    width: 182px;
    bottom: 44px;
    inset-inline-end: 40px;
  }
}
@media (max-width: 767px) {
  .project-item .project-img::after {
    bottom: 17px;
    inset-inline-end: 15px;
    width: 100px;
  }
}
.project-item .project-img:hover img {
  transform: scale(1.1);
}
.project-item .project-img:hover::before {
  opacity: 0.5;
}
.project-item .project-phone {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  inset-inline-start: 38px;
  background-color: #fff;
  padding: 0 26px;
  height: 55px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #03254c;
  transform: perspective(1px);
  transition: all 0.3s ease-in-out;
}
.project-item .project-phone i {
  font-size: 24px;
}
.project-item .project-phone span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  direction: ltr;
}
.project-item .project-phone::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: 35px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .project-item .project-phone::before {
    display: none;
  }
}
.project-item .project-phone:focus {
  color: #03254c;
}
.project-item .project-phone:hover {
  color: #fff;
  background-color: #2a9df4;
}
.project-item .project-phone:hover::before {
  inset: 0;
  opacity: 0;
}
@media (max-width: 767px) {
  .project-item .project-phone {
    bottom: 10px;
    inset-inline-start: 10px;
    height: 40px;
    padding: 0 15px;
    font-size: 18px;
  }
  .project-item .project-phone i {
    font-size: 20px;
  }
  .project-item .project-phone span {
    gap: 8px;
  }
}
.project-item .project-title {
  font-size: 28px;
  font-weight: 500;
  color: #03254c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
/*   -webkit-line-clamp: 1; */
  overflow: hidden;
  margin: 0 0 20px;
}
.project-item .project-title a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.project-item .project-title a:hover {
  color: #2a9df4;
}
@media (max-width: 767px) {
  .project-item .project-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.project-item .project-desc {
  font-size: 20px;
  line-height: 1.9;
  color: #03254c;
  margin: 0 0 40px;
}
@media (max-width: 1199px) {
  .project-item .project-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .project-item .project-desc {
    font-size: 16px;
  }
}
.project-item .project-link {
  font-size: 18px;
  font-weight: 500;
  color: #2a9df4;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-item .project-link::after {
  content: "\f060";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .project-item .project-link::after {
  content: "\f061";
}
.project-item .project-link:hover {
  color: #075c9b;
}
.project-item .project-link:hover::after {
  transform: translateX(-5px);
}
html[dir="ltr"] .project-item .project-link:hover::after {
  transform: translateX(5px);
}
@media (max-width: 767px) {
  .project-item .project-link {
    font-size: 14px;
  }
  .project-item .project-link::after {
    font-size: 16px;
  }
}
.project-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .project-item:nth-of-type(odd) {
    flex-direction: column;
  }
}

.projects-cta {
  padding-top: 80px;
}
.projects-cta .section-title {
  text-align: center;
  margin-bottom: 25px;
}
.projects-cta .btns-content {
  justify-content: center;
}
.projects-cta .projects-btn {
  min-width: 200px;
}
@media (max-width: 480px) {
  .projects-cta .projects-btn {
    min-width: unset;
  }
}

.testimonials-content {
  display: flex;
  align-items: center;
}

.testimonials-img {
  width: 52%;
  max-width: 584px;
  aspect-ratio: 584/370;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .testimonials-img {
    width: 100%;
    height: 100%;
    max-width: unset;
    aspect-ratio: unset;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .testimonials-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
  }
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  margin-inline-start: -70px;
}
.testimonials-slider .slider-content {
  background-color: #fff;
}
@media (max-width: 991px) {
  .testimonials-slider .slider-content {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .testimonials-slider {
    padding: 0;
    margin: 0;
    z-index: 5;
  }
}

.testimonial-item {
  padding: 40px 45px;
}
.testimonial-item .testimonial-desc {
  font-size: 16px;
  line-height: 1.875;
  color: #03254c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  height: 120px;
  margin: 0 0 25px;
}
.testimonial-item .testimonial-owner {
  font-size: 16px;
  font-weight: 700;
  color: #03254c;
  margin: 0 0 9px;
}
@media (max-width: 991px) {
  .testimonial-item .testimonial-owner {
    font-size: 14px;
  }
}
.testimonial-item .testimonial-rate {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #999;
}
.testimonial-item .testimonial-rate .active {
  color: #f3bb43;
}
@media (max-width: 991px) {
  .testimonial-item {
    background-color: #fff;
    padding: 30px 20px;
  }
}

.testimonials-btn {
  margin: 60px auto 0;
}
@media (max-width: 991px) {
  .testimonials-btn {
    position: relative;
    z-index: 5;
    margin-top: 40px;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
}
@media (max-width: 767px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .contact-info {
    margin-bottom: 40px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 500;
  color: #03254c;
  transition: all 0.3s ease-in-out;
}
.contact-item i {
  font-size: 24px;
  color: #2a9df4;
}
.contact-item:focus {
  color: #03254c;
}
.contact-item:hover {
  color: #2a9df4;
}

.contact-map {
  padding-inline-start: 67px;
  width: 100%;
  height: 595px;
}
@media (max-width: 991px) {
  .contact-map {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contact-map {
    height: 400px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.header-section {
  position: absolute;
  background-color: #03254c;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
}
.header-section.fixed {
  position: fixed;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 65px;
  padding: 20px 40px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1264px) {
  .header {
    gap: 45px;
    padding: 25px 20px;
  }
}
@media (max-width: 1199px) {
  .header {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .header {
    gap: 10px;
    padding: 10px 20px;
  }
}
.fixed .header {
  gap: 45px;
  padding: 25px 20px;
}
@media (max-width: 1199px) {
  .fixed .header {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .fixed .header {
    gap: 15px;
    padding: 7px 15px;
  }
}

.logo {
  width: 250px;
  aspect-ratio: 247/55;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media (max-width: 1199px) {
  .logo {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .logo {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 155px;
    position: relative;
    z-index: 99;
  }
}
.fixed .logo {
  width: 200px;
}
@media (max-width: 1199px) {
  .fixed .logo {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .fixed .logo {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .fixed .logo {
    width: 100px;
  }
}

.header-btn {
  background: none;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .header-btn {
    font-size: 14px;
    height: 50px;
    padding: 0 20px;
    min-width: unset;
  }
}
@media (max-width: 991px) {
  .header-btn {
    font-size: 12px;
    padding: 0 10px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .header-btn {
    margin-inline-start: auto;
    position: relative;
    z-index: 99;
  }
}
.fixed .header-btn {
  font-size: 14px;
  height: 50px;
  padding: 0 20px;
  min-width: unset;
}
@media (max-width: 1199px) {
  .fixed .header-btn {
    font-size: 12px;
    padding: 0 10px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  .fixed .header-btn {
    height: 35px;
  }
}
.header-btn::after {
  background-image: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
  opacity: 1;
  visibility: visible;
}
.header-btn::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -2;
  background-color: transparent;
  background-color: #2a9df4;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .header-btn::before {
    display: none;
  }
}
.header-btn:hover,
.header-btn:focus {
  color: #03254c;
}
.header-btn:hover::after,
.header-btn:focus::after {
  opacity: 0;
  visibility: hidden;
}
.header-btn:hover::before,
.header-btn:focus::before {
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

.nav-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .nav-trigger {
    display: flex;
  }
}

.menu-btn {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
}
.menu-btn .btn-bar {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
}
.menu-btn .btn-bar.menu {
  transition: transform 0.3s ease-in-out 0.2s, opacity 0.15s ease-in-out 0.2s;
}
.menu-btn .btn-bar.menu:not(:first-child) {
  margin-top: 5px;
}
.menu-btn .btn-bar.menu:nth-child(even) {
  width: 26px;
}
.menu-btn .btn-bar.close {
  transform-origin: center center;
  position: absolute;
  margin-top: -1.5px;
  opacity: 0;
  top: 50%;
  transition: transform 0.2s ease-in-out, opacity 0.05s ease-in-out 0.2s;
}
.menu-btn .btn-bar.close:not(:last-child) {
  transform: rotate(45deg) translateX(-250%);
}
.menu-btn .btn-bar.close:last-child {
  transform: rotate(-45deg) translateX(250%);
}
.menu-btn.active .btn-bar {
  background-color: #fff;
}
.menu-btn.active .btn-bar.menu {
  transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s,
    background-color 0.15s ease-in-out 0.15s;
  opacity: 0;
}
.menu-btn.active .btn-bar.menu:nth-child(odd) {
  transform: translateX(-400%);
}
.menu-btn.active .btn-bar.menu:nth-child(even) {
  transform: translateX(200%);
}
.menu-btn.active .btn-bar.close {
  opacity: 1;
  transition: transform 0.2s ease-in-out 0.3s, opacity 0.05s ease-in-out 0.3s,
    background-color 0.15s ease-in-out 0.3s;
}
.menu-btn.active .btn-bar.close:not(:last-child) {
  transform: rotate(45deg);
}
.menu-btn.active .btn-bar.close:last-child {
  transform: rotate(-45deg);
}

body {
  --header: 96px;
  padding-top: var(--header);
}
@media (max-width: 1199px) {
  body {
    --header: 100px;
  }
}
@media (max-width: 991px) {
  body {
    --header: 90px;
  }
}
@media (max-width: 767px) {
  body {
    --header: 60px;
  }
}

.header-nav {
  margin-inline-start: auto;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 44px;
  --font-size: 18px;
}
html[dir="ltr"] .nav-content {
  --font-size: 16px;
}
@media (max-width: 1264px) {
  .nav-content {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .nav-content {
    gap: 15px;
    --font-size: 16px;
  }
  html[dir="ltr"] .nav-content {
    --font-size: 14px;
  }
}
@media (max-width: 991px) {
  .nav-content {
    --font-size: 14px;
  }
  html[dir="ltr"] .nav-content {
    --font-size: 14px;
  }
}
@media (max-width: 767px) {
  .nav-content {
    --font-size: 20px;
  }
  html[dir="ltr"] .nav-content {
    --font-size: 18px;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 44px;
}
@media (max-width: 1264px) {
  .nav-list {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .nav-list {
    gap: 15px;
  }
}
.nav-list a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.nav-list a:focus {
  color: #fff;
}
.nav-list a:hover {
  color: #ecf6fe;
}

.lang-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.lang-link:focus {
  color: #fff;
}
.lang-link:hover {
  color: #ecf6fe;
}

.background {
  position: absolute;
  flex-flow: column;
  align-items: stretch;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  display: none;
}
.background .portion {
  background-color: #03254c;
  opacity: 98%;
  flex: 1 1 100%;
  transition: transform 0.2s ease-in-out;
}
.background .portion:not(:first-child) {
  margin-top: -1px;
}
.background .portion:nth-child(odd) {
  transform: translateX(-100%);
}
.background .portion:nth-child(even) {
  transform: translateX(100%);
}

@media (max-width: 767px) {
  .header-nav {
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    display: none;
    transition: z-index 0.01s ease-in-out 0.2s;
  }
  .header-nav .background {
    display: flex;
  }
  .header-nav .nav-content {
    visibility: hidden;
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 20);
    display: block;
    background-color: transparent;
    border: none;
    padding: 120px 20px 50px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    transition: all 0.01s ease-in-out;
  }
  .header-nav .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .header-nav .nav-list li {
    padding: 0 10px;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .header-nav .nav-list li:after {
    inset-inline: unset;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-nav .nav-list a {
    font-weight: 600;
    width: 100%;
  }
  .header-nav .nav-list a:hover {
    color: #fff;
  }
  .header-nav .nav-list a.active {
    color: #2a9df4;
  }
  .header-nav .lang-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }
  .header-nav .lang-link {
    font-weight: 600;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header-nav .lang-link:hover {
    color: #fff;
  }
  .header-nav .lang-link.active {
    color: #2a9df4;
  }
  .header-nav.active {
    z-index: 98;
    transition: z-index 0.01s ease-in-out 0.3s;
  }
  .header-nav.active .background .portion {
    transform: translateX(0%);
    transition: transform 0.2s ease-in-out 0.3s;
  }
  .header-nav.active .nav-content {
    visibility: visible;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transition: all 0.3s ease-in-out 0.5s;
  }
}

.footer {
  padding: 60px 0 50px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer {
    padding: 35px 0 50px;
  }
}

.footer-logo {
  width: 300px;
  aspect-ratio: 212/131;
  margin: 0 auto 35px;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .socials {
    margin-bottom: 35px;
  }
}

.social {
  font-size: 26px;
  color: #03254c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.social:focus {
  color: #03254c;
}
.social:hover {
  color: #2a9df4;
}

.copyrights {
  font-size: 14px;
  color: #808080;
  margin: 0;
}

.fixed-contacts {
  position: fixed;
  bottom: 15px;
  inset-inline-start: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}
@media (max-width: 480px) {
  .fixed-contacts {
    bottom: 10px;
    inset-inline-start: 10px;
    gap: 5px;
  }
}

.fixed_contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 50px;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: var(--bg1);
  position: relative;
  transform: perspective(1px);
  transition: all 0.3s ease-in-out;
}
.fixed_contact-item::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -2;
  background-color: var(--bg1);
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}
.fixed_contact-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--bg2);
  transition: all 0.3s ease-in-out;
}
.fixed_contact-item:hover {
  color: #fff;
}
.fixed_contact-item:hover:after {
  opacity: 0;
  visibility: hidden;
}
.fixed_contact-item:hover::before {
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.fixed_contact-item i {
  font-size: 24px;
}
.fixed_contact-item.whatsapp {
  --bg1: #4dc247;
  --bg2: linear-gradient(38deg, #299c23 0%, #4dc247 100%);
}
.fixed_contact-item.phone {
  --bg1: #187bcd;
  --bg2: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
}
@media (max-width: 1199px) {
  .fixed_contact-item {
    width: 50px;
  }
  .fixed_contact-item span {
    display: none;
  }
}
@media (max-width: 480px) {
  .fixed_contact-item::before {
    display: none;
  }
}

.dark-section {
  background-color: #03254c;
}

.about-section {
  padding: 80px 0 0;
  position: relative;
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #03254c;
}
.about-section.about-page::after {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .about-section::after {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 50px 0 0;
  }
}

.services-section {
  padding: 100px 0 120px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .services-section {
    padding: 60px 0 70px;
  }
}

.features-section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .features-section {
    padding: 70px 0;
  }
}

.projects-section {
  padding: 80px 0 120px;
  background-color: #f5f6f8;
}
@media (max-width: 767px) {
  .projects-section {
    padding: 50px 0 70px;
  }
}

.testimonials-section {
  padding: 75px 0 120px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .testimonials-section {
    padding: 45px 0 70px;
  }
  .testimonials-section .pattern-content {
    position: static;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .testimonials-section .section-head {
    position: relative;
    z-index: 5;
  }
}

.contact-section {
  padding: 100px 0 60px;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0 35px;
  }
}

header.header-section.fixed {
  box-shadow: none;
}
header.header-section.fixed .header {
  padding: 15px 20px;
}
@media (max-width: 767px) {
  header.header-section.fixed .header {
    padding: 7px 15px;
  }
}
header.header-section.fixed .logo {
  width: 190px;
}
@media (max-width: 1199px) {
  header.header-section.fixed .logo {
    width: 150px;
  }
}
@media (max-width: 991px) {
  header.header-section.fixed .logo {
    width: 120px;
  }
}
@media (max-width: 767px) {
  header.header-section.fixed .logo {
    width: 145px;
  }
}
header.header-section.fixed .header-btn {
  height: 40px;
  padding: 0 15px;
}
@media (max-width: 1199px) {
  header.header-section.fixed .header-btn {
    font-size: 12px;
    padding: 0 10px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  header.header-section.fixed .header-btn {
    height: 35px;
  }
}

.fixed_contact-item::before {
  display: none;
}
.fixed_contact-item:hover {
  animation: none;
}
.fixed_contact-item.whatsapp {
  animation: pulse-green 2s infinite;
}
.fixed_contact-item.phone {
  animation: pulse 2s infinite;
}
.header-btn {
  animation: pulse-header 2s infinite;
}
.header-btn::before {
  display: none;
}
.header-btn:hover {
  animation: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 123, 205, 0.91);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(24, 123, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 123, 205, 0);
  }
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 194, 71, 0.9);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(77, 194, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 194, 71, 0);
  }
}
@keyframes pulse-header {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 157, 244, 0.9);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(42, 157, 244, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 157, 244, 0);
  }
}

/* custom css */
.page-content.post-page .post-img .img-cover {
  width: auto !important;
  max-width: 100% !important;
  height: auto;
  object-fit: unset;
  margin: 30px auto;
  display: block;
}
.gallery-wrapper {
  width: auto !important;
  max-width: 100% !important;
}
.gallery-wrapper img {
  width: auto !important;
  max-width: 100% !important;
  height: auto;
  object-fit: unset;
}
.page-content.post-page .post-description {
  text-align: start;
  font-size: 18px;
  line-height: 2;
}
.submit-btn {
  border: 0;
}

.services_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.services_wrapper .swiper-slide {
  width: 33.33%;
  margin-bottom: 60px;
  padding: 0 15px;
}

.page-content.post-page .section-title {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .services_wrapper .swiper-slide {
    width: 100%;
  }
}

.wpml-ls-statics-footer:has(.wpml-ls-flag) {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.request-section {
  display: flex;
  justify-content: space-between;
  padding: 3.7em;
  align-items: center;
}

.grad-bg {
  /* background-image: -webkit-linear-gradient(0deg, rgb(89, 35, 185) 0%, rgb(154, 33, 160) 100%); */
  background-color: #03254c;
}

.request-section .context {
  color: white;
  font-weight: bold;
  font-size: 24px;
}

.grad-bg .second-btn {
  border-color: var(--white-color);
  background-color: transparent;
  color: var(--white-color);
  width: 191px;
}

.grad-bg .second-btn {
  width: 240px;
  height: 60px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.4s ease-in-out;
  display: inline-flex;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  /* background-color: var(--main-color); */
  background-color: #187bcd;
  background-color: linear-gradient(38deg, #075c9b 0%, #2a9df4 100%);
}

/* banner */

.request-section {
  padding: 0;
  padding: 65px 0 80px;
}

.request-section .context {
  font-size: 30px;
  line-height: 1.5;
}

.grad-bg .primary-btn:after {
  background-color: #fff;
}
.grad-bg .primary-btn:hover {
  color: #03254c;
}
.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 991px) {
  .request-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .request-section {
    padding: 40px 0;
  }
  .request-section .context {
    font-size: 24px;
  }
}

/*  */

.clients {
  padding-bottom: 140px;
}

.client-item {
  overflow: hidden;
  padding-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
  .clients {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .client-item {
    text-align: center;
  }
}

.clients-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .clients-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .clients-wrapper {
    row-gap: 14px;
  }
}

.client-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-align: start;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  z-index: 1;

  a {
    transition: all linear 0.2s;
    color: #fff;
  }
}

.client-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 0px;
  color: rgb(102, 102, 102);
}

@media only screen and (max-width: 767px) {
  .client-title {
    text-align: center;
  }
  .client-desc .desc_wrap {
    display: none;
  }
}

.client-title:hover {
  a {
    color: #2a9df4;
  }
}

/* .client-title:hover::after {
  height: 4px;
  background-color: #ed348c;
} */

/* .client-title::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #000000;
  transition: all linear 0.2s;
} */

.client-img-anchor {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.client-img-anchor .client-img {
  width: 100%;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 645/450;
  height: 100%;
  object-fit: cover;
}

.client-img-anchor:hover .client-img {
  transform: rotate(2deg) scale(1.1);
}

.client-anchors {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  flex-wrap: wrap;
  /*padding-inline-start: 5px;*/
  /* position: absolute; */
  /* bottom: 10px; */
  /* inset-inline-start: 10px; */
}

@media only screen and (max-width: 767px) {
  .client-anchors {
    /* margin-top: 20px; */
    justify-content: center;
    /* gap: 5px; */
  }
}

.client-anchors .anchor {
  z-index: 1;
  /* height: 30px; */
  font-size: 12px;
  /* border-radius: 23px; */
  /* background-color: #ffffff; */
  /* border: 1px solid #cccccc; */
  color: #cbcbcb;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-inline: 15px; */
  transition: all linear 0.2s;

  &:not(:last-child) {
    margin-right: 2px;

    &:after {
      content: ",";
      margin-right: 2px;
    }
  }
}

@media only screen and (max-width: 767px) {
  .client-anchors .anchor {
    /* height: 26px; */
    font-size: 11px;
    /* padding-inline: 10px; */
  }
}

.overlay-content {
  font-size: 18px;
  width: 100%;
  height: 100%;
  position: absolute;

  .content-wrapper {
    position: absolute;
    bottom: 58px;
    inset-inline: 0;
    padding-inline: 20px;
  }

  &:after {
    content: "";
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 60%,
      rgba(0, 0, 0, 0.73) 100%
    );
    position: absolute;
    inset: 0;
    transition: 0.3s;
    pointer-events: none;
  }

  &:before {
    content: "";
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) -80%,
      rgba(0, 0, 0, 0.93) 100%
    );
    position: absolute;
    inset: 0;
    transition: 0.3s;
    pointer-events: none;
    opacity: 0;
  }

  .client-desc {
    opacity: 0;
    height: 0;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    color: #fff;
  }

  &:hover {
    &:before {
      opacity: 1;
      transition: 0.3s;
    }

    &:after {
      opacity: 0;
      transition: 0.3s;
    }

    .client-desc {
      opacity: 1;
      height: 90px;
      transition: 0.3s;
    }
  }

  .main-btn {
    min-width: unset;
    height: auto;

    font-size: 16px;
    padding: 10px 30px;
    font-weight: 500;

    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  /* .client-desc { */
  /* height: 100px !important; */
  /* } */
}
.client-item {
  aspect-ratio: 360/267;
  padding: 0;
  display: flex;
}

.client-item .content-wrapper {
  bottom: 20px;
}

.client-item .client-title {
  margin-top: 0;
  margin-bottom: 15px;
}

.client-item .client-desc {
  margin: 0;
  padding: 0;
  height: auto;
  opacity: 1;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.client-item .desc_wrap {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.client-item .client-desc br {
  display: none;
}

.client-item .main-btn {
  font-size: 14px;
  padding: 0 20px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 0;
}

.overlay-content:hover .client-desc {
  height: auto;
  opacity: 1;
  max-height: 270px;
  transition: all 0.3s ease-in-out;
}

.overlay-content:after {
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1199px) {
  .clients-wrapper{
    gap: 15px;
  }
  .overlay-content .content-wrapper{
    bottom: 15px;
    padding:0 15px;
  }
}
@media (max-width: 767px) {
  .overlay-content .client-desc .desc_wrap{
    display: none;
  }
  .overlay-content .client-desc{
    max-height: unset;
  }
  .overlay-content .content-wrapper{
    bottom: 30px;
    padding:0 20px;
  }
  .overlay-content:after{
    display: none;;
  }
  .overlay-content::before{
    opacity: 0.6;
  }
}