/*
Theme Name: Remotiv
Author: Oleksandr Karakai
Version: 1.0
Description: ''
*/
:root {
  --grey-menu: #606060;
  --dark-blue: #283864;
  --green-buttom: #82aa33;
  --green-white-2: #c3e5b5;
  --green-white: #dbedc4;
  --yellow: #e7c94e;
  --yellow-light: #f4eecc;
  --red: #fe3934;
  --white: #fff;
  --light-blue: #a0b2e3;
  --orange: #E5722D;
  --font-family: "Inter", sans-serif;
  --second-family: "Raleway", sans-serif;
  --third-family: "Calibri", sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 137px;
}

body {
  background-color: #fff;
  font-family: var(--font-family), sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--dark-blue);
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

strong {
  font-weight: 600;
}

.title2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 37px;
  text-align: center;
  color: var(--orange);
}

.title2--white {
  color: var(--white);
}

/* header: 84px */
.header {
  position: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 24px;
  padding-bottom: 16px;
  width: 100%;
  z-index: 100;
  transition: all .2s linear;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .h-btn {
  font-weight: 600;
  font-size: 12px;
  line-height: 104%;
  border-radius: 10px;
  padding: 12px 35px;
  min-width: 150px;
}

.btn-buy-header a {
  color: var(--white) !important;
  background: var(--orange) !important;
  font-weight: 600 !important;
}

.btn-buy-header a:hover {
  transform: scale(1.05);
}

.header .logo {
  position: relative;
  z-index: 20;
}

.header .logo img {
  width: 373px;
  transition: all .2s linear;
}

.header .header_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 23px;
}

.header .header_menu ul li a {
  font-weight: 300;
  font-size: 13px;
  line-height: 104%;
  text-align: center;
  color: #1e3663;
  border-radius: 10px;
  background: var(--white);
  width: 160px;
  height: 35px;
  padding: 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.23s;
  transition: all 0.23s;
}

.header .header_menu ul li a:hover {
  background-color: var(--orange);
  color: #fff;
}

.header .header_menu ul .current-menu-item a {
  font-weight: 600;
}

.header .menu-btn {
  display: none;
  width: 16px;
  height: 10px;
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 20;
  margin-top: -10px;
}

.header .menu-btn .line {
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #143465;
  border-radius: 1px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.header .menu-btn .line:nth-child(1) {
  top: 0;
}

.header .menu-btn .line:nth-child(2) {
  top: 4px;
}

.header .menu-btn .line:nth-child(3) {
  top: 8px;
}

.header .menu-btn.active .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 4px;
}

.header .menu-btn.active .line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.header .menu-btn.active .line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 4px;
}

.header .h-btn-mobile {
  display: none;
}

.md-show {
  display: none;
}

.hero {
  background-image: url('assets/img/compressed/mainbg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 24px;
  padding-bottom: 10%;
  height: 100vh;
  min-height: 800px;
  border-bottom: 3px solid var(--orange);
}

.hero__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7px;
}

.hero__main {
  width: 67%;
}

.hero__secondary {
  width: 33%;
}

.hero__secondary img {
  width: 100%;
  max-width: 385px;
}

.hero .main_title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.12;
  letter-spacing: 6px;
  color: #EF640B;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero .main_pretitle {
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  color: #EF640B;
  max-width: 700px;
}

.hero .main_list {
  list-style: disc;
  list-style-position: inside;
  margin-top: 10px;
  color: #93908E;
  font-size: 20px;
  position: relative;
  min-height: 144px;
}

.hero .main_list li {
  font-weight: 400;
  line-height: 156%;
}

.hero .mobile-show {
  display: none;
}

.section_01 .section-block-text {
  display: grid;
  gap: 24px;
}

.section_01 {
  background-image: url('assets/img/compressed/bgimage2.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  /* background-size: cover;*/
  padding: 61px 0;
}

.section_01__box {
  display: -ms-grid;
  display: grid;
  gap: 36px;
}

.section_01_itm1 {
  display: grid;
  grid-template-columns: [start image] 325px [content] 1fr;
  gap: 16px 32px;
  padding: 29px 16px 20px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  align-items: center;
  position: relative;
}

.section_01 .section-block-image {
  grid-column: image;
  grid-row: span 2;
  text-align: center;
}

.section_01 .section-block-text {
  grid-column: content;
  font-size: 25px;
  line-height: 1.5;
}

.section_01 .image-buy-button-block {
  grid-column: content;
}

.buy-block {
  align-items: center;
}

.section_01 .image-buy-button-block .btn_01 {
  display: inline-flex;
}

.section_01 .section-block-image img {
  width: 325px;
}

.section_01 .section_01_itm1 .sm_p {
  padding-left: 12px;
  font-weight: 300;
  font-size: 19px;
  line-height: 168%;
  color: var(--dark-blue);
  min-width: 300px;
  position: absolute;
}

/*.section_01 .section_01_itm1__main {
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  color: var(--dark-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}*/
.section_01 .remotiv-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 99px;
  display: inline-block;
}

