* {padding: 0;margin: 0;border: 0;}
*,
*:before,
*:after {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,
:active {outline: none;}
a:focus,
a:active {outline: none;}
nav,
footer,
header,
aside {display: block;}
html,
body {height: 100%;width: 100%;font-size: 100%;line-height: 1;font-size: 14px;-ms-text-size-adjust: 100%;-moz-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}
input,
button,
textarea {font-family: inherit;}
input::-ms-clear {display: none;}
button {cursor: pointer;}
button::-moz-focus-inner {padding: 0;border: 0;}
a,
a:visited {text-decoration: none;}
a:hover {text-decoration: none;}
ul li {list-style: none;}
img {vertical-align: top;}
h1,h2,h3,h4,h5,h6 {font-size: inherit;font-weight: 400;}
html,
body {height: 100%; font-weight: 700; font-family:'Montserrat'; color: var(--color-black); background: #FFFFFF;}
@font-face {
  font-family: 'Montserrat';
  src:  url("../fonts/Montserrat-ExtraBold.woff"),
        url("../fonts/Montserrat-ExtraBold.woff2");
        font-weight: 800;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src:  url("../fonts/Montserrat-Bold.woff"),
        url("../fonts/Montserrat-Bold.woff2");
        font-weight: 700;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src:  url("../fonts/Montserrat-SemiBold.woff"),
        url("../fonts/Montserrat-SemiBold.woff2");
        font-weight: 600;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src:  url("../fonts/Montserrat-Medium.woff"),
        url("../fonts/Montserrat-Medium.woff2");
        font-weight: 500;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src:  url("../fonts/Montserrat-Regular.woff"),
        url("../fonts/Montserrat-Regular.woff2");
        font-weight: 400;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src:  url("../fonts/Montserrat-Light.woff"),
        url("../fonts/Montserrat-Light.woff2");
        font-weight: 300;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'MontserratSubrayada';
  src:  url("../fonts/MontserratSubrayada-Bold.woff"),
        url("../fonts/MontserratSubrayada-Bold.woff2");
        font-weight: 700;
        font-display: swap;
        font-style: normal;
}
@font-face {
  font-family: 'Verdana';
  src:  url("../fonts/Verdana-Bold.woff"),
        url("../fonts/Verdana-Bold.woff2");
        font-weight: 700;
        font-display: swap;
        font-style: normal;
}

html,
body {
  height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body._lock{
  overflow: hidden;
}
body.lock {
  overflow: hidden;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
._container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
.main {
  flex: 1 1 auto;
}
._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.title {
  text-align: center;
  margin-bottom: 50px;
}
.title h2{
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

:root {
  --color-white: #FFFFFF;
  --color-blue: #01A5CA;
  --color-black: #111;
}

/*---------------------------------------header----------------------*/
.header__burger {
  display: none;
}
.header {
  background-color: var(--color-white);
  position: fixed;
  width: 100%;
  background-color: var(--color-white);
  z-index: 5;
}
.header__body-wrapper {
  border-bottom: 1px solid #B7B7B7;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.header__block {
  display: flex;
  align-items: center;
  gap: 10px 46px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue);
  font-family: 'Verdana';
  font-size: 25px;
  line-height: normal;
  letter-spacing: 0.375px;
  text-transform: uppercase;
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__socials a svg:hover {
  background-color: var(--color-blue);
  border-radius: 50%;
}
.header__socials a svg:hover path {
  fill: var(--color-white);
  transition: all 0.2s ease 0s;
}
.header__box {
  display: flex;
  align-items: center;
  gap: 10px 30px;
}
.dropdown {
  position: relative;
  max-width: 60px;
}
.dropdown input {
  display: none;
}
.dropdown__button {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: var(--color-white);
  padding: 10px 30px 10px 10px;
  line-height: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
}
.dropdown__button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 7px 5px 0 5px;
  border-color: var(--color-black) transparent transparent transparent;
  border-style:  solid;
  pointer-events: none;
}
.dropdown__list {
  display: none;
  position: absolute;
  overflow: hidden;
  width: 100%;
  left: 10px;
  top: 30px;
  z-index: 1;
  border-radius: 5px;
}
.dropdown__list--active {
  display: block;
}
.dropdown__list-item {
  padding: 1px 0px;
  border-bottom: 0;
  cursor: pointer;
}
.dropdown__list-item:last-child {
  border-radius: 0 0 5px 5px;
}
.dropdown__list a {
  color: var(--color-black);
  text-transform: uppercase;
  line-height: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
}
.header__part {
  display: flex;
  gap: 10px 20px;
}
.header__part a {
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.2s ease 0s;
}
.header__part a:first-child {
  padding: 10px 25px;
  color: var(--color-black);
  border: 1px solid #03A5CA;
  border-radius: 19px;
}
.header__part a:first-child:hover {
  color: var(--color-blue);
}
.header__part a:last-child {
  padding: 10px 20px;
  color: var(--color-white);
  border-radius: 19px;
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
}
.header__part a:last-child:hover {
  color: var(--color-black);
}
.header__bottom {
  padding: 20px 10px;
}
.menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.menu__list-item a {
  font-size: 13px;
  font-weight: 600;
  line-height: 14px;
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
.menu__list-item a:hover {
  color: var(--color-blue);
}
/*---------------------------------------header----------------------*/


/*---------------------------------------homepage----------------------*/
.homepage {
  position: relative;
  background: #03a5ca11;
  padding: 200px 10px 65px;
  margin-bottom: 100px;
  overflow: hidden;
}

.canvas-first {
  position: absolute;
  top: 0;
  left: 0;
}

.homepage__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 10px;
}
.homepage__info {
  flex-basis: 450px;
}
.homepage__info h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
.homepage__info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 50px;
}
.homepage__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.homepage__buttons a {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 16px 32px;
  border-radius: 10px;
  white-space: nowrap;
}
.homepage__buttons a:first-child {
  color: var(--color-white);
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  transition: all 0.2s ease 0s;
}
.homepage__buttons a:first-child:hover {
  color: var(--color-black);
}
.homepage__buttons a:last-child {
  border: 2px solid #03A5CA;
  background: rgba(3, 165, 202, 0.00);
  color: var(--color-black);
}
.homepage__buttons a:last-child:hover {
  color: var(--color-blue);
}
.homepage__image img {
  width: 100%;
}
/*---------------------------------------homepage----------------------*/
/*---------------------------------------komektest----------------------*/
.komektest {
  margin-bottom: 100px;
}
.komektest__content {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 20px 10px;
  border-radius: 6px;
  box-shadow: 0px 5px 20px 0px rgba(14, 31, 53, 0.12);
}
.komektest__photo {
  width: 50%;
}
.komektest__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.komektest__info {
  width: 50%;
  padding: 30px;
}
.komektest__info h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}
.komektest__info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  /* opacity: 0.8; */
}
/*---------------------------------------komektest----------------------*/

/*---------------------------------------numbers----------------------*/
.numbers {
  margin-bottom: 100px;
}
.numbers__items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.numbers__item {
  position: relative;
  width: 33.444%;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0px 8px 15px 0px rgba(14, 31, 53, 0.10);
  padding: 40px 10px;
}
.numbers__item svg {
  margin-bottom: 20px;
}
.numbers__item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 12px;
}
.numbers__item p {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}
.numbers__item span {
  font-size: 35px;
  font-weight: 700;
  line-height: 34px;
  color: var(--color-blue);
}
.numbers__item-img {
  position: absolute;
  top: 40px;
  right: 0;
}
/*---------------------------------------numbers----------------------*/
/*---------------------------------------blue----------------------*/
.blue {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.blue__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 49px 10px;
  margin-bottom: 100px;
  gap: 20px 10px;
}
.blue__info {
  display: flex;
  align-items: center;
  gap: 10px 30px;
}
.blue__info h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  color: var(--color-white);
}
.blue__button a {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-black);
  border-radius: 10px;
  background: #FFF;
  padding: 16px 30px;
  white-space: nowrap;
}
.blue__button a:hover {
  color: var(--color-blue);
  transition: all 0.2s ease 0s;
}
.blue__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.blue__btn a {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 10px;
  border: 2px solid var(--color-white);
  background: rgba(202, 202, 202, 0.00);
  white-space: nowrap;
}
.blue__btn a:hover {
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
/*---------------------------------------blue----------------------*/

/*---------------------------------------tests----------------------*/
.tests {
  margin-bottom: 100px;
}
.tests__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tests__item {
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0px 8px 15px 0px rgba(14, 31, 53, 0.10);
  position: relative;
}
.tests__item img {
  width: 100%;
  margin-bottom: 30px;
  height: 200px;
}
.tests__item-block {
  padding: 0px 40px 40px 40px;
}
.tests__item-block h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 20px;
}
.tests__item-block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: justify;
  /* opacity: 0.8; */
}
.tests__button {
  position: absolute;
  top: 126px;
  right: 30px;
}
.tests__button a {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
  border-radius: 22px;
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  padding: 14px 24px;
}
.tests__button a:hover {
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
/*---------------------------------------tests----------------------*/

/*---------------------------------------package----------------------*/
.package {
  margin-bottom: 100px;
}
.package__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
  gap: 15px;
}
.package__item {
  padding: 40px 49px;
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0px 8px 15px 0px rgba(14, 31, 53, 0.10);
  display: grid;
  grid-auto-flow: row;
  grid-template: auto 1fr / 1fr;
  text-align: center;
  justify-items: center;
  transition: all 0.3s ease 0s;
}
.package__item svg {
  margin-bottom: 20px;
}
.package__item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 33px;
}
.package__item h4 {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 23px;
}
.package__item-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  width: 100%;
  text-align: left;
}
.package__item-text svg {
  margin-bottom: 0px;
}
.package__item span {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  margin: 22px 10px 30px;
  display: block;
}
.package__item-button a {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
  border-radius: 22px;
  border: 2px solid var(--color-blue);
  background: #FFF;
  padding: 13px 53px;
}
.package__item-button a:hover {
  color: var(--color-blue);
  transition: all 0.2s ease 0s;
}
.package__item:hover {
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
}
.package__item:hover .package__item-text {
  color: var(--color-white);
}
.package__item:hover .package__item-text path {
  stroke: var(--color-white);
}
.package__item:hover.package__item h3 {
  color: var(--color-white);
}
.package__item:hover.package__item span {
  color: var(--color-white);
}
.package__item:hover .package__item-button a {
  border: none;
}
.package__item:hover .package__item-number path{
  fill: var(--color-white);
}
.package__item:hover.package__item h4 {
  color: var(--color-white);
  opacity: 1;
}
.package__item-number {
  position: relative;
}
.package__item-number span {
  position: absolute;
  top: 10%;
  left: 33%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
}
.package__item:hover .package__item-number span {
  color: var(--color-blue);
}
/*---------------------------------------package----------------------*/

