@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --blue: #4349ff;
  --dark-grey: #1a1a1a;
  --orange: #fe9000;
  --grey: #d9d9d9;
  --font: "Outfit", sans-serif;
}

body.modal-open {
  overflow-y: scroll !important;
}

html{
  overflow-x: hidden !important;
}

body {
  width: 100vw;
  margin: 0;
  padding: 0 !important;
  font-family: var(--font), sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  text-wrap: balance;
  z-index: -3;
  overflow-y: scroll !important;
}
.w-80 {
  max-width: 80%;
}
.bk-orange {
  background-color: var(--orange) !important;
}

a:hover {
  color: #1a1a1a;
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
}

#section-ads a {
  width: unset;
  padding: 20px;
}

.p-100 {
  padding: 100px 0;
}

button {
  transition: all 0.5s !important;
}

button:hover {
  transform: scale(1.05) !important;
}

h1 {
  color: var(--dark-grey, #1a1a1a);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  color: var(--dark-grey, #1a1a1a);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
}

h3 {
  color: var(--blue, #4349ff);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}

p {
  color: var(--dark-grey, #1a1a1a);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

ul {
  line-height: 100%;
}

ul li {
  margin-bottom: 5px;
}

.box {
  border-radius: 30px;
  background: white;
  box-shadow: 0 0 30px 0 rgba(67, 73, 255, 0.15);
}

/* -------------Section-1 */

.section-1 {
  background-color: #eef2ff;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.bk-blue {
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 0;
  width: 60vw;
}

.section-1 h1 {
  color: var(--blue, #4349ff);
  font-size: 40px;
  font-weight: 700;
  margin: 40px 0 35px;
  max-width: 640px;
  text-align: left;
}

.section-1 p {
  color: var(--blue, #4349ff);
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

.section-1 p b {
  font-weight: 900;
}

.google-badge {
  border-radius: 15px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 51, 0.25);
  margin: 30px 0;
  z-index: 1;
}

.ac {
  width: 370px;
  height: auto;
  position: absolute;
  left: 35%;
  top: 55%;
  z-index: 2;
}

.selo {
  position: absolute;
  left: 47%;
  top: 45%;
  z-index: 2;
  animation: pulseBadge 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* ----------form styles */

#contactform {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background: white;
  width: 370px;
  max-width: 98%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  font-family: var(--font);
  padding: 40px 10px 60px;
  margin: 10% auto;
}

#contactform h1 {
  color: var(--Main-color-2, #4349ff);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 7px;
}

#contactform p {
  color: var(--dark-grey, #1a1a1a);
  font-size: 16px;
  font-weight: 600;
  margin: 5px auto 25px;
  text-wrap: balance;
  line-height:100%;
}

#contactform h2 {
  color: var(--dark-grey, #1a1a1a);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

#contactform label,
#contactform #step-5 input,
#contactform select,
#popup-contactform label,
#popup-contactform #popup-step-7 input,
#popup-contactform select {
  border-radius: 10px;
  width: 240px;
  position: relative;
  font-size: 18px;
  user-select: none;
  color: var(--dark-grey, #1a1a1a);
  font-weight: 500;
  margin: 5px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  height: 45px;
  flex-direction: row-reverse;
  justify-content: flex-end;
  justify-content: center;
  border: 2px solid var(--blue);
  transition: all 0.5s;
  cursor: pointer;
  padding: 0 10px;
}

#contactform label:hover,
#contactform label:has(input[type="radio"]:checked),
#popup-contactform label:hover,
#popup-contactform label:has(input[type="radio"]:checked) {
  transform: scale(1.05);
  background: var(--blue);
  color: white;
}

#contactform input,
#popup-contactform input {
  position: relative;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.form-step {
  display: none;
}

.form-step.active {
  display: flex;
  justify-content: center;
}

.form-crtl button {
  background: none;
  border: none;
}

.form-crtl .prev {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.form-crtl .submit-cta {
  display: none;
  width: 165px;
  height: 40px;
  background-color: var(--blue);
  color: white;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  left: 28%;
}

.submit-cta {
  display: none;
}

#contactform #step-5 input {
  display: inline-block;
  opacity: 1;
}

.form-check label {
  color: var(--dark-grey, #1a1a1a) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 100% !important;
  border: none !important;
  display: inline-block !important;
  text-align: left !important;
  opacity: 1;
  cursor: pointer;
  display: inline-block;
  width: 330px !important;
}

.form-check label span {
  width: 300px !important;
  margin: 0 auto;
  text-align: center;
}

.form-check label:hover {
  background-color: transparent !important;
  transform: scale(1) !important;
}

.form-check input {
  display: inline-block !important;
}

.form-check {
  text-align: center;
  padding: 0;
  margin: 10px auto 25px;
}

.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 1;
  cursor: pointer !important;
  left: 0 !important;
  height: 12px !important;
  width: 12px !important;
margin: 0 5px!important;
}

.checkmark {
  position: absolute;
  top: -1px;
  background-color: transparent;
  border-radius: 3px;
  padding-right: 5px;
  color: var(--blue);
}

#contactform label.error,
#popup-contactform label.error {
  border: none !important;
  color: red !important;
  font-size: 10px !important;
  margin: 2px !important;
  height: 10px !important;
  text-align: center !important;
}

#contactform label.error:hover,
#popup-contactform label.error:hover {
  transform: scale(1) !important;
  background-color: transparent !important;
}

/* Section-2 */

.section-2 {
  padding: 115px 0;
}

.section-2 .box {
  min-height: 490px;
  max-width: 1240px;
  margin: 0 auto;

  overflow: hidden;
}

.section-2 .box .content {
  padding: 60px 0 60px 90px !important;
}

.section-2 h2 {
  margin: 20px auto 45px;
}
.section-2 .advantages {
  max-width: 330px;
  margin: 10px 0;
  padding: 0 10px;
}

.section-2 .advantages img {
  margin: 0 20px;
}

.section-2 button {
  border-radius: 20px;
  background: var(--orange, #fe9000);
  border: none;
  color: white;
  font-size: 24px;
  font-weight: 700;
  width: 285px;
  height: 60px;
  margin: 0px 25px;
}
ß .section-2 .bk-house {
  overflow: hidden;
}

.section-2 .bk-house img {
  max-height: 490px !important;
  max-width: 110%;
}

/* Section-3 */
.section-3 {
  text-align: center;
  background: radial-gradient(
    106.76% 58.38% at 50% 58.38%,
    #b8baff 0%,
    rgba(250, 245, 245, 0) 72.06%
  );
  min-height: 650px;
}

.caption {
  width: 435px;
  max-width: 90%;
  height: 60px;
  padding: 5px;
  border-radius: 10px;
  margin: 20px auto;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.caption p {
  width: -webkit-fill-available;
  margin: 0;
  font-size: 20px;
  cursor: pointer;
  padding: 0 40px;
  height: 48px;
  align-items: center;
  display: flex;
  align-content: center;
  justify-content: center;
}

.caption p:nth-child(1) {
  border-radius: 5px;
  background: var(--blue);
  color: white;
}

.caption p:nth-child(2) {
  padding: 5px 10px;
  border-radius: 5px;
  background: white;
}

.caption:has(p:nth-child(2):hover) ~ .list-compare .right-compare,
.caption p:nth-child(2):hover {
  font-weight: 700;
  background-color: white;
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}

.caption:has(p:nth-child(2):hover) ~ .list-compare .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.caption:has(p:nth-child(1):hover) ~ .list-compare .left-compare,
.caption p:nth-child(1):hover {
  font-weight: 700;
  transform: scale(1.01);
}

.caption:has(p:nth-child(1):hover) ~ .list-compare .right-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.list-compare {
  width: 90%;
  padding: 6px 8px;
  border-radius: 10px;
  margin: 15px auto;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.left-compare,
.right-compare {
  font-size: 20px;
  transition: all 0.4s ease;
}

.left-compare {
  width: 45%;
  text-align: center;
  padding: 7px 5px;
  border-radius: 5px;
  background: var(--blue);
  color: white;
}

.right-compare {
  font-weight: 500;
  width: 54%;
  padding: 7px 5px;
  border-radius: 5px;
  background: white;
}

.right-compare:hover {
  font-weight: 700;
  color: grey;
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}

.list-compare:has(.right-compare:hover),
.list-compare:has(.left-compare:hover) {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 0px rgba(27, 38, 117, 0.4);
}

.list-compare:has(.right-compare:hover) .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.left-compare:hover {
  font-weight: 700;
  transform: scale(1.01);
  background-color: var(--orange);
}

.list-compare:has(.left-compare:hover) .right-compare {
  opacity: 0.3;
  transform: scale(0.95);
}

.section-3 h1 span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--Main-color-2, #4349ff);
  text-decoration-thickness: 20%;
  text-underline-offset: 10%;
  text-underline-position: from-font;
}

.section-3 h2 {
  margin: 20px auto 30px;
}

.section-3 button {
  background-color: var(--blue);
  width: 430px;
  max-width: 90%;
  line-height: 100%;
  height: 60px;
  border-radius: 20px;
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  border: none;
  margin: 20px auto 0;
}
.section-3 button:hover {
  background-color: var(--orange);
}

/* form-popup */
#savingsModal .box {
  width: 700px;
  max-width: 100%;
  min-height: 500px;
  padding: 60px 0;
}

.modal-content {
  display: flex;
  background-color: white !important;
  color: var(--dark-grey) !important;
  justify-content: center;
  align-items: center;
}

#savingsModal .modal-header {
  border: none !important;
  text-align: center;
}

#savingsModal .btn-close,
#Politica .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px !important;
  height: 40px !important;
  opacity: 1 !important;
  background-size: 25px !important;
  color: var(--dark-grey);
  background-color: transparent !important;
  font-size: 85px;
  opacity: 1 !important;
}

#popup-contactform label {
  height: 50px;
  margin: 5px;
}

#popup-contactform #popup-step-1 label {
  width: 200px;
}

#popup-contactform #popup-step-5 label,
#popup-contactform #popup-step-6 label {
  width: 150px;
}

#popup-contactform h1 {
  color: var(--dark-grey, #1a1a1a);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

#popup-contactform p {
  width: 80%;
  max-width: 430px;
  color: var(--dark-grey, #1a1a1a);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

#popup-contactform #popup-step-1 h1 {
  max-width: 340px;
}

#popup-contactform button {
  background-color: var(--blue);
  width: 215px;
  height: 60px;
  border-radius: 20px;
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  border: none;
  margin: 20px auto 0;
}

#popup-contactform .form-crtl button {
  width: unset;
  background: none;
  border: none;
}

