* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
a{
  text-decoration: none;
  color: inherit;
}
  body {
    font-family: 'Poppins', sans-serif;
  }

  .topbar {
    background-color: #0d2f3f;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .topbar .left, .topbar .right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .topbar i {
    color: #ff4757;
  }

  .topbar .right a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
  }

  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #0d2f3f;
  }

  .logo span {
    color: #ff4757;
  }

  nav {
    display: flex;
    gap: 25px;
  }

  nav a {
    text-decoration: none;
    color: #0d2f3f;
    font-size: 16px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .burger span {
    width: 25px;
    height: 3px;
    background-color: #0d2f3f;
  }

  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 119px;
      right: 0px;
      height: 100vh;
      width: 100%;
      z-index: 3;
      background-color: white;
      padding: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

    nav.active {
      display: flex;
    }

    .burger {
      display: flex;
    }
  }
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .hero  .swiper {
    height: 100%;
  }

.hero  .swiper-slide {
    display: flex;
    background-blend-mode: multiply;
    background-color: #939393;
    align-items: center;
    justify-content:center;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .hero  .slide-content {
    max-width: 900px;
    padding: 0 40px;
    color: #ffffff;
  }

  .hero .slide-content h4 {
    color: #e74c3c;
    font-weight: normal;
    letter-spacing: 1px;
  }

  .hero  .slide-content h1 {
    font-size: 60px;
    font-weight: 900;
    margin: 10px 0;
    line-height: 1.1;
  }

  .hero .slide-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero .slide-content .btn {
    background-color: #ff3b57;
    color: white;
    padding: 12px 25px;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    font-weight: bold;
  }

  .hero  .swiper-button-prev,
  .hero .swiper-button-next {
    color: #0d2f3f;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 3px;
  }

  @media (max-width: 768px) {
    .hero   .slide-content h1 {
      font-size: 36px;
    }
  }
  .hero  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after ,
  .hero .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
 
    font-size: 16px;
    font-weight: 900;
}
.services {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .services__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services__header {
    margin-bottom: 40px;
  }
  
  .services__subtitle {
    display: inline-block;
    color: #e83e8c;
    font-weight: bold;
    margin-bottom: 10px;
    border-left: 3px solid #e83e8c;
    padding-left: 10px;
  }
  
  .services__title {
    font-size: 36px;
    font-weight: 700;
    color: #072940;
  }
  
  .services__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .services__item {
    background-color: #fff;
    border: 2px solid transparent;
    padding: 40px 30px;
    width: 300px;
    transition: 0.3s;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
  
  .services__item:hover {
    border-color: #e83e8c;
  }
  
  .services__item--active {
    background-color: #f82343;
    color: #fff;
  }
  
  .services__icon {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .services__icon img {
    height: 50px;
    width: 50px;
  }
  
  .services__icon--white img {
    filter: brightness(0) invert(1);
  }
  
  .services__name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #031b4e;
  }
  
  .services__name--white {
    color: #fff;
  }
  
  .services__description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  
  .services__description--white {
    color: #fff;
  }
  .about {
    background: linear-gradient(to right, #f82343 50%, #0e3c55 50%);
    padding: 60px 0;
    color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .about__image {
    flex: 1 1 40%;
    padding: 20px;
  }
  
  .about__image img {
    max-width: 100%;
    border-radius: 5px;
    display: block;
  }
  
  .about__content {
    flex: 1 1 50%;
    padding: 20px;
  }
  
  .about__label {
    display: inline-block;
    border-left: 3px solid #fff;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .about__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .about__text {
    color: #d9d9d9;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .about__btn {
    display: inline-block;
    background-color: #f82343;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: bold;
    transition: background 0.3s;
    border-radius: 3px;
  }
  
  .about__btn:hover {
    background-color: #c81835;
  }
  .cases {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
  }
  
  .cases__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cases__header {
    text-align: left;
    margin-bottom: 40px;
  }
  
  .cases__subtitle {
    display: inline-block;
    color: #f82343;
    font-size: 14px;
    font-weight: bold;
    border-left: 3px solid #f82343;
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  
  .cases__title {
    font-size: 36px;
    font-weight: bold;
    color: #0a2b3c;
    margin-top: 10px;
  }
  
  .cases__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .cases__item {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    flex: 1 1 48%;
  }
  
  .cases__image {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 250px;
  }
  
  .cases__info {
    padding: 20px;
  }
  
  .cases__label {
    display: inline-block;
    color: #f82343;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid #f82343;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  
  .cases__text {
    font-size: 18px;
    color: #0a2b3c;
    line-height: 1.5;
  }
  .testimonial {
    background-color: #08394e;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .testimonial__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .testimonial__quote {
    font-size: 60px;
    color: #f44336;
  }
  
  .testimonial__text {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5dc;
    max-width: 700px;
  }
  
  .testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .testimonial__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
  }
  
  .testimonial__info {
    text-align: left;
  }
  
  .testimonial__name {
    font-size: 20px;
    color: #ff4646;
    margin: 0;
  }
  
  .testimonial__position {
    font-size: 14px;
    color: #a9b4c4;
    margin: 0;
  }
  
  .testimonial__nav {
    color: #fff;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .testimonial__nav:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .stats {
    background-color: #0d3a50;
    padding: 50px 0px 0;
  }
  
  .stats__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #fff;
    padding: 50px 20px;
  }
  
  .stats__item {
    background: #fff;
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 30px 20px;
    width: 200px;
    box-shadow: 0 0 0 transparent;
    transition: all 0.3s;
  }
  
  .stats__item--highlighted {
    background: #ff224b;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .stats__number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .stats__label {
    font-size: 16px;
    color: #607d8b;
  }
  
  .stats__label--white {
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .stats__item {
      width: 100%;
      max-width: 300px;
    }
  }
  .cta {
    background: #ff224b;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .cta__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .cta__text {
    flex: 1;
    min-width: 250px;
  }
  
  .cta__title,
  .cta__subtitle {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
  }
  
  .cta__subtitle {
    margin-top: 10px;
  }
  
  .cta__button {
    flex-shrink: 0;
    margin-top: 20px;
  }
  
  .cta__btn {
    background: #0d3a50;
    color: #fff;
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-block;
  }
  
  .cta__btn:hover {
    background: #062433;
  }
  
  @media (max-width: 768px) {
    .cta__container {
      flex-direction: column;
      text-align: center;
    }
  
    .cta__button {
      margin-top: 30px;
    }
  
    .cta__title,
    .cta__subtitle {
      font-size: 28px;
    }
  }
  .blog {
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: sans-serif;
  }
  
  .blog__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog__header {
    text-align: left;
    margin-bottom: 40px;
  }
  
  .blog__subtitle {
    color: #f9435c;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
  }
  
  .blog__title {
    font-size: 36px;
    font-weight: 700;
    color: #0d2c40;
  }
  
  .blog__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .blog__item {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 20px;
  }
  
  .blog__image {
    width: 100%;
    object-fit: cover;
    height: 300px;
    display: block;
}
  .blog__meta {
    padding: 15px 20px 5px;
    color: #888;
    font-size: 14px;
  }
  
  .blog__heading {
    font-size: 18px;
    font-weight: bold;
    color: #0d2c40;
    padding: 0 20px;
    margin: 5px 0;
  }
  
  .blog__text {
    font-size: 14px;
    padding: 0 20px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .blog__link {
    color: #f9435c;
    font-size: 14px;
    font-weight: bold;
    padding-left: 20px;
    text-decoration: none;
   
    display: inline-block;
    width: fit-content;
  }
  .footer {
    background-color: #0d1117;
    color: #cfcfcf;
    padding: 60px 20px 20px;
    font-family: sans-serif;
  }
  
  .footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer__logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
  }
  
  .footer__dot {
    color: #f9435c;
  }
  
  .footer__text {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.6;
  }
  
  .footer__phone {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
  }
  
  .footer__highlight {
    color: #f9435c;
    font-weight: bold;
  }
  
  .footer__email {
    font-size: 14px;
    color: #aaa;
  }
  
  .footer__title {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__link {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin: 6px 0;
  }
  
  .footer__form {
    display: flex;
    margin-top: 10px;
  }
  
  .footer__input {
    flex: 1;
    padding: 10px;
    background: #111920;
    border: none;
    color: #fff;
  }
  
  .footer__button {
    background: #111920;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer__bottom {
    border-top: 1px solid #1f2a33;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer__copyright {
    font-size: 14px;
    color: #999;
    text-align: center;
  }
  
  .footer__copyright a {
    color: #f9435c;
    text-decoration: none;
  }
  
  .footer__heart {
    color: red;
  }
  
  .footer__socials {
    display: flex;
    gap: 15px;
  }
  
  .footer__socials a {
    color: #ccc;
    font-size: 16px;
  }
  .contact {
    padding: 110px 15px;
    background: #fff;
    font-family: sans-serif;
  }
  .contact__wrapper {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;

    justify-content: space-between;
    gap: 40px;
  }
  .contact__form {
    flex: 1;
  }
  .contact__title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #062d4f;
  }
  .contact__textarea,
  .contact__input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  .contact__row {
    display: flex;
    gap: 20px;
  }
  .contact__button {
    padding: 15px 30px;
    background: none;
    border: 1px solid #062d4f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
  }
  .contact__info {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
    color: #555;
  }
  .contact__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  .contact__item i {
    font-size: 20px;
    color: #062d4f;
    margin-top: 5px;
  }
  .blogs {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    background: #f9f9f9;
  }
  .blogs__card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 5px;
  }
  .blogs__image {
    position: relative;
  }
  .blogs__image img {
    width: 100%;
    object-fit: cover;
    height: 250px;
    display: block;
  }
  .blogs__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0a2b4a;
    color: #fff;
    padding: 10px 12px;
    text-align: center;
    border-radius: 3px;
    font-weight: bold;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  .blogs__day {
    font-size: 18px;
    display: block;
  }
  .blogs__month {
    font-size: 12px;
    text-transform: uppercase;
  }
  .blogs__content {
    padding: 20px;
  }
  .blogs__title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0a2b4a;
  }
  .blogs__text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .blogs__meta {
    font-size: 13px;
    color: #888;
    display: flex;
    justify-content: space-between;
  }
  .container{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .blogs .container{
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .blog-post {
    padding: 80px 30px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #fff;
    max-width: 900px;
    margin: auto;
  }
  .blog-post__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
  }
  .blog-post__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .blog-post__meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
  }
  .blog-post__content p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  .blog-post__content blockquote {
    border-left: 4px solid #ddd;
    padding: 15px 20px;
    font-style: italic;
    background: #f9f9f9;
    margin-bottom: 20px;
  }
  .blog-post__tags span {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    margin-right: 8px;
    border-radius: 3px;
    font-size: 13px;
  }
  .blog-post__author {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
  }
  .blog-post__author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }
  .blog-post__comments {
    margin-top: 40px;
  }
  .blog-post__comments .comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  .blog-post__comments .comment img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .blog-post__comments .comment h4 {
    margin: 0;
    font-size: 16px;
  }
  .blog-post__comments .comment span {
    font-size: 13px;
    color: #999;
  }
  .blog-post__comments .comment a {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #007bff;
  }
  .blog-post__reply {
    margin-top: 50px;
  }
  .blog-post__reply h3 {
    margin-bottom: 20px;
  }
  .blog-post__reply form textarea,
  .blog-post__reply form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  .blog-post__reply form .row {
    display: flex;
    gap: 20px;
  }
  .blog-post__reply form button {
    padding: 14px 25px;
    background: transparent;
    border: 1px solid #333;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .blog-post__reply form button:hover {
    background: #333;
    color: #fff;
  }
  .testimonial-page {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  .testimonial-page__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0a2b4a;
  }
  .testimonial-page__slider {
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    display: grid
;
    position: relative;
    flex-wrap: wrap;
}
  .testimonial-page__slide {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }
  .testimonial-page__quote i {
    font-size: 32px;
    color: #ff2b4a;
    margin-bottom: 20px;
  }
  .testimonial-page__text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
  }
  .testimonial-page__author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
  }
  .testimonial-page__author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  .testimonial-page__name {
    font-weight: 600;
    margin: 0;
  }
  .testimonial-page__position {
    font-size: 14px;
    color: #888;
  }
  .testimonial-page__nav .swiper-button-next,
  .testimonial-page__nav .swiper-button-prev {
    color: #ff2b4a;
  }

  .faq {
    padding: 60px 20px;
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
  }
  .faq__container {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0a2b4a;
  }
  .faq__item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
  .faq__question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    color: #0a2b4a;
    cursor: pointer;
    position: relative;
  }
  .faq__question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  .faq__question.active::after {
    content: '-';
  }
  .faq__answer {
    display: none;
    padding: 0 15px 15px;
    color: #333;
    font-size: 16px;
  }
  .faq__answer.active {
    display: block;
  }
  .terms{
    padding: 90px 0;
  }
  .terms .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .terms ul{
    padding-left: 15px;
  }
  .terms ul li{
    margin-bottom: 10px;
  }
  .cook__banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: auto;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    font-family: sans-serif;
    z-index: 9999;
  }
  
  .cook__banner p {
    margin: 0;
    font-size: 15px;
    color: #333;
    flex: 1;
  }
  
  .cook__banner a {
    color: #007bff;
    text-decoration: none;
  }
  
  .cook__banner a:hover {
    text-decoration: underline;
  }
  
  .cook__banner button {
    background-color: #0a2b4a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cook__banner button:hover {
    background-color: #08426c;
  }
  @media screen and (max-width: 768px) {
    .about__container

 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contact__wrapper {
  display: flex
;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
}
.testimonial-page__slider {
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  display: grid
;
  position: relative;
  flex-wrap: wrap;
}
  }