/*---------------------------------------video----------------------*/
.video {
  margin-bottom: 100px;
}
.video__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.video__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 50px;
}
.video__item {
  position: relative;
  padding: 0px 16px 50% 16px;
}
.video__item iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------------------video----------------------*/

/*---------------------------------------reviews----------------------*/
.reviews {
  background: #03a5ca11;
}
.reviews__content {
  max-width: 1188px;
  margin: 0 auto;
  padding: 100px 10px;
}
.reviews__item {
  max-width: 347px;
  text-align: center;
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0px 8px 15px 0px rgba(14, 31, 53, 0.10);
  padding: 35px  30px 30px 30px;
  height: 100%;
}

.reviews__item-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #03A5CA;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
}

.reviews__item img {
  width: 100%;
  height: 100%;
}
.reviews__item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
}
.reviews__item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  /* opacity: 0.8; */
}
.reviews__item-wrapper {
  padding: 20px 10px;
}
.slick-list {
  margin: 0px 30px;
}
.slick-slide img {
  display: inline-block;
}
.slider-arrows {
  position: absolute;
  cursor: pointer;
  top: 45%;
  z-index: 3;
}
.reviews-slider__next {
  right: -20px;
}
.reviews-slider__prev {
  left: -20px;
}
/*---------------------------------------reviews----------------------*/