#popup-contactform .form-crtl .submit-cta {
  background-color: var(--blue);
  width: 215px;
  height: 60px;
  color: white;
  font-size: 24px;
  font-weight: 700;
  left: 34%;
}

#popup-contactform .form-crtl {
  display: flex;
}

#popup-contactform .form-step.active {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#popup-contactform #popup-step-3 h1,
#popup-contactform #popup-step-3 p,
#popup-contactform #popup-step-4 h1,
#popup-contactform #popup-step-4 p,
#popup-contactform #popup-step-5 h1,
#popup-contactform #popup-step-5 p,
#popup-contactform #popup-step-6 h1,
#popup-contactform #popup-step-6 p,
#popup-contactform #popup-step-7 h1 {
  display: none;
}

#popup-contactform #popup-step-7 h2 {
  margin-bottom: 10px;
}

#popup-contactform #popup-step-7 input {
  display: inline-block;
  opacity: 1;
}

#popup-contactform .form-step h2 {
  font-size: 28px;
  font-weight: 600;
  width: 50%;
  text-wrap: balance;
  margin-bottom: 30px;
}

#popup-contactform #popup-step-5 h2,
#popup-contactform #popup-step-6 h2 {
  width: 60%;
}
#popup-contactform .form-check label {
  width: 430px !important;
  max-width: 80%;
}

