/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: '1 Snappy DNA';
  src: url('../fonts/1SnappyDNA.woff2') format('woff2'),
    url('../fonts/1SnappyDNA.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Google Font */
  --montserrat: 'Montserrat', sans-serif;
  --snappydna: '1 Snappy DNA', sans-serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --primary: #ab131a;
  --blue: #1895f4;
  --dark: #070120;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  color: var(--black);
  font-size: 16px;
  font-family: var(--montserrat);
  font-weight: 400;
  line-height: normal;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 25px;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
section,
.section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a,
button {
  outline: none;
  box-shadow: none;
}
button {
  background: unset;
  padding: 0;
  border: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  border: none;
  box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

/* Resusable Component and CSS Start */

.section__title {
  margin-bottom: 24px;
  position: relative;
}
.section__title-afterText {
  position: absolute;
  left: 50%;
  top: 0;
  width: max-content;
  transform: translate(-50%, -40%);
  font-size: 65px;
  font-family: var(--snappydna);
  color: #ffffff;
  opacity: 0.1;
  line-height: 1.2;
}
.section__title-pretitle {
  font-family: var(--snappydna);
  color: var(--blue);
  font-size: 24px;
  line-height: 0.3;
  display: block;
  z-index: 1;
  position: relative;
}
.section__title h2 {
  margin-bottom: 8px;
}
.section__title p {
  font-size: 14px;
  line-height: 23px;
}

/* Resusable Component and CSS End */

/* Bootstrap Customized CSS Start */

.fs-2 {
  font-size: 32px !important;
  line-height: 42px !important;
  font-weight: bold;
}

.btn,
.footer-contact .gform_button {
  font-size: 15px;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 0px;
  outline: none;
  box-shadow: none;
  border: none;
  text-transform: capitalize;
}

.btn--main,
.footer-contact .gform_button {
  background-color: var(--primary);
  color: var(--white);
}
.btn--main:hover {
  background-color: #83090f;
  color: var(--white);
}
.footer-contact .gform_confirmation_message {
	color: var(--white) !important;
}
.btn--white {
  background-color: #fff;
  color: #000000;
}
.btn--white:hover {
  background-color: #c9c9c9;
  color: #000000;
}

.btn--dark {
  background: #000000;
  color: #fff;
}

.btn--dark:hover {
  background: var(--primary);
  color: #fff;
}

.text-primary {
  color: var(--primary) !important;
}
.text-blue {
  color: var(--blue) !important;
}

/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header__main-logo a img {
  max-width: 120px;
}

.header__menu-bar {
  color: var(--primary);
  font-size: 22px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--primary);
}

.header__main {
  padding: 18px 0px;
  transition: all 0.3s ease;
}

.header__main.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #00000085;
  backdrop-filter: blur(10px);
}

.header__dummy {
  display: block;
}

.header__menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000bf;
  z-index: 9999;
  backdrop-filter: blur(11px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  align-items: center;
  text-align: center;
  max-width: 310px;
  transition: all 0.3s ease;
  transform: translateX(-100%);
}
.header__menu.show {
  transform: translateX(0);
}

button.closeMenu {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--primary);
  font-size: 20px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border: 1px solid var(--primary);
}

.header__menu nav {
  margin-top: 68px;
}

.header__menu nav ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  display: block;
  padding: 11px 0px;
  text-align: center;
}

.header__menu nav ul li:hover a {
  color: var(--white);
}
.header__menu nav ul li:hover a.active {
  color: var(--white);
}

.header__menu-info a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header__menu-info a span.icon {
  color: var(--primary);
  font-size: 20px;
}

.header__menu-info .socials {
  margin-top: 18px;
}

.header__menu-info .socials {
  gap: 20px;
  padding-left: 13px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials a:hover {
  color: var(--primary);
}

.socials a {
  font-size: 19px;
  color: #fff;
}
.header__top .socials a:hover {
  color: var(--primary);
}
/* Sticky Header Start */

/* Sticky Header End */
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */

.hero__content {
  text-align: center;
  padding: 78px 0px 80px;
}

.hero__content h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
}

.hero__content p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}

.hero--section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid transparent;
  background-color: transparent;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  content: '';
  border-radius: 50%;
}
.swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: var(--white);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--white);
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0  Service Section CSS Start */
/* =============================== */