/*---------------------------------------question----------------------*/
.questions {
  margin-bottom: 100px;
}
.accordion__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  border-top: none;
  background: #03a5ca0d;
  margin-bottom: 10px;
}
.accordion__title h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.accordion__title span {
  display: inline-flex;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transform: rotate(0);
  transition: transform 0.5s ease-out;
}
.accordion__title span::after {
  content: '+';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: 300;
}
.accordion__title.active span{
  transform: rotate(137deg);
}
.accordion__content {
  overflow: hidden;
  padding: 0 20px;
  box-sizing: content-box;
  border-top: none;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  background: #03a5ca0d;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.1s ease-out 0.5s, visibility 0.1s ease-out 0.5s;
}
.accordion__content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  opacity: 0.8;
}
.accordion__content.active {
  visibility: visible;
  opacity: 1;
  padding: 20px;
  margin-top: -8px;
  margin-bottom: 10px;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.1s ease-out, visibility 0.1s ease-out;
}
/*---------------------------------------question----------------------*/

/*---------------------------------------prices----------------------*/
.prices {
  margin-top: 190px;
  margin-bottom: 100px;
}
.bread-crumbs {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.bread-crumbs a {
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.bread-crumbs p {
  color: #6C757D;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.bread-crumbs--mod a:nth-child(2) {
  color: #6C757D;
}
/*---------------------------------------prices----------------------*/
/*---------------------------------------blog----------------------*/
.blog__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 10px;
}
.blog__item-photo img {
  width: 100%;
}
.blog__item-info {
  flex-basis: 714px;
}
.blog__item-info h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-black);
  margin-bottom: 17px;
}
.blog__item-info p{
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.3px;
  color: var(--color-black);
  /* opacity: 0.8; */
}
.blog__item-box {
  display: flex;
  gap: 10px 35px;
  margin-bottom: 15px;
  color: var(--color-black);
  opacity: 0.5;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}
/*---------------------------------------blog----------------------*/

/*---------------------------------------article----------------------*/
.article {
  max-width: 900px;
  margin: 0 auto;
}
.article__title {
  margin-bottom: 30px;
}
.article__title h1 {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
}
.article img {
  width: 100%;
  margin-bottom: 30px;
}
.article p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  /* margin-bottom: 50px; */
}
.article h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 30px;
}
.article__box {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  display: flex;
  gap: 10px 30px;
  opacity: 0.5;
}
.article__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.article__photos img {
  width: 100%;
}
.socials__block {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  justify-content: flex-end;
}
.socials__block p {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 0px;
  opacity: 0.8;
}
.socials {
  display: flex;
  gap: 16px;
}
.socials a svg:hover {
  background-color: var(--color-blue);
  border-radius: 50%;
}
.socials a svg:hover path {
  fill: var(--color-white);
  transition: all 0.2s ease 0s;
}
/*---------------------------------------article----------------------*/

/*---------------------------------------code----------------------*/
.code {
  text-align: center;
}
.code__title {
  margin-bottom: 30px;
}
.code__title h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}
.code p {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 50px;
}
.code__photo {
  max-width: 347px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.code img {
  width: 100%;
}
.code__btn button{
  border-radius: 10px;
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  padding: 16px 63px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}
.code__btn button:hover {
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
/*---------------------------------------code----------------------*/

/*---------------------------------------aboutus----------------------*/
.aboutus {
  margin-top: 140px;
}
.aboutus__content {
  max-width: 1440px;
  margin: 0 auto;
}
.aboutus__photo {
  margin-bottom: 50px;
}
.aboutus__photo img{
  width: 100%;
}
.aboutus__body {
  max-width: 1105px;
  margin: 0 auto;
  padding: 0px 10px;
}
.aboutus__body h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 30px;
}
.aboutus__advantage {
  margin-bottom: 100px;
}
.aboutus__advantage li {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 16px;
}

.aboutus__advantage li svg {
  flex-shrink: 0;
}
.aboutus__advantage li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.8;
}
.aboutus__title {
  margin-bottom: 20px;
}
.aboutus__title h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
}
.aboutus__text {
  margin-bottom: 100px;
}
.aboutus__text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.1px;
}
/*---------------------------------------aboutus----------------------*/

.blog__item-photo {
  position: relative;
  width: 348px;
  overflow: hidden;
}

.blog__item-photo::before {
  display: block;
  content: '';
  padding-top: 57%;
}

.blog__item-photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
}

