@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

h2.h2 {
  font-size: 75px;
  color: #3e3e3e;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: -3%;
}
h2.h2.center {
  text-align: center;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 30px;
  }
}
header {
  height: 6rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 7.5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}
header .logo {
  font-size: 2em;
}
header .logo a {
  color: #fff;
  text-decoration: none;
}
header .logo a img {
  height: 4.5rem;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 35px;
}
header .right .btn a {
  font-size: 16px;
  padding: 12px 20px;
}
header .right .btn a:hover {
  transform: scale(1.025);
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 35px;
}
header nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.25s ease;
}
header nav a:hover, header nav a.active {
  color: #fff;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 51;
  background: #FFB54A;
  background: linear-gradient(226deg, rgb(255, 181, 74) 0%, rgb(254, 141, 34) 100%);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  font-weight: 600;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
  }
  header .logo {
    font-size: 25px;
  }
  header .right {
    display: none;
  }
  header .ham {
    display: flex;
  }
  header .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn a {
  font-size: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  padding: 15px 25px 15px 15px;
  font-weight: 500;
  transition: 0.2s ease;
  background: #FFB54A;
  background: linear-gradient(226deg, rgb(255, 181, 74) 0%, rgb(254, 141, 34) 100%);
  cursor: pointer;
}
.btn a .icon {
  height: 1.5em;
  width: 1.5em;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s ease;
}
.btn a .icon svg {
  height: 0.75em;
  width: 0.75em;
  color: #6E26E5;
  stroke-width: 2.5;
}
.btn a span {
  line-height: 1em;
}
.btn:hover a .icon {
  transform: translateX(3px);
}

