@media screen and (min-width: 1920px) {
  .container {
    max-width: 100%;
    padding-left: 130px;
    padding-right: 130px;
  }
  .nav__menu {
    padding-left: 50px;
  }
  .nav__link {
    padding-left: 25px !important;
    padding-right: 25px !important;
    font-size: 17px !important;
  }
  .lower__main {
    width: 82% !important;
    margin: 0 auto !important;
  }
  .comparison__table {
    max-width: 1328px;
    width: 100%;
    margin: 0 auto !important;
  }
  .choose__head {
    width: 83%;
    margin-left: auto;
    margin-right: auto;
  }
  .faster__span {
    display: inline !important;
  }
  .turn__head {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
  .grade__head {
    width: 80% !important;
  }
  .grade__wrap{
    justify-content: center !important;
  }
  .grade__left{
    width: 52% !important;
  }
  .grade__right {
    width: 27% !important;
  }
  .see__link{
    left: 142px !important; 
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "MuseoModerno", sans-serif;
}

img {
  width: 100%;
  height: 100%;
}
.container {
  max-width: 100%;
  margin-left: 1.875em;
  margin-right: 1.875em;
}

header {
  height: 105px;
  width: 100%;
}

.nav__main {
  padding-top: 24px;
  background-color: #fff;
  /* box-shadow: 0px 2px 3px rgb(0 0 0 / 5%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%; */
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo img {
  width: 165px;
}

.logo__mobile {
  display: none;
}

.nav__menu {
  padding-left: 30px;
  margin-bottom: -22px;
}

.nav__menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav__link {
  border-bottom: 3px solid transparent;
  padding: 12px 15px 36px;
  font-family: "MuseoModerno";
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: #333333;
  display: inline-block;
  transition: all ease-in-out 0.4s;
}

.nav__link:hover {
  color: #ff5a10;
  border-bottom: 3px solid #ff5a10;
}

.nav__right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: -6px;
}

.icon__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
}

.icon__img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: all ease-in-out 0.4s;
}

.icon__img:hover {
  filter: grayscale(0%);
}

.request__btn {
  padding: 8px 32px;
  font-family: "MuseoModerno";
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  background-color: #ff5a10;
  border-radius: 100px;
  margin-left: 30px;
  border: 1px solid transparent;
  transition: all ease-in-out 0.4s;
}

.request__btn:hover {
  color: #ff5a10;
  background-color: #fff;
  border: 1px solid #ff5a10;
}

#ham {
  color: #a77a33;
}

.navbar {
  background-color: #ff5a10;
  width: 25%;
  height: 100vh;
  display: none;
}

.navbar li:hover {
  cursor: pointer;
}

.navbar li a {
  color: #d3e3e3;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 1.6em;
  transition: all 0.5s;
}

.navbar li:hover {
  cursor: pointer;
  background-color: black;
  letter-spacing: 10px;
}

.hamburger {
  display: none;
  margin: 0;
  /* margin-left: 15px; */
  padding: 0;
  float: left;
  transition: opacity 0.3s;
}

.hamburger:hover {
  cursor: pointer;
  opacity: 0.5;
}