/*---------------------------------------footer----------------------------*/
.footer {
  background: #005D72;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  padding: 50px 10px;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__logo p {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 1px;
  color: var(--color-white);
  opacity: 0.5;
}
.logo__footer {
  color: var(--color-white);
  margin-bottom: 7px;
}
.footer__item a,
.footer__contacts h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
  color: var(--color-white);
}
.footer__item a:hover {
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
.footer__contacts h3 {
  margin-bottom: 10px;
}
.footer__contacts a {
  margin-bottom: 20px;
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  color: #FBE804;
}
.footer__contacts a:hover {
  color: var(--color-white);
  transition: all 0.2s ease 0s;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__bottom {
  text-align: center;
  padding: 30px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.footer__bottom p {
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
  opacity: 0.8;
  color: var(--color-white);
}
.footer__social a svg:hover {
  background-color: var(--color-blue);
  border-radius: 50%;
}
.footer__social a svg:hover path {
  fill: var(--color-white);
  transition: all 0.2s ease 0s;
}
/*---------------------------------------footer----------------------------*/

/*---------------------------------------popup----------------------------*/
.popup{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
  z-index: 5;
}
.popup__body{
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__content{
  width: 580px;
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0px 16px 24px -16px rgba(11, 29, 61, 0.24);
  padding: 60px 100px;
  position: relative;
}
.popup__title{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 17px;
  text-align: center;
  font-weight: 500;
}
.popup__form{
  text-align: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.8);
  max-width: 290px;
  margin: 0 auto;
}
.popup__form-input{
  font-weight: 400;
  font-size: 17px;
  line-height: 123%;
  color: #484848;
  border: 0.4px solid #000000;
  border-radius: 55px;
  padding: 17px 30px;
  margin-bottom: 30px;
  width: 100%;
}
.popup__form-link{
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
  color: rgba(0, 0, 0, 0.58);
  text-align: end;
  margin-bottom: 30px;
}
.popup__block{
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
}
.popup__block--mod {
  margin-bottom: 0px;
  display: flex;
  justify-content: space-between;
}
.popup__block p,
.popup__block a {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
}
.popup__block a {
  display: block;
  color: var(--color-blue);
}
.popup__block a:hover {
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
.popup.open{
  opacity: 1;
  visibility: visible;
}
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
}
.form label {
  display: block;
  border-radius: 6px;
  border: 1px solid #E6E8EB;
  background: #F7F8FA;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.form label span {
  display: block;
  color: #6F7885;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.form label input {
  background-color: inherit;
  color: #161616;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

.form label input {
  box-shadow: inset 20px 20px 0px 20px #f7f8fa;
}

.form__input-button {
  width: 100%;
  border-radius: 6px;
  background: var(--color-blue);
  margin-top: 16px;
  margin-bottom: 32px;
  padding: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
}
.form__input-button:hover {
  color: var(--color-black);
  transition: all 0.2s ease 0s;
}
.popup__checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}

.form__captcha {
  margin-bottom: 15px;
}

.checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
}
.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--color-blue);
  border-radius: 4px;
  vertical-align: sub;
  margin-right: 5px;
  top: -2px;
}
.custom-checkbox::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease-in;
  content: '';
  display: inline-block;
  width: 10px;
  height: 9px;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.checkbox:checked + .custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}
/*----------------------------------------------popup----------------------------*/
/*---------------------------------------test page----------------------------*/

.test {
  margin-top: 150px;
  margin-bottom: 100px;
}

.result {
  margin-top: 190px;
  margin-bottom: 100px;
}

.test__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.test__header .bread-crumbs {
  margin-bottom: 0;
}

.test__timer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  color: #111;
  font-family: Montserrat;
}

.test__timer span {
  color: #03A5CA;
  font-size: 16px;
  font-weight: 700;
}

.test__points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(64, 64, 64, .1);
  margin-bottom: 30px;
}

.test__point {
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EEE;
  border: 1px solid #CECECE;
  color: #353535;
  font-size: 16px;
  font-weight: 700;
  transition: .2s ease-in-out;
}

.test__point:not(:last-child)::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 10px;
  height: 1px;
  background: #414141;
}

.test__point:not(:last-child).passed::before {
  background: #03A5CA;
}

.test__point.passed {
  background: #03A5CA;
  border-color: #03A5CA;
  color: #fff;
}

.test__point.active {
  background: #fff;
  border-color: #03A5CA;
  color: #03A5CA;
}

.test__number {
  text-align: center;
  margin-bottom: 20px;
  color: #03A5CA;
  line-height: 125%;
  font-size: 16px;
}

.test__title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

.test__item {
  display: none;
  align-items: flex-start;
  gap: 20px;
}

.test__item.active {
  display: flex;
}

.test__item-images {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 650px;
  flex-shrink: 0;
}

.test__item-images img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: zoom-in;
  user-select: none;
  pointer-events: none;
}

.test__item-info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
}

.test__item-quest {
  padding: 20px;
  background: rgba(3,165,202,.1);
  border-radius: 6px;
}

.test__item-title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}

.test__item-text {
  font-size: 14px;
  line-height: 138%;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}

.test__item-subtitle {
  font-size: 16px;
}

.test__item-answers {
  border-radius: 6px;
  border: 1px solid #ECECEC;
  background: #FFF;
  overflow: hidden;
}

.test__item-answers label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 15px;
  cursor: pointer;
}

.test__item-answers label:not(:last-child) {
  border-bottom: 1px solid #ECECEC;
}

.test__item-answers label span {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 138%;
}

.test__item-answers label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.test__item-answers label input:checked + div {
  background: #51B030;
  border-color: #51B030;
}
.test__item-answers label div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  transition: .2s ease-in-out;
}

.test__item-answers label div img {
  width: 12px;
}

.test__item-answers label.true {
  background: rgba(81, 176, 48, .1);
}

.test__item-answers label.failed {
  background: rgba(236, 28, 35, .1);
}

.test__item-answers label.failed input:checked + div {
  background: rgba(236, 28, 35, 1);
  border-color: rgba(236, 28, 35, 1);
}

.test__item-answers label p {
  font-size: 14px;
  font-weight: 500;
  line-height: 138%;
}

.test__items-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 11px;
}

.test__items-buttons button {
  padding: 11px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease-in-out;
}

.test__items-buttons button:hover {
  transform: scale(1.04);
}

.test__items-buttons button:first-child {
  border: 2px solid #03A5CA;
  background: #FFF;
}
.test__items-buttons button:last-child {
  border-radius: 6px;
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  color: #fff;
}

.modal__test {
  position: relative;
  width: 374px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 16px;
  padding: 40px 47px;
  background: #fff;
  border-radius: 6px;
}

.modal__test button {
  margin: 0;
  border: none;
  outline: none;
}

.modal__test-close {
  position: absolute;
  top: 15px;
  right: 15px;
  transition: .2s ease-in-out;
  background: none;
  padding: 0;
}

