* {
  box-sizing: border-box;
  line-height: 120%;
}

html,
body {
  font-size: 16px;
  width: 100%;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 0 !important;
  margin: 0 !important;
}

img {
  width: 100%;
}

button,
a {
  background: transparent;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

button:hover,
button:visited,
button:focus,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
}

span {
  font-family: inherit;
  font-weight: inherit;
}

p {
  font-family: inherit;
  font-weight: inherit;
}

.wrapperMain {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

#header {
  display: flex;
  max-width: 1440px;
  padding: 0 117.37px;
  margin: 36px auto 0;
  align-items: center;
  position: relative;
}
#header .logo {
  background-image: url("../../assets/img/mbank-logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 155px;
  height: 58px;
  flex-shrink: 0;
}
#header .separator {
  max-width: 1440px;
  width: 100%;
  height: 8px;
  background-image: url("../../assets/img/kv-big.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: -41.59px;
}
#header .navigation {
  font-family: "mBank";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.002em;
  color: #26221e;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#header .navigation.navigationActive {
  font-weight: 700;
  cursor: auto;
}
#header .nav1 {
  height: 24px;
  margin-left: 40px;
}
#header .nav2 {
  height: 24px;
  margin-left: 30px;
}
#header .nav3 {
  height: 24px;
  margin-left: 30px;
}
#header .nav4 {
  height: 24px;
  margin-left: 30px;
}
#header .nav5 {
  height: 24px;
  margin-left: 30px;
}
#header .btn {
  width: 37px;
  cursor: pointer;
  margin-left: auto;
}
#header span {
  display: block;
  width: 100%;
  height: 4px;
  background: #000000;
  transition: all 0.3s;
  position: relative;
}
#header span + span {
  margin-top: 8px;
  animation: ease 0.5s top forwards;
}
#header .active span:nth-child(1) {
  animation: ease 0.5s top forwards;
}
#header .not-active span:nth-child(1) {
  animation: ease 0.5s top-2 forwards;
}
#header .active span:nth-child(2) {
  animation: ease 0.5s scaled forwards;
}
#header .not-active span:nth-child(2) {
  animation: ease 0.5s scaled-2 forwards;
}
#header .active span:nth-child(3) {
  animation: ease 0.5s bottom forwards;
}
#header .not-active span:nth-child(3) {
  animation: ease 0.5s bottom-2 forwards;
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 12px;
    transform: rotate(0);
  }
  100% {
    top: 12px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 12px;
    transform: rotate(45deg);
  }
  50% {
    top: 12px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 12px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 12px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
#header .desktop {
  display: flex;
}
#header .mobile {
  display: none;
}
#header .menuMobile {
  width: 100%;
  display: none;
  flex-flow: column;
  align-items: flex-end;
  background-color: #ffffff;
  padding: 30px 90px 20px 30px;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 1000;
  transition: all 0.5s;
}
#header .menuMobileHide {
  display: none;
  right: -100%;
  transition: all 0.5s;
}

@media screen and (max-width: 1300px) {
  #header {
    padding: 0 90px;
  }
}
@media screen and (max-width: 1200px) {
  #header .menuMobileHide {
    display: none;
  }
  #header .desktop {
    display: none;
  }
  #header .mobile {
    display: block;
  }
  #header .nav1 {
    margin-left: unset;
    text-align: left;
  }
  #header .nav2 {
    margin-left: unset;
    text-align: left;
  }
  #header .nav3 {
    margin-left: unset;
    text-align: left;
  }
  #header .nav4 {
    margin-left: unset;
    text-align: left;
  }
  #header .nav5 {
    margin-left: unset;
    text-align: left;
  }
  #header .navigationActive {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #header .navigation {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1000px) {
  #header {
    padding: 0 40px;
  }
  #header .menuMobile {
    padding: 30px 40px 20px 30px;
    top: 47px;
  }
  #header .separator {
    height: 7px;
  }
  #header .navigationActive {
    font-size: 18px;
    margin-bottom: 8px;
  }
  #header .navigation {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 900px) {
  #header {
    margin-top: 28.8px;
  }
  #header .logo {
    width: 124px;
    height: 46.4px;
  }
}
@media screen and (max-width: 800px) {
  #header .separator {
    height: 6px;
  }
}
@media screen and (max-width: 600px) {
  #header {
    padding: 0 20px;
    margin-top: 21px;
  }
  #header .menuMobile {
    padding: 20px;
    top: 40px;
  }
  #header .navigationActive {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #header .navigation {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #header .logo {
    width: 97px;
    height: 37.12px;
  }
  #header .separator {
    height: 5px;
  }
  #header .btn {
    width: 32px;
    cursor: pointer;
    margin-left: auto;
  }
  #header span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000000;
    transition: all 0.3s;
    position: relative;
  }
  #header span + span {
    margin-top: 6px;
    animation: ease 0.5s top forwards;
  }
  #header .active span:nth-child(1) {
    animation: ease 0.5s top forwards;
  }
  #header .not-active span:nth-child(1) {
    animation: ease 0.5s top-2 forwards;
  }
  #header .active span:nth-child(2) {
    animation: ease 0.5s scaled forwards;
  }
  #header .not-active span:nth-child(2) {
    animation: ease 0.5s scaled-2 forwards;
  }
  #header .active span:nth-child(3) {
    animation: ease 0.5s bottom forwards;
  }
  #header .not-active span:nth-child(3) {
    animation: ease 0.5s bottom-2 forwards;
  }
  @keyframes top {
    0% {
      top: 0;
      transform: rotate(0);
    }
    50% {
      top: 9px;
      transform: rotate(0);
    }
    100% {
      top: 9px;
      transform: rotate(45deg);
    }
  }
  @keyframes top-2 {
    0% {
      top: 9px;
      transform: rotate(45deg);
    }
    50% {
      top: 9px;
      transform: rotate(0deg);
    }
    100% {
      top: 0;
      transform: rotate(0deg);
    }
  }
  @keyframes bottom {
    0% {
      bottom: 0;
      transform: rotate(0);
    }
    50% {
      bottom: 9px;
      transform: rotate(0);
    }
    100% {
      bottom: 9px;
      transform: rotate(135deg);
    }
  }
  @keyframes bottom-2 {
    0% {
      bottom: 9px;
      transform: rotate(135deg);
    }
    50% {
      bottom: 9px;
      transform: rotate(0);
    }
    100% {
      bottom: 0;
      transform: rotate(0);
    }
  }
  @keyframes scaled {
    50% {
      transform: scale(0);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes scaled-2 {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
}
@media screen and (max-width: 400px) {
  #header .separator {
    height: 4px;
  }
}
#section1 {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 1440px;
  margin: 41.59px auto 0;
  position: relative;
}
#section1 .separator {
  max-width: 1440px;
  width: 100%;
  height: 8px;
  background-image: url("../../assets/img/kv-small.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#section1 .containerBackground {
  display: flex;
  max-width: 1440px;
  width: 100%;
  background-image: url("../../assets/img/section1-1.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 485px;
}
#section1 .containerBackground .textCenterLeft {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 48px;
  line-height: 53px;
  font-weight: 700;
  font-style: normal;
  font-family: "mBank";
  color: #ffffff;
  margin: 0 0 0 117.37px;
  position: absolute;
  top: 41%;
}
#section1 .track {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  transition: 0.6s transform ease-in-out;
}
#section1 .containerMain {
  width: 100%;
  display: flex;
  height: 0;
  flex-flow: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: height 0.7s ease-in-out, 0.2s opacity;
}
#section1 .title {
  color: #fff;
  text-align: center;
  font-family: mBank;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.3px;
  margin: 30px 0 20px 0;
  padding: 0 20px;
}
#section1 .titleBottom {
  height: 50px;
  color: #fff;
  text-align: center;
  font-family: mBank;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 30px 0 15px 0;
  padding: 0 20px;
}
#section1 .titleBottom.ok {
  color: transparent;
  background-image: linear-gradient(90deg, #00ff15 50%, #fff 50%);
  background-position: 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.5s ease-in-out;
  animation-name: goOk;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
@keyframes goOk {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
#section1 .titleBottom.bad {
  color: transparent;
  background-image: linear-gradient(90deg, #ec1c00 50%, #fff 50%);
  background-position: 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.5s ease-in-out;
  animation-name: goBad;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
@keyframes goBad {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
#section1 .bg {
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
#section1 .bg.active {
  opacity: 1;
}
#section1 .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#section1 .nextQuestion {
  max-width: 323px;
  width: calc(100% - 40px);
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "mBank";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background: #ae0000;
  border: 1px solid #ae0000;
  border-radius: 23.5px;
  cursor: pointer;
  margin: 10px 0 50px 0;
  transition: 0.3s all ease-in-out;
}
#section1 .nextQuestion.active:hover {
  color: #ae0000;
  background-color: #ffffff;
}
#section1 .nextQuestion.modal:hover {
  color: #ae0000;
  background-color: #ffffff;
}
#section1 .nextQuestion:not(.active):not(.modal) {
  opacity: 0.5;
  cursor: auto;
}
#section1 .nextQuestion:not(.margin) {
  margin: 10px 0 50px 0;
}
#section1 .nextQuestion.margin {
  margin: 10px;
}
#section1 .nextQuestion.center {
  margin: 0 auto;
}
#section1 .label {
  max-width: 323px;
  width: calc(100% - 40px);
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "mBank";
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 23.5px;
  margin: 37px 0 10px 0;
}
#section1 .row {
  width: 100%;
  display: flex;
  justify-content: center;
}
#section1 .element1 {
  max-width: 336px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s all ease-in-out;
  z-index: 1;
}
#section1 .element1.active .top {
  border-top: 4px solid #ec1c00;
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element1.active .mid {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element1.active .bottom {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
}
#section1 .element1:not(.blue).active .top {
  border-top: 4px solid #ec1c00;
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element1:not(.blue).active .mid {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element1:not(.blue).active .bottom {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
}
#section1 .element1.blue.active .top {
  border-top: 4px solid #0065b1;
  border-left: 4px solid #0065b1;
  border-right: 4px solid #0065b1;
}
#section1 .element1.blue.active .mid {
  border-left: 4px solid #0065b1;
  border-right: 4px solid #0065b1;
}
#section1 .element1.blue.active .bottom {
  border-left: 4px solid #0065b1;
  border-right: 4px solid #0065b1;
  border-bottom: 4px solid #0065b1;
}
#section1 .element1 .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-radius: 15px 15px 0px 0px;
  background-color: #fff;
  padding: 24px 38px 24px 30px;
  transition: 0.3s all ease-in-out;
  z-index: 20;
}
#section1 .element1 .top .topText {
  display: flex;
  align-items: center;
  color: #000;
  font-family: Verdana;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.577px;
  margin: 0;
}
#section1 .element1 .top .topText::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/section1-4.svg");
  width: 9px;
  height: 17px;
  margin: 2px 5px 0 0;
}
#section1 .element1 .top .topText.active span {
  background-color: rgba(236, 28, 0, 0.5);
  border-radius: 5px;
  padding: 1px 2px 2px 1px;
}
#section1 .element1 .top .imgElement1Tel {
  background-image: url("../img/section1-5.svg");
  width: 23px;
  height: 24px;
}
#section1 .element1 .mid {
  display: flex;
  height: 272px;
  justify-content: center;
  background-color: #e7e8e4;
  position: relative;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transition: 0.3s all ease-in-out;
  z-index: 21;
}
#section1 .element1 .mid .midText {
  height: -moz-fit-content;
  height: fit-content;
  color: #000;
  font-family: Verdana;
  font-size: 12.757px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.377px;
  padding: 14px 7px 7px 17px;
  background-color: #ffffff;
  border-radius: 5px 20px 20px 20px;
  margin: 23px 33px 0 29px;
}
#section1 .element1 .mid .midText.active span {
  background-color: rgba(236, 28, 0, 0.5);
  border-radius: 5px;
}
#section1 .element1 .mid .link {
  color: #5d89c6;
  font-family: Verdana;
  font-size: 12.757px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.377px;
  text-decoration-line: underline;
}
#section1 .element1 .bottom {
  width: 100%;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 22;
  background-color: #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: 0.3s all ease-in-out;
  border-radius: 0 0 30px 30px;
}
#section1 .element1 .bottom .imgBottom {
  width: 290px;
  height: 32px;
  background-image: url("../img/section1-6-1.png");
}
#section1 .element1.margin {
  margin: 0 0 0 30px;
}
#section1 .element2 {
  max-width: 321px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s all ease-in-out;
  z-index: 1;
}
#section1 .element2.active .top {
  border-top: 4px solid #ec1c00;
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element2.active .mid {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
}
#section1 .element2 .top {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-radius: 15px 15px 0px 0px;
  background-color: #005e53;
  transition: 0.3s all ease-in-out;
  padding: 17px 22px 19px 26px;
  z-index: 20;
}
#section1 .element2 .top .imgArrow {
  width: 17px;
  height: 16px;
  background-image: url("../img/section1-7.svg");
  margin: 0 6px 0 0;
}
#section1 .element2 .top .imgAvatar {
  width: 32px;
  height: 32px;
  background-image: url("../img/section1-8.svg");
  margin: 0 7px 0 0;
}
#section1 .element2 .top .topColumn {
  display: flex;
  flex-direction: column;
}
#section1 .element2 .top .topColumn .topColumnText {
  color: #fff;
  font-family: Verdana;
  font-size: 13.895px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}