/* Politica-modal */

#Politica .modal-header,
#Politica .modal-footer {
  width: 100% !important;
  border: none !important;
}

#Politica .modal-header {
  padding: 50px 50px 0 !important;
}

#Politica .modal-footer {
  padding: 0 50px 20px !important;
}

#Politica button {
  background-color: var(--blue);
  width: 145px;
  height: 40px;
  border-radius: 10px;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border: none;
  margin: 20px auto 0;
}

#Politica .modal-inner-content {
  padding: 0 25px 0 !important;
  overflow-y: auto;
}

/* width */
#Politica .modal-inner-content::-webkit-scrollbar {
  width: 12px;
}

/* Track */
#Politica .modal-inner-content::-webkit-scrollbar-track {
  background: #d9d9d9;
}

/* Handle */
#Politica .modal-inner-content::-webkit-scrollbar-thumb {
  background: var(--blue);
}

/* Handle on hover */
#Politica .modal-inner-content::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

#Politica .modal-title {
  color: var(--dark-grey, #1a1a1a);
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

#Politica .modal-body {
  padding: 30px 25px 0;
}

#Politica h1 {
  font-size: 20px;
  text-align: left;
  font-weight: 700;
}

#Politica h2 {
  font-size: 18px;
  text-align: left;
  font-weight: 600;
}

