
@import url(https://fonts.googleapis.com/css?family=Cabin:regular,500,600,700&display=swap);
@charset "UTF-8";

@font-face {
  font-family: icons;
  font-display: swap;
  src: url("../fonts/icons.woff2") format("woff2"), url("../fonts/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "icons";
  src: url("fonts/icons.eot?8kbblh");
  src: url("fonts/icons.eot?8kbblh#iefix") format("embedded-opentype"), url("fonts/icons.ttf?8kbblh") format("truetype"), url("fonts/icons.woff?8kbblh") format("woff"), url("fonts/icons.svg?8kbblh#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-checkmark:before {
  content: "\e90a";
}
.icon-speed:before {
  content: "\e906";
}
.icon-play_arrow:before {
  content: "\e901";
}
.icon-close:before {
  content: "\e909";
}
.icon-security:before {
  content: "\e905";
}
.icon-twitter:before {
  content: "\e902";
}
.icon-twitter:before {
  content: "\e902";
}
.icon-facebook:before {
  content: "\e903";
}
.icon-instagram:before {
  content: "\e904";
}
.icon-calendar:before {
  content: "\e908";
}
.icon-newbies:before {
  content: "\e907";
}



* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 340px;
}

body {
  color: #000;
  line-height: 1;
  font-family: Cabin,Arial,Sans-Serif;
  font-size: 1.25rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
   font-family: Cabin,Arial,Sans-Serif;
}

a {
  color: inherit;
   font-family: Cabin,Arial,Sans-Serif;
}

a:link,
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-weight: inherit;
  font-size: inherit;
}

body {
  background-color: #fff;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 70.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.header{
      border-bottom : 1px solid #73777b;
    box-shadow: 0 1px 2px 0 rgba(30,35,40,.1);
}
.header__container {
    
    /*padding-top : 15px;*/
    /*padding-bottom : 15px;*/
  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;
}

.header__logo {
    max-width : 15rem;
}

.header__logo a  {
  width: 100%;
  height: 100%;
}
.header__logo a img {
  width: 100%;
  height: 100%;
}
.icon-menu {
  display: none;
}

.footer {
  background: -o-linear-gradient(rgba(55, 71, 79, 0.05) 0px, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(rgba(55, 71, 79, 0.05) 0px, rgba(255, 255, 255, 0) 100%);
  padding: 3.125rem 0;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction : column;
}
.footer__bottom {
    border-top : 1px solid #73777b;
    padding-top : 15px;
}
.footer__bottom a{
   color :#73777b ;
   font-size : 16px;
   margin-right : 20px;
}
.footer__top{
     display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          padding-bottom : 15px;
}
.footer__sub-title {
  line-height: 1.2857142857;
  font-size: 0.875rem;
  max-width: 20rem;
  margin-top: 0.9375rem;
}

.footer__sub-title span {
  font-weight: 700;
}

.footer__icon {
  color: black;
  font-size: 1.875rem;
    transition: 0.5s ease;
  
}
.footer__icon:hover {
  color: #e64a19;
}
.footer__icon:not(:last-child) {
  margin-bottom: 0.625rem;
}

.footer__right {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spollers-disclosure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 0.875rem;
  margin: 1.25rem 0;
}

.spollers-disclosure__title {
  text-decoration: underline;
  color : #73777b;
}

/*@supports (font-size: clamp( 0.8125rem , 0.6890432099rem  +  0.6172839506vw , 1.125rem )) {*/
/*  .spollers-disclosure__title {*/
/*    font-size: clamp( 0.8125rem , 0.6890432099rem  +  0.6172839506vw , 1.125rem );*/
/*  }*/
/*}*/

/*@supports not (font-size: clamp( 0.8125rem , 0.6890432099rem  +  0.6172839506vw , 1.125rem )) {*/
/*  .spollers-disclosure__title {*/
/*    font-size: calc(0.8125rem + 0.3125 * (100vw - 20rem) / 50.625);*/
/*  }*/
/*}*/

.spollers-disclosure__item {
  position: relative;
  margin-left: 0.75rem;
  color :#73777b;
}

.spollers-disclosure__body {
  position: absolute;
  top: 1.875rem;
  z-index: 99!important;
  background-color: #fff;
  width: 14.375rem;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1019607843);
  padding: 1.25rem;
  border-radius: 0.375rem;
}

.spollers-disclosure__body.text-right {
  right: 0;
}

.spollers-disclosure__body.text-left {
  left: 0;
}
.desc {
  margin-bottom: 3.125rem;
}
.desc__container{
    position : relative;
  block-size: fit-content;
}
.desc__img{
    position : absolute;
    z-index : -1;
    top: 5rem;
    right : 5rem;
    width : 100%;
    height :100%;
     display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-end;
}
.desc__img img{
    max-width : 40%;
    max-height : 100%;

          
}
.desc__title {
  margin-bottom: 1.25rem;
  font-weight: 500;
}

@supports (font-size: clamp( 1.5rem , 1.125023437rem  +  1.2499739589vw , 2.25rem )) {
  .desc__title {
    font-size: clamp( 1.5rem , 1.125023437rem  +  1.2499739589vw , 2.25rem );
  }
}

@supports not (font-size: clamp( 1.5rem , 1.125023437rem  +  1.2499739589vw , 2.25rem )) {
  .desc__title {
    font-size: calc(1.5rem + 0.75 * (100vw - 29.99875rem) / 60.00125);
  }
}

.desc__sub-title {
  font-size: 1rem;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.desc__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 400;
  line-height: 120%;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.desc__item img {
max-width : 1.75rem;
margin-right : 15px;
}

.desc__item p {
 font-weight : 400;
}
.desc__item span {
 font-weight : 700;
  margin-right: 0.3125rem;
}

.content-page {
  padding-bottom: 6.25rem;
}
.content-page__title {
  font-size: 17px;
  font-weight: 500;
  color : #73777b;
  text-align : center;
 display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  
}
.content-page__title span{
  font-weight: 600;
   margin-left : 10px;
}
.content-page__title i{
  font-weight: 600;
  margin-right : 10px;
  font-size : 18px;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
    justify-content: center;
}
.content-card {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  background-color: #fff;
  margin: 1.25rem 0;
  border-radius: .8rem;
  color: #000;
  box-shadow: 5px 0 15px #0000001a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
          /* column-gap: 3rem; */
}
.content-card:hover {
  box-shadow: 0px 0 20px #e64a19;
}
.content-card:nth-child(2){
    box-shadow: 3px 0 30px #dd2c004d;
}

.content-page__title i {
    font-size : 18px;
    font-weight : 700;
    margin-right : 10px;
}
.content-card__img {
  margin: 1.25rem 0;
  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;
  align-self: center;
  justify-self: center;
 width: 25%;
  padding-left: 20px;
  min-height: 100%;
  width: 13.5rem;
}

.content-card__img img {
 max-width: 9rem;
  width: 100%;
}

.content-card__title {
  font-weight: 600;
  margin-bottom: 1.875rem;
  max-width: 390px;
  line-height: 120%;
  font-size : 20px;
}

.content-card__inform {
   width: 45%; 
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* margin-bottom: 1.25rem; */
}

.content-card__number {
  position: absolute;
  top: 0;
  left: 0;
  width : 60px;
  height: 60px;
  z-index:11;
  background-color : #223770;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 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;
}

.content-card__number p {
  font-size: 1.5rem;
 color: #fff;
 font-weight : 700;
}

.content-card__adwantage {
  margin-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-card__adwantage i {
  color: #2196F3;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1rem;
}
.content-card__adwantage p {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.content-card__visit {
  width: 40%;
  padding: 20px 0;
          display: grid;
          grid-template-columns: repeat(2 , 1fr);
          grid-template-rows: 50px 50px;
          align-content: center;
          gap: 30px;
  padding-right: 1.25rem;
  height: 100%;
}
.button-visit{
         background-color: #e64a19;
  padding: 1.25rem 0.625rem;
  border-radius: .5rem;
  border: 2px solid #e64a19;
  color: #fff;
  margin-top : 20px;
  font-size : 22px;
  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.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;

}
/*.content-card__visit button {*/
/*    background-color: #e64a19;*/
/*  padding: 1.25rem 0.625rem;*/
/*  border-radius: 0.9375rem;*/
/*  border: 2px solid #e64a19;*/
/*  color: #fff;*/
/*  margin-top : 20px;*/
/*  font-weight : 600;*/
/*  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.5s ease 0s;*/
/*  -o-transition: all 0.5s ease 0s;*/
/*  transition: all 0.5s ease 0s;*/
/*}*/

.content-card__visit span {
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 12px;
}



.content-card__visit p {
  text-align: center;
    font-weight : 500;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.content-card__visit p span {
  font-weight: 700;
  color: gold;
}

.questions__title {
  margin: 3.125rem 0;
  font-weight: 500;
}

@supports (font-size: clamp( 1.875rem , 1.7668918919rem  +  0.5405405405vw , 2.25rem )) {
  .questions__title {
    font-size: clamp( 1.875rem , 1.7668918919rem  +  0.5405405405vw , 2.25rem );
  }
}

@supports not (font-size: clamp( 1.875rem , 1.7668918919rem  +  0.5405405405vw , 2.25rem )) {
  .questions__title {
    font-size: calc(1.875rem + 0.375 * (100vw - 20rem) / 69.375);
  }
}

.questions__spollers .spollers__item {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 5px 0px 15px;
          box-shadow: rgba(0, 0, 0, 0.1) 5px 0px 15px;
  padding: 1.5625rem 0.625rem 1.5625rem 0.9375rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5625rem;
}

.questions__spollers .spollers__title {
  font-size: 1rem;
  font-weight: 700;
  text-align: start;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.questions__spollers .spollers__title i {
  font-size: 1.5rem;
  margin-right: 0.625rem;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display : inline-block;
}
.spollers__title._spoller-active i {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.questions__spollers .spollers__body {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  line-height: 150%;
}

.category {
  padding-top: 2.8125rem;
  padding-bottom: 5.625rem;
  background: -o-linear-gradient(rgba(55, 71, 79, 0.05) 0px, rgba(255, 255, 255, 0.418) 100%);
  background: linear-gradient(rgba(55, 71, 79, 0.05) 0px, rgba(255, 255, 255, 0.418) 100%);
}

.category__title {
  margin: 1.5625rem 0;
  font-weight: 500;
}

@supports (font-size: clamp( 1.875rem , 1.7668918919rem  +  0.5405405405vw , 2.25rem )) {
  .category__title {
    font-size: clamp( 1.875rem , 1.7668918919rem  +  0.5405405405vw , 2.25rem );
  }
}

@supports not (font-size: clamp( 1.875rem , 1.7668918919rem  +  0.5405405405vw , 2.25rem )) {
  .category__title {
    font-size: calc(1.875rem + 0.375 * (100vw - 20rem) / 69.375);
  }
}

.category__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}

.category__card {
  width: 100%;
  padding: 2.5rem 1.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 5px 0px 15px;
          box-shadow: rgba(0, 0, 0, 0.5) 5px 0px 15px;
  border-radius: 0.375rem;
  position: relative;
  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;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category__disc{
    color : #e64a19;
    font-weight  : 700;
    font-size : 20px;
    margin-bottom : 20px;
}
.category__img {
  max-width: 8rem;
  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;
}

.category__img img {
  width: 100%;
  height : 100%;
}

.category__adwantages {
  margin: 1.875rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex : 1 1 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.category__adwantages i {
  color: #00acc1;
  border: 0.1875rem solid rgba(55, 71, 79, 0.5019607843);
  padding: 0.9375rem;
  border-radius: 50%;
}

.category__adwantages p {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 120%;
 
}
.category__number  {
 width: 50px;
 height: 50px;
 position: absolute;
 top: 0;
 left: 0;
 color: white;
 display: flex;
 align-items: center;
 justify-content: center;
 background-color: #e64a19;
 border-top-left-radius: 10px;
 border-bottom-right-radius: 10px;
}

.category__button {
  text-align: center;
  background: no-repeat padding-box #e64a19;
  -webkit-box-shadow: 0 5px 5px rgba(230, 74, 25, 0.1019607843);
          box-shadow: 0 5px 5px rgba(230, 74, 25, 0.1019607843);
  border-radius: 8px;
  width: 100%;
  display: inline-block;
  font-size: 1.1875rem;
  padding: 0.9375rem;
  color: #fff;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}
@media (max-width: 420.99px) {
  .content-card__visit{
    display: flex;
    flex-direction: column;
  }
  .content-card__adwantage p{
      font-size  : 14px;
  }
  .content-card__mark{margin: 0 auto;}
}

 @media (max-width: 768.99px) {
.desc__img{display : none}
.popup__left {display : none}
} 
@media (max-width: 600.99px) {
  .content-card__title{
    font-size :16px;
    /*font-weight : 500;*/
  }
  .content-card__adwantage{
      font-size :14px;
      margin-bottom : .5rem;
  }  
  .content-card__inform{
     padding : 00px 20px 20px 20px!important;
     margin : 0px;
  }
  .content-card__visit {
     margin-bottom : 0px!important;
     padding : 0px 20px!important;
     gap : 10px;
  }
   .content-card__visit span{
     margin-bottom : 20px!important;
  }
    .content-card__visit button{
     margin-top : 0px!important;
  }
  .content-card__title{
      margin-bottom : 15px;
  }
  .button-visit{
    margin : 0!important;

}
  .content-card__img{margin-top : 60px!important;
      margin-bottom : 10px!important;
      max-width : 7rem;
  }
  .content-card__mark{margin: 0 auto;
      width:50px;
      height:50px;
  }
}
@media (max-width: 61.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 10;
  }

  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu span {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 80%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@media (max-width: 47.99875em) {
  .spollers-disclosure {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .spollers-disclosure__all {
    width: 100%;
    margin-bottom: 0.5em;
  }

  .spollers-disclosure__item {
    width: 50%;
    margin: 0;
    margin-left: 0;
    /*margin-bottom: 0.3em;*/
  }

  .spollers-disclosure__title:nth-child(3) {
    display: none;
  }

  .desc__sub-title {
    display: none;
  }

  .category__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
            align-items : center;
            justify-content : center;
  }

  .category__card {
    width: 80%;
  }
}

@media (max-width: 29.99875em) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__logo {
    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;
           
  }

  .footer__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2.5rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
.footer__icon:not(:last-child) {
     margin-bottom: 0rem; 
}
  .footer__icon {
    margin: 0 1.25rem;
  }

  .category__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .category__card {
    width: 100%;
  }
}

.footer__logo {
    max-width : 15rem;
}

.footer__logo a  {
  width: 100%;
  height: 100%;
}
.footer__logo a img {
  width: 100%;
  height: 100%;
}
.content-card__mark {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #43c09a;
    border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  justify-self: flex-start;
}
.marks__text{
  font-size: 38px;
  font-weight: bold;
  display: flex;
  align-items: center;
    color : #fff;
  justify-content: center;
}
@media (max-width: 925.99px) {
  .content-card {
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .content-card__inform {
    padding: 1.25rem;
    width: 100%;
  }

  .content-card__number 
  {
    align-self: start;
    position: static;
    border-radius: 0;
    border-bottom-right-radius: 10px;
  }

  .content-card__visit {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
  }
  .content-card__img{
    width: 100%;
    max-width: 18rem;
    margin: 5rem 0 1.5rem 0;
    
    padding-left: 0px;
  }
  .content-card__mark {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
    position: absolute!important;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: #43c09a0;
        border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
   
  }
  .marks__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #00cccc; /* Колір прогресу оцінки */
  }
  .marks__text {
    position: relative;
    z-index: 10;
    width: 70px;
    height: 70px;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.banner {
  background-color: #223770;
  padding: rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index : 99;
  padding: 10px 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.banner.banner-show {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.banner__container {
  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;
          flex-direction:column;
}
.banner__top{
    width: 100%;
    display: flex;
    justify-content : end;
    position:relative;
}
.banner__close{
    position : relative;
    color : #fff;
    font-size : 30px;
}

.banner__bottom {
    width  : 100%;
      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;
}
.banner__logo {
  width: 8rem;
  height: 7rem;
}

.banner__logo img {
  width: 100%;
  height: 100%;
}

.banner__title {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: white;
  margin-right: 10px;
}

.banner__button {
  padding: 1.25rem;
  background:#fff;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  background-color : #e64a19;
  color : #fff;
}
@media(max-width:768.99px){
  /* .banner__container{
    flex-direction: column;
  } */
  .banner__logo{display: none;}
  .banner__title {
    
  }
}

.popup{
 
  position: fixed;
  z-index: 20;
  width: 100%;
  height:100%;
  background-color: #000000bd;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  padding: 20px;
}
.popup.active{
  display: flex;
}
.popup__container{
  position: relative;
  width:40%;
  min-height: 40%;
  border-radius: 30px;
  background-color: white;
}
.popup__header{
    margin-top : 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
   padding-top : 30px;
   position:relative;
}
.popup__header img{
  
  max-width : 5rem;
}
.popup__content{
}
.popup__left {
    flex : 0 0  50%;
    display: flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
}
.popup__right {
    flex : 0 0  50%;
    display: flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
}
.popup__left img{
   max-width : 12rem;
}
.popup__content h2{
    margin-bottom : 10px;
}
.popup__content h2 span{
    color : #e64a19;
    font-size : 18px;
}
.popup__header p{
    position :absolute;
  top: 0;
  left : 0;
  font-size : 12px;
    color: #333;
}

.popup__close{
  text-decoration: underline;
  color: #333;
  font-weight: 500;
  font-size : 12px;
}
.popup__content{
  display: flex;
  align-items:center;
  justify-content: center;
  flex-direction: row;
  padding: 30px 0;
}
.popup__title{
  font-weight: 700;
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
}
.popup__sub-title{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  line-height: 200%;
}
.popup__sub-title span{
  font-size: 50px;
  font-weight: 700;
}
.popup__button{
  width: 60%;
  background-color: #e64a19;
  border-radius: 20px;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}
@media(max-width : 1100px){
  .popup__container{
    width: 90%;
  }
  .popup__title{
    font-size: 28px;
  }
  .popup__sub-title{
    font-size: 20px;
  }
}