@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/NeueHaasDisplay-Mediu.eot");
  src: url("../fonts/NeueHaasDisplay-Mediu.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/NeueHaasDisplay-Mediu.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Mediu.woff") format("woff"),
    url("../fonts/NeueHaasDisplay-Mediu.ttf") format("truetype"),
    url("../fonts/NeueHaasDisplay-Mediu.svg#NeueHaasDisplay-Mediu")
      format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/NeueHaasDisplay-Roman.eot");
  src: url("../fonts/NeueHaasDisplay-Roman.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/NeueHaasDisplay-Roman.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Roman.woff") format("woff"),
    url("../fonts/NeueHaasDisplay-Roman.ttf") format("truetype"),
    url("../fonts/NeueHaasDisplay-Roman.svg#NeueHaasDisplay-Roman")
      format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Neue Haas Grotesk Display Pro";
  padding-bottom: 57px;
}

a {
  color: #000010;
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neue Haas Grotesk Display Pro";
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 90px 0;
}

.section-bg {
  background-color: #000010;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 24px;
  letter-spacing: 7px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  margin: 0 0 10px 0;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
}

.section-header p {
  margin: 0 auto 40px;
  font-size: 62px;
  color: #fff;
  letter-spacing: 0.6px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
  max-width: 1100px;
  line-height: 70px;
}