#section1 .element2 .top .topColumn .topColumnTextSmall {
  color: #f1eaea;
  font-family: Verdana;
  font-size: 9.961px;
  font-style: normal;
  font-weight: 400;
  margin: 2px 0 0 0;
}
#section1 .element2 .top .topRow {
  width: 57px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 auto;
}
#section1 .element2 .top .topRow .imgTel {
  width: 20px;
  height: 20px;
  background-image: url("../img/section1-9.svg");
  margin: 0 0 3px 0;
}
#section1 .element2 .top .topRow .imgCamera {
  width: 23px;
  height: 16px;
  background-image: url("../img/section1-10.svg");
}
#section1 .element2 .mid {
  height: 355px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ebf7ff;
  position: relative;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: 0.3s all ease-in-out;
  border-radius: 0 0 15px 15px;
  z-index: 21;
}
#section1 .element2 .mid .text1 {
  border-radius: 20px 5px 20px 20px;
  background: #fff;
  color: #000;
  font-family: Verdana;
  font-size: 12.757px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.377px;
  margin: 16px 22px 12px 28px;
  padding: 14px 10px 15px 18px;
}
#section1 .element2 .mid .text1.active span {
  background-color: rgba(236, 28, 0, 0.5);
  border-radius: 5px;
}
#section1 .element2 .mid .text2 {
  border-radius: 20px;
  background: #fff;
  color: #366abb;
  font-family: Verdana;
  font-size: 12.757px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.4px;
  margin: 0 22px 12px 28px;
  padding: 14px 10px 15px 18px;
}
#section1 .element2 .mid .text2 br {
  display: none;
}
#section1 .element2 .mid .text2.active span {
  background-color: rgba(236, 28, 0, 0.5);
  border-radius: 5px;
}
#section1 .element2 .mid .bottomContainer {
  width: 280px;
  display: flex;
  justify-content: space-between;
  margin: auto 0 16px 6px;
}
#section1 .element2 .mid .bottomContainer .imgBar {
  width: 229px;
  height: 36px;
  background-image: url("../img/section1-11.png");
}
#section1 .element2 .mid .bottomContainer .imgMicro {
  width: 35px;
  height: 36px;
  background-image: url("../img/section1-12.png");
  margin: 0 0 0 6px;
}
#section1 .element2.margin {
  margin: 0 0 0 32px;
}
#section1 .element3 {
  max-width: 415px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s all ease-in-out;
  z-index: 1;
}
#section1 .element3.active .top {
  border-top: 4px solid #ec1c00;
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element3.active .mid {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
}
#section1 .element3:not(.blue).active .top {
  border-top: 4px solid #ec1c00;
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element3:not(.blue).active .mid {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
}
#section1 .element3.blue.active .top {
  border-top: 4px solid #0065b1;
  border-left: 4px solid #0065b1;
  border-right: 4px solid #0065b1;
}
#section1 .element3.blue.active .mid {
  border-left: 4px solid #0065b1;
  border-right: 4px solid #0065b1;
  border-bottom: 4px solid #0065b1;
}
#section1 .element3 .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-radius: 15px 15px 0px 0px;
  background-color: #d9d9d9;
  transition: 0.3s all ease-in-out;
  padding: 18px 20px 16px 19px;
  z-index: 20;
}
#section1 .element3 .top .textContainer {
  width: 100%;
  display: flex;
  background-color: #ffffff;
  padding: 5px 16px;
  border-radius: 15px;
}
#section1 .element3 .top .textContainer .column {
  display: flex;
  flex-direction: column;
  margin: 0 10px 0 0;
}
#section1 .element3 .top .topText {
  color: #000;
  font-family: Verdana;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.377px;
  margin: 0;
}
#section1 .element3 .mid {
  display: flex;
  flex-direction: column;
  height: 349px;
  background-color: #fff;
  position: relative;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 0 0 15px 15px;
  transition: 0.3s all ease-in-out;
  padding: 20px 20px 0 25px;
  z-index: 21;
}
#section1 .element3 .mid .midText {
  color: #000;
  font-family: Verdana;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}
#section1 .element3 .mid .smallText {
  color: #000;
  font-family: Verdana;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  margin: 0;
}
#section1 .element3 .mid .link {
  color: #2987c8;
  font-family: Verdana;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}