.modal__test-close:hover {
  transform: scale(1.04);
}

.modal__test-danger {
  margin-bottom: 20px;
}

.modal__test-answers {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}

.modal__test-button {
  padding: 15px 80px;
  border-radius: 10px;
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: .2s ease-in-out;
}

.modal__test-button:hover {
  transform: scale(1.04);
}

.test__true {
  padding: 10px;
  border-radius: 6px;
  background: rgba(81, 176, 48, .1);
  cursor: help;
}

.test__true-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 125%;
  font-weight: 700;
}

.test__true.disable {
  cursor: no-drop;
}

.test__true-title.disable {
  display: none;
}

.test__true-title svg {
  flex-shrink: 0;
}

.test__true-body {
  display: none;
}

.test__true-body div {
  font-size: 18px;
  /* font-weight: 700; */
  line-height: 100%;
  margin-bottom: 20px;
}

.test__true-body p {
  font-size: 14px;
  line-height: 156%;
  font-weight: 400;
}

.result__title {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(65, 65, 65, .1);
}

.result__block {
  display: flex;
  align-items: flex-start;
  gap: 110px;
  justify-content: center;
  border-bottom: 1px solid rgba(65, 65, 65, .1);
  margin-bottom: 50px;
}

.result__info {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding-bottom: 50px;
}

.result__info-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 30px;
}

.result__info-row span:first-child {
  font-weight: 600;
  font-size: 18px;
}

.result__info-row span:last-child {
  font-size: 24px;
  font-weight: 800;
}

.result__info-btn {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 20px;
}

.result__info-btn button {
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: .2s ease-in-out;
}
.result__info-btn button:hover {
  transform: scale(1.04);
}
.result__info-btn button:first-child {
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  color: #fff;
}
.result__info-btn button:last-child {
  border: 2px solid #03A5CA;
  background: #FFF;
}

.result__circle {
  width: 255px;
  height: 255px;
  position: relative;
}

.result__circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.result__circle-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  background: rgb(3, 165, 201, .1);
  width: 182px;
  height: 182px;
  border-radius: 50%;
}

.result__circle-info span:first-child {
  font-size: 18px;
  font-weight: 400;
}
.result__circle-info span:last-child {
  font-size: 20px;
  font-weight: 700;
}

.result__subtitle {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 700;
}

.result__points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.result__point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  padding-right: 30px;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  transition: .2s ease-in-out;
}

.result__point svg {
  pointer-events: none;
}

.result__point:hover {
  transform: scale(1.04);
}

.result__point.passed {
  background: rgba(3, 165, 202, .1);
}

.result__point.passed.active {
  background: rgba(3, 165, 202, 1);
  color: #fff;
}

.result__point.incorrect {
  background: rgba(236, 28, 35, .1);
}

.result__point.incorrect.active {
  background: #EC1C23;
  color: #fff;
}

.result__point.active svg path {
  stroke: #fff;
  transition: .2s ease-in-out;
}

.result__container .test__item-answers {
  pointer-events: none;
}
/*---------------------------------------test page----------------------------*/
/*---------------------------------------test-details----------------------------*/
.test-details {
  margin-top: 150px;
  margin-bottom: 100px;
}

.test-details__wrapper {
  /* display: flex; */
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px 10px;
}

.test-details__photo {
  float: left;
  padding-right: 20px;
  padding-bottom: 20px;
  min-width: 600px;
  max-width: 60%;
}

.test-details__photo img {
  width: 100%;
  border-radius: 6px;
}

.test-details__info {
  flex-basis: 522px;
}

.test-details__info h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.test-details__info p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
}

.test-details__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.test-details__buttons a {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  font-family: Montserrat;
  padding: 16px 32px;
  border-radius: 10px;
  white-space: nowrap;
}

.test-details__buttons a:first-child {
  color: var(--color-white);
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  transition: all 0.2s ease 0s;
}
.test-details__buttons a:first-child:hover {
  color: var(--color-black);
}
.test-details__buttons a:last-child {
  padding: 16px 40px;
  border: 2px solid #03A5CA;
  background: rgba(3, 165, 202, 0.00);
  color: var(--color-black);
}
.test-details__buttons a:last-child:hover {
  color: var(--color-blue);
}
/*---------------------------------------test-details----------------------------*/
/*---------------------------------------numerical any-test----------------------------*/
.any-test {
  margin-top: 190px;
  margin-bottom: 108px;
}

.any-test__wrapper h2 {
  margin-bottom: 49px;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.any-test__wrapper {
  margin: 0 auto;
  padding-top: 73px;
  max-width: 756px;
}

.any-test__content {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px 10px;
}

.any-test__left {
  max-width: 256px;
}

.any-test__info {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.8;
}

.any-test__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.any-test__buttons a {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  font-family: Montserrat;
  padding: 13px 22px;
  border-radius: 10px;
  white-space: nowrap;
}

.any-test__buttons a {
  color: var(--color-white);
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  transition: all 0.2s ease 0s;
}
.any-test__buttons a:hover {
  color: var(--color-black);
}
/*---------------------------------------numerical any-test----------------------------*/
/*---------------------------------------account----------------------------*/
.account {
  margin-top: 190px;
  margin-bottom: 108px;
}

.account__title {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.account__title--big {
  font-size: 30px;
}

.account__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.account__list {
  max-width: 346px;
}

.account__tabs {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--color-black);
  background-color: transparent;
  cursor: pointer;
}

.account__tabs:hover {
  color: var(--color-blue);
  transition: color 0.2s ease;
}

.account__tabs.active {
  color: var(--color-blue);
}

.account__info {
  display: none;
  width: 66%;
}

.profile__information {
  margin-bottom: 10px;
}

.profile__subtitles {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.profile__subtitles--small {
  margin-bottom: 26px;
  background: #03A5CA;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
}

.profile__list {
  margin-bottom: 45px;
}

.profile__items {
  margin-bottom: 30px;
}

.profile__items h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

.profile__items span {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: #6F7885;
}

.profile__button {
  margin-bottom: 27px;
}

.profile__button a {
  padding: 16px 50px;
}

.profile__subscription {
  padding-top: 91px;
  border-top: 1px solid rgba(183, 183,183, 0.5);
}

.active-subscription {
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(183, 183,183, 0.5);
}

.active-subscription__items {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 6px;
  box-shadow: 0px 8px 15px 0px rgba(14, 31, 53, 0.10);
}

.active-subscription__items:hover {
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
}

.active-subscription__items:hover .active-subscription__subtitle {
  color: var(--color-white);
}

.active-subscription__info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.active-subscription__number {
  position: relative;
}

.active-subscription__number span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 32px;
  transform: translate(-50%, -50%);
  color: var(--color-white);
}

.active-subscription__items:hover .active-subscription__number path {
  fill: var(--color-white);
}

.active-subscription__items:hover .active-subscription__number span {
  color: var(--color-blue);
}

.active-subscription__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.active-subscription__button a {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-black);
  border-radius: 22px;
  border: 2px solid var(--color-blue);
  background: #FFF;
  padding: 13px 61px;
}

