@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

:root {
  --purple: #6300ff;
  --lightblue: #00FFFF;
  --blue: #0000ff;
  --darkblue: #000066;
  --lightgrey: #f5f5f7;
  --white: #fff;
  --black: #000;
  --red: #FE646F;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  background: var(--lightgrey);
}
a:hover {
  color: #000000;
}
::-moz-selection {
  color: var(--white);
  background: var(--purple);
}
::selection {
  color: var(--white);
  background: var(--purple);
}

/* section animations */
section, section .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.in-view, section .row.in-view {
  opacity: 1;
  transform: translateY(0);
}
section.nav, section.nav .row, section.header, section.header .row, section#section-ads, section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
/* default */
.title h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--darkblue);
  line-height: 1;
  margin-bottom: 10px;
}
.title hr {
  width: 200px;
  height: 6px;
  border-radius: 20px;
  background: linear-gradient(130deg,rgba(88, 0, 255, 1) 0%, rgba(0, 255, 255, 1) 100%);
  opacity: 1;
  border: none;
  margin: 0;
}
.title h6 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  margin: 20px 0 0 0;
  text-wrap: balance;
}
/* navbar */
.nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  margin-top: 10px;
}
.nav .container {
  padding: 10px 40px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px) saturate(180%);
  background: rgba(245, 245, 247, 0.50);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
}
.nav .row {
  transition: filter 0.4s ease;
}
.logo img {
  height: 40px;
}
.navmenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
}
.navmenu ul li {
  position: relative;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.navmenu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s ease;
}
.navmenu ul li:hover::after {
  width: 100%;
}
.navmenu ul li:hover {
  color: var(--purple);
}
/* header */
.header {
  max-width: 85%;
  background: var(--lightgrey);
  border-radius: 30px;
  margin: 80px auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header::after {
  content: '';
  background: linear-gradient(90deg,rgba(0, 0, 102, 1) 46%, rgba(0, 0, 102, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.header .container {
  width: 100%;
  position: relative;
  z-index: 10;
}
.header-txt {
  color: var(--white);
  text-wrap: balance;
}
.header-txt h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
}
.header-txt h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
}
/* form */
.form-outer {
  position: relative;
  z-index: 20;
  width: 400px;
  max-width: 100%;
  margin: 0 0 0 auto;
}
.form-outer::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--lightblue);
  filter: blur(10px);
  top: 0%;
  left: 0%;
  border-radius: 30px;
  z-index: 0;
  opacity: 0.3;
  transform: scale(1);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(1.02);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.3;
    transform: scale(1.02);
  }
}
#contactform {
  width: 100%;
  border-radius: 20px;
  background: var(--white);
  text-align: center;
  position: relative;
  z-index: 99;
  padding: 40px 35px;
  text-wrap: balance;
}
#contactform h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue);
}
#contactform h5 {
  font-size: 15px;
  font-weight: 400;
  color: var(--darkblue);
}
#contactform hr {
  opacity: 1;
  height: 2px;
  border: none;
  border-radius: 20px;
  background: var(--blue);
}
#contactform h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--darkblue);
  margin-bottom: 15px;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.radio-opt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.radio-buton {
  width: 100%;
  margin: 5px 0;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--darkblue);
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 20px;
  color: var(--darkblue);
  font-size: 16px;
  font-weight: 500;
}
.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-buton label img {
  height: 25px;
  margin: -1px 8px 0 0;
}
.radio-opt-normal .radio-buton label img {
  height: 20px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
}
.radio-buton label:hover img, .radio-buton input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
}
.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 50px;
  border: 1px solid var(--darkblue);
  font-size: 16px;
  color: var(--darkblue) !important;
  font-weight: 400 !important;
  padding: 0 20px;
  -webkit-appearance: none;
  text-align: left !important;
  margin: 5px auto;
  line-height: 1;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-input input.error {
  margin: 0;
  border: 1px solid var(--red);
  background-image: url('/img/icons/error.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 2px 0;
}
.form-input input.valid {
  border: 1px solid var(--blue);
  background-image: url('/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--darkblue);
  font-size: 11px;
  font-weight: 300;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--darkblue);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--darkblue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--darkblue);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 300;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.form-button {
  min-width: 200px;
  height: 45px;
  border-radius: 50px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  color: var(--white);
  background: var(--blue);
  transition: all 0.4s ease;
  margin-top: 10px;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--purple);
  color: var(--white);
}
/* section1 */
.section1 {
  text-wrap: balance;
  padding: 60px 0;
}
.section1 .title {
  text-align: left;
  margin-bottom: 40px;
}
/* articles */
.article {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.4s ease;
}
.article:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px 5px rgba(0, 0, 102, 0.1);
}
.article-txt {
  padding: 30px 40px;
}
.article-txt h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--darkblue);
  margin: 0 0 10px 0;
}
.article-txt p {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--black);
  margin: 0 0 30px 0;
}
.article-txt button {
  min-width: 200px;
  height: 45px;
  border-radius: 50px;
  padding: 0 20px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  color: var(--white);
  background: var(--blue);
  transition: all 0.4s ease;
}
.article-txt button:hover {
  transform: scale(1.05);
  background: var(--purple);
}
.article-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.article-big {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-medium {
  width: 100%;
  display: flex;
}
.article-medium .article-txt {
  padding: 30px;
}
.article-small {
  width: 48%;
}
.article-small .article-txt {
  padding: 20px;
  text-align: center;
}
.article-small .article-txt h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.article-img {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.article1 {
  width: 100%;
  height: 100%;
  background: url('/img/article1.jpg');
}
.article2 {
  width: 60%;
  aspect-ratio: 1;
  background: url('/img/article2.jpg');
}
.article3, .article4 {
  width: 100%;
  aspect-ratio: 2/1;
  background: url('/img/article3.jpg');
}
.article4 {
  background: url('/img/article4.jpg');
}
/* section 2 */
.section2 {
  max-width: 85%;
  margin: 50px auto 180px auto;
  background: var(--darkblue);
  border-radius: 30px;
  padding: 80px 0;
  color: var(--white);
}
.section2 .title h3 {
  color: var(--white);
}
.bullet {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}
.bullet img {
  width: 40px;
  margin-right: 15px;
}
.bullet h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 5px 0;
}
.bullet p {
  line-height: 1.1;
  font-weight: 300;
  font-size: 16px;
  word-break: break-word;
}
.video-slider-outer {
  margin-top: 50px;
  margin-bottom: -250px;
}
.video-outer {
  text-align: center;
}
.video-outer video {
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
}
/* section 3 */
.section3 {
  padding: 80px 0;
}
.partner-wrapper {
  position: relative;
  overflow: hidden;
}
.partner-slider::before, .partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 4;
}
.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(245, 245, 247, 1), rgba(245, 245, 247, 0));
}
.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(245, 245, 247, 1), rgba(245, 245, 247, 0));
}
.partner-outer img {
  max-width: 45%;
  margin: 0 auto;
}
/* section4 */
.section4 {
  text-align: center;
  padding: 60px 0;
}
.sec4-txt {
  width: 500px;
  margin: 0 auto;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px 0;
  position: relative;
  z-index: 10;
  text-wrap: balance;
}
.sec4-txt::before {
  position: absolute;
  top: 50;
  left: 50;
  transform: translate(-50% -50%);
  content: '';
  width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(70px);
  opacity: 0.1;
  z-index: 0;
}
.sec4-txt img {
  max-width: 80%;
}
.sec4-txt hr {
  margin: 0 auto;
}
.sec4-txt p {
  margin: 0;
  color: var(--black);
  line-height: 1.1;
}
.section4 .container {
  position: relative;
  min-height: 550px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section4 .container .row {
  width: 100%;
  height: 100%;
}
.review-box {
  position: absolute;
  z-index: 33;
}
.review1 {
  top: -3%;
  left: -8%;
  transform: rotate(-2deg);
}
.review2 {
  top: -3%;
  right: -8%;
  transform: rotate(2deg);
}
.review3 {
  bottom: -3%;
  left: -8%;
  transform: rotate(2deg);
}
.review4 {
  bottom: -3%;
  right: -8%;
  transform: rotate(-2deg);
}
.review {
  background: var(--white);
  padding: 20px 35px;
  border-radius: 20px;
  width: 500px;
  max-width: 100%;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px 2px rgba(0, 0, 102, 0.1);
  transform: scale(0.85);
  text-wrap: balance;
  cursor: pointer;
}
.review:hover {
  transform: scale(0.95);
  box-shadow: 0 0 10px 2px rgba(0, 0, 102, 0.1);
}
.review2 .review, .review4 .review {
  text-align: right;
}
.persona {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 25px;
  margin-top: -60px;
}
.persona img:first-of-type {
  height: 80px;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 102, 0.1);
}
.persona img:last-of-type {
  height: 25px;
}
.review2 .persona, .review4 .persona {
  flex-direction: row-reverse;
}
.review2 .persona img:first-of-type, .review4 .persona img:first-of-type {
  margin-left: 20px;
}
.review h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--darkblue);
}
.review p {
  font-size: 13px;
  line-height: 1.1;
  color: var(--black);
}
.review h5 {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}
.review h5 span {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--darkblue);
  margin: 0;
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(var(--rotation));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--rotation) + 1deg));
  }
  100% {
    transform: translateY(0) rotate(var(--rotation));
  }
}
.review1, .review2, .review3, .review4 {
  animation: float 4s ease-in-out infinite;
}
.review1 {
  --rotation: -2deg;
  animation-delay: 0s;
}
.review2 {
  --rotation: 2deg;
  animation-delay: 0.5s;
}
.review3 {
  --rotation: 2deg;
  animation-delay: 1s;
}
.review4 {
  --rotation: -2deg;
  animation-delay: 1.5s;
}
/* section 5 */
.section5 {
  max-width: 85%;
  margin: 50px auto;
  background: var(--darkblue);
  border-radius: 30px;
  padding: 80px 0;
  color: var(--white);
  text-wrap: balance;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section5 .title h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.accordion-item {
  background: transparent;
  border: none;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  margin: 5px 0 0 0;
}
.accordion-item:first-of-type, .accordion-item:last-of-type, .accordion-item:last-of-type>.accordion-collapse {
  border-radius: 0px;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed, .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-radius: 0px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border-radius: 0px;
  margin: 0 0 5px 0;
}
.accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--purple);
  border-radius: 20px !important;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed)::after {
  filter: none;
}
.accordion-collapse.show {
  border-bottom: 1px solid var(--white);
}
.accordion-body {
  padding: 10px 20px 20px 20px;
}
.accordion-body p {
  margin: 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 300;
}
/* section6 */
.section6 {
  padding: 40px 0;
}
.section6 .title h3 {
  text-wrap: balance;
}
.toggle {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.toggle h6 {
  margin: 0;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}
.toggle h6 img {
  height: 30px;
  margin-left: 5px;
}
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3.7em;
  height: 1.8em;
}
.switch input {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  transition: .2s;
  border-radius: 30px;
  border: 1px solid var(--red);
}
.slider:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  border-radius: 20px;
  left: 0.2em;
  bottom: 0.15em;
  background: var(--red);
  transition: .4s;
}
.toggle input:checked + .slider::before {
  background: var(--blue);
}
.toggle input:checked + .slider {
  border: 1px solid var(--blue);
}
.toggle input:focus + .slider {
  box-shadow: 0 0 1px var(--secondary-container);
}
.toggle input:checked + .slider:before {
  transform: translateX(1.8em);
}
.vant-txt {
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  width: 400px;
  margin-top: 20px;
}
.withus {
  border: 1px solid var(--blue);
}
.without {
  border: 1px solid var(--red);
}
.vant-txt ul {
  padding: 0 0 0 10px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
.vant-txt ul li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 300;
}
.withus ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  aspect-ratio: 1;
  background: url('/img/icons/arrow-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.without ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  aspect-ratio: 1;
  background: url('/img/icons/arrow-red.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sec6-img {
  text-align: center;
  position: relative;
}
.sec6-img::before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: '';
  width: 400px;
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.sec6-img img {
  width: 350px;
  position: relative;
  z-index: 20;
}
/* footer */
.footer {
  max-width: 85%;
  margin: 50px auto 0 auto;
  background: var(--darkblue);
  border-radius: 30px;
  color: var(--white);
  padding: 0px 40px;
}
.footer-img {
  text-align: center;
}
.footer-img img {
  max-width: 90%;
  margin-top: -50px;
  margin-bottom: 30px;
}
.footer-txt {
  text-align: right;
}
.footer-txt hr{
  margin: 0 0 0 auto;
}
.footer-txt h3 {
  color: var(--white);
}
.footer-txt button {
  min-width: 200px;
  height: 45px;
  border-radius: 50px;
  padding: 0 30px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  color: var(--white);
  background: var(--blue);
  transition: all 0.4s ease;
  margin-top: 30px;
}
.footer-txt button:hover {
  transform: scale(1.05);
  background: var(--white);
  color: var(--darkblue);
}
/* messages */
.message-box {
  max-width: 500px;
  margin: 0 0 0 auto;
}
#contactform .message h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
#contactform .message img {
  width: 80%;
  max-width: 95%;
  margin: 20px auto;
}
#contactform .message p {
  line-height: 1.1;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