.section_01 .remotiv-icon img {
  width: 100%;
}

.btn-buy {
  text-transform: uppercase;
}

.section_01 .section_01_secong {
  box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  background: rgba(255, 255, 255, 0.48);
  border-radius: 20px;
  padding: 14px 11px 34px 25px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 8px;
  align-items: center;
}

.section_01 .section_01_secong p {
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  color: var(--dark-blue);
}

.section_01 .section_01_secong p:last-child {
  margin-bottom: 0;
}

.section_01 .section_01_secong .remotiv-icon {
  /*width: 260px;*/
  padding: 16px;
}

.section_01 .section_01_secong img {
  width: auto;
  max-width: 100%;
}

.section_01 .section_01_secong .remotiv-icon-min {
  max-width: 204px;
}

.typical {
  padding-top: 54px;
  padding-bottom: 58px;
  background-image: url('assets/img/compressed/bgimage3.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.typical__box {
  display: grid;
  gap: 38px;
  border-radius: 20px;
  box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  background: rgba(255, 255, 255, 0.85);
  padding-top: 23px;
  padding-bottom: 35px;
  padding-left: 25px;
  padding-right: 25px;
}

.typical__box .typical__box-footer p, .typical__box .typical__box-footer p a {
  color: #474646a6;
}

.typical__box .typical__box-footer .typical__txt {
  color: #6f6c6ca6;
}

.typical__list {
  display: -ms-grid;
  display: grid;
  gap: 35px;
}

.typical__item {
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  color: var(--dark-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  position: relative;
}

.typical__item .checkbox {
  position: relative;
  display: block;
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
  left: 0;
  top: 9px;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.typical__item .checkbox {
  background-image: url('assets/img/icons/check-empty.svg');
}

.typical__item .checkbox.checked {
  background-image: url('assets/img/icons/chk.svg');
}

.typical__box .typical__txt {
  margin-bottom: 16px;
}

.typical__txt {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 37px;
  text-align: center;
}

.pretitle1 {
  font-weight: 300;
  font-size: 29px;
  line-height: 116%;
  text-align: center;
  color: var(--dark-blue);
}

.why {
  background-image: url('assets/img/compressed/bgimage4.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  padding-top: 52px;
  padding-bottom: 123px;
}

.why .title2 {
  margin-bottom: 35px;
}

.why .pretitle1 {
  margin-bottom: 32px;
}

.why__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 11px 1fr 11px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.why__item {
  -webkit-box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  background: rgba(255, 255, 255, 0.85);
  padding: 17px 13px;
  border-radius: 20px;
  text-align: center;
}

.why__item p {
  font-weight: 300;
  font-size: 19px;
  line-height: 150%;
  color: var(--dark-blue);
  padding: 0px 10px;
  margin-bottom: 30px;
}

.why__item p:last-child {
  margin-bottom: 0;
}

.why__highlighted {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.34;
  color: var(--dark-blue);
  box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  background: rgba(255, 255, 255, 0.85);
  padding: 20px 24px;
  border-radius: 20px;
  margin-top: 17px;
}

.infosection {
  background-image: url('assets/img/compressed/bgimagr5.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-block: 61px;
  overflow: hidden;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid #fff;
  position: relative;
}

.infosection::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 427px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  bottom: -139px;
  z-index: 1;
}

.infosection__box {
  border-radius: 28px;
  -webkit-box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);
  background: rgba(255, 255, 255, 0.85);
  padding: 50px 24px 22px 24px;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.infosection__p1 {
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  text-align: center;
  color: var(--dark-blue);
  margin-bottom: 23px;
}

.infosection__row {
  display: grid;
  gap: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.infosection__row.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.infosection__row.col-3 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 250px) minmax(0, 1fr);
}

.infosection__row--second {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.infosection__row--second .infosection__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  min-height: 100%;
}

.infosection__row--second .infosection__col:nth-child(2) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.infosection__row--second .infosection__col:nth-child(2) .btn_01_where {
  position: absolute;
  bottom: -100px;
}

.infosection__col .text-secondary {
  text-align: center;
  line-height: 2;
  max-width: 284px;
  margin-inline: auto;
}

.infosection .btn_01 {
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
  /*height: 100%;*/
}

.infosection__col .btn_01 {
  margin-top: auto;
}

.row-buttons .btn_01 {
  height: 100%;
}

.infosection__col {
  display: flex;
  flex-direction: column;
}


.text-secondary {
  font-size: 19px;
}

.infosection .sc01 {
  height: 100%;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.6;
  color: var(--dark-blue);
  -webkit-box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  padding: 13px 6px 10px 25px;
}

.infosection .sc01 strong {
  font-size: 27px;
}

.infosection .regular-text {
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
  color: var(--dark-blue);
}

.infosection img {
  width: 226px;
}

.btn_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.23s;
  transition: all 0.23s;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 28px;
  padding: 20px 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
  border: 4px solid #E9E7E7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn_01:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.btn_01-green {
  background: #629331;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.faq {
  background: #EF640B;
  padding-top: 52px;
}

.faq .title2 {
  margin-bottom: 16px;
}

.faq .container {
  padding-bottom: 314px;
  position: relative;
}

.faq .container .faq-main-position {
  position: absolute;
  bottom: 0;
}

.faq .container .faq-main-man {
	left: 0;
    bottom: -24px;
}

.faq .container .faq-main-girl {
  right: 0;
  bottom: -4px;
}

.faq__box {
  display: -ms-grid;
  display: grid;
  gap: 27px;
}

.faq__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 11px 1fr 11px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

/*.faq__item {*/
/*  -webkit-box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);*/
/*  box-shadow: 0 4px 20px 5px rgba(167, 161, 161, 0.1);*/
/*  background: rgba(255, 255, 255, 0.85);*/
/*  padding: 25px;*/
/*  border-radius: 20px;*/
/*  text-align: center;*/
/*}*/

/*.faq__item p {*/
/*  font-size: 19px;*/
/*  line-height: 150%;*/
/*  color: var(--dark-blue);*/
/*  margin-bottom: 30px;*/
/*}*/

.footer {
  background: #b3b3b3;
  border-top: 3px solid #fff;
  padding: 27px 0 30px 0;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.63;
  color: var(--white);
	z-index: 99;
}

.test-section {
  background-image: url('assets/img/compressed/bgimagr5.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-block: 54px 70px;
  position: relative;
}

.test-section::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 427px;
}

.test-section__box {
  position: relative;
  z-index: 2;
}

.test-section .test-section__box .test-result {
  margin-bottom: 40px;
}

.test-section__box .btn-middle {
  display: flex;
  margin-inline: auto;
  position: relative;
  width: 200px;
  height: 40px;
  font-size: 18px;
  z-index: 100;
  border-radius: 8px;
}

.test-section .test-main {
  -webkit-box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  background: var(--white);
  border-radius: 28px;
  padding: 22px 24px;
}

.test-section .test-main .title2 {
  margin-bottom: 26px;
}

.test-section .test-main h2 {
  font-size: 25px;
  margin-bottom: 24px;
}

.test-section .test-main__pp {
  font-weight: 300;
  font-size: 13px;
  line-height: 140%;
  color: #a1a1a1;
}

.test-section .test-main__content1 {
  margin-bottom: 50px;
}

.test-section .test-main__content2 {
  padding-bottom: 37px;
}

.test-section .test-main .pp_v3 {
  font-weight: 300;
  font-size: 23px;
  color: #1e3663;
  margin-bottom: 20px;
}

.test-section .test-main .pp_v3 strong {
  text-decoration: underline;
  font-weight: 900;
}

.test-section .test-main .test-options-wrap {
  display: grid;
  gap: 23px;
  line-height: 1.4;
  max-width: 700px;
  margin-inline: auto;
}

.test-section .test-main .test-options-wrap .test-options-question {
  display: flex;
  align-items: center;
  font-size: 18px;
  position: relative;
  /*border-bottom: 1px solid #B3B3B3;*/
  padding-bottom: 0;
  /*min-height: 83px;*/
}

.test-section .test-main .test-options-wrap .test-options-question:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 5px;
  left: 4%;
  height: 2px;
  background: #B3B3B3;
  width: 96%;
}

.test-section .test-main .test-options-wrap .test-options-question strong {
  font-weight: 900;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 101px;
  color: #E3E3E3;
  margin-right: 16px;
  display: inline-block;
  line-height: 0.9;
  position: relative;
  z-index: 10;

  -webkit-text-stroke: 2px var(--orange);
}

.test-section .test-main .test-options-wrap .test-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.test-section .test-main .test-options-wrap .test-options__item {
  padding: 8px 8px;
  border: 1px solid #ebeaea;
  border-radius: 18px;
  font-weight: 300;
  font-size: 15px;
  text-align: center;
  color: #1e3663;
  transition: all .2s linear;
  height: auto;
  background: #fff;
}

.test-section .test-main .test-options-wrap .test-options__item.active,
.test-section .test-main .test-options-wrap .test-options__item:hover {
  /*font-weight: 600;*/
  font-size: 15px;
  text-align: center;
  color: #12326e;
  background: #d1cecc;
  border: 1px solid #ebeaea;
  background: var(--orange);
  color: #fff;
}

.test-section .test-main__result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 30px;
  padding-bottom: 20px;
  position: relative;
}