.active-subscription__button a:hover {
  color: var(--color-blue);
  transition: color 0.2s ease;
}

.inactive-subscriptions {
  padding: 0;
  padding-top: 25px;
  border-bottom: none;
}

.inactive-subscriptions__button a {
  padding: 13px 80px;
}

/*---------------------------------------account----------------------------*/
/*---------------------------------------media----------------------------*/

.reviews__slider .slick-track {
  display: flex;
}

.reviews__slider .slick-track .reviews__item-wrapper {
  height: auto;
}

/*begin pop-zyavka*/

.circle-photo {
  margin: 25px auto;
  width: 100%;
  height: 259px;
  background: url(../img/logo-header.svg) center/contain no-repeat;
  opacity: 1;
}
.pop-zakas{
  position:fixed;
  bottom:35px;
  right:35px;
  z-index:10;    
  border-radius:50%;
  animation: shadow-pulse 2s infinite;
  cursor:pointer;    
}
.pop-zakas__part{
  position:relative;
  border-radius:50%;
}
.pop-zakas__bg{
  position:relative;
  border-radius:50%; 
  width:90px;
  height:90px;
  cursor:pointer; 
  background-color: #07D1E7;
  transition: background-color .5s ease,transform .45s cubic-bezier(.17,.67,.3,1.33);
  z-index:1;    
}
.pop-zakas:hover .pop-zakas__bg{  
  transform: translateZ(0) scale(1.12);
}
.pop-zakas__part:after{
  content:"";
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  width: 250vw;
  height: 250vw;
  background-color: #f3f3f3;
  border-radius: 50%;
  transform: translate3d(-50%,-50%,0) scale(.005);
  transition: transform .5s cubic-bezier(.645,.045,.355,1) .01s,opacity .5s ease;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.pop-zakas__item{
  position: absolute;
  top: 32px;
  left: 31px;
  width: 28px;
  height: 28px;
  background-image: url(../img/envelope.svg);
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center;
  z-index:1;
}
.pop-zakas.active .pop-zakas__part:after{
   transform: translate3d(-50%,-50%,0) scale(1.5);
}
.pop-zakas.active .pop-zakas__item{    
    background-image: url(../img/close2.svg);
    background-size: 22px;
}
.pop-form{
  background-color: #f3f3f3;
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:0%;
  opacity:0;
  overflow:auto;
}
html.overflow{
  overflow:hidden;
}
body.overflow{
  overflow:hidden;
  height:auto;
}
.pop-form .inner{
  height:100%;
}
.pop-data{
  min-height:100%;
  padding:50px 0 30px 0;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  justify-content: center;
  display:none;    
}
.pop-info .circle{
  opacity:1;
  margin-top:-35px;
  width: 380px;
  height: 222px;
  transform:none;
}
.pop-form.active{
  opacity:1;
  height:100%;
  transition: opacity 0.5s ease-in 0.5s;
}
.pop-data__heading{
  color:#111;
  font-size: 38px;
  line-height: 48px;
  display:block;
  margin-bottom:38px;
  text-align:center;
}
.pop-row{
  display:flex;
  justify-content: center;
}
.pop-row__item{
  position: relative;
  background-color: #fff;
  display: inline-block;
  padding: 23px 40px 23px 50px;
  border-radius: 30px;
  color: #555;
  margin-right: 25px;
  font-size: 15px;
  line-height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
  background-image: url(../img/paper-plane.svg);
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: left 25px center;
  text-indent: 10px;
}
.pop-row__item--what{
  background-image: url(../img/whatsapp-logo.svg);
}
.pop-row__item--joint{
  background-image: url(../img/support.svg);
}
.pop-row__item--work{
  background-image: url(../img/whatsapp-logo.svg);
}
.pop-row__item:hover{
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.24);
}
.pop-zayavka{
  display:none;
  min-height: 100%;
  flex-direction:column;
  justify-content: center;
}
.pop-info.active{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f3f3f3;
}
.back-row{
  margin-left: 20px;
  display:block;
  text-align:center;
}
.back-row__text{
  display:inline-block;
  padding-left:18px;
  position:relative;
  color:#777;
}
.back-row__text:hover{
  text-decoration:underline;
}
.back-row__text:before{
  content: "";
  position: absolute;
  background-image: url(../img/back2.svg);
  width: 11px;
  height: 11px;
  background-size: cover;
  top: 5px;
  left: 0; 
}
.pz-part{
  width: 760px;
  box-sizing: border-box;
  margin: -10px auto 0 auto;
}
.pz-part__heading{
  display:block;
  font-weight:bold;
  font-size:28px;
  margin-bottom:25px;
  text-align:center;
}
.pz-row{
  display:flex;
  justify-content: space-between;
  margin-bottom:30px;
}
.pz-row input{
  height: 52px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width: 31%;
  border-radius: 30px;
  text-align: center;
  outline:none;  
}
.pz-row input:hover{
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.24);
}
.pz-center{
  display:flex;
  justify-content: center;
  align-items:center;
  margin-bottom: 25px;
}
.pz-center button{
  border-radius: 30px;
  width:31%;
  height:52px;
  background-color:#000;
  color:#fff;
  border:none;
  cursor:pointer;
  text-transform:uppercase;
  font-size:13px;
  outline:none;
}
.pz-center button:hover{
  box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.24);
}
@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
  }
}
.zayavka{
  display:none;
}