#section1 .element3 .mid .smallLinx {
  color: #2987c8;
  font-family: Verdana;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  text-decoration-line: underline;
  margin: 0;
}
#section1 .element3 .mid .imgLogo {
  width: 78px;
  height: 30px;
  background-image: url("../img/section1-18.jpg");
  flex-shrink: 0;
  margin: 0 0 10px 0;
}
#section1 .element3 .mid .marginText {
  margin: 10px 0 0 0;
}
#section1 .element3 .bottom {
  width: 336px;
  height: 62px;
  display: flex;
  background-image: url("../img/section1-6.png");
  z-index: 22;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 0 0 30px 30px;
}
#section1 .element3.margin {
  margin: 0 0 0 30px;
}
#section1 .element4 {
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  position: relative;
  z-index: 1;
}
#section1 .element4 .top {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 10.577px 10.577px 0px 0px;
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  transition: 0.3s all ease-in-out;
  background-color: #fff;
  padding: 13px 12px 0 11px;
  z-index: 20;
}
#section1 .element4 .top .circle {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin: 0 9px 0 0;
}
#section1 .element4 .top .topColumn {
  display: flex;
  flex-direction: column;
}
#section1 .element4 .top .topColumn .textBold {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.726px;
  margin: 0;
}
#section1 .element4 .top .topColumn .textGrey {
  color: #6b6b6b;
  font-family: "Helvetica Neue";
  font-size: 11.627px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.749px;
  margin: 0;
}
#section1 .element4 .top .topRow {
  width: 16px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 10px 0 0 auto;
}
#section1 .element4 .top .topRow .dot {
  width: 4px;
  height: 4px;
  background-color: #bfbfbf;
  border-radius: 50%;
  flex-shrink: 0;
}
#section1 .element4 .mid {
  height: 355px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: relative;
  border-radius: 0 0 10.577px 10.577px;
  z-index: 21;
  padding: 13px 0px 0 0px;
  border-left: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid transparent;
  transition: 0.3s all ease-in-out;
}
#section1 .element4 .mid .text1 {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 11.283px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.808px;
  margin: 0 5px 0 14px;
}
#section1 .element4 .mid .img1 {
  width: 100%;
  height: 235px;
  background-image: url("../img/section1-19.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 11px 0 0 0;
}
#section1 .element4 .mid .img2 {
  width: 100%;
  height: 211px;
  background-image: url("../img/section1-20.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 11px 0 0 0;
}
#section1 .element4 .mid .bottomContainer {
  display: flex;
  margin: auto 0 16px 0;
  padding: 11px 0 0 7px;
}
#section1 .element4 .mid .bottomContainer .btnLearn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7f7f7f;
  font-family: "Helvetica Neue";
  font-size: 11.283px;
  font-style: normal;
  font-weight: 500;
  line-height: 14.808px;
  border-radius: 5.641px;
  background: #f2f2f2;
  flex-shrink: 0;
  padding: 5px 10px;
}
#section1 .element4.active .top {
  border-left: 4px solid #ec1c00;
  border-top: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element4.active .mid {
  border-left: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element4.margin {
  margin: 0 0 0 14px;
}
#section1 .element5 {
  max-width: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  position: relative;
  z-index: 1;
}
#section1 .element5.active .top {
  border-top: 4px solid #ec1c00;
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
}
#section1 .element5.active .mid {
  border-left: 4px solid #ec1c00;
  border-right: 4px solid #ec1c00;
  border-bottom: 4px solid #ec1c00;
}
#section1 .element5 .top {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-radius: 15px 15px 0px 0px;
  background-color: #0584fe;
  padding: 17px 22px 19px 26px;
  transition: 0.3s all ease-in-out;
  z-index: 20;
}
#section1 .element5 .top .imgArrow {
  width: 17px;
  height: 16px;
  background-image: url("../img/section1-7.svg");
  margin: 0 6px 0 0;
}
#section1 .element5 .top .imgAvatar {
  width: 32px;
  height: 32px;
  background-image: url("../img/section1-8.svg");
  margin: 0 4px 0 0;
}
#section1 .element5 .top .topColumn {
  display: flex;
  flex-direction: column;
}
#section1 .element5 .top .topColumn .imgMichal {
  width: 44px;
  height: 11px;
  background-image: url("../img/section1-13.svg");
  margin: 0 0 3px 0;
}
#section1 .element5 .top .topColumn .imgMes {
  width: 61px;
  height: 12px;
  background-image: url("../img/section1-14.svg");
  margin: 0 0 0 1px;
}
#section1 .element5 .top .topRow {
  width: 98px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 auto;
}
#section1 .element5 .top .topRow .imgTel {
  width: 22px;
  height: 22px;
  background-image: url("../img/section1-9.svg");
  margin: 0 0 3px 0;
}
#section1 .element5 .top .topRow .imgCamera {
  width: 26px;
  height: 17px;
  background-image: url("../img/section1-10.svg");
}
#section1 .element5 .top .topRow .imgInfo {
  width: 22px;
  height: 22px;
  background-image: url("../img/section1-15.svg");
}
#section1 .element5 .mid {
  height: 355px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: relative;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 0 0 15px 15px;
  z-index: 21;
  transition: 0.3s all ease-in-out;
  padding: 27px 0 0 0;
}
#section1 .element5 .mid .textContainer1 {
  display: flex;
  align-items: flex-end;
  margin: 0px 59px 10px 21px;
}
#section1 .element5 .mid .textContainer2 {
  display: flex;
  align-items: flex-end;
  margin: 0px 49px 10px 21px;
}
#section1 .element5 .mid .text1 {
  border-radius: 20px;
  background: #f0f0f0;
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 12.757px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.377px;
  margin: 0 0 0 5px;
  padding: 12px 10px 12px 15px;
}
#section1 .element5 .mid .circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #eeeef1;
  flex-shrink: 0;
}
#section1 .element5 .mid .bottomContainer {
  width: calc(100% + 8px);
  display: flex;
  justify-content: center;
  margin: auto 0 16px 0;
  border-top: 1px solid #c0b4b4;
  padding: 16px 0 0 0;
  position: relative;
  left: -4px;
}
#section1 .element5 .mid .bottomContainer .imgBar {
  width: 284px;
  height: 30px;
  background-image: url("../img/section1-16.svg");
}
#section1 .element5.margin {
  margin: 0 0 0 32px;
}
#section1 .element6 {
  max-width: 349px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  position: relative;
  z-index: 1;
}
#section1 .element6 .top {
  height: 100%;
  padding: 25px 12px 12px 44px;
  background-color: #171717;
  border: 4px solid #fff;
  border-radius: 20px;
  transition: 0.3s all ease-in-out;
  z-index: 20;
}
#section1 .element6 .imgPhone {
  width: 42px;
  height: 42px;
  background-image: url("../img/section1-17.svg");
  position: absolute;
  top: -22px;
  left: calc(50% - 22px);
}
#section1 .element6 .text1 {
  color: #fff;
  font-family: mBank;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin: 15px 0;
}
#section1 .element6 .text2 {
  color: #fff;
  font-family: mBank;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