.section-header p span {
  color: #fd5835;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 99999;
  background: rgb(193, 16, 31);
  background: -moz-linear-gradient(
    180deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1101f",endColorstr="#f95434",GradientType=1);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #fd5835;
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  box-shadow: 0px 1px 5px rgb(1 41 112 / 10%);
  transition: all 0.5s;
  z-index: 997;
  height: 76px;
  padding: 0;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
  border: 0;
  outline: none;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: "Neue Haas Grotesk Display Pro";
}

.header .logo h1 span {
  color: #000010;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 17px;
  color: #fff;
  background: #000010;
  padding: 11px 32px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 600;
  margin-left: 50px;
  border-radius: 10px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #000010;
  background: #ffb11e;
}

section {
  scroll-margin-top: 76px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1025px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 27px 0 27px 36px !important;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 17px;
    line-height: normal;
    font-weight: 500;
    color: #000010;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a:hover {
    color: #ffb11e;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    color: #000;
    line-height: 0;
    margin-left: 5px;
  }

  .bi-chevron-down::before {
    color: #000;
  }

  /*.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #000010;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }*/

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(193, 16, 31);
    background: -moz-linear-gradient(
      180deg,
      rgba(193, 16, 31, 1) 0%,
      rgba(249, 84, 52, 1) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(193, 16, 31, 1) 0%,
      rgba(249, 84, 52, 1) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(193, 16, 31, 1) 0%,
      rgba(249, 84, 52, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1101f",endColorstr="#f95434",GradientType=1);
    box-shadow: 0px 0px 15px rgba(127, 137, 161, 0.5);
    transition: 0.3s;
    border-radius: 0 0 5px 5px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar .dropdown ul li:last-child {
    border-bottom: 0;
  }

  .navbar .dropdown ul a {
    padding: 14px 23px;
    font-size: 18px;
    text-transform: none;
    font-weight: 500;
    color: #fff;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: #000010;
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 75px;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 48px;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1025px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #ffb11e;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 0 !important;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 23px;
    font-family: "Neue Haas Grotesk Display Pro";
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    display: none;
  }

  .navbar a:hover,
  .navbar li:hover > a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    position: relative;
    opacity: 1;
    visibility: inherit;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    left: 0;
  }

  .navbar .dropdown:hover > ul {
    top: 0;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: #000;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  padding-bottom: 350px;
  padding-top: 110px;
}

.about img {
  width: 100%;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: "Neue Haas Grotesk Display Pro";
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: #000010;
}

.accordion-list {
  width: 100%;
}

.accordion-list ul {
  margin: 0;
  padding: 0;
}

.accordion-list ul li {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
}

.accordion-list ul li a {
  background: #13171f;
  padding: 22px 24px;
  color: #fff;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 600;
  display: block !important;
  width: 100%;
  font-size: 23px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #13171f;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

.accordion-list ul li .icon-show {
  display: none;
}

.accordion-list ul li a.collapsed .icon-show {
  display: inline-block;
  float: right;
}

.accordion-list ul li a .icon-close {
  float: right;
}

.accordion-list ul li a.collapse {
  background: #13171f;
  border: 0;
  border-radius: 5px 5px 0 0;
}

.accordion-list ul li a.collapsed {
  border-bottom: 2px solid #13171f;
  background: #000;
  border-radius: 5px;
}

.accordion-list p {
  color: #fff;
  font-size: 20px;
  padding: 0 24px 24px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro";
  background: #13171f;
  border-radius: 0 0 5px 5px;
}

.accordion-list .bx-chevron-down:before,
.accordion-list .bx-chevron-up:before {
  color: #acacac;
  font-size: 44px;
  position: relative;
  top: -6px;
}

.accordion-list ul li a.collapsed .icon-close {
  display: none;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#000010 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid #000010;
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# our-service
--------------------------------------------------------------*/

.our-service {
  background: #fff;
  padding-top: 110px;
  padding-bottom: 300px;
}

.our-service .section-header h2 {
  color: #000;
}

.our-service .section-header p {
  max-width: 830px;
  color: #000;
}

.img-three-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px 50px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.img-three-block ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.img-three-block ul li img {
  width: 100%;
  transition: all 0.3s ease;
  transform: scale3d(1, 1, 1);
}

.img-three-block ul li:hover img {
  transform: scale(1.05);
  transition: all 1s;
}

.img-three-block ul li .img {
  overflow: hidden;
  transition: opacity 0.25s linear, transform 0.25s linear;
}

.img-three-block ul li h4 {
  background: #ededf0;
  text-align: center;
  display: block;
  color: #000;
  margin: 0;
  padding: 32px 60px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 600;
  font-size: 33px;
}

.see-work {
  text-align: center;
  margin: 90px 0 0;
}

.see-work a {
  font-weight: 600;
  font-size: 34px;
  font-family: "Neue Haas Grotesk Display Pro";
  display: inline-block;
  padding: 14px 50px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #fd5835;
}

.see-work a:hover {
  background: #000;
  color: #fff;
}

/*--------------------------------------------------------------
# together Section
--------------------------------------------------------------*/

.together {
  margin: -206px 0 0;
  padding: 0;
  position: relative;
}

.together:after {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: #fff;
  content: "";
  z-index: -1;
}

.together .container {
  background: #fd5835;
  padding: 80px 20px;
}

.together .section-header p {
  margin: 0 auto 30px;
}

.together .section-header {
  margin: 0;
  padding: 0;
}

.together .book-trial {
  text-align: center;
  margin: 0;
}

.together .book-trial a {
  font-weight: 600;
  font-size: 35px;
  font-family: "Neue Haas Grotesk Display Pro";
  display: inline-block;
  padding: 15px 50px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #000;
}

.together .book-trial a:hover {
  background: #ffb11e;
  color: #fff;
}

.together.yellow {
  margin: -205px 0 0;
  padding: 0;
  position: relative;
}

.together.yellow:after {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: #f0f0f3;
  content: "";
  z-index: -1;
  display: none;
}

.together.yellow .container {
  background: #ffb11e;
  padding: 80px 20px;
}

.together.yellow .section-header h2 {
  color: #000;
}

.together.yellow .section-header p {
  margin: 0 auto 30px;
  color: #000;
}

.together.yellow .section-header {
  margin: 0;
  padding: 0;
}

.together.yellow .book-trial {
  text-align: center;
  margin: 0;
}

.together.yellow .book-trial a {
  font-weight: 600;
  font-size: 35px;
  font-family: "Neue Haas Grotesk Display Pro";
  display: inline-block;
  padding: 15px 50px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #000;
}

.together.yellow .book-trial a:hover {
  background: #fd5835;
  color: #fff;
}

/*--------------------------------------------------------------
# faster Section
--------------------------------------------------------------*/
.faster-block {
  margin: -201px 0 0;
  padding: 0;
  position: relative;
}

.faster-block:after {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: #ededf0;
  content: "";
  z-index: -1;
}

.faster-block .container {
  background: #2d2d3e;
  padding: 80px 70px;
}

.faster-block ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  grid-gap: 40px;
}

.faster-block ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.faster-block ul li:after {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 2px;
  height: 70px;
  background: #ffb11e;
  content: "";
  margin-top: -35px;
}

.faster-block ul li:last-child:after {
  display: none;
}

.faster-block ul li h5 {
  margin: 0;
  padding: 0;
  color: #ffb11e;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

.faster-block ul li h3 {
  margin: 40px 0 25px;
  padding: 0;
  color: #fff;
  font-size: 60px;
  line-height: 55px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

.faster-block ul li p {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  max-width: 230px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials {
  padding-top: 110px;
}

.testimonials .section-header h2 {
  color: #000;
}

.testimonials .section-header p {
  color: #000;
}

.testimonials .section-header p span {
  display: block;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonial-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-content p {
  text-align: center;
  color: #000;
  line-height: 46px;
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 40px 0;
  padding: 0;
  font-family: "Neue Haas Grotesk Display Pro";
}

.testimonials .testimonial-item h3 {
  font-size: 37px;
  line-height: normal;
  margin: 10px 0 5px 0;
  color: #000;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

.testimonials .testimonial-item h4 {
  font-size: 37px;
  line-height: normal;
  color: #000;
  margin: 0 0 30px 0;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 16px;
  border-radius: 20px;
  background-color: #ffddd1;
  opacity: 1;
  margin: 0 7px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fd5835;
  width: 60px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  padding-bottom: 0;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000010;
}

.gallery .swiper-slide-active {
  text-align: center;
}

/*--------------------------------------------------------------
# mastermind Section
--------------------------------------------------------------*/

.mastermind {
  padding-bottom: 110px;
  padding-top: 110px;
}

.mastermind .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 67px;
  margin: 0 0 60px 0;
}

.two-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  grid-gap: 110px;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}

.two-block img {
  width: 450px;
  margin: 0 auto;
}

.two-block h3 {
  text-align: center;
  margin: 70px 0 30px 0;
  font-size: 40px;
  line-height: 40px;
  color: #ffb11e;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

.two-block p {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin: 0 auto;
  line-height: 38px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  background: #ededf0;
  padding-top: 110px;
  padding-bottom: 350px;
}

.pricing .section-header h2 {
  color: #000;
}

.pricing .section-header p {
  color: #fd5835;
}

.price-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px;
}

.pricing .section-header .text {
  color: #000;
  font-size: 34px;
  padding: 0;
  line-height: 48px;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro";
  max-width: 1070px;
  margin: 0 auto 60px;
  text-align: center;
}

.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px 40px 100px;
  background: #fff;
  height: 100%;
  position: relative;
}

.most-text {
  background: rgb(193, 16, 31);
  background: -moz-linear-gradient(
    80deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  background: -webkit-linear-gradient(
    80deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  background: linear-gradient(
    80deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1101f",endColorstr="#f95434",GradientType=1);
  color: #fff;
  padding: 6px 20px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 23px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: -23px;
}

.pricing h3 {
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
  margin-bottom: 8px;
  font-size: 32px;
  color: #000;
}

.pricing h4 {
  font-size: 48px;
  color: #fd5835;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #fd5835;
  font-size: 28px;
  font-weight: 500;
}

.pricing h6 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 0;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro";
  color: #6d6d6d;
}

.pricing ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #5b5b5b;
  text-align: left;
  line-height: 20px;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro";
}

.pricing ul li {
  padding: 0 0 0 42px;
  margin: 0 0 25px 0;
  position: relative;
  color: #5b5b5b;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro";
  background: url(../../assets/img/right_icon.png) no-repeat;
  background-size: 30px;
  font-size: 26px;
  min-height: 30px;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: 20px;
  width: calc(100% - 40px);
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.pricing .buy-btn:hover {
  background: #fd5835;
  color: #fff;
}

.pricing .featured .buy-btn {
  background: #000;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #fd5835;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: #000 url(../../assets/img/HeroBanner.svg) no-repeat;
  background-position: 100% 75px;
  background-size: cover;
}

#hero .right {
  max-width: 550px;
  background: #fff;
  padding: 50px 40px 70px;
  margin: 0;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 25%);
  border-radius: 10px;
  position: relative;
  top: 30px;
  right: 12px;
}

.hero .form-inner h2 {
  text-align: center;
  margin: 0 0 28px 0;
  font-size: 45px;
  line-height: 52px;
  color: #000;
  font-weight: 600;
}

.hero .form-inner input {
  width: 100%;
  margin: 0 0 15px 0;
  border: 2px solid #e0e2e5;
  padding: 17px 15px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  color: #818181;
  border-radius: 5px;
  font-size: 18px;
}

.hero .form-inner input::-webkit-input-placeholder {
  /* Edge */
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  color: #818181;
  font-size: 18px;
}

.hero .form-inner input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  color: #818181;
  font-size: 18px;
}

.hero .form-inner input::placeholder {
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  color: #818181;
  font-size: 18px;
}

.hero .form-inner p {
  text-align: left;
  margin: 12px 0 0;
  padding: 0;
  font-size: 24px;
  font-family: "Neue Haas Grotesk Display Pro";
  line-height: normal;
  color: #000;
  font-weight: 500;
}

.form-inner .btn {
  background: rgb(193, 16, 31);
  background: -moz-linear-gradient(
    80deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  background: -webkit-linear-gradient(
    80deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  background: linear-gradient(
    80deg,
    rgba(193, 16, 31, 1) 0%,
    rgba(249, 84, 52, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1101f",endColorstr="#f95434",GradientType=1);
  border: 0;
  padding: 10px 20px !important;
  text-align: center;
  color: #fff !important;
  font-size: 28px !important;
  letter-spacing: 1px;
  font-weight: 600 !important;
  border: 0 !important;
  border-radius: 8px;
  font-family: "Neue Haas Grotesk Display Pro" !important;
}

.form-inner .btn:hover {
  background: #ffb11e;
  color: #000 !important;
}

.hero h2 {
  font-size: 71px;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 20px;
  color: #fff;
}

.hero h2 span {
  color: #000010;
}

.hero p {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 60px;
}

.hero .btn-book-a-table {
  font-weight: 600;
  font-size: 28px;
  font-family: "Neue Haas Grotesk Display Pro";
  display: inline-block;
  padding: 10px 43px;
  border-radius: 10px;
  transition: 0.5s;
  color: #000010;
  background: #ffb11e;
}

.hero .btn-book-a-table:hover {
  background: #fd5835;
  color: #fff;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: #000010;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #000010;
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #13171f;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
  margin-left: 22px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #ffb11e;
}

.footer .copyright {
  text-align: center;
  color: #cccccc;
  font-size: 16px;
  line-height: 22px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
}

.three-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
}

.three-block ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.three-block ul li {
  list-style: none;
  border-right: 0;
  margin: 0;
  padding: 0;
}

.three-block ul li:last-child {
  border: 0;
}

.three-block ul li a {
  color: #cccccc;
  font-size: 16px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  line-height: 22px;
}

.three-block ul li a:hover {
  color: #ffb11e;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.text {
  color: #cccccc;
  text-align: right;
  font-size: 16px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
}


/*--------------------------------------------------------------
# Tailored section
--------------------------------------------------------------*/

.Tailored {
  background: #ededf0;
  padding-top: 110px;
  padding-bottom: 110px;
}

.Tailored .section-header h2 {
  color: #000;
}

.Tailored .section-header p {
  color: #000;
}

.Tailored .section-header p span {
  display: block;
}

.Tailored .section-header {
  margin: 0;
  padding: 0;
}

.Tailored-three-block {
  margin: 0 auto;
  max-width: 1250px;
}

.Tailored-three-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  margin: 0;
  padding: 0;
}

.Tailored-three-block ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.Tailored-three-block ul li img {
  width: 250px;
  margin: 40px auto 40px;
  display: block;
}

.Tailored .Tailored-three-block p {
  text-align: center;
  color: #000;
  line-height: 35px;
  font-size: 27px;
  font-weight: 500;
  padding: 0;
  font-family: "Neue Haas Grotesk Display Pro";
  max-width: 370px;
  margin: 0 auto;
}

.Tailored .Tailored-three-block h4 {
  font-size: 30px;
  line-height: normal;
  color: #000;
  margin: 0 auto 25px;
  font-weight: 600;
  font-family: "Neue Haas Grotesk Display Pro";
}

/*--------------------------------------------------------------
# Privacy section
--------------------------------------------------------------*/

.Privacy-cnt-wrapper {
  padding: 150px 0 50px;
}

.Privacy-cnt-wrapper h2 {
  font-size: 50px;
  margin: 20px 0 50px 0;
  padding: 0;
  color: #fd5835;
  position: relative;
}

.Privacy-cnt-wrapper dt {
  font-size: 25px;
  font-family: "Neue Haas Grotesk Display Pro";
  color: #000;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.Privacy-cnt-wrapper dd {
  padding: 0 0 32px;
  margin: 0 0 32px;
  border-bottom: 1px solid #cac9ca;
}

.Privacy-cnt-wrapper dd.last {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.Privacy-cnt-wrapper dd p {
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  font-size: 19px;
  line-height: 28px;
  margin: 0 0 15px 0;
  padding: 0;
  color: #000;
}

.Privacy-cnt-wrapper dd p:last-child {
  margin: 0;
}

.Privacy-cnt-wrapper dd p a {
  color: #fd5835;
}

.Privacy-cnt-wrapper dd p a:hover {
  color: #ffb11e;
  text-decoration: underline;
}

.Privacy-cnt-wrapper dd ul {
  background: #f8f8f8;
  padding: 25px;
  margin: 20px 0;
  border-radius: 5px;
}

.Privacy-cnt-wrapper dd ul li {
  font-size: 19px;
  line-height: 28px;
  margin: 0 0 0 25px;
  padding: 5px 0 5px 0;
  font-family: "Neue Haas Grotesk Display Pro";
  font-weight: 500;
  color: #000;
}

@media screen and (max-width: 767px) {
  .Privacy-cnt-wrapper dd p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 10px 0;
    padding: 0;
    color: #000;
  }

  .Privacy-cnt-wrapper dt {
    font-size: 22px;
    color: #000;
    line-height: 28px;
    margin: 0 0 10px 0;
  }

  .Privacy-cnt-wrapper dd {
    padding: 0 0 22px;
    margin: 0 0 22px;
    border-bottom: 1px solid #cac9ca;
  }

  .Privacy-cnt-wrapper dd ul {
    background: #f2f2f2;
    padding: 20px;
    margin: 15px 0;
    border-radius: 5px;
  }

  .Privacy-cnt-wrapper dd ul li {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 0 20px;
    padding: 4px 0 4px 0;
    color: #000;
  }
}


.fix-ftr {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.fix-ftr ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}

.fix-ftr ul li {
  margin: 0;
  padding: 11px 0;
  list-style: none;
  text-align: center;
}

.fix-ftr ul li.Whatsapp {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix-ftr ul li.Whatsapp a {
  background: url(../../assets/img/whatsapp_icon.png) 0 50% no-repeat;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  display: inline-flex;
  background-size: 32px 32px;
  padding: 4px 0 4px 40px;
  text-decoration: none;
}

.fix-ftr ul li.call {
  background: #fd5835;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix-ftr ul li.call a {
  text-decoration: none;
  display: inline-flex;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  text-transform: capitalize;
}

@media screen and (max-width: 1560px) {
  .section-header h2 {
    font-size: 20px;
  }
  
  .section-header p {
    font-size: 52px;
    font-family: "Neue Haas Grotesk Display Pro";
    max-width: 960px;
    line-height: 60px;
  }

  .together .book-trial a,
  .see-work a {
    font-size: 28px;
  }

  .faster-block ul li h5 {
    font-size: 32px;
  }

  .faster-block ul li h3 {
    font-size: 50px;
    margin: 30px 0 20px;
  }

  .faster-block ul li p {
    font-size: 22px;
    line-height: 30px;
    max-width: 205px;
  }

  .pricing .section-header .text {
    font-size: 28px;
    line-height: 40px;
  }

  .pricing ul li {
    font-size: 23px;
    margin: 0 0 20px 0;
  }

  .together.yellow .book-trial a {
    font-size: 28px;
  }

  .testimonial-content p {
    line-height: 38px;
    font-size: 28px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 30px;
  }

  .Tailored .Tailored-three-block h4 {
    font-size: 26px;
  }

  .Tailored .Tailored-three-block p {
    line-height: 30px;
    font-size: 23px;
  }

  .img-three-block ul li h4 {
    font-size: 28px;
  }

  .two-block h3 {
    font-size: 36px;
  }

  .two-block p {
    font-size: 22px;
    line-height: 34px;
  }

  .price-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
  }
}


@media screen and (max-width: 1440px) {
  .hero {
    background-position: 30% 100%;
  }

  #hero .right {
    max-width: 500px;
  }

  .hero .form-inner h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .img-three-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px 40px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .accordion-list ul li a {
    font-size: 21px;
  }

  .accordion-list p {
    font-size: 18px;
    line-height: 24px;
  }
}


@media screen and (max-width: 1200px) {
  .img-three-block ul li h4 {
    font-size: 25px;
    line-height: 30px;
    padding: 28px 60px;
  }

  .section-header p {
    font-size: 40px;
    font-family: "Neue Haas Grotesk Display Pro";
    max-width: 750px;
    line-height: 48px;
  }

  .section-header h2 {
    font-size: 16px;
  }

  .accordion-list ul li a {
    font-size: 19px;
  }

  .accordion-list p {
    font-size: 16px;
    line-height: 22px;
  }

  .together .book-trial a,
  .see-work a {
    font-size: 22px;
    padding: 15px 40px;
  }
  
  .our-service .section-header p {
    max-width: 764px;
    color: #000;
  }

  .img-three-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .faster-block .container {
    background: #2d2d3e;
    padding: 80px 50px;
  }

  .faster-block ul li p {
    font-size: 18px;
    line-height: 24px;
    max-width: 170px;
  }

  .faster-block ul li h3 {
    font-size: 45px;
    margin: 22px 0 18px;
  }

  .faster-block ul li h5 {
    font-size: 30px;
  }

  .pricing .section-header .text {
    font-size: 24px;
    line-height: 32px;
    max-width: 1024px;
  }

  .price-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }

  .pricing .box {
    padding: 40px 30px 100px;
  }

  .pricing ul li {
    font-size: 21px;
    margin: 0 0 20px 0;
    background-size: 26px;
    min-height: 26px;
    padding: 0 0 0 37px;
  }

  .pricing h4 {
    font-size: 40px;
  }

  .pricing h6 {
    font-size: 25px;
  }

  .pricing .buy-btn {
    font-size: 22px;
  }

  .together.yellow .book-trial a {
    font-size: 22px;
    padding: 15px 40px;
  }

  .testimonial-content p {
    line-height: 32px;
    font-size: 22px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 25px;
    margin: 0;
  }

  .testimonials .section-header p {
    margin: 0 auto 10px;
  }
  
  .Tailored .Tailored-three-block p {
    line-height: 26px;
    font-size: 18px;
  }

  .most-text {
    padding: 7px 25px;
    font-size: 20px;
  }

  .two-block h3 {
    font-size: 32px;
    margin: 60px 0 20px 0;
  }

  .two-block p {
    font-size: 18px;
    line-height: 28px;
  }

  .two-block img {
    width: 350px;
    margin: 0 auto;
  }

  .mastermind .logo {
    margin: 0 0 40px 0;
  }

  .mastermind .logo img {
    width: 150px;
  }

  .form-inner .btn {
    font-size: 24px !important;
  }

  .hero .form-inner p {
    font-size: 22px;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 27px 0 27px 30px;
  }

  .footer .copyright {
    font-size: 14px;
  }

  .header .btn-book-a-table, .header .btn-book-a-table:focus {
    margin-left: 30px;
  }
}


@media screen and (max-width: 1024px) {
  .img-three-block ul li h4 {
    font-size: 23px;
    line-height: 29px;
    padding: 28px 40px;
  }

  .faster-block ul li p {
    font-size: 16px;
    line-height: 23px;
    max-width: 156px;
  }

  .faster-block ul li h5 {
    font-size: 26px;
  }

  .pricing ul li {
    font-size: 18px;
    margin: 0 0 18px 0;
    background-size: 25px;
    min-height: 26px;
    padding: 0 0 0 35px;
    line-height: 22px;
  }

  .pricing .box {
    padding: 40px 20px 100px;
  }

  .two-block h3 {
    font-size: 28px;
    margin: 40px 0 20px 0;
  }

  .three-block {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: space-between;
  }

  .accordion-list ul li a {
    font-size: 16px;
  }

  .accordion-list p {
    font-size: 15px;
    line-height: 21px;
  }

  .bi-list::before {
    content: "\f479";
    color: #000;
    font-size: 54px;
  }
}

@media screen and (max-width: 991px) {
  .accordion-list ul li a {
    font-size: 18px;
  }

  .accordion-list p {
    font-size: 16px;
    line-height: 23px;
  }

  #hero .right {
    margin: 0 auto;
    right: 0;
    left: 0;
  }

  .hero .form-inner h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .section-header h2 {
    letter-spacing: 3px;
    margin: 0 0 20px 0;
  }

  .section-header p {
    font-size: 34px;
    font-family: "Neue Haas Grotesk Display Pro";
    max-width: 630px;
    line-height: 40px;
  }

  .together .container {
    background: #fd5835;
    padding: 40px 20px;
  }

  .our-service .section-header p {
    max-width: 650px;
    color: #000;
  }

  .img-three-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .img-three-block ul li h4 {
    font-size: 25px;
    line-height: 29px;
    padding: 28px 40px;
  }

  .see-work {
    text-align: center;
    margin: 50px 0 0;
  }

  .our-service {
    padding-bottom: 270px;
  }

  .faster-block .container {
    background: #2d2d3e;
    padding: 40px 20px;
  }
  
  .faster-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
  }

  .faster-block ul li h5 {
    font-size: 22px;
    line-height: normal;
  }

  .faster-block ul li h3 {
    font-size: 36px;
    margin: 15px 0 15px;
  }

  .faster-block ul li p {
    font-size: 14px;
    line-height: 20px;
    max-width: 130px;
  }

  .faster-block ul li:after {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 2px;
    height: 50px;
    background: #ffb11e;
    content: "";
    margin-top: -25px;
  }

  .pricing .section-header p {
    color: #fd5835;
    margin: 0 auto 20px;
  }

  .pricing .section-header .text {
    font-size: 20px;
    line-height: 29px;
    max-width: 100%;
    margin: 0 0 10px 0;
  }

  .price-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .together.yellow .container {
    background: #ffb11e;
    padding: 40px 20px;
  }

  .pricing {
    background: #ededf0;
    padding-bottom: 300px;
  }

  .most-text {
    top: 0;
    right: 0;
  }

  .section-header {
    padding-bottom: 20px;
  }

  .together.yellow .book-trial a {
    font-size: 18px;
    padding: 15px 40px;
  }

  .testimonial-content p {
    line-height: 28px;
    font-size: 20px;
    margin: 0 0 30px 0
  }

  .testimonials .testimonial-item h4 {
    font-size: 22px;
  }

  .Tailored-three-block ul li img {
    width: 100%;
    margin: 10px auto 30px;
  }

  .Tailored .Tailored-three-block h4 {
    font-size: 22px;
  }

  .Tailored-three-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    margin: 0;
    padding: 0;
  }

  .Tailored .Tailored-three-block h4 {
    font-size: 22px;
    margin: 0 auto 15px;
  }

  .Tailored .Tailored-three-block p {
    line-height: 23px;
    font-size: 16px;
  }

  .two-block img {
    width: 85%;
    margin: 0 auto;
  }

  .mastermind .logo img {
    width: 120px;
  }

  .two-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    grid-gap: 50px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .two-block h3 {
    font-size: 23px;
    margin: 30px 0 10px 0;
  }

  .two-block p {
    font-size: 16px;
    line-height: 25px;
  }

  .footer .social-links a {
    margin-left: 10px;
  }

  .three-block ul li a,
  .text {
    font-size: 14px;
  }

  .scroll-top {
    bottom: 130px;
  }
}

@media screen and (max-width: 767px) {
  #hero .right {
    max-width: 95%;
    padding: 40px 25px 50px;
  }

  .hero {
    background-position: 25% 100%;
  }

  .hero .form-inner h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .form-inner .btn {
    font-size: 22px !important;
    padding: 14px 20px !important;
  }

  .hero .form-inner p {
    font-size: 20px;
    margin: 5px 0 0;
  }

  .section-header h2 {
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    line-height: 25px;
  }

  .section-header p {
    font-size: 29px;
    font-family: "Neue Haas Grotesk Display Pro";
    max-width: 100%;
    line-height: 33px;
  }

  section {
    padding: 40px 0;
  }

  .section-header {
    padding-bottom: 0;
  }

  .together {
    margin: 0;
    padding: 0;
    position: relative;
  }

  .about {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .our-service {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .img-three-block ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .img-three-block ul li h4 {
    font-size: 23px;
    line-height: 29px;
    padding: 25px 40px;
  }

  .faster-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    grid-gap: 30px 20px;
  }

  .faster-block ul li h3 {
    font-size: 36px;
    line-height: normal;
    margin: 15px 0 15px;
  }

  .faster-block ul li:nth-child(2):after {
    display: none;
  }

  .faster-block .container {
    background: #2d2d3e;
    padding: 40px 25px;
  }

  .pricing {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pricing .section-header .text {
    font-size: 18px;
    line-height: 26px;
    max-width: 100%;
    margin: 0 0 30px 0;
  }

  .pricing h4 {
    font-size: 35px;
  }

  .pricing h6 {
    font-size: 22px;
    margin: 0 0 20px 0;
  }

  .pricing ul li {
    font-size: 18px;
    margin: 0 0 14px 0;
    background-size: 20px;
    min-height: 20px;
    padding: 0 0 0 30px;
    line-height: 22px;
  }

  .pricing .box {
    padding: 40px 20px 90px;
  }

  .together.yellow {
    margin: 0;
    padding: 0;
    position: relative;
  }

  .testimonials {
    padding-top: 40px;
  }

  .testimonial-content p {
    line-height: 25px;
    font-size: 18px;
    margin: 0 0 20px 0;
  }

  .testimonials .testimonial-item h4 {
    font-size: 18px;
    line-height: 23px;
  }

  .Tailored {
    background: #ededf0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .Tailored-three-block ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin: 0;
    padding: 0;
  }

  .mastermind .logo {
    margin: 0 0 40px 0;
    gap: 30px;
  }

  .mastermind .logo img {
    width: 100px;
  }

  .mastermind {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .two-block {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    grid-gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .two-block img {
    width: 60%;
    margin: 0 auto;
  }

  .three-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .three-block ul {
    justify-content: center;
  }

  .text {
    justify-content: center;
  }

  .footer {
    padding: 18px 0;
  }

  .Tailored-three-block ul li img {
    width: 50%;
    margin: 10px auto 20px;
  }

  .Tailored .Tailored-three-block p {
    line-height: 26px;
    font-size: 18px;
    max-width: 100%;
  }

  .faster-block {
    margin: 0;
    padding: 0;
    position: relative;
  }
}