#section-ads img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(86%) saturate(2675%) hue-rotate(233deg) brightness(90%) contrast(132%);
}
/* Media Queries */
@media only screen and (max-width: 1500px) {
  .header-txt h1 {
    font-size: 45px;
  }
  .title h3 {
    font-size: 32px;
  }
  .title h6 {
    font-size: 20px;
  }
  .article-txt h3 {
    font-size: 26px;
  }
  .article-txt p {
    font-size: 15px;
  }
  .header, .section2, .section5, .footer {
    max-width: 95%;
  }
  .review1, .review3 {
    left: -4%;
  }
  .review2, .review4 {
    right: -4%;
  }
  .bullet p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) {
  .header-txt h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1240px) {
  .navmenu ul {
    gap: 0 20px;
  }
  .navmenu ul li {
    font-size: 14px;
  }
  .header-txt h3 {
    font-size: 24px;
  }
  .article-box {
    gap: 15px;
  }
  .article-small .article-txt h3 {
    font-size: 15px;
  }
  .article-txt h3 {
    font-size: 20px;
  }
  .article-txt p {
    font-size: 14px;
  }
  .article-txt button {
    min-width: 175px;
    font-size: 18px;
  }
  .review {
    transform: scale(0.7);
  }
  .review:hover {
    transform: scale(0.75);
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 36px;
  }
  .header-txt h6 {
    font-size: 14px;
  }
  .form-outer {
    width: 375px;
  }
  .title h3 {
    font-size: 26px;
  }
  .title h6 {
    font-size: 18px;
  }
  .footer-img img {
    max-width: 100%;
  }
  .review1, .review3 {
    left: -12%;
  }
  .review2, .review4 {
    right: -12%;
  }
}
@media only screen and (max-width: 991px) {
  .logo img {
    height: 35px;
  }
  .navmenu ul li {
    font-size: 12px;
  }
  .review1, .review3 {
    left: -16%;
  }
  .review2, .review4 {
    right: -16%;
  }
  .review {
    transform: scale(0.6);
  }
  .review:hover {
    transform: scale(0.65);
  }
  .sec6-img img {
    max-width: 80%;
  }
  .sec6-img::before {
    width: 300px;
  }
  .vant-txt{
    width: 100%;
  }
  .vant-txt ul li {
    font-size: 13px;
  }
  .toggle h6 {
    font-size: 16px;
  }
  .toggle h6 img {
    height: 25px;
  }
  .accordion-body p {
    font-size: 14px;
  }
  .article-small {
    width: 100%;
    flex-direction: row;
    display: flex;
  }
  .article-medium .article-txt {
    padding: 30px 15px;
  }
  .article2 {
    width: 90%;
  }
  .article-small .article-txt {
    text-align: left;
  }
  #contactform {
    padding: 35px 25px;
  }
  #contactform h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 880px) {
  .title h3 {
    font-size: 24px;
  }
  .title h6 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .nav .container {
    max-width: 280px;
  }
  .nav, .header, .title, .footer, .section1 .title {
    text-align: center;
  }
  .header {
    min-height: 750px;
  }
  .title hr{
    margin: 0 auto;
  }
  .form-outer {
    width: 400px;
    max-width: 95%;
    margin: 30px auto 0 auto;
  }
  .message-box {
    margin: 30px auto 0 auto;
  }
  #contactform {
    padding: 40px 30px;
  }
  .article1 {
    aspect-ratio: 2.5/1;
  }
  .article-small {
    width: 48%;
    flex-direction: column;
    display: flex;
  }
  .article-box {
    margin-top: 20px;
  }
  .section1 {
    padding: 40px 0;
  }
  .title h3 {
    font-size: 28px;
  }
  .title h6 {
    font-size: 18px;
  }
  .section2 {
    padding: 60px 25px 100px 25px;
  }
  .section2 .title h6 {
    margin-bottom: 40px;
  }
  .article-txt, .article-small .article-txt {
    text-align: center;
  }
  .review-box {
    position: unset;
  }
  .section4 {
    padding: 0;
    margin-top: 40px;
  }
  .section4 .container {
    height: auto;
    min-height: auto;
  }
  .review {
    transform: scale(0.85);
  }
  .review:hover {
    transform: scale(0.9);
  }
  .review-slider {
    position: relative;
    z-index: 33;
  }
  .review-slider .slick-track {
    padding-top: 50px;
  }
  .partner-wrapper {
    margin-top: 40px;
  }
  .section3 {
    padding: 40px 0;
  }
  .section5 {
    padding: 60px 25px;
    margin: 30px auto;
  }
  .accordion {
    margin-top: 30px;
  }
  .toggle {
    justify-content: center;
  }
  .vant-txt {
    width: 400px;
    margin: 30px auto 60px auto;
  }
  .footer {
    padding: 50px 25px;
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 500px) {
  .header-txt h1 {
    font-size: 34px;
  }
  .header-txt h3 {
    font-size: 22px;
  }
  .section5 {
    padding: 50px 25px;
  }
  .title h3 {
    text-wrap: balance;
  }
}
@media only screen and (max-width: 455px) {
  .header-txt h1, .header-txt h3 {
    margin-bottom: 15px;
  }
  .header {
    min-height: auto;
  }
  .article-small {
    width: 100%;
    flex-direction: row;
    display: flex;
  }
  .bullet h6 {
    font-size: 16px;
  }
  .bullet p {
    font-size: 13px;
  }
  .title h6 {
    font-size: 16px;
  }
  .sec4-txt p {
    font-size: 14px;
  }
  .accordion-button {
    font-size: 16px;
  }
  .article2 {
    width: 121%;
  }
}
@media only screen and (max-width: 414px) {
  .header-txt h1 {
    font-size: 32px;
  }
  #contactform h3 {
    font-size: 18px;
  }
  #contactform h5 {
    font-size: 14px;
  }
  .title h3 {
    font-size: 24px;
  }
  .vant-txt {
    width: 95%;
  }
  #contactform .message h3 {
    font-size: 23px;
  }
  #contactform .message h6 {
    font-size: 15px;
  }
  #contactform .message p {
    font-size: 12px;
  }
  .article2 {
    width: 111%;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 28px;
  }
  .header-txt h3 {
    font-size: 20px;
  }
  #contactform {
    padding: 30px 20px;
  }
  .article-medium {
    flex-direction: column;
  }
  .article1, .article2 {
    width: 100%;
    aspect-ratio: 2/1;
  }
  .persona img:first-of-type {
    height: 70px;
  }
  .persona img:last-of-type {
    height: 20px;
  }
  .review h3 {
    font-size: 18px;
  }
  .review p {
    font-size: 12px;
  }
  .review h5 {
    font-size: 14px;
  }
  .toggle {
    flex-direction: column;
    margin-top: 20px;
  }
  .switch {
    margin-bottom: 20px;
  }
  .form-button, .footer-txt button {
    font-size: 16px;
  }
  .radio-buton label {
    font-size: 14px;
  }
  .form-check label {
    font-size: 9.5px;
  }
}