.hamburger .line {
  width: 28px;
  height: 4px;
  background: rgb(236, 66, 66);
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.hamburger .line:nth-child(1) {
  background-color: rgb(255, 90, 16);
}

.hamburger .line:nth-child(2) {
  background-color: rgb(255, 90, 16);
}

.hamburger .line:nth-child(3) {
  background-color: rgb(255, 90, 16);
}

.hamburger.isactive .line:nth-child(2) {
  opacity: 0;
}

.hamburger.isactive .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.isactive .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.navbar {
  transition: all 2s ease-in-out;
}

.navbar.active {
  display: block;
  animation: fade 0.5s;
}

@keyframes fade {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

@media screen and (max-width: 1360px) {
  .navbar {
    width: 30%;
  }

  .navbar ul {
    padding-left: 0%;
  }

  .navbar li {
    padding: 3% 0;
  }

  .navbar li a {
    font-size: 1.2em;
  }
  .faster__span {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    float: right;
  }

  .navbar {
    background-color: #ff5a10;
    width: 100%;
    height: 45vh;
    display: none;
  }

  .navbar ul {
    overflow: hidden;
    list-style-type: none;
    padding-top: 25%;
    padding-left: 0%;
    padding-right: 3%;
    padding-bottom: 3%;
    text-align: center;
    margin: 0;
  }

  .navbar li {
    display: block;
    margin: 8px;
    padding: 25px 20px;
    width: 100%;
    transition: background-color 0.5s;
  }

  .navbar li:hover {
    cursor: pointer;
    background-color: rgb(255, 90, 16);
  }

  .navbar li a {
    color: #fff;
    text-decoration: none;
    padding: 14px 16px;
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    transition: all 1s;
  }

  .navbar li:hover {
    cursor: pointer;
    background-color: black;
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 992px) {
  .navbar {
    background-color: #ff5a10;
    width: 100%;
    height: 100vh;
    display: none;
    position: relative;
    z-index: 999;
  }

  .hamburger {
    display: none;
    margin-left: auto;
    margin-right: 0px;
  }

  .container {
    margin-left: 0.93em;
    margin-right: 0.93em;
  }

  .nav__menu {
    display: block;
  }
}

.banner--sec {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("img/hp-hero-banner-large-new_en.avif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 75% top;
  position: relative;
  min-height: 994px;
}

.banner__content h1 {
  font-family: "MuseoModerno";
  font-size: 70px;
  line-height: 82px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
}

.banner__span {
  display: block;
}

.banner__btn {
  display: inline-block;
  min-height: 50px;
  height: 50px;
  font-family: "MuseoModerno";
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding: 15px 60px;
  color: #fff;
  background-color: #ff5a10;
  border-radius: 100px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid transparent;
  transition: all ease-in-out 0.4s;
}

.banner__btn:hover {
  color: #ff5a10;
  background-color: #fff;
  border: 1px solid #ff5a10;
}

.cost--sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: white;
  position: relative;
}

.cost__main {
  margin-top: -550px;
}

.finance__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.finance__text {
  height: 30px;
  padding: 3px 20px;
  margin-right: 10px;
  border-radius: 50px;
  font-family: "MuseoModerno";
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  transition: all ease-in-out 0.4s;
}

.finance__text:hover {
  background-color: #7ba8c7;
}

.lower__main {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0px 10px 33px 0px rgba(0, 0, 0, 0.11);
  padding: 40px;
  min-height: 510px;
}

.lower__content h2 {
  font-family: "MuseoModerno";
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #333333;
  text-align: center;
}

.lower__video {
  width: 100%;
  outline: none;
  max-height: 533px;
}

.loved--sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.loved__head {
  margin-bottom: 50px;
  text-align: center;
}

.loved__head h2 {
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.5px;
  color: #333333;
}

.loved__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 25px;
}

.loved__main {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  width: 100%;
  max-width: 241px;
  border-radius: 12px;
  padding: 0 15px;
}

.loved__img {
  width: 158px;
  height: 90px;
}

.peak__img {
  width: 169px;
  height: 107px;
}

.top__img {
  width: 139px;
  height: 157px;
}

.support__img {
  width: 161px;
  height: 161px;
}

.spot__img {
  width: 95px;
  height: 161px;
}

.peer__img {
  width: 176px;
  height: 63px;
}

.agent--sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.agent__head {
  text-align: center;
  margin-bottom: 75px;
}

.agent__head h2 {
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.5px;
  color: #333333;
}

.comparison__table {
  background-color: #fafafa;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0;
}

.tool__module1 {
  width: 38%;
  border-right: 1px solid #ff5a10;
}

.tool__module2 {
  width: 30%;
  text-align: center;
}

.tool__module3 {
  width: 32%;
  color: #fff;
  text-align: center;
  position: relative;
}

.tool__module3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 60px);
  top: -30px;
  left: 0;
  background: linear-gradient(
    201deg,
    #f0931b 0.53%,
    #df5a1e 26.82%,
    #df5a1e 71.72%,
    #933884 100%
  );
  border-radius: 0 12px 12px 0;
  filter: drop-shadow(0px 0px 29px rgba(0, 0, 0, 0.49));
}

.tool__head {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool__head h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
}

.comparison__table .tool__module1 .tool__text {
  justify-content: flex-start;
}

.comparison__table .tool__module3 .tool__text {
  border-color: lightgray;
}

.tool__text {
  min-height: 110px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top: 1px solid #ff5a10;
}

.tool__text p {
  font-family: "MuseoModerno";
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}

