/** @format */

@import url("./fonts.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-Futuru);
}
/* start hero section */
.hero {
  max-width: 100%;
  display: grid;
  text-align: center;
  grid-template-areas:
    "heading-area"
    "binocular-area"
    "content-area";
}
.hero .heading-area {
  grid-area: heading-area;
  margin-bottom: 20px;
}
.hero .heading-area h1 {
  font-family: var(--font-berlinBoldX);
  font-size: 34px;
  line-height: 124%;
  text-transform: uppercase;
}
.hero .heading-area h1 span {
  font-family: var(--font-berlinBoldX);
  color: var(--primary-color);
}
.hero .binocular-area {
  grid-area: binocular-area;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero .binocular-area .circles {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
}
.hero .binocular-area .circles .circle {
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.binocular-area:hover .circles .circle {
  transform: scale(1.4);
}
.hero .binocular-area:hover .right {
  transform: scale(1.4) translateX(15.5px);
}
.hero .binocular-area:hover .left {
  transform: scale(1.4) translateX(-15.5px);
}
.hero .binocular-area:hover .img-holder img {
  transform: translatey(10px);
}
.hero .binocular-area .circles .circle {
  align-self: flex-start;
  justify-self: start;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.hero .binocular-area .img-holder {
  width: 100%;
  overflow: hidden;
}
.hero .binocular-area .img-holder img {
  max-width: 100%;
  margin-bottom: -5px;
  position: relative;
  z-index: 2;
  width: 350px;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero .content-area {
  grid-area: content-area;
  display: flex;
  flex-direction: column;
  row-gap: 38px;
}
.hero .buttons-holder {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 100%;
}
.hero .buttons-holder button {
  border: none;
  width: 100%;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  text-transform: capitalize;
  font-weight: 800;
}
.hero .buttons-holder .booking {
  background-color: var(--primary-color);
  color: #ffffff;
  cursor: pointer;
}
.hero .buttons-holder a .booking {
  text-decoration: none;
}
.hero .buttons-holder .speak {
  background-color: transparent;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  color: var(--primary-color);
}
.hero .buttons-holder a .speak {
  text-decoration: none;
  text-decoration: underline;
}
.hero .buttons-holder .booking:hover {
  background-color: #cc2236;
  box-shadow: 0px 0px 20px 5px rgba(204, 34, 54, 0.5);
}
.hero .buttons-holder .booking:active {
  background-color: #931213;
  border: 1px solid #ffffff;
}
.hero .buttons-holder .speak:hover {
  background-color: #ffc9bf70;
}
.hero .paragraph-area {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 153%;
  letter-spacing: 5%;
  text-align: center;
  margin-bottom: 85px;
}
.hero .paragraph-area p {
  font-family: var(--font-typo);
}
/* media query */
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .hero {
    margin-top: 200px;
    display: grid;
    text-align: center;
    grid-template-areas:
      "heading-area"
      "content-area"
      "binocular-area";
  }
  main .hero .content-area {
    grid-area: content-area;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
    margin-bottom: 50px;
  }
  main .hero .content-area .buttons-holder {
    flex-direction: row;
    column-gap: 20px;
  }
  main .hero .content-area .buttons-holder a {
    width: 100%;
  }
  main .hero .content-area .paragraph-area {
    margin-bottom: 0;
  }
  .hero .binocular-area .img-holder img {
    width: 450px;
  }
  .hero .binocular-area .circles {
    top: 1%;
  }
  .hero .binocular-area .circles .circle {
    width: 150px;
    height: 150px;
  }
  .hero .binocular-area:hover .right {
    transform: scale(1.5) translateX(25px);
  }
  .hero .binocular-area:hover .left {
    transform: scale(1.5) translateX(-25px);
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .hero {
    margin-top: 120px;
    display: grid;
    text-align: center;
    grid-template-areas:
      "heading-area"
      "content-area"
      "binocular-area";
  }
  main .hero .content-area {
    grid-area: content-area;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
    margin-bottom: 50px;
  }
  .hero .heading-area h1 {
    font-size: 48px;
    line-height: 87%;
    letter-spacing: 0%;
  }
  main .hero .content-area .buttons-holder {
    flex-direction: row;
    column-gap: 20px;
  }
  main .hero .content-area .buttons-holder a {
    width: 100%;
  }
  main .hero .content-area .paragraph-area {
    margin-bottom: 0;
  }
  .hero .binocular-area {
    margin-top: 30px;
  }
  .hero .binocular-area .img-holder img {
    width: 500px;
  }
  .hero .binocular-area .circles {
    top: 1%;
  }
  .hero .binocular-area .circles .circle {
    width: 170px;
    height: 170px;
  }
  .hero .binocular-area:hover .right {
    transform: scale(1.6) translateX(32px);
  }
  .hero .binocular-area:hover .left {
    transform: scale(1.6) translateX(-32px);
  }
}
/* end hero section */
/* start Trusted section */
main .trusted {
  background-color: var(--primary-color);
  width: 100%;
  color: #ffffff;
  text-align: center;
}
main .trusted {
  padding-top: 50px;
  padding-bottom: 75px;
}
main .trusted .trusted-flex {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-items: center;
}
main .trusted .trusted-flex .rows {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
main .trusted .trusted-flex .clints {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  border-radius: 50%;
}
main .trusted .trusted-flex .clints img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
main .trusted p.second {
  font-weight: 400;
  font-size: 20px;
  line-height: 142%;
  text-transform: capitalize;
  font-family: var(--font-berlinReg);
}
/* start Trusted section */
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .trusted .trusted-flex {
    padding: 130px 0;
    flex-direction: row;
    column-gap: 20px;
    justify-content: center;
  }
  main .trusted .trusted-flex .rows {
    flex-direction: column;
    row-gap: 20px;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .trusted {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  main .trusted .trusted-flex {
    padding: 130px 0;
    flex-direction: row;
    column-gap: 50px;
    justify-content: center;
  }
  main .trusted .trusted-flex .rows {
    flex-direction: column;
    row-gap: 50px;
  }
  main .trusted .trusted-flex .clints {
    width: 120px;
    height: 120px;
  }
}
/* start brief section */
main .brief {
  padding-top: 53px;
  padding-bottom: 130px;
}
main .brief .plans {
  margin-top: 70px;
  text-align: center;
}
main .brief .plans .plans-flex {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
main .brief .plans .plans-flex .plan {
  width: 185px;
  height: 185px;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
main .brief .plans .plans-flex .plan .base {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--secondary-color);
  z-index: auto;
}
main .brief .plans .plans-flex .plan .flip {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary-color);
  clip-path: inset(0% 0% 100% 0%);
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: auto;
}
main .brief .plans .plans-flex .plan.flipped .flip {
  clip-path: inset(0% 0% 0% 0%);
}
main .brief .plans .plans-flex .plan .shadow {
  z-index: 2;
}
main .brief .plans .plans-flex .plan .crease {
  z-index: 3;
}
main .brief .plans .plans-flex .plan p {
  font-size: 18px;
  font-family: var(--font-berlinBoldX);
  line-height: 165%;
  text-transform: uppercase;
  z-index: 4;
  transition: ease-in-out 0.5s;
}
main .brief .plans .plans-flex .plan.flipped p {
  color: #ffffff;
}
main .brief .plans .plans-flex .plan .img-holder {
  display: none;
}
main .brief .plans p.manage {
  display: none;
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .brief .plans .plans-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-bottom: 40px;
  }
  main .brief .plans .plans-flex .plan {
    padding: 0 15px;
    width: 100%;
    height: 60px;
    border-radius: 11px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  main .brief .plans .plans-flex .plan.flipped .flip {
    clip-path: inset(0% 0% 0% 0%);
  }
  main .brief .plans .plans-flex .plan.flipped p {
    color: #ffffff;
  }
  main .brief .plans .plans-flex .plan p {
    font-family: var(--font-Futuru);
    font-weight: 600;
    font-size: 12px;
    line-height: 126%;
    letter-spacing: 5%;
    text-transform: capitalize;
  }
  main .brief .plans .plans-flex .plan .img-holder {
    display: block;
    width: 20px;
    height: 20px;
  }
  main .brief .plans .plans-flex .plan .img-holder img {
    width: 100%;
    height: 100%;
  }
  main .brief .plans p.manage {
    display: block;
    font-family: var(--font-berlinReg);
    font-size: 18px;
    line-height: 126%;
    letter-spacing: 5%;
  }
  main .brief .plans .plans-flex .plan .base,
  main .brief .plans .plans-flex .plan .flip,
  main .brief .plans .plans-flex .plan .shadow,
  main .brief .plans .plans-flex .plan .crease {
    display: none;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .brief {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  main .brief .heading p {
    font-size: 20px;
  }
  main .brief .plans .plans-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    margin-bottom: 40px;
  }
  main .brief .plans .plans-flex .plan {
    padding: 0 15px;
    width: 100%;
    height: 60px;
    border-radius: 11px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  main .brief .plans .plans-flex .plan p {
    font-family: var(--font-Futuru);
    font-weight: 600;
    font-size: 20px;
    line-height: 126%;
    letter-spacing: 5%;
    text-transform: capitalize;
  }
  /* main .brief .plans .plans-flex .plan:hover p {
    color: #000000;
  } */
  main .brief .plans .plans-flex .plan .img-holder {
    display: block;
    width: 20px;
    height: 20px;
  }
  main .brief .plans .plans-flex .plan .img-holder img {
    width: 100%;
    height: 100%;
  }
  main .brief .plans p.manage {
    display: block;
    font-size: 20px;
  }
  main .brief .plans .plans-flex .plan .base,
  main .brief .plans .plans-flex .plan .flip,
  main .brief .plans .plans-flex .plan .shadow,
  main .brief .plans .plans-flex .plan .crease {
    display: none;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end brief section */
/* start industries section */
main .industries {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 80px 0;
}
main .industries .industries-carts .industries-flex {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main .industries .industries-carts .industries-flex .cart img {
  margin-bottom: 20px;
}
main .industries .industries-carts .industries-flex .cart p {
  font-family: var(--font-Futuru);
  font-weight: 800;
  font-size: 18px;
  line-height: 142%;
  text-transform: uppercase;
}
main .industries .industries-carts .industries-flex .cart p.commerce {
  text-transform: none;
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .industries .industries-carts .industries-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    row-gap: 40px;
  }
  main .industries .industries-carts .industries-flex .cart img {
    width: 146px;
    height: 113px;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .industries .heading p {
    font-size: 20px;
  }
  main .industries .industries-carts .industries-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    row-gap: 40px;
  }
  main .industries .industries-carts .industries-flex .cart img {
    width: 146px;
    height: 113px;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end industries section */
/* start consultation section */
main .consultation {
  padding: 80px 0;
}
main .consultation .heading p {
  color: #606060;
}
.consultation-content-flex {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.consultation-content-flex .cart {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin: 55px 0;
  width: 207px;
}
.consultation-content-flex .cart .img-holder {
  width: 55px;
  height: 55px;
}
.consultation-content-flex .cart .img-holder img {
  width: 100%;
  height: 100%;
}
.consultation-content-flex .cart h3 {
  font-family: var(--font-Futuru);
  font-weight: 800;
  font-size: 21px;
  line-height: 126%;
  letter-spacing: 5%;
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 15px;
}
.consultation-content-flex .cart p {
  color: #606060;
  font-family: var(--font-Futuru);
  font-weight: 400;
  font-size: 16px;
  line-height: 153%;
  letter-spacing: 5%;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
}
main .consultation .booking {
  text-align: center;
}
main .consultation .booking a button {
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
  width: 100%;
  border-radius: 10px;
  padding: 20px 110px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  margin-bottom: 10px;
  text-decoration: underline;
}
main .consultation .booking a button:hover {
  background-color: #ffc9bf70;
}
main .consultation .booking p {
  color: #bababa;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: capitalize;
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .consultation .consultation-content-flex {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    column-gap: 20px;
    margin: 80px 0;
  }
  .consultation-content-flex .cart {
    margin: 0;
  }
  main .consultation .booking a button {
    width: 450px;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .consultation .consultation-content-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
    margin: 80px 0;
  }
  .consultation-content-flex .cart {
    width: 33%;
    margin: 0;
  }
  main .consultation .booking a button {
    width: 600px;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end consultation section */
/* start Services section */
main .services {
  padding: 80px 0;
}
main .services .services-carts .cart {
  margin: 0 auto;
  background-color: transparent;
  border: 2px solid #020202;
  border-radius: 15px;
  margin-bottom: 20px;
  transition:
    background-color 0.5s ease-in-out,
    border-color 0.5s ease-in-out;
  overflow: hidden;
}
main .services .services-carts .cart:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
main .services .services-carts .cart:hover .services-content h3,
main .services .services-carts .cart:hover .services-content p,
main .services .services-carts .cart:hover .services-content a {
  color: #ffffff;
}
main .services .services-carts .cart:hover .services-content {
  transform: translateY(0);
}
main .services .services-carts .cart:hover .logo-holder {
  transform: translateY(0);
}

main .services .services-carts .cart .logo-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  padding-top: 40px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-100px);
}
main .services .services-carts .cart .logo-right,
main .services .services-carts .cart .logo-left {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}
main .services .services-carts .cart .services-content {
  padding: 40px;
  padding-top: 20px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-60px);
}
main .services .services-carts .cart .services-content h3 {
  text-align: start;
  font-family: var(--font-Futuru);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 20px;
  text-transform: capitalize;
  transition: color 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
main .services .services-carts .cart .services-content p {
  color: #404040;
  font-family: var(--font-Futuru);
  font-weight: 400;
  font-size: 16px;
  line-height: 153%;
  letter-spacing: 5%;
  margin-bottom: 10px;
  text-transform: capitalize;
  transition: color 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
main .services .services-carts .cart .services-content a {
  color: #020202;
  font-family: var(--font-Futuru);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-transform: capitalize;
  transition: color 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
main .services .button-holder {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .services .button-holder button {
  width: 100%;
  border-radius: 10px;
  padding: 20px 120px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  background-color: var(--primary-color);
  border: none;
  color: #ffffff;
}
main .services .button-holder a {
  text-decoration: none;
  color: #ffffff;
}
main .services .button-holder a button:hover {
  background-color: #cc2236;
  box-shadow: 0px 0px 20px 5px rgba(204, 34, 54, 0.5);
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .services .heading h2,
  main .services .heading p {
    text-align: start;
    margin-bottom: 40px;
  }
  main .services .services-carts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  main .services .button-holder button {
    width: 450px;
  }
  main .services .services-carts .cart {
    margin: 0;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .services .heading h2,
  main .services .heading p {
    text-align: start;
    margin-bottom: 40px;
  }
  main .services .services-carts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  main .services .button-holder button {
    width: 600px;
  }
  main .services .services-carts .cart {
    margin: 0;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end Services section */
/* start testimonials section */
main .testimonials {
  padding: 80px 0;
}
main .testimonials .heading {
  margin-bottom: 40px;
}
main .testimonials .heading p {
  color: #404040;
}
main .testimonials .testimonials-area {
  height: 1090px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 20px;
  grid-template-areas:
    "step5 step1"
    "step2 step6"
    "step7 step3"
    "step4 step8";
}
main .testimonials .testimonials-area .img-holder {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
main .testimonials .testimonials-area .img-holder img {
  height: 1050px;
}
main .testimonials .testimonials-area .step {
  width: 124px;
}
main .testimonials .testimonials-area .step1 {
  grid-area: step1;
  justify-self: start;
  margin-left: 20px;
}
main .testimonials .testimonials-area .step2 {
  grid-area: step2;
  text-align: end;
  transform: translateY(-120px);
  justify-self: end;
  margin-right: 20px;
}
main .testimonials .testimonials-area .step3 {
  grid-area: step3;
  justify-self: start;
  transform: translateY(-295px);
  margin-left: 20px;
}
main .testimonials .testimonials-area .step4 {
  grid-area: step4;
  text-align: end;
  transform: translateY(-315px);
  justify-self: end;
  margin-right: 20px;
}
main .testimonials .testimonials-area .step1 h3,
main .testimonials .testimonials-area .step2 h3,
main .testimonials .testimonials-area .step3 h3,
main .testimonials .testimonials-area .step4 h3 {
  color: #931213;
  margin-bottom: 20px;
  font-family: var(--font-Futuru);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: capitalize;
}
main .testimonials .testimonials-area .step1 h3,
main .testimonials .testimonials-area .step3 h3 {
  text-align: start;
}
main .testimonials .testimonials-area .step2 h3,
main .testimonials .testimonials-area .step4 h3 {
  text-align: end;
}
main .testimonials .testimonials-area .step1 h2,
main .testimonials .testimonials-area .step2 h2,
main .testimonials .testimonials-area .step3 h2,
main .testimonials .testimonials-area .step4 h2 {
  color: #931213;
  margin-bottom: 20px;
  font-family: var(--font-Futuru);
  font-weight: 900;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
}
main .testimonials .testimonials-area .step4 h2 {
  font-size: 21px;
}
main .testimonials .testimonials-area .step1 p,
main .testimonials .testimonials-area .step2 p,
main .testimonials .testimonials-area .step3 p,
main .testimonials .testimonials-area .step4 p {
  font-family: var(--font-Futuru);
  color: #404040;
  font-weight: 400;
  font-size: 16px;
  line-height: 153%;
  letter-spacing: 5%;
  text-transform: capitalize;
}
main .testimonials .booking h4 {
  font-family: var(--font-Futuru);
  font-weight: 700;
  font-size: 16px;
  line-height: 126%;
  letter-spacing: 5%;
  text-transform: capitalize;
  text-align: center;
}
main .testimonials .booking button {
  margin-top: 20px;
  border: none;
  width: 100%;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  text-transform: capitalize;
  font-weight: 800;
  cursor: pointer;
}
main .testimonials .booking button:hover {
  background-color: #cc2236;
  box-shadow: 0px 0px 20px 5px rgba(204, 34, 54, 0.5);
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .testimonials .testimonials-area {
    margin: 80px 0;
  }
  main .testimonials .testimonials-area .step {
    width: 270px;
  }
  main .testimonials .testimonials-area .step2 {
    transform: translateY(-55px);
  }
  main .testimonials .testimonials-area .step3 {
    transform: translateY(-110px);
  }
  main .testimonials .testimonials-area .step4 {
    transform: translateY(-55px);
  }
  main .testimonials .booking {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main .testimonials .booking h4 {
    width: 430px;
    margin: 0 auto;
  }
  main .testimonials .booking button {
    width: 450px;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .testimonials .testimonials-area .step {
    width: 350px;
  }
  main .testimonials .testimonials-area .step2 {
    transform: translateY(-55px);
  }
  main .testimonials .testimonials-area .step3 {
    transform: translateY(-110px);
  }
  main .testimonials .testimonials-area .step4 {
    transform: translateY(-55px);
  }
  main .testimonials {
    position: relative;
  }
  /* main .testimonials::before {
    position: absolute;
    content: url(../assets/images/home/testimonials-top-line.svg);
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
  } */
  main .testimonials .booking {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  main .testimonials .booking h4 {
    width: 600px;
    margin: 0 auto;
  }
  main .testimonials .booking button {
    width: 600px;
  }
}
/* end testimonials section */
/* start insights section */
main .insights {
  padding: 80px 0;
}
.insights-carts {
  position: relative;
}
.insights-carts .cart {
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0 auto;
  width: 100%;
  height: 258px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}
.insights-carts .cart .img-holder,
.insights-carts .cart a img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .insights .heading h2 {
    margin-bottom: 30px;
  }
  .insights-carts {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "cart1 cart2"
      "cart3 cart3";
    gap: 20px;
  }
  .insights-carts .cart {
    margin: 0;
  }
  .insights-carts .cart1 {
    grid-area: cart1;
  }
  .insights-carts .cart2 {
    grid-area: cart2;
  }
  .insights-carts .cart3 {
    grid-area: cart3;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .insights .heading h2 {
    margin-bottom: 30px;
  }
  .insights-carts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "cart1 cart2 cart3";
    gap: 20px;
  }
  .insights-carts .cart {
    margin: 0;
  }
  .insights-carts .cart1 {
    grid-area: cart1;
  }
  .insights-carts .cart2 {
    grid-area: cart2;
  }
  .insights-carts .cart3 {
    grid-area: cart3;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end insights section */
/* start booking section  */
main .booking-section {
  padding: 80px 0;
}
main .booking-section .heading p {
  color: #404040;
}
main .booking-section .binocular-space {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .booking-section .binocular-space .circles {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
}
main .booking-section .binocular-space .circles .circle {
  align-self: flex-start;
  justify-self: start;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}
main .booking-section .binocular-space .img-holder {
  overflow: hidden;
}
main .booking-section .binocular-space .img-holder img {
  max-width: 100%;
  margin-bottom: -5px;
  width: 218px;
  position: relative;
  z-index: 2;
  width: 350px;
}
main .booking-section .binocular-space .buttons-holder {
  width: 100%;
}
main .booking-section .buttons-holder button {
  border: none;
  width: 100%;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 10px;
  cursor: pointer;
}
main .booking-section .buttons-holder button:hover {
  background-color: #cc2236;
  box-shadow: 0px 0px 20px 5px rgba(204, 34, 54, 0.5);
}
main .booking-section .buttons-holder p {
  color: #404040;
  font-family: var(Futuru);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: capitalize;
  text-align: center;
}
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  main .booking-section .container {
    display: flex;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
  }
  main .booking-section .heading,
  main .booking-section .content-holder {
    width: 50%;
  }
  main .booking-section .heading h2,
  main .booking-section .heading p {
    text-align: start;
  }
  main .booking-section .heading h2 {
    font-size: 31px;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  main .booking-section .container {
    display: flex;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
  }
  main .booking-section .heading,
  main .booking-section .content-holder {
    width: 50%;
  }
  main .booking-section .heading h2,
  main .booking-section .heading p {
    text-align: start;
  }
  main .booking-section .heading h2 {
    font-size: 31px;
  }
  main .booking-section .buttons-holder button {
    width: 100%;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end booking section  */
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
}
/* for Desktops/Large Screens */
@media (1025px <= width <= 1200px) {
}
/* for TVs/Wide Monitors */
@media (min-width: 1201px) {
}