#section1 .element6:not(.blue).active .top {
  border: 4px solid #ec1c00;
}
#section1 .element6.blue.active .top {
  border: 4px solid #0065b1;
}
#section1 .element6.margin {
  margin: 0 0 0 32px;
}
#section1 .element7 {
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  position: relative;
  z-index: 1;
}
#section1 .element7:not(.blue).active .top {
  border: 4px solid #ec1c00;
}
#section1 .element7.blue.active .top {
  border: 4px solid #0065b1;
}
#section1 .element7 .top {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 4px solid transparent;
  border-radius: 15px;
  background-color: #f5f5f5;
  padding: 20px 28px 24px 16px;
  transition: 0.3s all ease-in-out;
  z-index: 20;
}
#section1 .element7 .top .topText {
  color: #000;
  font-family: Arial;
  font-size: 12.686px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.428px;
  margin: 0 0 14px 14px;
}
#section1 .element7 .field {
  display: flex;
  border-radius: 10.572px;
  background: #fff;
}
#section1 .element7 .field .imgPhoneShop {
  width: 57px;
  height: 72px;
  background-image: url("../img/section1-22.png");
  margin: 0 13px 0 0;
}
#section1 .element7 .field .columnField {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#section1 .element7 .field .price {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 12.686px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.428px;
  white-space: nowrap;
  margin: 0 0 0 auto;
}
#section1 .element7 .field .price.active span {
  position: relative;
}
#section1 .element7 .field .price.active span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -2px;
  left: -3px;
  border-radius: 5px;
  padding: 2px 4px;
  background-color: rgba(236, 28, 0, 0.4901960784);
}
#section1 .element7 .field .textBold {
  color: #000;
  font-family: Arial;
  font-size: 12.686px;
  font-style: normal;
  font-weight: 700;
  line-height: 19.428px;
  margin: 0;
}
#section1 .element7 .field .textNormal {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 12.686px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.428px;
  margin: 0 0 20px 0;
}
#section1 .element7 .field .marginTextBoldDown {
  margin: 0 0 8px 0;
}
#section1 .element7 .field .fieldRow {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#section1 .element7 .field .smallField {
  height: 60px;
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  border-radius: 10.572px;
  border: 0.793px solid #85898d;
  padding: 3px 8px 2px 7px;
}
#section1 .element7 .field .smallField .circleFiled {
  width: 13.744px;
  height: 13.744px;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #5c5c5c;
  flex-shrink: 0;
  margin: 0 6px 0 0;
}
#section1 .element7 .field .smallField .smallFieldTextBold {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  margin: 0;
}
#section1 .element7 .field .smallField .smallFieldTextGrey {
  color: #85898d;
  font-family: "Helvetica Neue";
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  margin: 2px 0;
}
#section1 .element7 .field .smallField .marginTextBold {
  margin: 2px 0 0 0;
}
#section1 .element7 .field .smallField:nth-child(1) {
  margin: 0 10px 0 0;
}
#section1 .element7 .field .smallField:nth-child(2) {
  margin: 0 10px 0 0;
}
#section1 .element7 .field .smallField:nth-child(3) {
  margin: 10px 0 0 0;
}
#section1 .element7 .field .smallField:nth-child(4) {
  margin: 10px 0 0 10px;
}
#section1 .element7 .field .superSmallField {
  width: calc(33.3333333333% - 10px);
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10.572px;
  border: 0.793px solid #85898d;
  padding: 8px 20px 9px 10px;
}
#section1 .element7 .field .superSmallField .circleFiled {
  width: 13.744px;
  height: 13.744px;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #5c5c5c;
  flex-shrink: 0;
  margin: 0 6px 0 0;
}
#section1 .element7 .field .superSmallField .smallFieldTextBold {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 8.458px;
  font-style: normal;
  font-weight: 400;
  line-height: 9.515px;
  margin: 0;
}
#section1 .element7 .field .superSmallField .smallFieldTextBold.noWrap {
  white-space: nowrap;
}
#section1 .element7 .field .superSmallField:nth-child(1) {
  margin: 0 10px 0 0;
}
#section1 .element7 .field .superSmallField:nth-child(2) {
  margin: 0 10px 0 0;
}
#section1 .element7 .field .superSmallField:nth-child(4) {
  margin: 10px 10px 0 0;
}
#section1 .element7 .field .superSmallField:nth-child(5) {
  margin: 10px 0 0 0;
}
#section1 .element7 .field .superSmallField.active {
  border: 2px solid #ec1c00;
}
#section1 .element7 .field .bigField {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10.572px;
  border: 0.793px solid #85898d;
  padding: 5px 8px 5px 7px;
}
#section1 .element7 .field .bigField .bigFieldTextBold {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 8.458px;
  font-style: normal;
  font-weight: 400;
  line-height: 9.515px;
  margin: 0;
}
#section1 .element7 .field .bigField .bigFieldTextBold.active span {
  position: relative;
}
#section1 .element7 .field .bigField .bigFieldTextBold.active span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1px;
  left: -2px;
  border-radius: 5px;
  padding: 1px 2px;
  background-color: rgba(236, 28, 0, 0.4901960784);
}
#section1 .element7 .field.center {
  align-items: center;
}
#section1 .element7 .field.fixedHeight1 {
  height: 190px;
}
#section1 .element7 .field.fixedHeight2 {
  height: 148px;
}
#section1 .element7 .field.padding {
  padding: 17px 20px 15px 17px;
}
#section1 .element7 .field.paddingExtra {
  padding: 17px 0 15px 17px;
}
#section1 .element7 .field + .field {
  margin: 8px 0 0 0;
}
#section1 .element7.margin {
  margin: 0 0 0 17px;
}
#section1 .answer {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  transition: 0.3s all ease-in-out;
}
#section1 .answer .mark {
  width: 43px;
  height: 43px;
  background-color: #ec1c00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: mBank;
  font-size: 30.942px;
  font-style: normal;
  font-weight: 600;
  line-height: 37.388px;
  margin: 0 0 16px 0;
  transition: 0.3s all ease-in-out;
  position: relative;
  flex-shrink: 0;
}
#section1 .answerOragne {
  width: 100%;
  border-radius: 19px;
  background-color: #ec1c00;
  z-index: 10;
}
#section1 .answerOragneFull {
  border-radius: 19px;
  background-color: #ec1c00;
  z-index: 10;
}
#section1 .answerBlue {
  border-radius: 19px;
  background-color: #0065b1;
  z-index: 10;
}
#section1 .answerBlueFull {
  border-radius: 19px;
  background-color: #0065b1;
  z-index: 10;
}
#section1 .answerText {
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}
#section1 .answerText p {
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}
#section1 .answerText li + li {
  margin: 2px 0 0 0;
}
#section1 ul {
  padding: 0 0 0 15px;
}
#section1 .answerLeft1 {
  width: 320px;
  top: -1px;
  left: 0px;
  overflow: hidden;
}
#section1 .answerLeft1 .mark {
  top: 10px;
}
#section1 .answerLeft1 .padding {
  padding: 19px 43px 20px 12px;
}
#section1 .answerLeft1.active {
  left: -280px;
  width: 320px;
  height: 412px;
}
#section1 .answerLeft1.active .mark {
  top: 0px;
}
#section1 .answerLeft2 {
  top: 12px;
  left: 0;
  overflow: hidden;
}
#section1 .answerLeft2 .padding {
  padding: 19px 33px 20px 20px;
}
#section1 .answerLeft2.active {
  left: -280px;
}
#section1 .answerLeft2Full {
  height: 95%;
  top: -50px;
  left: 0;
}
#section1 .answerLeft2Full .mark {
  top: 50px;
}
#section1 .answerLeft2Full .answerOragneFull {
  height: 90%;
}
#section1 .answerLeft2Full.active {
  height: calc(100% - 4px);
  top: -54px;
  left: -265px;
}
#section1 .answerLeft2Full.active .mark {
  top: 0px;
}
#section1 .answerLeft2Full.active .answerOragneFull {
  height: 100%;
}
#section1 .answerLeft3 {
  width: 290px;
  top: 25px;
  left: 0;
}
#section1 .answerLeft3 .padding {
  padding: 19px 33px 20px 20px;
}
#section1 .answerLeft3.active {
  left: -265px;
}
#section1 .answerLeft4 {
  top: 30px;
  left: 0;
}
#section1 .answerLeft4 .padding {
  padding: 19px 33px 20px 20px;
}
#section1 .answerLeft4.active {
  left: -280px;
}
#section1 .answerLeft5 {
  top: 12px;
  left: 0;
}
#section1 .answerLeft5 .padding {
  padding: 19px 33px 20px 20px;
}
#section1 .answerLeft5.active {
  left: -280px;
}
#section1 .answerLeft6 {
  height: 450px;
  top: -59px;
  left: 0;
  overflow: hidden;
}
#section1 .answerLeft6 .padding {
  padding: 19px 48px 38px 20px;
}
#section1 .answerLeft6 .mark {
  top: 60px;
}
#section1 .answerLeft6.active {
  height: 100%;
  left: -258px;
}
#section1 .answerLeft6.active .mark {
  top: 0px;
}
#section1 .answerLeft7 {
  top: 84px;
  left: 0;
}
#section1 .answerLeft7 .padding {
  padding: 19px 48px 20px 20px;
}
#section1 .answerLeft7.active {
  left: -250px;
}
#section1 .answerRight1 {
  top: 58px;
  right: 0;
  overflow: hidden;
}
#section1 .answerRight1 .padding {
  padding: 19px 35px 20px 35px;
}
#section1 .answerRight1.active {
  right: -280px;
  width: 300px;
}
#section1 .answerRight2 {
  top: 12px;
  right: 0;
  overflow: hidden;
}
#section1 .answerRight2 .padding {
  padding: 19px 20px 20px 35px;
}
#section1 .answerRight2.active {
  right: -280px;
}
#section1 .answerRight3 {
  top: 84px;
  right: 0;
  overflow: hidden;
}
#section1 .answerRight3 .padding {
  padding: 19px 22px 20px 33px;
}
#section1 .answerRight3.active {
  right: -280px;
  width: 300px;
}
#section1 .answerRight4 {
  top: 29px;
  right: 0;
}
#section1 .answerRight4 .padding {
  padding: 19px 20px 20px 35px;
}
#section1 .answerRight4.active {
  right: -280px;
}
#section1 .answerRight5 {
  top: 12px;
  right: 0;
}
#section1 .answerRight5 .padding {
  padding: 19px 20px 20px 35px;
}
#section1 .answerRight5.active {
  right: -280px;
}
#section1 .answerRight6 {
  top: 0px;
  height: 450px;
  right: 0;
  overflow: hidden;
}
#section1 .answerRight6 .padding {
  padding: 19px 20px 166px 50px;
}
#section1 .answerRight6.active {
  height: 100%;
  right: -258px;
}
#section1 .answerRight7 {
  top: 25px;
  right: 0;
}
#section1 .answerRight7 .padding {
  padding: 19px 15px 20px 60px;
}
#section1 .answerRight7.active {
  right: -250px;
}
#section1 .answerRight44 {
  top: 30px;
  right: 0;
}
#section1 .answerRight44.active {
  right: -235px;
}
#section1 .answerRight2Full {
  height: 95%;
  top: 0px;
  right: 0;
}
#section1 .answerRight2Full .mark {
  top: 50px;
}
#section1 .answerRight2Full .answerOragneFull,
#section1 .answerRight2Full .answerBlueFull {
  height: 90%;
}
#section1 .answerRight2Full.active {
  height: calc(100% - 4px);
  top: 0px;
  right: -265px;
}
#section1 .answerRight2Full.active .mark {
  top: 0px;
}
#section1 .answerRight2Full.active .answerOragneFull,
#section1 .answerRight2Full.active .answerBlueFull {
  height: calc(100% - 54px);
}
#section1 .inputContainer {
  display: flex;
  justify-content: center;
  margin: 17px 0 0 0;
}
#section1 .inputContainer .questionAnswer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
  border: 5px solid #8d8d8d;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
}
#section1 .inputContainer .questionAnswer:checked {
  width: 40px;
  height: 40px;
  border: 5px solid #eeeeee;
  border-radius: 50%;
  position: relative;
}
#section1 .inputContainer .questionAnswer:checked::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #eeeeee;
  position: absolute;
  top: 2px;
  left: 2px;
}
#section1 .start {
  width: 100%;
  display: flex;
  justify-content: center;
}
#section1 .start .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#section1 .start .container .titleStart {
  color: #000;
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
}
#section1 .start .container .textStart {
  color: #000;
  font-family: mBank;
  font-size: 30.559px;
  font-style: normal;
  font-weight: 400;
  line-height: 40.745px;
  letter-spacing: -0.153px;
}
#section1 .start .container .rowStart {
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
}
#section1 .start .container .columnStart {
  display: flex;
  flex-direction: column;
}
#section1 .start .container .columnStart1 {
  margin: 0 0 0 54px;
}
#section1 .start .container .imgStart {
  width: 284px;
  height: 276px;
  background-image: url("../img/section1-3.svg");
}
#section1 .imageAll {
  background-image: url("../../assets/img/finallow.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 291px;
}
#section1 .textBold3 {
  font-family: "mBank";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.01em;
  color: #000000;
  text-align: center;
  margin: 20px 0 0;
}
#section1 .textBold4 {
  font-family: "mBank";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: center;
  margin: 40px 0 0 0;
}
#section1 .textNormal5 {
  font-family: "mBank";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29.26px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
}
#section1 .btnBack {
  max-width: 323px;
  width: calc(100% - 40px);
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "mBank";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background: #ae0000;
  border-radius: 23.5px;
  cursor: pointer;
  margin: 30px 0 0 0;
}
#section1 .columnCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#section1 .score {
  width: 326px;
  height: 326px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 97px;
  background-color: #ff7e00;
  top: 42px;
}
#section1 .score .columnFlex {
  display: flex;
  flex-direction: column;
}
#section1 .score.scoreGreen {
  background: #008f20;
}
#section1 .score.scoreOrange {
  background: #ff7e00;
}
#section1 .score .text1 {
  font-family: "mBank";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