.tool__box {
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.tool__img {
  width: 45px;
  height: 45px;
  position: absolute;
  margin-top: -90px;
}

.tool__box h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
  position: absolute;
}

.choose--sec {
  padding-top: 80px;
  position: relative;
}

.choose--sec::before {
  content: "";
  background-color: #222;
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  top: 0;
  left: 0;
}

.choose__main {
  position: relative;
}

.choose__head {
  margin-bottom: 50px;
  text-align: center;
}

.choose__head h2 {
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.5px;
  color: #fff;
}

.choose__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 25px;
}

.choose__inner {
  border-radius: 12px;
  background: linear-gradient(
    232deg,
    #f0931b 36.9%,
    #d9591b 52.32%,
    #933884 63.8%
  );
  padding: 2px;
  text-align: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.choose__box {
  border-radius: 11px;
  background: #fff;
  padding: 20px 28px;
  text-align: center;
  width: 100%;
  height: 100%;
}

.choose__box h3 {
  color: #333333;
  font-family: "MuseoModerno";
  font-size: 30px;
  line-height: 42px;
  font-weight: 900;
  animation: fadeInUp 1.2s;
  visibility: visible;
}

.gradient {
  background: linear-gradient(
    232deg,
    #f0931b 36.9%,
    #d9591b 52.32%,
    #933884 63.8%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 13px 0;
  font-size: 80px;
  font-weight: 300;
  line-height: 70px;
  animation: fadeInUp 1.2s;
  visibility: visible;
}

.choose__img img {
  width: 184px;
  height: 72px;
  margin: 10px 0;
  animation: fadeInUp 1.2s;
  visibility: visible;
}

.lock__img img {
  width: 57px;
  height: 74px;
  margin: 10px 0;
  animation: fadeInUp 1.2s;
  visibility: visible;
}

.choose__box p {
  color: #333333;
  font-family: "MuseoModerno";
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  animation: fadeInUp 1.2s;
  visibility: visible;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.choose__abs {
  position: absolute;
  width: 419px;
  top: -98px;
  left: -6px;
}

.faster--sec {
  padding-bottom: 80px;
  background-color: white;
}

.faster__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  margin-top: 50px;
}

.faster__left {
  width: 35%;
}

.faster__left h3 {
  color: #333333;
  font-family: "MuseoModerno";
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
}

.faster__left p {
  color: #333333;
  font-family: "MuseoModerno";
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

.faster__span {
  display: block;
}

.faster__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 7px;
}

.faster__link p {
  color: #133a65;
  font-family: "MuseoModerno";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
}

i.fas.fa-angle-right {
  font-size: 16px;
  color: #133a65;
}

.faster__right {
  width: 65%;
}

.faster__video {
  width: 100%;
  outline: none;
}

.turn--sec {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #222;
  background-image: url("img/hp-logo-section-pattern_en.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.turn__head {
  margin-bottom: 50px;
  text-align: center;
}

.turn__head h2 {
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -2.5px;
  color: #fff;
}

.turn__main .swiper.mySwipper {
  width: 100%;
  height: 100%;
}

.turn__main .swiper-wrapper {
  padding-bottom: 60px;
}

.turn__main .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: white;
  border-radius: 12px;
  min-height: 231px;
}

.turn__main .swiper-slide img {
  display: block;
}

.turn__box {
  max-width: 70.1%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  height: calc(100% - 40px);
  padding: 35px 20px;
  cursor: pointer;
}

.ft__tag {
  font-size: 11px;
  font-weight: 900;
  color: #666;
  text-transform: uppercase;
  position: absolute;
  letter-spacing: 1px;
  margin: 0;
  top: -6px;
}

.ft__tag::before {
  content: "";
  background: #ff5a10;
  width: 100%;
  height: 4px;
  border-radius: 0px 0px 4px 4px;
  position: absolute;
  left: 0;
  top: -14px;
}

.turn__span {
  width: 100%;
  display: block;
  font-size: 36px;
  line-height: 43px;
  font-weight: 900;
  color: #ff5a10;
  text-align: center;
}

.turn__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
}

.turn__info p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 12px;
}

.turn__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0px;
}

.turn__link p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #ff5a10;
  position: relative;
  margin-bottom: 0px !important;
}

i.fas.fa-angle-right.read {
  font-size: 16px;
  color: #666;
}

i.fas.fa-angle-right.next {
  font-size: 42px;
  line-height: 28px;
  color: orange;
}