.test-section .test-main__result::after {
  display: block;
  content: "";
  width: 370px;
  height: 154px;
  background-image: url('assets/img/Arrow1.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 100%;
  margin-left: -5px;
  top: 10px;
}

.test-section .test-main .test-m-result-lbl {
  font-weight: 300;
  font-size: 24px;
  line-height: 100%;
  color: var(--dark-blue);
}

.test-section .test-main .test-m-result {
  font-weight: 500;
  font-size: 34px;
  color: var(--white);
  background: #12326e;
  border-radius: 7px;
  padding-block: 4px;
  padding-inline: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-section .test-result {
  border-radius: 28px;
  width: 100%;
  max-width: 614px;
  margin: 0 auto;
  margin-top: 60px;
  -webkit-box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  box-shadow: 0 4px 10px 5px rgba(167, 161, 161, 0.25);
  background: rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  padding-bottom: 30px;
}

.test-section .test-result__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 21px;
  line-height: 176%;
  text-align: center;
  color: var(--dark-blue);
  margin-bottom: 17px;
}

.test-section .result-table .result-table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.5px solid #b3b3b3;
  padding-bottom: 9px;
}

.test-section .result-table .result-table-head__item {
  width: 50%;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 19px;
  line-height: 100%;
  text-align: center;
  color: var(--dark-blue);
}