/*end pop-zayvka*/

.test-blocked {
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  padding: 20px;
  color: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
}

.test-blocked h3 {
  font-size: 20px;
  font-weight: 500;
}

.found {
  background: url('/img/404.png') right top / auto no-repeat;
  /* height: 100vh; */
  padding-top: 220px;
  padding-bottom: 350px;
}

.found__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.found__title {

}

.found__text {
  max-width: 406px;
  color: rgba(0, 0, 0, 0.70);
  margin-bottom: 52px;
  font-weight: 400;
  line-height: 130%;
}

.found__link {
  padding: 17px 70px;
  border-radius: 10px;
  background: linear-gradient(270deg, #03A5CA 0%, #07D1E7 100%);
  color: #fff;
}

@media (max-width: 1200px) {
  .reviews-slider__next {
    right: 0;
  }
  .reviews-slider__prev {
    left: 0;
  }
}

@media (max-width: 1050px) {
  .package__items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .pop-data__heading {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  .pop-zakas__bg {    
    width: 80px;
    height: 80px;
  }  
  .pop-zakas__item {
    position: absolute;
    top: 27px;
    left: 27px;
    width: 28px;
    height: 28px
  }
  .pop-info .circle{
  	margin-top:0;
  } 
}

@media (max-width: 992px) {
  .test__item.active {
    flex-direction: column;
  }
  .test__item-images {
    width: 100%;
    height: auto;
  }
  #demo-canvas {
    display: none!important;
  }
}

@media (max-width: 980px) {
  .header__burger{
    z-index: 15;
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    top: 0px;
    margin-left: 5px;
    flex: 0 0 auto;
  }
  .header__burger span,
  .header__burger::before,
  .header__burger::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: var(--color-blue);
  }
  .header__burger::before,
  .header__burger::after{
    content: '';
  }
  .header__burger::before{
    top: 0;
  }
  .header__burger::after{
    bottom: -2px;
    width: 100%;
  }
  .header__burger span{
    top: 50%;
    transform: scale(1) translate(0px -50%);
  }
  .header__burger._active span{
    display: none;
  }
  .header__burger._active::before{
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .header__burger._active::after{
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    width: 100%;
  }
  .menu{
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    padding: 45px 30px 30px 30px;
    transition: All 0.5s ease 0s;
    overflow: auto;
  }
  .menu._active{
    top: 0;
  }
  .menu__list-item:not(:last-child){
    margin-bottom: 30px;
  }
  .menu__list{
    display: block;
    text-align: center;
    position: relative;
  }
  .menu__link{
    font-weight: 600;
    font-size: 25px;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #000000;
  }
  .tests__items {
    grid-template-columns: 1fr;
  }
  .video__item iframe {
    width: 100%;
    height: 400px;
  }
  .header__bottom {
    padding: 0px;
  }
  .homepage {
    padding: 120px 10px;
    margin-bottom: 50px;
  }

  .test-details__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .test-details__info {
    order: -1;
    flex-basis: 100%;
  }

  .any-test {
    margin-top: 100px;
  }

  .account {
    margin-top: 100px;
  }

  .account__tabs {
    font-size: 13px;
  }

  .account__info {
    width: 70%;
  }

  .active-subscription__info {
    gap: 10px;
  }

  .active-subscription__items {
    padding: 40px 20px;
  }

  .active-subscription__button a {
    padding: 13px 40px;
  }

  .inactive-subscriptions__button a {
    padding: 13px 60px;
  }

  .account__info .any-test__content {
    flex-direction: column;
  }
}

@media (max-width: 880px) {
  .pz-part {
    width: 400px;
  }  
  .pz-row{
    flex-direction:column;
    margin-bottom:12px;
  }
  .pz-row input{
    width:100%;
    margin-bottom:20px;
  }
  .pz-center button{
    width:200px;
  }
}


@media (max-width: 770px) {
  .komektest__photo {
    width: 100%;
  }
  .logo {
    font-size: 18px;
  }
  .logo img {
    width: 30px;
  }
  .header__socials {
    display: none;
  }
  .header__content{
    width: 100%;
  }
  .homepage__content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .komektest,
  .numbers,
  .tests,
  .package,
  .questions {
    margin-bottom: 50px;
  }
  .komektest__content {
  flex-wrap: wrap;
  justify-content: center;
  /* padding: 10px; */
  gap: 0;
  }
  .komektest__info {
    order: -1;
    flex-basis: 100%;
    padding: 20px;
  }
  .numbers__items {
  flex-wrap: wrap;
  justify-content: center;
  }
  .numbers__item {
  position: relative;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0px 8px 15px 0px rgba(14, 31, 53, 0.10);
  padding: 40px 10px;
  }
  .prices {
    margin-top: 100px;
    margin-bottom: 50px;
  }
  .aboutus {
    margin-top: 80px;
    margin-bottom: 50px;
  }
  .aboutus__advantage {
    margin-bottom: 0px;
  }
  .bread-crumbs {
    margin-bottom: 30px;
  }
  .aboutus__advantage li svg {
    width: 100px;
  }

  .test-details {
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .any-test__content {
    align-items: center;
    flex-direction: column;
  }

  .any-test__buttons {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .account__wrapper {
    flex-direction: column;
  }

  .account__list {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
  }

  .account__tabs {
    line-height: 15px;
  }

  .account__info {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .pop-zakas{
    position: fixed;
    bottom: 15px;
    right: 15px;
  }
  .footer-nav {
      display: none;
  }
  .pop-zakas__bg {
    width: 70px;
    height: 70px;
  }
  .pop-zakas__item {
    position: absolute;
    top: 21px;
    left: 22px;
    background-size: 20px;
  }
  .pop-zakas.active .pop-zakas__item {    
    background-size: 16px;
  }  
  .pop-row{
    flex-wrap:wrap;
  }
  .pop-row__item{
    width:100%;
    margin-bottom:20px;
  }
  .pop-row__item{
  	margin-right:0;
  }
  .pop-info .circle-photo{
  	display:none;
  }
  .pop-zakas.active{
  	bottom:initial;
  	top:20px;
  }
  .pop-data {
    min-height: 100%;
    padding: 120px 0px 0px 0px;
    justify-content: flex-start;
  }
  .pop-zayavka{
    justify-content: flex-start;
    padding: 120px 0px 0px 0px;
  }
  .pz-part {
    width: auto;
  }    
  #message{
    width: 100%;
  }
  .cont-form .form-info{
    margin-bottom: 0px;
  }
  .mess{
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .header__part a {
    font-size: 12px;
  }
  .header__part a:first-child {
    padding: 8px 18px;
    border-radius: 15px;
  }
  .header__part a:last-child {
    padding: 8px 20px;
    border-radius: 15px;
  }
  .header__part {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  .header__box {
    gap: 10px;
  }
  .header__body {
    padding: 15px 10px;
  }
  .logo {
    font-size: 14px;
  }
  .test-details__buttons,
  .homepage__buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .homepage__info p {
    margin-bottom: 20px;
  }
  .blue__content {
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 10px 40px;
    margin-bottom: 50px;
  }
  .blue__info {
    gap: 10px;
  }
  .blue__info h2 {
    font-size: 22px;
  }
  .reviews__item {
    max-width: 100%;
  }
  .accordion__content p {
    font-size: 12px;
  }
  .accordion__title h3 {
    font-size: 14px;
  }
  .blog__item {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
  }
  .video__item iframe {
    height: 350px;
  }
  .popup__content{
    padding: 40px 10px;
  }
  .aboutus {
    margin-top: 60px;
    margin-bottom: 50px;
  }
  .aboutus__photo {
    margin-bottom: 30px;
  }
  .aboutus__title h1 {
    font-size: 28px;
  }
  .aboutus__text p {
    font-size: 14px;
  }
  .aboutus__text {
    margin-bottom: 30px;
  }
  .aboutus__body h2 {
    font-size: 18px;
  }
  .aboutus__advantage li p {
    font-size: 14px;
  }
  .aboutus__advantage li {
    gap: 10px;
  }
    .blog__item-info h2 {
    font-size: 18px;
  }
  .blog__item-info p{
    font-size: 14px;
  }
  .blog__item-box {
    font-size: 12px;
  }

  .active-subscription__items {
    margin: 0 auto;
    width: 80%;
    flex-direction: column;
  }

  .active-subscription__info {
    margin-bottom: 30px;
    flex-direction: column;
  }
}


@media (max-width: 470px) {
  .tests__item-block {
    padding: 0px 20px 20px 20px;
  }
  .blue__info--mod {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 455px) {
  .aboutus {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .active-subscription__items {
    width: 90%;
  }

  .account__content .bread-crumbs p {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .header__part a:first-child {
    padding: 5px 10px;
    border-radius: 15px;
  }
  .header__part a:last-child {
    padding: 5px 10px;
    border-radius: 15px;
  }
  .logo {
    gap: 5px;
  }
  .homepage {
    padding-bottom: 50px;
  }
  .footer__body {
    padding: 10px;
  }
  .footer__bottom {
    padding: 10px;
  }
  .tests__button a {
    padding: 10px;
    font-size: 12px;
  }
  .article__title h1 {
    font-size: 28px;
  }
  .article p {
    font-size: 16px;
    /* margin-bottom: 30px; */
  }
  .article h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .socials__block p {
    margin-bottom: 0px;
  }
  .video__item iframe {
    height: 210px;
  }
  .video {
    margin-bottom: 50px;
  }
  .reviews__content {
    padding: 50px 0px;
  }
  .popup__block p, .popup__block a {
    font-size: 13px;
  }
  .popup__checkbox label {
    font-size: 14px;
  }
  .title h2 {
    font-size: 25px;
    margin-bottom: 0px;
  }
  .video__content .title {
    margin-bottom: 20px;
  }
}
/*---------------------------------------media----------------------------*/

.start-page {
    background: #03a5ca11;
    padding: 200px 10px 65px;
    margin-bottom: 100px;
}

/*alert*/

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #4ad395;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}

@media (max-width:1200px) {
    .alert--width {
        width: 370px;
    }
    .alert--content {
        padding: 25px;
    }
    .alert--img__item svg {
        width: 75px;
        height: 75px;
    }
    .alert-text {
        margin-top: 10px;
    }
    .alert--title {
        font-size: 24px;
    }
    .alert--subtitle {
        font-size: 18px;
    }
}

@media (max-width:500px) {
    .alert--content {
        width: 92%;
    }
    .alert--img__item svg {
        width: 60px;
        height: 60px;
    }
    .alert--title {
        font-size: 22px;
    }
}


/*alert*/


/*formLoader*/

.form_loader {
    position: fixed;
    display: none;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
    position: absolute;
    width: 350px;
    max-width: 90%;
    left: 50%;
    top: 45%;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.form_loader_animate {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.form_loader_animate:after {
    content: "";
    display: block;
    width: 85%;
    height: 85%;
    /*margin: 8px;*/
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #C53364 transparent #C53364 transparent;
    animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
    font-size: 20px;
    text-align: center;
}

@keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*formLoader*/