/* Section-4 */

#section-4 {
  min-height: 450px;
}

.section-4 h2 {
  margin: 20px auto 0;
}

#section-4 .slider-1 .slick-list {
  padding: 50px 0 20px;
}

#section-4 .slider-1 .slick-slide {
  padding: 0;
}

#section-4 .slider-1 .d-flex {
  justify-content: center;
}

#section-4 .slider-1 .flip-card {
  width: 320px;
  min-height: 220px;
  max-width: 100%;
  perspective: 1200px;
  cursor: pointer;
}

#section-4 .slider-1 .flip-card-inner {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 220px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

#section-4 .slider-1 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

#section-4 .slider-1 .flip-card-front,
#section-4 .slider-1 .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  min-height: 220px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#section-4 .slider-1 .flip-card-front {
  z-index: 2;
}

#section-4 .slider-1 .flip-card-back {
  transform: rotateY(180deg);
  justify-content: center;
  text-align: center;
  padding: 35px 28px;
}

#section-4 .slider-1 .box {
  width: 320px;
  min-height: 220px;
  padding: 35px 15px 35px 35px;
  justify-content: space-between;
}

#section-4 .slider-1 .box img {
  max-height: 117px;
  width: auto;
}

#section-4 .slider-1 .box .text {
  max-width: 153px;
}

#section-4 .slider-1 .box h1 {
  text-align: left;
  color: var(--blue, #4349ff);
  font-size: 32px;
  font-weight: 900;
  line-height: 100%;
}

#section-4 .slider-1 .box p {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

#section-4 .slider-1 .flip-back-text {
  line-height: 1.25;
  text-align: center;
  width: 100%;
  color: var(--dark-grey, #1a1a1a);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  line-height: normal;
}

#section-4 .slider-1 .flip-card-back {
  padding: 35px;
}
/* optional: helps avoid clipping during transform */
/* #section-4 .slider-1 .slick-list,
#section-4 .slider-1 .slick-track {
  overflow: visible;
} */

#section-4 .slider-1 .slick-dots{
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
  padding:0;
  margin:0;
  list-style:none;
}

#section-4 .slider-1 .slick-dots li{
  margin:0;
  padding:0;
  list-style:none;
}

#section-4 .slider-1 .slick-dots button{
  width:15px;
  height:15px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#d9d9d9;
  font-size:0;
}

#section-4 .slider-1 .slick-dots .slick-active button{
  background:var(--blue,#4349ff);
}

/* section-5 */
.section-5 {
  text-align: center;
  background: var(--lightgrey);
  padding: 50px 5% 65px;
}

.section-5 h1 span {
  color: var(--blue);
}

.section-5 h2 {
  padding: 15px 0;
}

.accordion,
.accordion-item,
.accordion-button {
  border: none;
  border-radius: 0;
  background: transparent;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  padding: 15px 0 !important;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-grey);
  line-height: 1.2;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button {
  color: var(--dark-grey, #1a1a1a);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease;
  padding: 15px 0 !important;
}

.accordion-button span {
  background: var(--blue);
  color: white;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  margin-right: 20px;
}

.accordion-button span p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  padding: 0;
  margin: -3px auto 0 auto;
}

.accordion-body p {
  text-align: left;
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  line-height: 110%;
}

.accordion-img {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.accordion-img img {
  max-width: 100%;
  width: 450px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  cursor: pointer;
}

#simu1,
#simu2,
#simu3,
#simu4,
#simu5 {
  display: none;
}

#simu1.fade-in,
#simu2.fade-in,
#simu3.fade-in,
#simu4.fade-in,
#simu5.fade-in {
  display: block;
  opacity: 1;
}

/* Footer */
.footer {
  background-color: var(--blue);
  color: white;
  min-height: 350px;
}