.test-section .result-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
  font-size: 19px;
  line-height: 221%;
  text-align: center;
  color: var(--dark-blue);
}

.test-section .result-table__row--whitebg {
  background: #f4f5f5;
}

.test-section .result-table__row--graybg {
  background: #737276;
  color: var(--white);
}

.test-section .result-table__col {
  padding: 2px 4px;
}

.test-section .result-table__col:nth-child(1) {
  width: 40%;
  border-right: 0.5px solid #b3b3b3;
}

.test-section .result-table__col:nth-child(2) {
  width: 60%;
}

.block-hidden {
  opacity: 0;
}

#app {
  transition: opacity .3s linear;
}

.sm-show {
  display: none;
}

/* notification */
.notice-badge-img--indent {
  opacity: 0 !important;
}

.notice-badge-img {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.notice-badge-img,
.notice-badge-img--indent {
  text-align: center;
  padding: 10px 10px 0;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .3);
}

.notice-badge-img img,
.notice-badge-img--indent img {
  width: 100%;
  height: auto;
  max-width: 1750px;
  /* @include md(){
     max-width: 305px;
   }*/
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: white !important;
  padding: 4px 8px;
  transition: all .2s linear;
  border-radius: 6px;
}

.btn:hover {
  color: var(--orange) !important;
  background: white;
}

.faqsec_list {

}

.faqsec_item {
  display: block;
  transition: 0.23s;
  background-color: rgba(255, 255, 255, 0.85);
}

.faqsec_item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faqsec_item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.faqsec_item:hover {
  opacity: 0.8;
}

.faqsec_item.active {
  opacity: 1 !important;
}

.faqsec_item__question:hover {
  opacity: 0.8;
}

.faqsec_item .faqsec_item__question {
  cursor: pointer;
  position: relative;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  padding-block: 10px;
  padding-inline: 16px;
  border-bottom: 1px solid;
}

.faqsec_item .faqsec_item__question {
  border-bottom: 1px solid #B6B6B6;
  user-select: none;
}
.faqsec_item:last-child .faqsec_item__question {
  border-bottom: 0;
}

.faqsec_item.active .faqsec_item__question {
  border: none;
}

.faqsec_item .faqsec_item__question img {
  transition: 0.23s;
  width: 30px;
  height: 30px;
}

.faqsec_item.active .faqsec_item__question img {
  transform: rotate(-180deg);
}

.faqsec_item .faqsec_item__question p {

}

.faqsec_item .faqsec_item__answer {
  display: none;
  padding: 10px 16px;
  line-height: 1.5;
}
@media (min-width: 200px) {
    .infosection__row-200 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .mr-40 {
        margin-left: 40px;
    }
}