#section1 .score .textHigh {
  display: none;
}
#section1 .score .text2 {
  font-family: "mBank";
  font-style: normal;
  font-weight: 700;
  font-size: 66px;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 1440px) {
  #section1 .containerBackground {
    padding-top: 33%;
  }
  #section1 .containerBackground .textCenterLeft {
    font-size: 3.2vw;
    line-height: 3.5vw;
    margin: 0 0 0 8%;
  }
  #section1 .title {
    margin: 26px 0 30px 0;
  }
  #section1 .element3 {
    max-width: 350px;
  }
  #section1 .element3 .top {
    padding: 13px 13px 12px 13px;
  }
  #section1 .element3 .mid {
    padding: 15px 17px 0 19px;
  }
  #section1 .element3.margin {
    margin: 0 0 0 25px;
  }
  #section1 .answerLeft3 {
    top: -2px;
  }
  #section1 .answerLeft3 .padding {
    padding: 15px 34px 25px 15px;
  }
  #section1 .answerLeft3 .mark {
    top: 10px;
  }
  #section1 .answerLeft3.active {
    width: 250px;
    left: -215px;
  }
  #section1 .answerLeft3.active .mark {
    top: 0px;
  }
  #section1 .answerRight3 {
    top: 57px;
  }
  #section1 .answerRight3 .padding {
    padding: 15px 19px 18px 43px;
  }
  #section1 .answerRight3.active {
    width: 250px;
    right: -215px;
  }
  #section1 .element7 {
    max-width: 400px;
  }
  #section1 .element7 .answerText {
    font-size: 14px;
  }
  #section1 .element7 .field .price {
    margin: 0 10px 0 0;
  }
  #section1 .element7 .field .smallField {
    width: calc(50% - 10px);
  }
  #section1 .element7 .field .smallField .smallFieldTextGrey {
    font-size: 7px;
  }
  #section1 .element7 .field .superSmallField {
    width: calc(50% - 10px);
  }
  #section1 .element7 .field .superSmallField:nth-child(3) {
    margin: 10px 10px 0 0;
  }
  #section1 .element7 .field .bigField {
    width: calc(100% - 10px);
    justify-content: flex-start;
    padding: 5px 8px 5px 10px;
  }
  #section1 .element7 .field .bigField .bigFieldText1 {
    width: 55px;
  }
  #section1 .element7 .field .bigField .bigFieldText2 {
    width: 80px;
  }
  #section1 .element7 .field.padding {
    padding: 17px 0 15px 17px;
  }
  #section1 .answerLeft7 {
    width: 230px;
  }
  #section1 .answerLeft7 .padding {
    padding: 16px 45px 15px 12px;
  }
  #section1 .answerLeft7.active {
    left: -190px;
  }
  #section1 .answerRight7 {
    width: 230px;
  }
  #section1 .answerRight7 .padding {
    padding: 16px 10px 15px 45px;
  }
  #section1 .answerRight7.active {
    right: -190px;
  }
}
@media (max-width: 1350px) {
  #section1 .score {
    width: 260.8px;
    height: 260.8px;
  }
  #section1 .element4 {
    max-width: 300px;
  }
  #section1 .element4 .mid .img1 {
    height: 181px;
    margin: auto 0 0 0;
  }
  #section1 .element4 .mid .img2 {
    height: 162px;
    margin: auto 0 0 0;
  }
  #section1 .element4 .mid .bottomContainer {
    margin: 0 0 16px 0;
  }
  #section1 .element4 .answerText {
    font-size: 14px;
  }
  #section1 .answerLeft4 {
    width: 230px;
  }
  #section1 .answerLeft4 .padding {
    padding: 19px 33px 20px 12px;
  }
  #section1 .answerLeft4.active {
    left: -200px;
  }
  #section1 .answerRight4 {
    width: 230px;
  }
  #section1 .answerRight4 .padding {
    padding: 19px 15px 20px 35px;
  }
  #section1 .answerRight4.active {
    right: -200px;
  }
}
@media (max-width: 1300px) {
  #section1 .element5 {
    max-width: 280px;
  }
  #section1 .element5 .top {
    padding: 10px 13px 15px 12px;
  }
  #section1 .element5 .mid {
    padding: 14px 0 0 0;
  }
  #section1 .element5 .mid .textContainer1 {
    margin: 0px 30px 10px 12px;
  }
  #section1 .element5 .mid .textContainer2 {
    margin: 0px 20px 10px 12px;
  }
  #section1 .element5 .mid .bottomContainer .imgBar {
    width: 227px;
    height: 24px;
  }
  #section1 .element5.margin {
    margin: 0 0 0 25px;
  }
  #section1 .answerLeft5 {
    width: 220px;
    top: 2px;
  }
  #section1 .answerLeft5 .padding {
    padding: 17px 41px 20px 11px;
  }
  #section1 .answerLeft5.active {
    left: -180px;
  }
  #section1 .answerRight5 {
    width: 220px;
    top: 2px;
  }
  #section1 .answerRight5 .padding {
    padding: 17px 12px 20px 47px;
  }
  #section1 .answerRight5.active {
    right: -180px;
  }
}
@media (max-width: 1270px) {
  #section1 .element1 {
    max-width: 300px;
  }
  #section1 .element1 .top {
    padding: 12px 18px 20px 20px;
  }
  #section1 .element1 .mid .midText {
    margin: 20px 28px 0 25px;
  }
  #section1 .element1 .bottom .imgBottom {
    width: 259px;
    height: 28px;
  }
  #section1 .answerLeft1 {
    width: 300px;
    height: 350px;
    top: 0px;
  }
  #section1 .answerLeft1 .mark {
    top: 20px;
  }
  #section1 .answerLeft1 .padding {
    padding: 19px 53px 22px 12px;
  }
  #section1 .answerLeft1.active {
    width: 320px;
    height: 410px;
  }
  #section1 .answerLeft1.active .mark {
    top: 0px;
  }
  #section1 .answerRight1 {
    top: 60px;
  }
}
@media (max-width: 1250px) {
  #section1 .title {
    margin: 26px 0 40px 0;
  }
  #section1 .element2 {
    max-width: 280px;
  }
  #section1 .element2 .top {
    padding: 12px 10px 19px 6px;
  }
  #section1 .element2 .mid .text1 {
    margin: 14px 18px 10px 20px;
    padding: 9px 8px 11px 16px;
  }
  #section1 .element2 .mid .text2 {
    margin: 0 18px 10px 20px;
    padding: 9px 8px 11px 16px;
  }
  #section1 .element2 .mid .bottomContainer {
    width: calc(100% - 10px);
  }
  #section1 .element2.margin {
    margin: 0 0 0 25px;
  }
  #section1 .answerLeft2 {
    width: 250px;
    top: 9px;
  }
  #section1 .answerLeft2 .padding {
    padding: 10px 30px 20px 15px;
  }
  #section1 .answerLeft2.active {
    left: -225px;
  }
  #section1 .answerRight2 {
    width: 250px;
    height: 250px;
    top: 9px;
  }
  #section1 .answerRight2 .padding {
    padding: 10px 10px 20px 30px;
  }
  #section1 .answerRight2.active {
    height: 426px;
    right: -225px;
    overflow: visible;
  }
  #section1 .element6 {
    max-width: 280px;
  }
  #section1 .element6 .top {
    padding: 20px 12px 12px 23px;
  }
  #section1 .answerLeft6 {
    height: 585px;
    width: 240px;
  }
  #section1 .answerLeft6 .padding {
    padding: 19px 45px 15px 10px;
  }
  #section1 .answerLeft6.active {
    left: -202px;
  }
  #section1 .answerRight6 {
    width: 240px;
    height: 585px;
  }
  #section1 .answerRight6 .padding {
    padding: 19px 20px 179px 50px;
  }
  #section1 .answerRight6.active {
    right: -202px;
  }
}
@media (max-width: 1200px) {
  #section1 .row7 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .title {
    margin: 25px 0 45px 0;
  }
  #section1 .score {
    right: unset;
    top: unset;
    position: relative;
    margin-top: 40px;
  }
  #section1 .element1 {
    max-width: 250px;
  }
  #section1 .element1 .top {
    padding: 10px 13px 13px 16px;
  }
  #section1 .element1 .mid {
    height: 310px;
  }
  #section1 .element1 .mid .midText {
    margin: 15px 14px 0 13px;
  }
  #section1 .element1 .bottom {
    height: 49px;
  }
  #section1 .element1 .bottom .imgBottom {
    width: 201px;
    height: 22px;
  }
  #section1 .element1 .answerText {
    font-size: 14px;
  }
  #section1 .answerLeft1 {
    width: 250px;
    height: 385px;
    top: -8px;
  }
  #section1 .answerLeft1 .padding {
    padding: 14px 35px 34px 12px;
  }
  #section1 .answerLeft1 .mark {
    top: 65px;
  }
  #section1 .answerLeft1.active {
    left: -220px;
    width: 258px;
    height: 418px;
  }
  #section1 .answerLeft1.active .mark {
    top: 0;
  }
  #section1 .answerRight1 {
    width: 245px;
    top: 52px;
  }
  #section1 .answerRight1 .padding {
    padding: 19px 12px 20px 45px;
  }
  #section1 .answerRight1.active {
    right: -220px;
    width: 258px;
  }
  #section1 .element3 {
    max-width: 290px;
  }
  #section1 .element3 .top {
    padding: 5px 5px 7px 5px;
  }
  #section1 .element3 .top .textContainer {
    padding: 5px 7px;
  }
  #section1 .element3 .top .textContainer .column {
    margin: 0 7px 0 0;
  }
  #section1 .element3 .top .topText {
    font-size: 9px;
  }
  #section1 .element3 .answerText {
    font-size: 14px;
  }
  #section1 .answerLeft3 {
    width: 230px;
    top: 2px;
  }
  #section1 .answerLeft3 .padding {
    padding: 13px 34px 13px 15px;
  }
  #section1 .answerLeft3.active {
    width: 230px;
    left: -190px;
  }
  #section1 .answerRight3 {
    width: 230px;
    top: 61px;
  }
  #section1 .answerRight3 .padding {
    padding: 15px 10px 18px 43px;
  }
  #section1 .answerRight3.active {
    width: 230px;
    right: -190px;
  }
  #section1 .element7.margin {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 1050px) {
  #section1 .row4 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .title {
    margin: 23px 0 55px 0;
  }
  #section1 .element2 {
    max-width: 230px;
  }
  #section1 .element2 .top .imgArrow {
    width: 10px;
    height: 9.6px;
  }
  #section1 .element2 .top .imgAvatar {
    width: 19px;
    height: 19px;
  }
  #section1 .element2 .top .topColumn .topColumnText {
    font-size: 11px;
  }
  #section1 .element2 .top .topColumn .topColumnTextSmall {
    font-size: 7px;
  }
  #section1 .element2 .top .topRow {
    width: 35px;
  }
  #section1 .element2 .top .topRow .imgTel {
    width: 12px;
    height: 12px;
    margin: 0 0 2px 0;
  }
  #section1 .element2 .top .topRow .imgCamera {
    width: 14px;
    height: 16px;
  }
  #section1 .element2 .mid .text1 {
    font-size: 12px;
    line-height: 14px;
    margin: 10px 11px 5px 13px;
    padding: 6px 8px 11px 16px;
  }
  #section1 .element2 .mid .text2 {
    font-size: 12px;
    line-height: 14px;
    margin: 0 11px 5px 13px;
    padding: 6px 8px 11px 16px;
  }
  #section1 .element2 .mid .bottomContainer {
    width: 200px;
  }
  #section1 .element2 .mid .bottomContainer .imgBar {
    width: 160px;
    height: 25px;
  }
  #section1 .element2 .mid .bottomContainer .imgMicro {
    width: 24.5px;
    height: 25px;
  }
  #section1 .element2 .answerText {
    font-size: 14px;
  }
  #section1 .answerLeft2 {
    width: 200px;
    height: 380px;
    top: -59px;
  }
  #section1 .answerLeft2 .padding {
    padding: 13px 30px 45px 15px;
  }
  #section1 .answerLeft2 .mark {
    top: 80px;
  }
  #section1 .answerLeft2.active {
    left: -172px;
    height: 440px;
    overflow: visible;
  }
  #section1 .answerLeft2.active .mark {
    top: 0;
  }
  #section1 .answerRight2 {
    width: 200px;
    height: 380px;
    top: -59px;
  }
  #section1 .answerRight2 .padding {
    padding: 10px 10px 79px 30px;
  }
  #section1 .answerRight2 .mark {
    top: 80px;
  }
  #section1 .answerRight2.active {
    right: -172px;
    height: 440px;
    overflow: visible;
  }
  #section1 .answerRight2.active .mark {
    top: 0;
  }
  #section1 .element4.margin {
    margin: 20px 0 0 0;
  }
  #section1 .element4:nth-child(1) {
    right: 0;
  }
  #section1 .element4:nth-child(1).active {
    right: -20px;
  }
  #section1 .element4:nth-child(2) {
    left: 0;
  }
  #section1 .element4:nth-child(2).active {
    left: -20px;
  }
  #section1 .answerLeft4 {
    top: 0;
  }
  #section1 .answerRight4 {
    top: 0;
  }
}
@media (max-width: 1000px) {
  #section1 .title {
    margin: 23px 0 70px 0;
  }
  #section1 .row1 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .row3 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .row6 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .element1:nth-child(1) {
    right: 0;
  }
  #section1 .element1:nth-child(1).active {
    right: -110px;
  }
  #section1 .element1:nth-child(2) {
    left: 0;
  }
  #section1 .element1:nth-child(2).active {
    left: -110px;
  }
  #section1 .element1.margin {
    margin: 20px 0 0 0;
  }
  #section1 .element3.margin {
    margin: 20px 0 0 0;
  }
  #section1 .element6.margin {
    margin: 30px 0 0 0;
  }
  #section1 .answerRight6 {
    height: 405px;
  }
  #section1 .answerRight6 .padding {
    padding: 19px 20px 59px 50px;
  }
}
@media (max-width: 950px) {
  #section1 .row5 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .element5.margin {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 850px) {
  #section1 .titleBottom {
    height: 60px;
  }
  #section1 .row2 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .element2.margin {
    margin: 20px 0 0 0;
  }
  #section1 .answerRight2 {
    width: 200px;
    height: 380px;
    top: 0;
  }
  #section1 .answerRight2 .padding {
    padding: 10px 10px 79px 30px;
  }
  #section1 .answerRight2 .mark {
    top: 0px;
  }
  #section1 .answerRight2 .answerOragne {
    position: relative;
    top: -59px;
  }
  #section1 .answerRight2.active {
    right: -172px;
    height: 440px;
    overflow: visible;
  }
  #section1 .answerRight2.active .mark {
    top: -53px;
  }
}
@media (max-width: 800px) {
  #section1 .start .container {
    width: 100%;
    padding: 0 20px;
  }
  #section1 .start .container .rowStart {
    width: 100%;
  }
  #section1 .start .container .titleStart {
    font-size: 36px;
  }
  #section1 .start .container .textStart {
    font-size: 24px;
    line-height: 32px;
  }
  #section1 .start .container .imgStart {
    width: 227.2px;
    height: 220.8px;
  }
  #section1 .score {
    width: 211.2px;
    height: 211.2px;
  }
  #section1 .textBold3 {
    font-size: 34px;
    line-height: 36px;
  }
  #section1 .textBold4 {
    font-size: 20px;
    line-height: 24px;
  }
  #section1 .textNormal5 {
    font-size: 20px;
    line-height: 24px;
  }
  #section1 .element7 {
    max-width: 300px;
  }
  #section1 .element7 .field .smallField {
    width: 100%;
  }
  #section1 .element7 .field .smallField .smallFieldTextGrey {
    font-size: 8px;
  }
  #section1 .element7 .field .smallField:nth-child(2) {
    margin: 10px 10px 0 0;
  }
  #section1 .element7 .field .smallField:nth-child(3) {
    margin: 10px 10px 0 0;
  }
  #section1 .element7 .field .smallField:nth-child(4) {
    margin: 10px 10px 0 0;
  }
  #section1 .element7 .field .bigField {
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #section1 .element7 .field .bigField .bigFieldText1 {
    width: auto;
  }
  #section1 .element7 .field .bigField .bigFieldText2 {
    width: auto;
  }
  #section1 .element7 .field .bigField .bigFieldText3 {
    margin: 10px 0 0 0;
  }
  #section1 .element7 .field .textBold {
    font-size: 11px;
    line-height: 18px;
  }
  #section1 .element7 .field .textNormal {
    font-size: 11px;
    line-height: 18px;
  }
  #section1 .element7 .field .price {
    font-size: 12px;
  }
  #section1 .element7 .field.fixedHeight1 {
    height: auto;
  }
  #section1 .element7 .field.fixedHeight2 {
    height: auto;
  }
  #section1 .element7 .field.padding1 {
    padding: 17px 0 0 17px;
  }
}
@media (max-width: 700px) {
  #section1 .containerBackground {
    padding-top: 230px;
  }
  #section1 .containerBackground .textCenterLeft {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 0 56px;
  }
  #section1 .title {
    font-size: 28px;
    line-height: 38px;
  }
  #section1 .titleBottom {
    height: 80px;
    font-size: 18px;
    line-height: 22px;
  }
  #section1 .element3:nth-child(1) {
    right: 0;
  }
  #section1 .element3:nth-child(1).active {
    right: -95px;
  }
  #section1 .element3:nth-child(2) {
    left: 0;
  }
  #section1 .element3:nth-child(2).active {
    left: -95px;
  }
  #section1 .element4 {
    max-width: 240px;
  }
  #section1 .element4 .answerText {
    font-size: 13px;
  }
  #section1 .element4 .top {
    padding: 9px 9px 0 5px;
  }
  #section1 .element4 .mid {
    height: auto;
  }
  #section1 .element4 .mid .text1 {
    margin: 0 5px;
  }
  #section1 .element4 .mid .img1 {
    height: 147px;
    margin: 10px 0 0 0;
  }
  #section1 .element4 .mid .img2 {
    height: 132px;
    margin: 10px 0 0 0;
  }
  #section1 .element4 .mid .bottomContainer {
    margin: auto 0 16px 0;
    padding: 11px 0 0 11px;
  }
  #section1 .element4:nth-child(1) {
    right: 0;
  }
  #section1 .element4:nth-child(1).active {
    right: -68px;
  }
  #section1 .element4:nth-child(2) {
    left: 0;
  }
  #section1 .element4:nth-child(2).active {
    left: -68px;
  }
  #section1 .answerLeft4 {
    max-width: 170px;
    height: 300px;
    top: -12px;
    overflow: hidden;
  }
  #section1 .answerLeft4 .mark {
    top: 20px;
  }
  #section1 .answerLeft4 .padding {
    padding: 11px 37px 10px 5px;
  }
  #section1 .answerLeft4.active {
    left: -135px;
    height: 400px;
  }
  #section1 .answerLeft4.active .mark {
    top: 0;
  }
  #section1 .answerRight4 {
    max-width: 170px;
  }
  #section1 .answerRight4 .mark {
    top: 20px;
  }
  #section1 .answerRight4 .padding {
    padding: 15px 10px 22px 35px;
  }
  #section1 .answerRight4.active {
    right: -135px;
  }
  #section1 .answerRight4.active .mark {
    top: 0;
  }
  #section1 .element6:nth-child(1) {
    right: 0;
  }
  #section1 .element6:nth-child(1).active {
    right: -100px;
  }
  #section1 .element6:nth-child(2) {
    left: 0;
  }
  #section1 .element6:nth-child(2).active {
    left: -100px;
  }
  #section1 .element7:nth-child(1) {
    right: 0;
  }
  #section1 .element7:nth-child(1).active {
    right: -95px;
  }
  #section1 .element7:nth-child(2) {
    left: 0;
  }
  #section1 .element7:nth-child(2).active {
    left: -95px;
  }
}
@media (max-width: 650px) {
  #section1 .start .container .rowStart {
    justify-content: space-between;
  }
  #section1 .start .container .columnStart1 {
    margin: 0;
  }
  #section1 .element5 {
    max-width: 270px;
  }
  #section1 .element5 .answerText {
    font-size: 14px;
  }
  #section1 .element5:nth-child(1) {
    right: 0;
  }
  #section1 .element5:nth-child(1).active {
    right: -85px;
  }
  #section1 .element5:nth-child(2) {
    left: 0;
  }
  #section1 .element5:nth-child(2).active {
    left: -85px;
  }
  #section1 .answerLeft5 {
    width: 210px;
  }
  #section1 .answerLeft5.active {
    left: -170px;
  }
  #section1 .answerRight5 {
    width: 210px;
  }
  #section1 .answerRight5.active {
    right: -170px;
  }
}
@media (max-width: 600px) {
  #section1 .containerBackground {
    padding-top: 55%;
    background-image: url("../img/section1-2.jpg");
  }
  #section1 .start .container .titleStart {
    font-size: 28px;
    line-height: 42px;
  }
  #section1 .start .container .textStart {
    font-size: 22px;
    line-height: 30px;
  }
  #section1 .titleBottom br {
    display: none;
  }
  #section1 .element2 .answerText {
    font-size: 13px;
  }
  #section1 .element2:nth-child(1) {
    right: 0;
  }
  #section1 .element2:nth-child(1).active {
    right: -80px;
  }
  #section1 .element2:nth-child(2) {
    left: 0;
  }
  #section1 .element2:nth-child(2).active {
    left: -80px;
  }
  #section1 .answerLeft2 {
    width: 190px;
    height: 440px;
    top: -59px;
  }
  #section1 .answerLeft2 .padding {
    padding: 10px 30px 28px 7px;
  }
  #section1 .answerLeft2.active {
    left: -160px;
  }
  #section1 .answerRight2 {
    width: 190px;
    height: 440px;
  }
  #section1 .answerRight2 .padding {
    padding: 10px 5px 28px 30px;
  }
  #section1 .answerRight2 .answerOragne {
    top: -59px;
  }
  #section1 .answerRight2.active {
    right: -160px;
  }
  #section1 .answerRight2.active .mark {
    top: -58px;
  }
}
@media (max-width: 550px) {
  #section1 .start .container .rowStart {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 500px) {
  #section1 .containerBackground .textCenterLeft {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 0 30px;
  }
  #section1 .element1 {
    max-width: 200px;
  }
  #section1 .element1 .top {
    padding: 8px 12px 10px 8px;
  }
  #section1 .element1 .top .topText {
    font-size: 10px;
  }
  #section1 .element1 .top .imgElement1Tel {
    width: 18px;
    height: 18.78px;
  }
  #section1 .element1 .mid .midText {
    font-size: 10px;
    line-height: 14px;
  }
  #section1 .element1 .mid .link {
    font-size: 10px;
    line-height: 14px;
  }
  #section1 .element1 .bottom .imgBottom {
    width: 174px;
    height: 19px;
  }
  #section1 .element1:nth-child(1) {
    right: 0;
  }
  #section1 .element1:nth-child(1).active {
    right: -85px;
  }
  #section1 .element1:nth-child(2) {
    left: 0;
  }
  #section1 .element1:nth-child(2).active {
    left: -85px;
  }
  #section1 .element1 .answerText {
    font-size: 12px;
  }
  #section1 .answerLeft1 {
    width: 200px;
    top: -17px;
  }
  #section1 .answerLeft1 .padding {
    padding: 11px 43px 53px 6px;
  }
  #section1 .answerLeft1.active {
    width: 210px;
    left: -170px;
  }
  #section1 .answerRight1 {
    width: 200px;
    top: 47px;
  }
  #section1 .answerRight1 .padding {
    padding: 15px 12px 18px 32px;
  }
  #section1 .answerRight1.active {
    width: 200px;
    right: -170px;
  }
  #section1 .element3 {
    max-width: 260px;
  }
  #section1 .element3 .top {
    padding: 5px 1px 7px 1px;
  }
  #section1 .element3 .top .textContainer {
    padding: 2px 2px 3px 6px;
  }
  #section1 .element3 .top .textContainer .column {
    margin: 0 3px 0 0;
  }
  #section1 .element3 .top .textContainer .column:nth-child(2) {
    margin: 0;
  }
  #section1 .element3 .top .topText {
    line-height: 17px;
  }
  #section1 .element3 .mid {
    padding: 8px 15px 0 11px;
  }
  #section1 .element3 .answerText {
    font-size: 12px;
  }
  #section1 .element3:nth-child(1) {
    right: 0;
  }
  #section1 .element3:nth-child(1).active {
    right: -68px;
  }
  #section1 .element3:nth-child(2) {
    left: 0;
  }
  #section1 .element3:nth-child(2).active {
    left: -68px;
  }
  #section1 .answerLeft3 {
    width: 180px;
    top: -4px;
  }
  #section1 .answerLeft3 .padding {
    padding: 13px 45px 15px 4px;
  }
  #section1 .answerLeft3.active {
    width: 180px;
    left: -135px;
  }
  #section1 .answerRight3 {
    width: 180px;
    top: 55px;
  }
  #section1 .answerRight3 .padding {
    padding: 11px 10px 14px 43px;
  }
  #section1 .answerRight3.active {
    width: 180px;
    right: -135px;
  }
  #section1 .element6 {
    max-width: 228px;
  }
  #section1 .element6 .answerText {
    font-size: 13px;
  }
  #section1 .element6 .text1,
  #section1 .element6 .text2 {
    font-size: 13px;
    line-height: 16px;
    margin: 12px 0;
  }
  #section1 .element6 .top {
    padding: 13px 11px 25px 19px;
  }
  #section1 .element6:nth-child(1) {
    right: 0;
  }
  #section1 .element6:nth-child(1).active {
    right: -75px;
  }
  #section1 .element6:nth-child(2) {
    left: 0;
  }
  #section1 .element6:nth-child(2).active {
    left: -75px;
  }
  #section1 .answerLeft6 {
    width: 190px;
    height: 590px;
  }
  #section1 .answerLeft6 .padding {
    padding: 13px 39px 16px 5px;
  }
  #section1 .answerLeft6.active {
    left: -150px;
  }
  #section1 .answerRight6 {
    width: 190px;
    height: 445px;
  }
  #section1 .answerRight6 .padding {
    padding: 19px 14px 127px 40px;
  }
  #section1 .answerRight6.active {
    right: -150px;
  }
  #section1 .element7 {
    max-width: 250px;
  }
  #section1 .element7 .answerText {
    font-size: 12px;
  }
  #section1 .element7 .top {
    padding: 15px 13px 16px 10px;
  }
  #section1 .element7 .field {
    position: relative;
  }
  #section1 .element7 .field .price {
    position: absolute;
    bottom: 2px;
    right: 2px;
  }
  #section1 .element7 .field .textNormal {
    line-height: 14px;
    margin: 0 20px 20px 0;
  }
  #section1 .element7 .field .imgPhoneShop {
    height: 50px;
    margin: 0 5px 0 0;
  }
  #section1 .element7:nth-child(1) {
    right: 0;
  }
  #section1 .element7:nth-child(1).active {
    right: -65px;
  }
  #section1 .element7:nth-child(2) {
    left: 0;
  }
  #section1 .element7:nth-child(2).active {
    left: -65px;
  }
  #section1 .answerLeft7 {
    width: 175px;
  }
  #section1 .answerLeft7 .padding {
    padding: 14px 46px 14px 5px;
  }
  #section1 .answerLeft7.active {
    left: -130px;
  }
  #section1 .answerRight7 {
    width: 175px;
  }
  #section1 .answerRight7 .padding {
    padding: 14px 5px 14px 43px;
  }
  #section1 .answerRight7.active {
    right: -130px;
  }
}
@media (max-width: 450px) {
  #section1 .title {
    font-size: 24px;
    line-height: 32px;
  }
  #section1 .titleBottom {
    font-size: 16px;
    line-height: 20px;
  }
  #section1 .element5 {
    max-width: 220px;
  }
  #section1 .element5 .answerText {
    font-size: 13px;
  }
  #section1 .element5 .top .topRow {
    width: 65px;
  }
  #section1 .element5 .top .topRow .imgTel {
    width: 17px;
    height: 17px;
  }
  #section1 .element5 .top .topRow .imgCamera {
    width: 21px;
    height: 14px;
  }
  #section1 .element5 .top .topRow .imgInfo {
    width: 17px;
    height: 17px;
  }
  #section1 .element5 .mid .textContainer1 {
    margin: 0px 10px 10px 5px;
  }
  #section1 .element5 .mid .textContainer2 {
    margin: 0px 10px 10px 5px;
  }
  #section1 .element5 .mid .text1 {
    padding: 8px 10px 12px 12px;
  }
  #section1 .element5 .mid .bottomContainer .imgBar {
    width: 185px;
    height: 20px;
  }
  #section1 .element5:nth-child(1) {
    right: 0;
  }
  #section1 .element5:nth-child(1).active {
    right: -79px;
  }
  #section1 .element5:nth-child(2) {
    left: 0;
  }
  #section1 .element5:nth-child(2).active {
    left: -79px;
  }
  #section1 .answerLeft5 {
    width: 175px;
  }
  #section1 .answerLeft5 .padding {
    padding: 18px 21px 20px 11px;
  }
  #section1 .answerLeft5.active {
    left: -157px;
  }
  #section1 .answerRight5 {
    width: 175px;
  }
  #section1 .answerRight5 .padding {
    padding: 17px 12px 20px 15px;
  }
  #section1 .answerRight5.active {
    right: -157px;
  }
}
@media (max-width: 400px) {
  #section1 .element2 {
    max-width: 210px;
  }
  #section1 .element2 .top {
    padding: 12px 5px 19px 6px;
  }
  #section1 .element2 .top .topColumn .topColumnText {
    font-size: 10px;
  }
  #section1 .element2 .top .imgArrow {
    margin: 0 4px 0 0;
  }
  #section1 .element2 .top .imgAvatar {
    margin: 0 4px 0 0;
  }
  #section1 .element2 .mid .text1 {
    font-size: 10px;
    line-height: 13px;
    margin: 9px 8px 8px 6px;
    padding: 6px 8px 11px 16px;
  }
  #section1 .element2 .mid .text2 {
    font-size: 10px;
    line-height: 13px;
    margin: 0 8px 8px 6px;
    padding: 6px 12px 11px 12px;
  }
  #section1 .element2 .mid .text2 br {
    display: inline;
  }
  #section1 .element2 .mid .bottomContainer {
    width: 160px;
  }
  #section1 .element2 .mid .bottomContainer .imgBar {
    width: 137px;
    height: 22px;
  }
  #section1 .element2 .mid .bottomContainer .imgMicro {
    width: 21px;
    height: 20px;
  }
  #section1 .element2 .answerText {
    font-size: 12px;
  }
  #section1 .element2:nth-child(1) {
    right: 0;
  }
  #section1 .element2:nth-child(1).active {
    right: -66px;
  }
  #section1 .element2:nth-child(2) {
    left: 0;
  }
  #section1 .element2:nth-child(2).active {
    left: -66px;
  }
  #section1 .answerLeft2 {
    width: 165px;
    height: 380px;
    top: -59px;
  }
  #section1 .answerLeft2 .padding {
    padding: 7px 28px 55px 3px;
  }
  #section1 .answerLeft2.active {
    left: -135px;
    height: 440px;
    overflow: visible;
  }
  #section1 .answerRight2 {
    width: 165px;
    height: 380px;
    top: 0;
  }
  #section1 .answerRight2 .padding {
    padding: 7px 6px 28px 24px;
  }
  #section1 .answerRight2 .answerOragne {
    top: -59px;
  }
  #section1 .answerRight2.active {
    right: -135px;
    height: 440px;
    overflow: visible;
  }
  #section1 .element3 {
    max-width: 200px;
  }
  #section1 .element3 .top .topText {
    font-size: 6px;
    line-height: 10px;
  }
  #section1 .element3 .mid .midText {
    font-size: 10px;
  }
  #section1 .element3 .mid .link {
    font-size: 10px;
  }
  #section1 .element3 .answerText {
    font-size: 10px;
  }
  #section1 .element3:nth-child(1) {
    right: 0;
  }
  #section1 .element3:nth-child(1).active {
    right: -55px;
  }
  #section1 .element3:nth-child(2) {
    left: 0;
  }
  #section1 .element3:nth-child(2).active {
    left: -55px;
  }
  #section1 .answerLeft3 {
    width: 130px;
    height: 350px;
    top: -18px;
    overflow: hidden;
  }
  #section1 .answerLeft3 .padding {
    padding: 13px 26px 56px 1px;
  }
  #section1 .answerLeft3 .mark {
    top: 22px;
  }
  #section1 .answerLeft3.active {
    width: 135px;
    height: 410px;
    left: -110px;
  }
  #section1 .answerRight3 {
    width: 130px;
  }
  #section1 .answerRight3 .padding {
    padding: 11px 10px 14px 18px;
  }
  #section1 .answerRight3.active {
    width: 130px;
    right: -110px;
  }
}
@media (max-width: 380px) {
  #section1 .titleBottom {
    height: 100px;
  }
  #section1 .element1 {
    max-width: 170px;
  }
  #section1 .element1 .bottom .imgBottom {
    width: 145px;
    height: 16px;
  }
  #section1 .element1 .answerText {
    font-size: 11px;
  }
  #section1 .element1:nth-child(1) {
    right: 0;
  }
  #section1 .element1:nth-child(1).active {
    right: -71px;
  }
  #section1 .element1:nth-child(2) {
    left: 0;
  }
  #section1 .element1:nth-child(2).active {
    left: -71px;
  }
  #section1 .answerLeft1 {
    width: 150px;
    height: 350px;
  }
  #section1 .answerLeft1 .padding {
    padding: 7px 40px 55px 4px;
  }
  #section1 .answerLeft1.active {
    left: -140px;
    width: 180px;
    height: 440px;
  }
  #section1 .answerRight1 {
    width: 160px;
  }
  #section1 .answerRight1 .padding {
    padding: 19px 12px 20px 45px;
  }
  #section1 .answerRight1.active {
    right: -140px;
    width: 180px;
  }
  #section1 .element2 {
    max-width: 190px;
  }
  #section1 .element2 .top {
    padding: 12px 5px 19px 6px;
  }
  #section1 .element2 .top .topColumn .topColumnText {
    font-size: 10px;
  }
  #section1 .element2 .top .imgArrow {
    margin: 0 4px 0 0;
  }
  #section1 .element2 .top .imgAvatar {
    margin: 0 4px 0 0;
  }
  #section1 .element2 .mid .text1 {
    font-size: 10px;
    line-height: 13px;
    margin: 9px 8px 8px 6px;
    padding: 6px 8px 11px 16px;
  }
  #section1 .element2 .mid .text2 {
    font-size: 10px;
    line-height: 13px;
    margin: 0 8px 8px 6px;
    padding: 6px 12px 11px 12px;
  }
  #section1 .element2 .mid .text2 br {
    display: inline;
  }
  #section1 .element2 .mid .bottomContainer {
    width: 160px;
  }
  #section1 .element2 .mid .bottomContainer .imgBar {
    width: 137px;
    height: 22px;
  }
  #section1 .element2 .mid .bottomContainer .imgMicro {
    width: 21px;
    height: 20px;
  }
  #section1 .element2 .answerText {
    font-size: 12px;
  }
  #section1 .element2:nth-child(1) {
    right: 0;
  }
  #section1 .element2:nth-child(1).active {
    right: -61px;
  }
  #section1 .element2:nth-child(2) {
    left: 0;
  }
  #section1 .element2:nth-child(2).active {
    left: -61px;
  }
  #section1 .answerLeft2 {
    width: 150px;
    height: 380px;
    top: -59px;
  }
  #section1 .answerLeft2 .padding {
    padding: 7px 28px 57px 3px;
  }
  #section1 .answerLeft2.active {
    left: -122px;
    height: 440px;
    overflow: visible;
  }
  #section1 .answerRight2 {
    width: 150px;
    height: 380px;
    top: 0;
  }
  #section1 .answerRight2 .padding {
    padding: 7px 6px 42px 24px;
  }
  #section1 .answerRight2 .answerOragne {
    top: -59px;
  }
  #section1 .answerRight2.active {
    right: -122px;
    height: 440px;
    overflow: visible;
  }
  #section1 .element4 {
    max-width: 200px;
  }
  #section1 .element4 .mid .text1 {
    font-size: 10px;
  }
  #section1 .element4 .mid .img1 {
    height: 119px;
  }
  #section1 .element4 .mid .img2 {
    height: 107px;
  }
  #section1 .element4 .answerText {
    font-size: 11px;
  }
  #section1 .element4:nth-child(1) {
    right: 0;
  }
  #section1 .element4:nth-child(1).active {
    right: -60px;
  }
  #section1 .element4:nth-child(2) {
    left: 0;
  }
  #section1 .element4:nth-child(2).active {
    left: -60px;
  }
  #section1 .answerLeft4 {
    width: 160px;
    top: 0;
  }
  #section1 .answerLeft4 .padding {
    padding: 11px 38px 10px 0px;
  }
  #section1 .answerLeft4.active {
    left: -120px;
  }
  #section1 .answerRight4 {
    width: 160px;
    top: 0;
  }
  #section1 .answerRight4 .padding {
    padding: 12px 10px 17px 35px;
  }
  #section1 .answerRight4.active {
    right: -120px;
  }
  #section1 .element5 {
    max-width: 190px;
  }
  #section1 .element5 .answerText {
    font-size: 11px;
  }
  #section1 .element5 .top .topColumn .imgMichal {
    width: 35px;
    height: 9px;
  }
  #section1 .element5 .top .topColumn .imgMes {
    width: 49px;
    height: 10px;
  }
  #section1 .element5 .top .topRow .imgTel {
    width: 14px;
    height: 14px;
  }
  #section1 .element5 .top .topRow .imgCamera {
    width: 17px;
    height: 11px;
  }
  #section1 .element5 .top .topRow .imgInfo {
    width: 14px;
    height: 14px;
  }
  #section1 .element5 .top .imgArrow {
    width: 14px;
    height: 13px;
  }
  #section1 .element5 .top .imgAvatar {
    width: 26px;
    height: 26px;
  }
  #section1 .element5 .mid .text1 {
    font-size: 11px;
    line-height: 15px;
    padding: 7px 7px 9px 7px;
  }
  #section1 .element5 .mid .text2 {
    padding: 7px 7px 9px 10px;
  }
  #section1 .element5 .mid .textContainer1 {
    margin: 0px 5px 10px 2px;
  }
  #section1 .element5 .mid .textContainer2 {
    margin: 0px 5px 10px 2px;
  }
  #section1 .element5 .mid .bottomContainer {
    padding: 10px 0 0 0;
    margin: auto 0 10px 0;
  }
  #section1 .element5 .mid .bottomContainer .imgBar {
    width: 170px;
    height: 24px;
  }
  #section1 .element5:nth-child(1) {
    right: 0;
  }
  #section1 .element5:nth-child(1).active {
    right: -62px;
  }
  #section1 .element5:nth-child(2) {
    left: 0;
  }
  #section1 .element5:nth-child(2).active {
    left: -62px;
  }
  #section1 .answerLeft5 {
    width: 140px;
    top: -5px;
  }
  #section1 .answerLeft5 .mark {
    top: 10px;
  }
  #section1 .answerLeft5 .padding {
    padding: 11px 20px 13px 5px;
  }
  #section1 .answerLeft5.active {
    left: -125px;
  }
  #section1 .answerLeft5.active .mark {
    top: 0px;
  }
  #section1 .answerRight5 {
    width: 140px;
    top: -5px;
  }
  #section1 .answerRight5 .mark {
    top: 10px;
  }
  #section1 .answerRight5 .padding {
    padding: 17px 12px 20px 12px;
  }
  #section1 .answerRight5.active {
    right: -125px;
  }
  #section1 .answerRight5.active .mark {
    top: 0px;
  }
  #section1 .element6 {
    max-width: 170px;
  }
  #section1 .element6 .answerText {
    font-size: 12px;
  }
  #section1 .element6 .text1,
  #section1 .element6 .text2 {
    font-size: 12px;
    line-height: 14px;
    margin: 10px 0;
  }
  #section1 .element6 .top {
    padding: 12px 9px 7px 9px;
  }
  #section1 .answerLeft6 {
    width: 170px;
    height: 590px;
  }
  #section1 .answerLeft6 .padding {
    padding: 15px 40px 53px 4px;
  }
  #section1 .answerLeft6.active {
    width: 185px;
    left: -150px;
  }
  #section1 .answerRight6 {
    width: 170px;
    height: 455px;
  }
  #section1 .answerRight6 .padding {
    padding: 19px 11px 162px 37px;
  }
  #section1 .answerRight6.active {
    width: 185px;
    right: -150px;
  }
  #section1 .element7 {
    max-width: 210px;
  }
  #section1 .element7 .answerText {
    font-size: 10px;
  }
  #section1 .element7 .field .textNormal {
    font-size: 10px;
    line-height: 12px;
    margin: 0 20px 25px 0;
  }
  #section1 .element7 .field .bigField .bigFieldText2 {
    margin: 10px 0 0 0;
  }
  #section1 .element7 .field .smallField .smallFieldTextGrey {
    font-size: 7px;
  }
  #section1 .element7 .field.padding {
    padding: 18px 0 15px 11px;
  }
  #section1 .element7 .field.padding1 {
    padding: 17px 0 0 11px;
  }
  #section1 .element7 .field.paddingExtra {
    padding: 17px 0 15px 11px;
  }
  #section1 .element7 .fieldRow .superSmallField {
    width: calc(100% - 10px);
  }
  #section1 .element7 .fieldRow .superSmallField:nth-child(2) {
    margin: 10px 10px 0 0;
  }
  #section1 .element7:nth-child(1) {
    right: 0;
  }
  #section1 .element7:nth-child(1).active {
    right: -55px;
  }
  #section1 .element7:nth-child(2) {
    left: 0;
  }
  #section1 .element7:nth-child(2).active {
    left: -55px;
  }
  #section1 .answerLeft7 {
    width: 125px;
  }
  #section1 .answerLeft7 .padding {
    padding: 14px 18px 14px 3px;
  }
  #section1 .answerLeft7.active {
    left: -109px;
  }
  #section1 .answerRight7 {
    width: 125px;
  }
  #section1 .answerRight7 .padding {
    padding: 14px 5px 14px 13px;
  }
  #section1 .answerRight7.active {
    right: -109px;
  }
}
@media (max-width: 350px) {
  #section1 .containerBackground .textCenterLeft {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 0 15px;
  }
}
#section3 {
  display: flex;
  flex-flow: column;
  max-width: 1110px;
  width: 100%;
  padding: 80px 60px;
  margin: 0 auto;
}
#section3 .element {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
#section3 .element .img {
  width: 17px;
  height: 21px;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