.service--section {
  padding: 40px 0px 40px;
  background: linear-gradient(to bottom, black, transparent 50%, black),
    url('../imgs/offer-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.line-container {
  position: absolute;
  height: 100%;
  background: black;
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.line-container span {
  width: 1px;
  height: 100%;
  opacity: 0.2;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
}

.serviceItem {
  text-align: center;
  padding: 30px 20px 35px;
  margin-bottom: 20px;
  position: relative;
  background-image: -moz-linear-gradient(
    -43deg,
    rgb(171, 19, 26) 0%,
    rgba(147, 16, 22, 0.5) -6%,
    rgba(0, 0, 0, 0.7) 43%,
    rgb(0, 0, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    -43deg,
    rgb(171, 19, 26) 0%,
    rgba(147, 16, 22, 0.5) -6%,
    rgba(0, 0, 0, 0.7) 43%,
    rgb(0, 0, 0) 100%
  );
  background-image: -ms-linear-gradient(
    -43deg,
    rgb(171, 19, 26) 0%,
    rgba(147, 16, 22, 0.5) -6%,
    rgba(0, 0, 0, 0.7) 43%,
    rgb(0, 0, 0) 100%
  );
  z-index: 1;
}
.serviceItem::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  content: '';
  background-color: var(--primary);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.serviceItem:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.serviceItem__icon {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  margin-bottom: 23px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.serviceItem:hover .serviceItem__icon {
  border-color: var(--white);
}

.serviceItem:hover .serviceItem__content h4 {
  color: var(--white) !important;
}
.serviceItem__content h4 {
  font-size: 18px;
  margin-bottom: 14px;
}

.serviceItem__content p {
  font-size: 14px;
  line-height: 23px;
  text-align: justify;
}

/* =============================== */
/* :: 6.0 Service  Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Choose Section CSS Start */
/* =============================== */
.choose--section {
  background: linear-gradient(
      to right,
      rgb(15, 15, 15) 50%,
      rgba(89, 11, 15, 0.6) 100%
    ),
    url('../imgs/choose-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.choose__item {
  background: #000;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  padding: 50px 35px 50px;
}

.choose__item-icon {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-bottom: 30px;
  border-radius: 50%;
}

.choose__item > img {
  position: absolute;
  left: 8px;
  top: 8px;
}

.choose__item h4 {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 0px;
}

.choose__item.choose__item--light .choose__item-icon {
  background: var(--primary);
}

.choose__item.choose__item--light h4 {
  color: #000;
}

.choose__item.choose__item--light {
  background: #fff;
}

/* =============================== */
/* :: 7.0 Choose Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Gallery Section CSS Start */
/* =============================== */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery__item--1 {
  grid-area: 1 / 1 / 5 / 5;
}
.gallery__item--2 {
  grid-area: 1 / 5 / 4 / 9;
}
.gallery__item--3 {
  grid-area: 1 / 9 / 5 / 13;
}
.gallery__item--4 {
  grid-area: 5 / 1 / 7 / 5;
}
.gallery__item--5 {
  grid-area: 4 / 5 / 7 / 9;
}
.gallery__item--6 {
  grid-area: 5 / 9 / 7 / 13;
}

/* =============================== */
/* :: 8.0 Gallery Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Review Section CSS Start */
/* =============================== */

.review--section {
  background: #f0f0f0;
  padding: 40px 0px 40px;
}

.reviewCard {
  background-color: rgb(255, 255, 255);
  padding: 28px 24px;
  height: 100%;
}
.reviewCard__header-meta__icon {
  display: inline-flex;
  align-items: center;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

.bg-pink {
  background-color: #fa4739;
}
.bg-yellow {
  background-color: #fcbc05;
}
.bg-green {
  background-color: #34a853;
}
.bg-blue {
  background-color: #4486f7;
}

.reviewCard__header-meta {
  gap: 15px;
}

.reviewCard__header-meta h5 {
  font-size: 16px;
  font-weight: bold;
}

.reviewCard__header-meta span.date {
  color: #c6c6c6;
  font-size: 12px;
  display: block;
}

.reviewCard__header {
  margin-bottom: 18px;
}

.reviewCard__desc-ratting img.stars {
  max-width: 110px;
}

.reviewCard__desc-ratting {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 13px;
}

.reviewCard__desc p {
  line-height: 23px;
  margin-bottom: 13px;
}

.readmore {
  display: inline-block;
  color: #b7b7b7;
}

.readmore:hover {
  text-decoration: underline;
  color: var(--primary);
}
.container-review {
  max-width: 1630px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}
/* =============================== */
/* :: 9.0 Review Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Video  Section CSS Start */
/* =============================== */
.video--section {
  height: 440px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__play {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ab131a94;
}
/* =============================== */
/* :: 10.0 Video  Section CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Blog Section CSS Start */
/* =============================== */

.blog--section {
  background-color: #ffffff;
  padding: 40px 0px 40px;
}
.blog__navs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.blogItem {
  transition: all 0.3s ease;
}
.blogItem:hover {
  background-color: #fafafa;
}

.blog__navs button {
  background: transparent;
  border: none;
  padding: 0px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary);
  font-size: 21px;
  color: var(--primary);
}

.blogItem__content {
  padding: 10px 15px 24px;
  text-align: center;
}

.blogItem__content span.date {
  font-size: 12px;
  color: #ab131a;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.blogItem__content h6 {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 8px;
}

.blogItem__content p {
  font-size: 14px;
  color: #929292;
  line-height: 23px;
  margin-bottom: 16px;
}
.blogItem__content a.btn {
  font-size: 14px;
  padding: 14px 30px;
  min-width: auto;
}

.blog__slider {
  margin-bottom: 18px;
}

/* =============================== */
/* :: 11.0 Blog Section CSS End */
/* =============================== */

/* =============================== */
/* :: Footer  Section CSS Start */
/* =============================== */
.footer__logo a img {
  max-width: 170px;
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__info {
  display: flex;
  flex-direction: row;
  gap: 23px 0px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer__info a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  gap: 4px;
  max-width: 142px;
  margin: 0 auto;
  text-align: center;
}

.footer__menu nav ul {
  display: flex;
  align-items: center;
  gap: 0px;
  justify-content: center;
  padding: 16px 0px;
}

.footer__menu .socials {
  justify-content: center;
}

.footer__menu nav ul li a {
  color: #fff;
  font-size: 14px;
  display: block;
  position: relative;
  padding: 0px 10px;
  border-right: 1px solid #373737;
  line-height: 1;
}
.footer__menu nav ul li:hover a {
  color: var(--primary);
}

.inputBox input,
.footer-contact .gform_fields input {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  height: 40px;
  font-size: 14px;
}
.inputBox input::placeholder {
  font-size: 14px;
}

.inputBox {
  margin-bottom: 14px;
}

.contact__submit {
  padding-top: 12px;
  text-align: center;
}

.footer--section {
  padding: 40px 0px 20px;
}

/* =============================== */
/* :: Footer  Section CSS End */
/* =============================== */

/* =============================== */
/* :: index-2.html CSS Start */
/* =============================== */
.page-top {
  background: url('../imgs/page-2/bg-top.webp') no-repeat center / cover, #000;
  padding-top: 150px;
  margin-top: -200px;
}
.about-bg-thumb {
  margin-top: 8%;
  width: clamp(200px, 50%, 920px);
  opacity: 0.5;
}
/* About Section Start */
.about--section {
  padding: 50px 0;
}
.about__wrapper {
  max-width: 1920px;
}
.about__thumbs {
  height: 280px;
  position: relative;
  z-index: 1;
}
.about__thumbs__shadow {
  width: 200px;
  height: 200px;
  background-color: var(--primary);
  filter: blur(200px);
  opacity: 0.75;
  z-index: -1;
}
/* About Section End */

/* Providing Section Start */
.providing--section {
  padding: 10px 0 50px;
}
.section__head--providing {
  margin-bottom: 40px;
}
.providing__para {
  max-width: 1000px;
  font-size: 14px;
}
.providing__cards {
  gap: 16px;
}
.providing__card__item {
  max-width: 282px;
  width: 100%;
  min-height: 340px;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}
.checkbox-check {
  max-width: 28px;
  left: 10px;
  top: 10px;
}
.checkbox-check img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}
.providing__card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  padding: 14px;
  margin: 24px 0;
  background-color: #be1119;
  border-color: transparent;
  transition: all 0.3s ease-in-out;
}
.providing__card__icon img {
  max-height: 40px;
}
.providing__card__title {
  font-size: 18px;
}
.providing__card__para {
  transition: all 0.3s ease-in-out;
}
/* Providing Section End */

/* Repair Section Start */
.repair--section {
  padding: 50px 0;
}
.repair__para {
  max-width: 880px;
}
.repair__card__thumb {
  height: 280px;
}
.repair__card__thumb img {
  transition: all 0.3s ease-in-out;
}
.repair__card__content {
  padding: 24px 16px;
  background: url('../imgs/page-2/card-bg-1.webp') no-repeat center / cover;
  transition: all 0.3s ease-in-out;
}
.repair__card__item:hover .repair__card__content,
.repair__card__item.active .repair__card__content {
  background-image: unset;
  background-color: var(--primary);
}
.repair__card__title {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.repair__card__para {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.repair__card__item:hover .repair__card__title,
.repair__card__item:hover .repair__card__para,
.repair__card__item.active .repair__card__title,
.repair__card__item.active .repair__card__para {
  color: var(--white);
}
.repair__card__collapse__btn img {
  transition: all 0.3s ease-in-out;
}
.repair__card__item:hover .repair__card__collapse__btn img,
.repair__card__item.active .repair__card__collapse__btn img {
  filter: brightness(0) invert(1);
}
.repair__card__btn .btn {
  font-size: 14px;
  padding: 18px;
  min-width: 152px;
}
/* Repair Section End */

/* Choose Section Start */
.chooseUs--section {
  padding: 60px 0;
  background: url('../imgs/page-2/choose-bg.webp') no-repeat center / cover;
  z-index: 1;
}
.chooseUs--section::before,
.chooseUs--section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #191919 11%, #ce010be3 100%);
  z-index: -1;
  opacity: 0.9;
  mix-blend-mode: hard-light;
}
.chooseUs--section::after {
  background: linear-gradient(to right, #000 45%, #ab131a00 100%);
  opacity: 0.92;
}
.chooseUs__item__title {
  font-size: 18px;
}
.chooseUs__item__para {
  font-size: 14px;
}
.chooseUs__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
/* Choose Section End */

/* Map Section Start */
.map__content {
  height: 300px;
}
.map__area map,
.map__area iframe {
  width: 100%;
  height: 100%;
  display: block;
}
/* Map Section End */

/* FAQ Section Start */
.faq--section {
  padding: 80px 0 50px;
  z-index: 1;
}
.faq--section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../imgs/page-2/faq-bg.webp') no-repeat center / cover;
  z-index: -1;
}
.faq__shadow {
  max-width: 1500px;
  width: 100%;
}
.section__head--faq {
  max-width: 720px;
}
.faq .section__title-afterText {
  width: 100%;
}
.faq__content {
  gap: 40px;
}
.faq__card {
  padding: 24px 16px;
  background-color: rgba(255, 255, 255, 0.07);
  max-width: 492px;
  width: 100%;
  height: max-content;
}
.help-line-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(to right, #fff 0%, #dbdbdb 100%);
}
.help-line-icon img {
  max-width: 48px;
}
.faq__card__title {
  font-size: 18px;
}
.faq__card__para {
  font-size: 14px;
  color: #b7b7b7;
}
.faq .accordion,
.faq .accordion-item,
.faq .accordion-button {
  background-color: transparent;
  box-shadow: unset;
}
.faq .accordion-button:focus {
  box-shadow: unset;
}
.faq .accordion-button::after {
  display: none;
}
.faq .accordion-item {
  border-bottom: 1px solid #212121 !important;
}
.faq .accordion-button {
  color: var(--white);
  font-size: 18px;
  padding: 16px 0;
}
.faq .accordion-item:first-child .accordion-button {
  padding-top: 0;
}
.faq__accordion__number {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 10px;
}
.faq__accordion__icon {
  width: 10px;
  margin-left: 16px;
}
.faq__accordion__icon::before,
.faq__accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 10px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.faq__accordion__icon::after {
  transform: translate(-50%, -50%) rotate(270deg);
}
.faq .accordion-button[aria-expanded='true'] .faq__accordion__icon::before,
.faq .accordion-button[aria-expanded='true'] .faq__accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq .accordion-body {
  padding: 8px 32px 32px;
  padding-right: 0;
  color: #b7b7b7;
  font-size: 14px;
}
/* FAQ Section End */

/* Testimonial Section Start */
.testimonial--section {
  padding: 50px 0;
  background: linear-gradient(to right, #fff 0%, #fff 41%, #d8d8d7 100%);
}
.testimonial__slider {
  padding: 20px;
  margin: 0px 0 0 5px;
  padding-right: 400px;
  margin-right: -400px;
}
.testimonial__slide {
  height: auto;
}
.testimonial__content {
  height: 100%;
}
.testimonial__slide {
  height: auto;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
.reviewCard__header-meta__icon {
  flex-shrink: 0;
}
/* Testimonial Section End */

/* CTA Section Start */
.cta--section {
  padding: 36px 0;
  background-color: var(--primary);
}
.cta__wrapper {
  gap: 24px;
}
.cta__title {
  font-size: 28px;
}
.cta__title span {
  font-family: var(--snappydna);
  letter-spacing: 1px;
}
.cta__btn .btn {
  border: 1px solid var(--white);
}
/* CTA Section End */
/* =============================== */
/* :: index-2.html CSS End */
/* =============================== */