i.fas.fa-angle-right.prev {
  font-size: 42px;
  line-height: 28px;
  color: orange;
  transform: rotateY(180deg);
}

.swiper-pagination-bullet-active {
  background-color: #ff5a10 !important;
  width: 18px !important;
  height: 18px !important;
}

.swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  margin: 0 10px !important;
  width: 14px;
  height: 14px;
}

.swiper-button-next:after {
  content: "" !important;
}

.swiper-button-prev:after {
  content: "" !important;
}

.turn__abs {
  position: absolute;
  width: 419px;
  top: -20px;
  left: auto;
  right: 32px;
}

.grade--sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.grade__head {
  margin-bottom: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 98%;
}

.grade__head h2 {
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.5px;
  color: #333333;
}

.grade__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 40px;
}

.grade__left {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 40px;
  width: 67%;
}

.grade__left.grade__btn:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.grade__left .study {
  text-transform: uppercase;
  font-family: "MuseoModerno";
  font-weight: 900;
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
}

.grade__img img {
  width: 302px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.grade__para {
  color: #333333;
  font-family: "MuseoModerno";
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.testimonial__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 40px;
}

.testimonial__img {
  width: 38px;
  height: 30px;
}

.testimonial__wrap p {
  color: #133a65;
  font-family: "MuseoModerno";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.grade__btn {
  width: 35%;
  margin: 0 auto;
  cursor: pointer;
  min-height: 45px;
  padding: 10px 50px 10px 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  border-radius: 50px;
  background-color: rgb(255, 90, 16);
  border: 1px solid transparent;
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.4s;
}

.grade__btn:hover {
  color: #ff5a10;
  background-color: #fff;
  border: 1px solid #ff5a10;
}

.grade__right {
  width: 33%;
}

.stats__content {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.stats__content h2 {
  font-family: "MuseoModerno";
  font-size: 60px;
  font-weight: 900;
  line-height: 64px;
  letter-spacing: -1.5px;
  color: #ff5a10;
}

.stats__content p {
  font-family: "MuseoModerno";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
}

.see--sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.see__head {
  margin-bottom: 50px;
  text-align: center;
}

.see__head h2 {
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.5px;
  color: #333333;
}

.see__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
}

.see__card {
  background: linear-gradient(
    224deg,
    #a45a0d 17.6%,
    #953d25 38.11%,
    #602063 92.44%
  );
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  padding: 0 27px 30px;
  color: #fff;
  transition: all ease-in-out 0.4s;
  cursor: pointer;
}

.see__card:hover {
  transform: translateY(-8px);
}

.see__top {
  width: 100%;
  height: auto;
  min-height: 312px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
}

.see__top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 1px;
}

.see__top h3 {
  font-family: "MuseoModerno";
  font-size: 40px;
  line-height: 46px;
  font-weight: 900;
  text-align: center;
  width: 100%;
}

sup {
  display: contents;
  font-family: "MuseoModerno";
  font-size: 40px;
  line-height: 46px;
}

.see__span {
  width: 100%;
  font-family: "MuseoModerno";
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
}

.see__bottom {
  min-height: 190px;
  position: relative;
  padding-top: 28px;
}

.see__bottom p {
  font-family: "MuseoModerno";
  font-size: 20px;
  line-height: 26px;
  text-transform: none;
  display: block;
  text-align: center;
}

.see__link {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  position: absolute;
  bottom: 0;
  left: 82px;
}

.see__link p {
  font-family: "MuseoModerno";
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 2px !important;
}

i.fas.fa-angle-right.white {
  font-size: 16px;
  color: #fff;
}

.new--sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: white;
}

.new__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new__content h2 {
  text-align: center;
  font-family: "MuseoModerno";
  font-weight: 900;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -1px;
  color: #333333;
  margin-bottom: 60px;
}

.new__btn {
  display: inline-block;
  text-align: center;
  color: rgb(255, 255, 255);
  min-height: 45px;
  height: 45px;
  min-width: 300px;
  width: auto;
  padding: 10px 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
  background-color: rgb(255, 90, 16);
  border: 1px solid transparent;
}

.new__btn:hover {
  color: #ff5a10;
  background-color: #fff;
  border: 1px solid #ff5a10;
}

.footer--sec {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #333333;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__logo img {
  width: 250px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-right: 50px;
}