#section3 .element .text {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin-top: 5px;
}

@media (max-width: 800px) {
  #section3 {
    padding: 80px 30px 70px;
  }
}
@media (max-width: 550px) {
  #section3 {
    padding: 70px 20px 50px;
  }
}
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 150vh;
  background-color: rgba(0, 0, 0, 0.4431372549);
  transition: opacity 0.2s linear, visibility 0.3s linear 0.3ms;
  z-index: 1000000;
  visibility: visible;
}
#modal .modalWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001000;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: opacity 0.2s linear, visibility 0.3s linear 0.3ms;
  visibility: visible;
  opacity: 1;
  display: flex;
}
#modal .modalWrapper .modalContainer {
  display: flex;
  transition: transform 0.3s ease-out;
  padding: 40px;
  margin: auto;
  transform: translate(0, 0);
  z-index: 1002000;
}
#modal .modalWrapper .modalContainer .modal {
  max-width: 800px;
  width: 100%;
  height: 100%;
  background-color: #e7e8e4;
  opacity: 1;
  padding: 80px;
  position: relative;
  border-radius: 10px;
  z-index: 1003000;
}
#modal .modalWrapper .modalContainer .modal .close {
  background-image: url("../img/close.png");
  width: 25px;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  transition: 0.3s all;
}
#modal .modalWrapper .modalContainer .modal .text {
  color: #000;
  text-align: center;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.4px;
}
#modal.hidden {
  opacity: 0;
  visibility: hidden;
}
#modal.hidden .modalContainer {
  transform: translate(0, -20%);
}

@media (max-width: 800px) {
  #modal .modalWrapper .modalContainer {
    padding: 20px;
  }
  #modal .modalWrapper .modalContainer .modal {
    padding: 60px;
  }
}
@media (max-width: 600px) {
  #modal .modalWrapper .modalContainer .modal {
    padding: 40px;
  }
  #modal .modalWrapper .modalContainer .modal .text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 450px) {
  #modal .modalWrapper .modalContainer .modal {
    padding: 40px 20px;
  }
  #modal .modalWrapper .modalContainer .modal .text {
    font-size: 18px;
    line-height: 22px;
  }
}/*# sourceMappingURL=quiz.css.map */