.footer h1 {
  color: #fff;
  text-align: left;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  max-width: 530px;
}

.footer button {
  background-color: white;
  color: var(--dark-grey);
  width: 390px;
  height: 80px;
  border-radius: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  border: none;
}

.footer button:hover {
  background-color: white;
  color: var(--dark-grey);
}

.footer h1 span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: #fff;
  text-decoration-thickness: 20%;
  text-underline-offset: 10%;
  text-underline-position: from-font;
}

/* Thanks page */

.ty-message-box h1 {
  text-align: center !important;
  font-size: 30px !important;
  margin-bottom: 20px !important;
}

.ty-message-box {
  padding: 40px !important;
}

.ty-message-box p {
  margin: 5px auto !important;
  font-size: 20px !important;
}

/* Media queries */
@media screen and (max-width: 1200px) {
  /* section-1 */
  .section-1 h1 {
    font-size: 35px;
  }
  .ac {
    width: 275px;
  }
  .selo {
    position: absolute;
    left: 49%;
    top: 50%;
    width: 120px;
  }
  /* section-2 */
  .section-2 .box .content {
    padding: 60px 0 60px 40px !important;
  }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 991px) {
  /* section-1 */
  .bk-blue {
    bottom: -40%;
    right: unset;
    width: 800px;
    transform: rotate(90deg);
  }

  .section-1 h1,
  .section-1 p {
    text-align: center;
  }

  .section-1 .headline {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ac {
    position: unset;
    margin-top: 5%;
    max-width: 65vw;
    width: 250px;
  }

  .selo {
    left: 55%;
    top: 35%;
    max-width: 30vw;
    width: 120px;
  }

  .p-100 {
    padding: 50px 0 0;
  }

  .section-1 h1 {
    font-size: 30px;
    margin: 25px 0 20px;
  }

  .section-1 p {
    font-size: 18px;
  }

  .google-badge {
    margin: 10px 0;
  }

  /* section-2 */
  .section-2 .box .content {
    padding: 60px 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  /* footer */
  .footer h1 {
    font-size: 25px;
    text-align: center;
  }
  .footer button {
    height: 60px;
    width: 300px;
    max-width: 90%;
    font-size: 25px;
    margin: 20px auto;
  }

  .footer .container {
    justify-content: center !important;
  }
}

@media screen and (max-width: 768px) {
  /* section-1 */
  .selo {
    left: 55%;
    top: 38%;
  }

  .bk-blue {
    bottom: -45%;
  }
  /* section-3 */
  .caption {
    width: 435px;
  }
}

@media screen and (max-width: 500px) {
  /* general style */
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 18px;
  }
  /* section-1 */
  .ac {
    display: none;
  }
  .selo {
    left: 75%;
    top: 30%;
  }
  /* section-3 */
  .caption p,
  .left-compare,
  .right-compare {
    font-size: 18px;
  }

  /* pop up form */

  #popup-contactform #popup-step-5 h2,
  #popup-contactform #popup-step-6 h2,
  #popup-contactform .form-step h2 {
    width: 90%;
  }
  #popup-contactform .form-crtl .submit-cta {
    left: 28%;
  }
}

@media screen and (max-width: 425px) {
  /* section-1 */
  .selo {
    left: 75%;
    top: 34%;
  }
  /* section-2 */
  .section-2 .box .content {
    padding: 40px 0 !important;
  }
}

@media screen and (max-width: 375px) {
  .container {
    padding: 0;
  }
  /* section-1 */
  .selo {
    left: 74%;
    top: 35%;
  }
  .bk-blue {
    bottom: -30%;
    height: 800px;
    width: unset;
  }

  /* section-2 */
  .section-2 .box .advantages {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-2 .advantages img {
    margin: 20px;
  }

  /* section-3 */
  .caption p,
  .left-compare,
  .right-compare {
    font-size: 16px;
  }

  .caption p {
    padding: 0 2px !important;
  }

  .caption,
  .list-compare {
    max-width: 100%;
    width: unset;
  }
  #section-4 .slider-1 .box img {
    max-height: 100px !important;
  }
 
  #section-4 .slider-1 .box img {
    max-width: 30%;
  }
  #section-4 .slider-1 .box p {
    font-size: 20px;
  }
  #section-4 .slider-1 .box .text {
    max-width: 65%;
  }
}