.go__para {
  padding-left: 50px;
}

.go__para p {
  font-family: "MuseoModerno";
  font-size: 30px;
  font-weight: 700;
  background: -webkit-linear-gradient(left, #ffbc03 0%, #f56d00 100%);
  background: linear-gradient(90deg, #ffbc03 0%, #f56d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: normal;
}

.social__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

i.fab.fa-facebook-f {
  font-size: 16px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fab.fa-facebook-f:hover {
  color: rgb(151 143 145);
}

i.fab.fa-amilia {
  font-size: 16px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fab.fa-amilia:hover {
  color: rgb(151 143 145);
}

i.fab.fa-linkedin-in {
  font-size: 15px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fab.fa-linkedin-in:hover {
  color: rgb(151 143 145);
}

i.fab.fa-youtube {
  font-size: 16.5px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fab.fa-youtube:hover {
  color: rgb(151 143 145);
}

i.fab.fa-instagram {
  font-size: 15px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fab.fa-instagram:hover {
  color: rgb(151 143 145);
}

i.fa.fa-envelope {
  font-size: 17px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fa-regular.fa-envelope {
  font-size: 17px;
  color: white;
  padding: 0px 25px;
  transition: all ease-in-out 0.4s;
}

i.fa-regular.fa-envelope:hover {
  color: rgb(151 143 145);
}

i.fa-regular.fa-envelope:nth-child(6) {
  padding-right: 0px;
}

.footer__mid {
  padding-top: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__menu h4 {
  font-family: "MuseoModerno";
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: 12px;
  padding-bottom: 16px;
  text-transform: uppercase;
  height: auto;
}

.link__para {
  font-family: "MuseoModerno";
  font-weight: 500;
  color: rgb(187, 187, 187);
  font-size: 13px;
  line-height: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 30px;
  transition: all ease-in-out 0.4s;
}

.link__para:hover {
  color: white;
}

.contact__menu h4 {
  font-family: "MuseoModerno";
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: 12px;
  padding-bottom: 16px;
  text-transform: uppercase;
  height: auto;
}

.contact__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}

.contact__img {
  width: 24px;
}

.sup__menu h4 {
  font-family: "MuseoModerno";
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: 12px;
  padding-bottom: 16px;
  text-transform: uppercase;
  height: auto;
}

.contact__para {
  font-family: "MuseoModerno";
  font-weight: 300;
  color: rgb(255, 255, 255);
  font-size: 13px;
  padding-top: 7px;
  padding-bottom: 3px;
}

.san__para {
  font-family: "MuseoModerno";
  font-weight: 300;
  color: rgb(158, 158, 158);
  font-size: 13px;
  line-height: 18px;
}

.footer__last {
  padding-top: 40px;
}

.term__wrap {
  text-align: center;
}

.term__para {
  font-family: "MuseoModerno";
  font-weight: 500;
  font-size: 12px;
  line-height: 0;
  color: rgb(187, 187, 187);
  border-right-color: rgba(170, 170, 170, 0.5);
  border-right-style: solid;
  border-right-width: 1px;
  padding: 2px 15px;
  transition: all ease-in-out 0.4s;
}

.term__para:hover {
  color: white;
}

.copy__para p {
  font-family: "MuseoModerno";
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  margin-top: 15px;
  color: rgb(187, 187, 187);
}

@media (max-width: 1100px) {
  header {
    height: 104px;
  }

  .logo img {
    width: 150px;
  }

  .nav__menu {
    padding-left: 20px;
    margin-bottom: -23px;
  }

  .nav__link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
  }

  .icon__wrap {
    column-gap: 12px;
  }

  .request__btn {
    margin-left: 15px;
    padding: 5px 28px;
  }

  .banner--sec {
    padding: 70px 0px 40px;
  }

  .banner__content {
    width: 88%;
  }

  .banner__content h1 {
    font-size: 64px;
    line-height: 70px;
  }

  .loved__wrap {
    row-gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tool__head h3 {
    width: 88%;
  }

  .tool__box h3 {
    width: 99%;
  }

  .tool__img {
    margin-top: -125px;
  }

  .choose__abs {
    width: 305px;
    top: -93px;
  }

  .faster__span {
    display: inline;
  }

  .turn__head {
    width: 84%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .turn__head h2 {
    letter-spacing: -0.5px;
  }

  .turn__box {
    max-width: 98.1%;
  }

  .ft__tag::before {
    border-radius: 0px !important;
  }

  .turn__abs {
    width: 326px;
    top: -14px;
  }

  .grade__head h2 {
    letter-spacing: -2.5px;
  }

  .grade__left {
    padding-left: 30px;
    padding-right: 30px;
  }

  .grade__para {
    font-size: 22px;
  }

  .grade__btn {
    width: 48%;
  }

  .see__top h3 {
    font-size: 33px;
    line-height: 42px;
  }

  .see__top {
    min-height: 365px;
  }

  .see__bottom {
    min-height: 230px;
  }

  .see__link {
    right: 0px;
    left: 0px;
  }

  .new__content h2 {
    font-size: 47px;
  }

  .term__wrap {
    width: 91%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
    margin-left: 0.93em;
    margin-right: 0.93em;
  }

  .nav__wrap {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .logo {
    display: none;
  }

  .logo__mobile {
    display: block;
  }

  .logo__mobile img {
    width: 130px;
  }

  .nav__link {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
  }

  .icon__img {
    width: 20px;
    height: 20px;
  }

  .banner--sec {
    background-position: 82% top;
    min-height: 800px;
  }

  .banner__content {
    width: 60%;
  }

  .banner__content h1 {
    font-size: 52px;
    line-height: 58px;
  }

  .banner__span {
    display: inline;
  }

  .cost--sec {
    padding-bottom: 0px;
  }

  .cost__main {
    margin-top: -420px;
  }

  .finance__text {
    padding: 3px 12px;
    margin-right: 0px;
    font-size: 15px;
    line-height: 22px;
  }

  .lower__main {
    padding: 40px 30px;
    min-height: auto;
  }
  .loved__head h2 {
    font-size: 34px;
    line-height: 41px;
  }
  .loved__main {
    width: 30%;
  }
  .agent--sec {
    padding-top: 0px;
  }
  .agent__head h2 {
    font-size: 34px;
    line-height: 41px;
  }
  .tool__module1 {
    width: 36%;
  }
  .tool__module2 {
    width: 32%;
  }
  .tool__module3 {
    width: 32%;
  }
  .tool__text {
    min-height: 118px;
  }
  .tool__text p {
    font-size: 19px;
  }
  .choose__head h2 {
    font-size: 34px;
    line-height: 41px;
  }
  .choose__box {
    padding-left: 20px;
    padding-right: 20px;
    min-height: 308px;
  }
  .gradient {
    font-size: 64px;
  }
  .choose__box p {
    font-size: 19px;
  }
  .faster__wrap {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }
  .faster__wrap:nth-child(2) {
    flex-direction: column-reverse;
  }
  .faster__wrap:nth-child(4) {
    flex-direction: column-reverse;
  }
  .faster__left {
    width: 100%;
  }
  .faster__right {
    width: 100%;
  }
  .turn__head {
    width: 100%;
  }
  .turn__head h2 {
    font-size: 34px;
    line-height: 41px;
    letter-spacing: 0px;
  }
  .turn__abs {
    right: 25px;
  }
  .grade--sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .grade__head h2 {
    font-size: 34px;
    line-height: 41px;
    letter-spacing: -1.5px;
  }
  .grade__wrap {
    align-items: flex-start;
    row-gap: 40px;
    flex-direction: column;
  }
  .grade__left {
    width: 100%;
  }
  .grade__right {
    width: 100%;
  }
  .grade__para {
    font-size: 19px;
    line-height: 28px;
  }
  .grade__btn {
    width: 40%;
  }
  .see--sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .see__head h2 {
    font-size: 34px;
    line-height: 41px;
    letter-spacing: -1.5px;
  }
  .see__card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .see__top {
    min-height: 240px;
    padding: 25px 0;
  }
  .see__top h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .see__bottom {
    min-height: 205px;
  }
  .see__bottom p {
    font-size: 18px;
    line-height: 22px;
  }
  sup {
    font-size: 22px;
    line-height: 22px;
  }
  .see__link p {
    font-size: 16px;
    line-height: 21px;
  }
  .new--sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .new__content h2 {
    font-size: 34px;
    line-height: 41px;
  }
  .footer__top {
    row-gap: 25px;
    flex-direction: column;
  }
  .footer__wrap {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .footer__menu {
    width: 50%;
  }
  .sup__menu {
    width: 50%;
  }
  .term__wrap {
    width: 93%;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }

  .nav__main {
    padding-top: 12px;
  }
  .nav__menu {
    display: none;
  }

  .nav__right {
    margin-left: auto;
    display: none;
  }
  header {
    height: 75px;
  }
  .banner--sec {
    background-position: 10% top;
    padding-top: 40px;
    min-height: 550px;
  }
  .banner__content {
    width: 100%;
  }
  .banner__content h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .banner__btn {
    width: 100%;
    text-align: center;
  }
  .cost--sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cost__main {
    margin-top: -285px;
  }
  .finance__wrap {
    flex-wrap: wrap;
  }
  .finance__text {
    padding: 4px 26px;
    margin-bottom: 10px;
  }
  .lower__main {
    padding: 40px 20px 20px;
  }
  .lower__content h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .loved--sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .loved__head h2 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }
  .loved__wrap {
    flex-wrap: wrap;
  }
  .loved__main {
    width: 100%;
    max-width: 345px;
  }
  .agent--sec {
    padding-bottom: 40px;
  }
  .agent__head {
    margin-bottom: 20px;
  }
  .agent__head h2 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }
  .comparison__table {
    flex-wrap: wrap;
    margin: 0;
    box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0;
    background: #fff;
  }
  .tool__module1 {
    display: none;
  }
  .tool__module2 {
    width: 100%;
    background: none;
    border-radius: 12px 12px 0 0;
    padding: 20px 0 10px;
  }
  .tool__head {
    min-height: auto;
    height: auto !important;
    padding: 15px 20px;
  }
  .tool__head h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .tool__text {
    min-height: auto;
    height: auto !important;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }
  .tool__text p {
    font-size: 16px;
    line-height: 20px;
  }
  .tool__module3 {
    width: 100%;
    background: linear-gradient(
      201deg,
      #f0931b 0.53%,
      #df5a1e 26.82%,
      #df5a1e 71.72%,
      #933884 100%
    );
    border-radius: 0 0 12px 12px;
    padding: 10px 0 20px;
  }
  .tool__module3::before {
    display: none;
  }
  .tool__box {
    min-height: auto;
    height: 70px !important;
    padding: 15px 20px;
  }
  .tool__box h3 {
    text-align: start;
    margin-left: 30px;
    font-size: 24px;
    line-height: 28px;
  }
  .tool__img {
    margin-top: -5px;
    left: auto;
    right: 24px;
  }
  .choose--sec {
    padding-top: 40px;
  }
  .choose__head h2 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }
  .choose__wrap {
    flex-wrap: wrap;
    row-gap: 25px;
  }
  .choose__box {
    min-height: 255px;
  }
  .choose__abs {
    width: 270px;
    top: -52px;
    left: 2px;
  }
  .faster--sec {
    padding-bottom: 40px;
  }
  .turn--sec {
    padding-top: 40px;
  }
  .turn__head h2 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }
  .nhs {
    width: 60%;
  }
  .turn__abs {
    right: 15px;
    width: 275px;
    top: -12px;
  }
  .grade--sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .grade__head h2 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }
  .grade__left {
    padding-left: 20px;
    padding-right: 20px;
  }
  .grade__left .study {
    font-weight: 600;
  }
  .testimonial__wrap {
    column-gap: 15px;
  }
  .grade__btn {
    width: 76%;
  }
  .stats__content p {
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
  }
  .see--sec {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .see__head h2 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }
  .see__wrap {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .see__top {
    min-height: 220px;
    height: auto !important;
  }
  .see__bottom {
    min-height: 160px;
  }
  .footer--sec {
    padding-top: 40px;
  }
  .footer__logo img {
    width: 131px;
    padding-right: 15px;
  }
  .go__para {
    padding-left: 15px;
  }
  .go__para p {
    font-size: 19px;
  }
  i.fab.fa-facebook-f {
    padding: 0px 16px;
  }
  i.fab.fa-amilia {
    padding: 0px 16px;
  }
  i.fab.fa-linkedin-in {
    padding: 0px 16px;
  }
  i.fab.fa-youtube {
    padding: 0px 16px;
  }
  i.fab.fa-instagram {
    padding: 0px 16px;
  }
  i.fa.fa-envelope {
    padding: 0px 16px;
  }
  i.fa-regular.fa-envelope {
    padding: 0px 16px;
  }
}