@media only screen and (max-width: 900px) {
  .btn a {
    padding: 8px 15px 8px 10px;
  }
}
footer {
  padding: 5rem 7.5%;
  background: #181818;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left img {
  height: 100px;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #FFB54A;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  background: #F5F5F5;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: linear-gradient(226deg, rgb(255, 181, 74) 0%, rgb(254, 141, 34) 100%);
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(62, 62, 62, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
  color: #3E3E3E;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  color: #3E3E3E;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form .btn {
  margin-top: 20px;
}
.contacts form .btn a {
  font-size: 23px;
}
.contacts .details {
  padding: 40px;
  background: linear-gradient(230deg, rgb(144, 72, 255) 0%, rgb(110, 38, 229) 50%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.contacts .details h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 500;
}
.contacts .details .link {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.contacts .details .link .icon {
  background: linear-gradient(226deg, rgb(255, 181, 74) 0%, rgb(254, 141, 34) 100%);
  padding: 10px;
  border-radius: 50%;
  height: 51px;
  width: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts .details .link .icon svg {
  height: 25px;
  width: 25px;
  stroke-width: 2.5;
}
.contacts .details .link span {
  font-size: 27px;
  font-weight: 400;
}

@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
    gap: 25px;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details h3 {
    font-size: 30px;
  }
  .contacts .details .link .icon {
    height: 43px;
    width: 43px;
  }
  .contacts .details .link .icon svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .link span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
    margin-top: 5px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details h3 {
    font-size: 20px;
  }
  .contacts .details .link .icon {
    height: 37px;
    width: 37px;
  }
  .contacts .details .link .icon svg {
    height: 19px;
    width: 19px;
  }
  .contacts .details .link span {
    font-size: 15px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #3E3E3E;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #3E3E3E;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.hero {
  min-height: 800px;
  background: #9048FF;
  background: linear-gradient(230deg, rgb(144, 72, 255) 0%, rgb(110, 38, 229) 50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  padding: 7.5rem 7.5%;
  position: relative;
  overflow: hidden;
}
.hero .text {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.hero .text h1 {
  font-size: 90px;
  color: #fff;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -3%;
  font-family: "Barlow Condensed", sans-serif;
}
.hero .text p {
  font-size: 25px;
  color: #fff;
  margin: 30px 0 30px;
  opacity: 0.8;
}
.hero .text .points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.hero .text .points .point {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  display: grid;
  grid-template-columns: 35px 1fr;
}
.hero .text .points .point .tick {
  height: 35px;
  width: 35px;
  background: #FFB54A;
  background: linear-gradient(226deg, rgb(255, 181, 74) 0%, rgb(254, 141, 34) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .text .points .point .tick svg {
  height: 19px;
  width: 19px;
  color: #fff;
  stroke-width: 3;
}
.hero .text .points .point span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
.hero .calc {
  position: relative;
  z-index: 2;
}
.hero .calc .top__nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.hero .calc .top__nav button {
  background: #fff;
  border: none;
  font-size: 16px;
  padding: 12px 25px;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  font-weight: 500;
  border: 2px solid #FE982D;
  background: #9048FF;
  background: linear-gradient(230deg, rgb(144, 72, 255) 0%, rgb(110, 38, 229) 50%);
  color: #fff;
  transition: 0.25s ease;
  cursor: pointer;
}
.hero .calc .top__nav button.active {
  background: #FE982D;
  color: #fff;
}
.hero .calc .top__nav button.active:hover {
  background: #FE982D;
}
.hero .calc .top__nav button:hover {
  background: rgba(255, 255, 255, 0.25);
}
.hero .calc .calc__content {
  width: 100%;
  background: #FFB54A;
  background: linear-gradient(226deg, rgb(255, 181, 74) 0%, rgb(254, 141, 34) 100%);
  padding: 25px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
  border-radius: 35px;
}
.hero .calc .calc__content .input__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hero .calc .calc__content .input__row label {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
.hero .calc .calc__content .input__row .input__parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hero .calc .calc__content .input__row .input__parent .button {
  height: 41px;
  width: 41px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .calc .calc__content .input__row .input__parent .button svg {
  height: 21px;
  width: 21px;
  color: #3E3E3E;
  stroke-width: 2.5;
}
.hero .calc .calc__content .input__row .input__parent .input {
  position: relative;
  overflow: hidden;
  border-radius: 100px;
}
.hero .calc .calc__content .input__row .input__parent .input input {
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  color: #3E3E3E;
  width: 200px;
}
.hero .calc .calc__content .input__row .input__parent .input .val {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6E26E5;
  font-size: 16px;
  color: #fff;
}
.hero .calc .calc__content p {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}
.hero .calc .calc__content .result {
  background: #9048FF;
  background: linear-gradient(230deg, rgb(144, 72, 255) 0%, rgb(110, 38, 229) 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 25px;
  width: 100%;
  padding: 25px;
}
.hero .calc .calc__content .result h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.hero .calc .calc__content .result h3 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.hero .calc .calc__content .result .btn a {
  font-size: 23px;
  padding: 10px 20px 10px 10px;
}
.hero .blob {
  height: 600px;
  position: absolute;
  top: 150px;
  left: 5%;
}

.process {
  padding: 100px 7.5%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 35px;
  background: #F5F5F5;
}
.process .process__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 10px;
  position: relative;
}
.process .process__content .item {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  position: relative;
}
.process .process__content .item .item__heading {
  display: grid;
  grid-template-columns: 61px 1fr;
  gap: 20px;
  align-items: center;
}
.process .process__content .item .item__heading .icon {
  height: 61px;
  width: 61px;
  border-radius: 50%;
  background: #9048FF;
  background: linear-gradient(230deg, rgb(144, 72, 255) 0%, rgb(110, 38, 229) 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.process .process__content .item .item__heading .icon span {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.process .process__content .item .item__heading h3 {
  font-size: 32px;
  line-height: 1em;
  color: #3E3E3E;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.process .process__content .item p {
  font-size: 17px;
  color: #3E3E3E;
  font-weight: 300;
  margin-top: 20px;
}
.process .process__content .radial {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 95px;
}
.process .process__content .radial.radial1 {
  left: 33.3333%;
}
.process .process__content .radial.radial2 {
  left: 66.6666%;
}

.reviews {
  padding: 100px 7.5%;
  background: #9048FF;
  background: linear-gradient(230deg, rgb(144, 72, 255) 0%, rgb(110, 38, 229) 50%);
}
.reviews h2.h2 {
  color: #fff;
}
.reviews .reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .swiper-parent {
  position: relative;
}
.reviews .swiper-parent .reviews-nav {
  position: absolute;
  top: 50%;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .swiper-parent .reviews-nav svg {
  color: #3E3E3E;
  height: 33px;
  width: 33px;
}
.reviews .swiper-parent .reviews-nav.reviews-prev {
  left: -3.75vw;
  transform: translate(-50%, -50%);
}
.reviews .swiper-parent .reviews-nav.reviews-next {
  right: -3.75vw;
  transform: translate(50%, -50%);
}
.reviews .testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
  margin-top: 40px;
}
.reviews .testimonial-card .slider-heading {
  display: grid;
  gap: 20px;
}
.reviews .testimonial-card .slider-heading .name {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  line-height: 1em;
}
.reviews .testimonial-card .slider-heading .name h3 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: "Biryani", sans-serif;
  color: #3E3E3E !important;
  line-height: 1.5em;
  margin-top: 0 !important;
}
.reviews .testimonial-card .slider-heading .name span {
  color: rgba(62, 62, 62, 0.7);
  font-weight: 300;
  font-family: "Biryani", sans-serif;
  line-height: 1.5em;
}
.reviews .testimonial-card .slider-heading .stars {
  display: flex;
  justify-content: end;
  gap: 4px;
  margin-bottom: 12px;
}
.reviews .testimonial-card .slider-heading .stars .star-icon {
  width: 25px;
  height: 25px;
  fill: gold;
  stroke: none;
  display: inline-block;
}
.reviews .testimonial-card p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  color: rgba(62, 62, 62, 0.7);
  padding: 0 !important;
}
.reviews .swiper {
  padding-bottom: 40px;
}
.reviews .swiper-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-flow: row wrap;
}
.reviews .swiper-pagination-bullet {
  background: #ccc !important;
  opacity: 1;
  height: 17px !important;
  width: 17px !important;
}
.reviews .swiper-pagination-bullet-active {
  background: #1b264f !important;
  height: 17px !important;
  width: 17px !important;
  border: none !important;
}

@media only screen and (max-width: 1550px) {
  .hero {
    min-height: 700px;
  }
  .hero .text {
    padding-top: 25px;
  }
  .hero .text h1 {
    font-size: 70px;
  }
  .hero .text p {
    font-size: 22px;
    margin: 25px 0 40px;
  }
  .hero .text .btn a {
    font-size: 20px;
  }
  .hero .calc .top__nav button {
    font-size: 15px;
  }
  .hero .calc .calc__content .input__row label {
    font-size: 17px;
  }
  .hero .calc .calc__content .input__row .input__parent {
    gap: 10px;
  }
  .hero .calc .calc__content .input__row .input__parent .button {
    height: 35px;
    width: 35px;
  }
  .hero .calc .calc__content .input__row .input__parent .button svg {
    height: 19px;
    width: 19px;
  }
  .hero .calc .calc__content .input__row .input__parent .input input {
    font-size: 16px;
    padding: 8px 15px;
    width: 150px;
  }
  .hero .calc .calc__content p {
    font-size: 14px;
  }
  .hero .calc .calc__content .result h4 {
    font-size: 16px;
  }
  .hero .calc .calc__content .result h3 {
    font-size: 40px;
  }
  .hero .calc .calc__content .result .btn a {
    font-size: 18px;
  }
  .hero .calc .calc__content.comparison .row {
    grid-template-columns: 0.35fr 0.3fr 0.35fr;
  }
  .hero .calc .calc__content.comparison .row.heading .item h4.vs {
    font-size: 40px;
  }
  .hero .calc .calc__content.comparison .row .item h3.val {
    font-size: 18px;
  }
  .hero .calc .calc__content.comparison .row .item h4.desc {
    font-size: 14px;
  }
  .offer .offer__content {
    gap: 50px;
  }
  .offer .offer__content .item .icon {
    height: 91px;
    width: 91px;
  }
  .offer .offer__content .item h3 {
    font-size: 35px;
  }
  .offer .offer__content .item p {
    font-size: 16px;
  }
  .offer .offer__content .item .link {
    font-size: 18px;
  }
  .process .process__content .item .item__heading {
    grid-template-columns: 51px 1fr;
  }
  .process .process__content .item .item__heading .icon {
    height: 51px;
    width: 51px;
  }
  .process .process__content .item .item__heading .icon span {
    font-size: 25px;
  }
  .process .process__content .item .item__heading h3 {
    font-size: 27px;
  }
  .process .process__content .item p {
    font-size: 16px;
  }
  .process .btn a {
    font-size: 22px;
  }
  .reviews .reviews-top .btn a {
    font-size: 20px;
  }
  .reviews .swiper-parent .reviews-nav {
    height: 53px;
    width: 53px;
  }
  .reviews .swiper-parent .reviews-nav svg {
    height: 27px;
    width: 27px;
  }
  .reviews .testimonial-card .slider-heading .name h3 {
    font-size: 28px;
  }
  .reviews .testimonial-card p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    min-height: 600px;
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .hero .text {
    padding-top: 0;
  }
  .hero .text h1 {
    font-size: 55px;
  }
  .hero .text p {
    font-size: 18px;
    margin: 15px 0 30px;
  }
  .hero .text .points .point {
    grid-template-columns: 31px 1fr;
  }
  .hero .text .points .point .tick {
    height: 31px;
    width: 31px;
  }
  .hero .text .points .point .tick svg {
    height: 17px;
    width: 17px;
  }
  .hero .text .points .point span {
    font-size: 17px;
  }
  .hero .text .btn a {
    font-size: 18px;
  }
  .hero .calc {
    padding: 0;
  }
  .hero .calc .calc__content .input__row .input__parent .input input {
    width: 200px;
  }
  .offer {
    padding: 50px 5%;
  }
  .offer .offer__content {
    gap: 25px;
    margin-top: 25px;
  }
  .offer .offer__content .item .icon {
    height: 71px;
    width: 71px;
  }
  .offer .offer__content .item .icon img {
    height: 33px;
    width: 33px;
  }
  .offer .offer__content .item h3 {
    font-size: 27px;
  }
  .offer .offer__content .item p {
    font-size: 15px;
    margin: 5px 0 10px;
  }
  .offer .offer__content .item .link {
    font-size: 16px;
  }
  .process {
    padding: 50px 5%;
    gap: 20px;
  }
  .process .process__content {
    gap: 10px;
  }
  .process .process__content .item {
    padding: 20px;
  }
  .process .process__content .item .item__heading {
    grid-template-columns: 45px 1fr;
    gap: 10px;
  }
  .process .process__content .item .item__heading .icon {
    height: 45px;
    width: 45px;
  }
  .process .process__content .item .item__heading .icon span {
    font-size: 23px;
  }
  .process .process__content .item .item__heading h3 {
    font-size: 24px;
  }
  .process .process__content .item p {
    font-size: 15px;
  }
  .process .btn a {
    font-size: 17px;
  }
  .reviews {
    padding: 50px 7.5%;
  }
  .reviews .swiper-parent .reviews-nav {
    height: 45px;
    width: 45px;
  }
  .reviews .swiper-parent .reviews-nav svg {
    height: 23px;
    width: 23px;
  }
  .reviews .reviews-top .btn a {
    font-size: 18px;
  }
  .reviews .testimonial-card .slider-heading .name h3 {
    font-size: 24px;
  }
  .reviews .testimonial-card p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    min-height: 500px;
    gap: 50px;
  }
  .hero .text {
    padding-top: 0;
  }
  .hero .text h1 {
    font-size: 45px;
  }
  .hero .text p {
    font-size: 16px;
    margin: 15px 0 30px;
  }
  .hero .text .points .point {
    grid-template-columns: 29px 1fr;
  }
  .hero .text .points .point .tick {
    height: 29px;
    width: 29px;
  }
  .hero .text .points .point .tick svg {
    height: 15px;
    width: 15px;
  }
  .hero .text .points .point span {
    font-size: 16px;
  }
  .hero .text .btn a {
    font-size: 19px;
  }
  .calculator .calculator__content .left h2 {
    font-size: 40px;
  }
  .offer .offer__content .item .icon {
    height: 61px;
    width: 61px;
  }
  .offer .offer__content .item .icon img {
    height: 29px;
    width: 29px;
  }
  .offer .offer__content .item h3 {
    font-size: 24px;
  }
  .offer .offer__content .item p {
    font-size: 14px;
  }
  .reviews .reviews-top {
    margin-bottom: 20px;
  }
  .reviews .reviews-top .btn a {
    font-size: 15px;
  }
  .reviews .swiper-parent .reviews-nav {
    height: 37px;
    width: 37px;
  }
  .reviews .swiper-parent .reviews-nav svg {
    height: 21px;
    width: 21px;
  }
}
@media only screen and (max-width: 768px) {
  .reviews .swiper {
    padding-bottom: 0px;
  }
  .reviews .swiper .swiper-slide {
    margin-top: 0;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    min-height: 500px;
    gap: 25px;
    grid-template-columns: 1fr;
    padding: 100px 7.5% 50px;
  }
  .hero .text {
    padding-top: 0;
  }
  .hero .text h1 {
    font-size: 35px;
  }
  .hero .text p {
    font-size: 14px;
    margin: 15px 0 20px;
  }
  .hero .text .points {
    gap: 20px;
  }
  .hero .text .points .point {
    grid-template-columns: 25px 1fr;
  }
  .hero .text .points .point .tick {
    height: 25px;
    width: 25px;
  }
  .hero .text .points .point .tick svg {
    height: 13px;
    width: 13px;
  }
  .hero .text .points .point span {
    font-size: 14px;
  }
  .hero .text .btn a {
    font-size: 15px;
  }
  .hero .calc .top__nav button {
    font-size: 13px;
  }
  .hero .calc .calc__content {
    border-radius: 15px;
  }
  .hero .calc .calc__content .input__row {
    flex-flow: column;
    align-items: start;
    row-gap: 10px;
  }
  .hero .calc .calc__content .input__row label {
    font-size: 15px;
  }
  .hero .calc .calc__content .input__row .input__parent {
    gap: 5px;
  }
  .hero .calc .calc__content .input__row .input__parent .button {
    height: 31px;
    width: 31px;
  }
  .hero .calc .calc__content .result {
    border-radius: 12px;
  }
  .hero .calc .calc__content .result h4 {
    font-size: 14px;
  }
  .hero .calc .calc__content .result h3 {
    font-size: 35px;
  }
  .hero .calc .calc__content .result .btn a {
    font-size: 15px;
  }
  .hero .calc .calc__content.comparison .row.heading .item .icon {
    height: 37px;
    width: 37px;
  }
  .hero .calc .calc__content.comparison .row.heading .item .icon svg {
    height: 19px;
    width: 19px;
  }
  .hero .calc .calc__content.comparison .row.heading .item h3 {
    font-size: 16px;
  }
  .hero .calc .calc__content.comparison .row.heading .item h4.vs {
    font-size: 25px;
  }
  .hero .calc .calc__content.comparison .row .item h3.val {
    font-size: 13px;
  }
  .hero .calc .calc__content.comparison .row .item h4.desc {
    font-size: 11px;
    text-align: center;
  }
  .offer .offer__content {
    grid-template-columns: 1fr;
    padding: 0 10%;
  }
  .process .process__content {
    grid-template-columns: 1fr;
  }
  .process .process__content .item .item__heading {
    grid-template-columns: 35px 1fr;
  }
  .process .process__content .item .item__heading .icon {
    height: 35px;
    width: 35px;
  }
  .process .process__content .item .item__heading .icon span {
    font-size: 17px;
  }
  .process .process__content .item .item__heading h3 {
    font-size: 21px;
  }
  .process .process__content .item p {
    font-size: 14px;
    margin-top: 10px;
  }
  .reviews {
    padding: 50px 15%;
  }
  .reviews .reviews-top {
    flex-flow: column;
    align-items: start;
    gap: 5px;
  }
  .reviews .reviews-top .btn a {
    font-size: 15px;
  }
  .reviews .swiper-parent .reviews-nav {
    height: 45px;
    width: 45px;
  }
  .reviews .swiper-parent .reviews-nav svg {
    height: 25px;
    width: 25px;
  }
  .reviews .swiper-parent .reviews-nav.reviews-prev {
    left: -7.5vw;
  }
  .reviews .swiper-parent .reviews-nav.reviews-next {
    right: -7.5vw;
  }
  .reviews .swiper-parent .testimonial-card {
    padding: 20px;
  }
  .reviews .swiper-parent .testimonial-card .slider-heading .name h3 {
    font-size: 22px;
  }
  .reviews .swiper-parent .testimonial-card p {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */