:root {
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-black-light: #35353C;
  --clr-gray: #949294;
  --gray-border: #DDDDDD;

  --pagination-color: #EDEEF2;

  --clr-header-red: #b81b1a;

  --clr-carnelian-100: #B81A1A;
  --clr-carnelian-50: #B81A1A80;
  --clr-carnelian-10: #B81A1A1A;
  
  --clr-netherworld-100: #8A1313;
  --clr-netherworld-50: #8A131380;
  --clr-netherworld-10: #8A13131A;

  --color-primary: var(--clr-carnelian-100);
  --text-color: var(--clr-black);
  --background-color: var(--clr-white);
  --header-bg-color: transparent;
  --header-text-color: var(--clr-black);
  --footer-bg-color: var(--clr-netherworld-100);
  --footer-text-color: var(--clr-white);
  --block-bg-color: #F9F9F9;
  --block-text-red: #e02b20;
  
  --font-family: "Montserrat";
  --font-family-secondary: "Disruptors Script";
 
  --container-width-sm: 1160px;  
  --container-width-md: 1240px;  
  --container-gap-md: 30px;  
  --container-gap-lg: 40px;   

  --header-height: 66px;
  --header-message-height: 48px;
} 
@media (min-width: 1025px) {
  :root {
    --header-height: 66px;
  }
}

@media (max-width: 600px){
  :root {
    --header-height: 73px;
    --header-message-height: 64px;
  }
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

pre{
  font-family: inherit;
  letter-spacing: 0.005em;
}

footer pre{
  letter-spacing:0.014em;
}
body, html {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
}

body.active, html.active{
  overflow: hidden !important;
}

body {
  font-family: var(--font-family), sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;
}
::selection {
  color: var(--clr-white);
  background: var(--color-primary);
}
#page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: calc( var(--header-height) + var(--header-message-height));
  overflow: hidden;
}
#main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
}

.container,
[class*="__container"] {
  width: 100%;
  max-width: calc(var(--container-width-md) + var(--container-gap-md) * 2);
  margin: 0 auto;
  padding-left: var(--container-gap-md);
  padding-right: var(--container-gap-md);
}

input[type="radio"],
input[type="checkbox"],
input[type="range"] {
  accent-color: var(--color-primary);
}

@media (max-width:1200px){
  .container, [class*="__container"]{
    --container-gap-md: 20px;
  }
}

.download-btn{
  display: none;
}


.btn {
  font-family: inherit;
  font-size: inherit;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  color: inherit;
  background-color: transparent;
  appearance: none;
  text-decoration: none;
  border: 1px solid transparent; 
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all .3s ease;
  width: fit-content;
}
.btn svg,
.btn svg * {
  transition: all .3s ease;
}
.btn.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  user-select: none;
}
.btn--primary,
.btn--secondary,
.btn--outlined {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
}

.btn-red{
  background-color: var(--clr-carnelian-100);
  padding: 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: var(--clr-white);
  width: 100%;
}

.btn--primary {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--clr-white);
}
.btn--secondary {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  color: var(--text-color);
}
.btn--outlined {
  padding: 15px 67.5px;
  color: var(--clr-white);
  background-color: transparent;
  border: 1px solid var(--clr-white);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
}
.btn--icon {
  font-size: 20px;
  line-height: 1;
  gap: 20px;
}
.btn--icon svg rect{
  fill: var(--icon-bg);
}
.btn--icon svg path{
  fill: var(--icon-color);
}
.btn--icon-primary {
  --icon-color: var(--clr-white);
  --icon-bg: var(--color-primary);
  color: var(--color-primary);
}
.btn--icon-secondary {
  --icon-color: var(--text-color);
  --icon-bg: var(--color-secondary);
  color: var(--clr-white);
}
.btn--icon-secondary::after {
  background-color: var(--color-secondary);
  color: var(--text-color);
}

.btn--red{
  border-color: var(--clr-carnelian-100);
  color:var(--clr-carnelian-100);
}

@media (hover:hover) {
  .btn--primary:hover {
    color: var(--clr-white);
    background-color: var(--text-color);
    border-color: var(--text-color);
  }
  .btn--secondary:hover {
    color: var(--clr-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .btn--outlined:hover {
    color: var(--clr-white);
    background-color: var(--clr-carnelian-100);
    border-color: var(--clr-carnelian-100);
  }
  .btn--icon-primary:hover {
    --icon-color: var(--clr-white);
    --icon-bg: var(--text-color);
    color: var(--text-color);
  }
  .btn--icon-secondary:hover {
    --icon-color: var(--text-color);
    --icon-bg: var(--color-primary);
    color: var(--color-primary);
  }
}
@media (hover:none) {
  .btn--primary:active {
    color: var(--clr-white);
    background-color: var(--text-color);
    border-color: var(--text-color);
  }
  .btn--secondary:active {
    color: var(--clr-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .btn--outlined:active {
    color: var(--clr-white);
    background-color: var(--clr-netherworld-100);
    border-color: var(--clr-netherworld-100);
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  margin: 32px 0 50px 0;
  color: rgba(61, 63, 67, 0.5);
  overflow-x: auto;
}

.breadcrumbs-divider{
  position: relative;
  width: 24px;
  height: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyNCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDE1TDE1IDEwTDEwIDUiIHN0cm9rZT0iIzNEM0Y0MyIgc3Ryb2tlLXdpZHRoPSIxLjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  min-width: 24px;
  flex-shrink: 0;
}

.breadcrumbs a{
  text-decoration: none;
  color: rgba(61, 63, 67, 0.5);
  display: flex;
  min-width: max-content;
}

.breadcrumbs span{
  display: flex;
  min-width: max-content;
}

.breadcrumbs .current-item{
  color: var(--clr-black);
  font-weight: 500;
  min-width: max-content;
}

.posts-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 20px;
}

.blog-page{
  margin-bottom: 200px;
}

.posts-more{
  margin: 50px auto;
  display: flex;
  padding: 15px 51px;
}

.pagination{
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-numbers{
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  text-decoration: none;
  color: var(--clr-gray);
  transition: 300ms all;
}

.page-numbers.current, .page-numbers:hover{
  color: var(--clr-carnelian-100);
} 


.post-single{
  margin-bottom: 200px;
}



.post-single__img{
  max-height: 480px;
  display: flex;
}

.post-single__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
  object-position: top;
}

.post-single__body{
  max-width: 1030px;
  margin: 30px auto 0px auto;
}

.post-single__meta{
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.post-single__date, .post-single__time{
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: rgba(61, 63, 67, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-single__title{
  font-size: 40px;
  font-weight: 700;
  line-height: 48.76px;
  margin-bottom: 40px;
  color: #121212;
}

.post-single__content{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-black-light);
}


.post-single__content p:not(:last-child),
.post-single__content ul:not(:last-child),
.post-single__content ol:not(:last-child){
  margin-bottom: 32px;
}

.post-single__content a{
  color: var(--clr-carnelian-100);
}

.post-single__content ol{
  padding-left: 26px;
}
.post-single__content ul li{
  list-style-type: none;
  padding-left: 26px;
  position: relative;
}

.post-single__content ul li:not(:last-child){
  margin-bottom: 10px;
}

.post-single__content ul li:before{
  content:'';
  position: absolute;
  top: 12px;
  left: 10px;
  width: 4px;
  height: 4px;
  background-color: var(--clr-black-light);
  border-radius: 100%;
}

.post-single__content h2{
  margin: 40px 0 20px 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 28px;
}

.post-author{
  background-color: var(--block-bg-color);
  margin: 50px 0;
}
.post-author__wrapper{
  max-width: 1030px;
  margin: 0 auto;
  padding: 20px 0;
}

.post-author__wrapper{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}
.post-author__img img{
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  display: flex;
}

.post-author__name{
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  color: var(--clr-black);
}

.post-author__descr{
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-black-light);
}

.posts-nav{
  margin-top: 50px;
}
.post-navigation{
  max-width: 1030px;
  margin: 0 auto;
}

.posts-nav .screen-reader-text{
  display: none;
}

.posts-nav .nav-links{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-previous a, .nav-next a{
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #121212;

}


.post-single__table ol{
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.post-single__table a{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #0066CC;
  text-decoration: none;
}

.post-single__table li{
  color: #0066CC;
}








.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card--big {
  border-bottom: 1px solid #CDC9C5;
  padding-bottom: 20px;
}
.post-card .post-card__thumbnail-wrap {
  --radius: 16px 16px 0px 0px;
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  height: var(--height);
  background-color: var(--clr-white);

}
.post-card--small .post-card__thumbnail-wrap {
  --height: 245px;
}
.post-card--big .post-card__thumbnail-wrap {
  --height: 356px;
}
.post-card--small .post-card__thumbnail-wrap {
  margin-bottom: 28px;
}
.post-card--big .post-card__thumbnail-wrap {
  margin-bottom: 40px;
}
.post-card .post-card__thumbnail {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  border-radius: var(--radius);
}
.post-card .post-card__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.post-card .post-card__category {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--clr-green-20);
  text-decoration: none;
  text-transform: uppercase;
}
.post-card .post-card__date, .post-card__time {
  color: var(--clr-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.post-card__time{
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-card .post-card__title {
  display: block;
  color: var(--clr-black);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  line-height: 31.69px; 
  margin-bottom: auto;
}
.post-card--small .post-card__title {
  margin-top: 28px;
}
.post-card--big .post-card__title {
  margin-top: 10px;
}

.post-card__descr{
  margin-top: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-black-light);
}

.post-excerpt__more{
  color: #949294;
  cursor: pointer;
  text-decoration: none;
  transition: 300ms all;
}

@media (hover:hover){
  .post-excerpt__more:hover, 
  .post-excerpt__more:hover{
      color: var(--clr-black-light);
  }
}

.post-card__content p{
  display: inline;
}

.post-card__btn {
  margin-top: 20px;
  color: var(--color-primary);
}

.posts__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.posts__body {
  flex: 1;
}




.footer {
  background-color: var(--footer-bg-color); 
  color: var(--footer-text-color);
  padding: 50px 0 20px 0;
  z-index: 1;
  position: relative;
}

.footer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 73px;
  flex-wrap: wrap;
  gap: 10px 50px;
}

.footer-text{
  font-family:var(--font-family-secondary);
  font-size: 48px;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--clr-white);
}

.footer-logo__link{
  display: flex;
}

.footer-logo__link img{
  width: 80px;
  height: 40px;
  object-fit: contain;
}

.footer-center{
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 73px;
}

.footer-contact__title{
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.footer-contact__row, .footer-contact__row a, .footer-contact__row>span{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: var(--clr-white);
  text-decoration: none;
  transition: 300ms all;
}
.footer-contact__row:not(:last-child){
  margin-bottom: 10px;
}
.footer-contact__row:not(:first-child){
  padding-left: 30px;
}

.footer-menu a{
  transition: 300ms all;
}
.footer-addresses .footer-contact:first-child .footer-contact__row{
  cursor: pointer;
}

.footer-contacts .footer-contact__row:hover,
.footer-addresses .footer-contact:first-child .footer-contact__row:hover,
.footer-menu a:hover{
  opacity: 0.6;
}


.footer-contact:not(:last-child){
  margin-bottom: 32px;
}

.footer-menu{
  margin-bottom: 32px;
}

.footer-menu ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
  list-style-type: none;
}

.footer-menu a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: var(--clr-white);
  display: flex;
}

.social-networks{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-networks__item a{
  transition: 300ms all;
}
.social-networks__item a:hover{
  opacity: 0.7;
}
.social-networks__link{
  display: flex;
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-copyright{
  font-size: 14px;
  font-weight: 500;
  line-height: 17.07px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom__text, .footer-bottom__text a{
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 17.07px;
  color: rgba(255,255,255,0.6);
  transition: 300ms all;
}

@media (min-width: 601px){
  .footer-contact.one-address{
    margin-bottom: calc(32px + 29px);
  }  
}


@media (hover:hover){
  .footer-bottom__text a:hover{
    color:rgba(255,255,255,0.3);
  }
}

.footer-bottom__text{
  max-width: 754px;
}

.footer-addresses .footer-contact:first-child .footer-contact__row svg{
  margin-top: 1px;
  display: block;
}

@media (max-width: 991px){
  .footer-bottom{
    flex-direction: column-reverse;
    gap: 14px;
  }
  .footer-bottom__text{
    text-align: center;
  }
  .footer-center{
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px){
  .footer{
    padding: 40px 0 30px 0;
  }
  .footer__top{
    justify-content: center;
  }
  .footer-logo__link img{
    width: 72px;
    height: 32px;
  }
  .footer__top{
    gap: 10px 20px;
  }
  .footer-text{
    font-size: 27px;
    line-height: 32.4px;
    margin-top: -3px;
    margin-right: -7px;
  }
  .footer__top{
    margin-bottom: 50px;
  }
  .footer-center{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .footer-menu{
    margin-bottom: 32px;
  }
  .footer-contact__title{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 12.5px;
  }
  .footer-contact__row, .footer-contact__row a, .footer-contact__row>span{
    justify-content: center;
    font-size: 14px;
    line-height: 17.07px;
  }


  .footer-contacts .footer-contact:first-child .footer-contact__rows{
    margin: 0;
    margin-left: -30px;
  }

  .footer-contacts .footer-contact:nth-child(2) .footer-contact__rows{
    margin-left: -30px;
  }

  .social-networks__item img{
    width: 30px;
    height: 30px;
  }


  .footer-contact:not(:last-child){
    margin-bottom: 32px;
  }

  .footer-addresses .footer-contact:nth-child(1) .footer-contact__rows{
    max-width: 270px;
    margin: 0 auto;
  }
  .footer-addresses .footer-contact:nth-child(1) .footer-contact__row{
    justify-content: flex-start;
    margin-left: -30px;
  }
  .footer-addresses .footer-contact:nth-child(2) .footer-contact__row{
    margin-left: -30px;
  }
  .footer-addresses .footer-contact:nth-child(1) .footer-contact__row span>span{
    display: none;
  }
  .footer-menu a{
    justify-content: center;
    font-size: 14px;
    line-height: 17.07px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
  }
  .footer-contact__row, .footer-contact__row a, .footer-contact__row>span{
    color: rgba(255, 255, 255, 0.85);
  }
  .social-networks{
    justify-content: center;
  }
  .footer-center{
    margin-bottom: 50px;
  }
  .footer-copyright{
    font-size: 14px;
    line-height: 17.07px;
  }
  .footer-bottom__text, .footer-bottom__text a{
    font-size: 12px;
    line-height: 14.63px;
  }
  .footer-contact__row:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-menu ul{
    max-width: 365px;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-menus .footer-contact__title{
    margin-bottom: 12.5px;
  }
}





.info-page{
  margin-top: 80px;
  margin-bottom: 200px;
}

.info-page__title{
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 48.76px;
  color: var(--clr-black);
  max-width: 773px;
  margin: 0 auto 50px auto;
  text-transform: uppercase;
}


.info-page__content{
  max-width: 1030px;
  margin: 0 auto;
}

.info-page__content{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-black-light);
}

.info-page__content h1,
.info-page__content h2,
.info-page__content h3,
.info-page__content h4,
.info-page__content h5,
.info-page__content h6{
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: var(--clr-black);
}



.info-page__content h1:not(:last-child),
.info-page__content h2:not(:last-child),
.info-page__content h3:not(:last-child),
.info-page__content h4:not(:last-child),
.info-page__content h5:not(:last-child),
.info-page__content h6:not(:last-child){
  margin-top: 32px;
  margin-bottom: 20px;
}

.info-page__content p:not(:last-child){
  margin-bottom: 20px;
}

.info-page__content li:not(:last-child){
  margin-bottom: 6px;
}

.info-page__content ul:not(:last-child),
.info-page__content ol:not(:last-child){
  margin-bottom: 20px;
}

.info-page__content ol{
  padding-left: 26px;
}

.info-page__content ul li{
  list-style-type: none;
  padding-left: 26px;
  position: relative;
}
.info-page__content ul li:before{
  content:'';
  position: absolute;
  left: 10px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #3D3F43;
  display: block;
}


.not-found {
  margin: auto 0;
  height: calc(100lvh - var(--header-height));
  display: flex;
}
.not-found__container {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}
.not-found__title {
  font-size: 240px;
  font-weight: 600;
  line-height: 288px;
  text-align: center;
  color: var(--clr-carnelian-100);
}

.not-found__text{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-black-light);
  margin-top: -5px;
}

.not-found__text a{
  color: var(--clr-carnelian-100);
  text-decoration: none;
  position: relative;
}

.not-found__text a:after{
  content:'';
  position: absolute;
  left: 0;
  bottom:0;
  width: 100%;
  height: 1px;
  background-color:  var(--clr-carnelian-100);
}





@media (max-width: 991px){
  .posts-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .posts-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px){
  .blog-page{
    margin-bottom: 100px;
  }
  .breadcrumbs{
    margin: 20px 0;
  }
  .breadcrumbs-divider{
    width: 20px;
    height: 16px;
  }
  .breadcrumbs{
    font-size: 12px;
    line-height: 14.63px;
  }
  .info-page__title{
    font-size: 30px;
    line-height: 36.57px;
    margin-bottom: 40px;
  }
  .posts-more{
    margin: 40px auto;
  }
  .pagination{
    gap: 0;
  }
  .next.page-numbers{
    margin-left: -8px;
  }
  .prev.page-numbers{
    margin-right: -8px;
  }
  .post-card--small .post-card__thumbnail-wrap {
    --height: 224px;
  }
  .post-card--small .post-card__thumbnail-wrap{
    margin-bottom: 24px;
  }
  .post-card .post-card__date, .post-card__time{
    font-size: 14px;
    line-height: 25px;
  }
  .post-card--small .post-card__title{
    margin-top: 24px;
    font-size: 20px;
    line-height: 24.38px;
  }
  .post-card__descr{
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .post-single__img img{
    max-height: 265px;
  }
  .post-single__body{
    margin-top: 20px;
  }
  .post-single__title{
    font-size: 30px;
    line-height: 36.57px;
    margin-bottom: 20px;
  }
  .post-single__meta{
    justify-content: space-between;
  }
  .post-single__table ol{
    margin-bottom: 30px;
    gap: 8px;
  }
  .post-single__table a{
    font-size: 15px;
    line-height: 24px;
  }
  .post-single__content{
    font-size: 16px;
    line-height: 24px;
  }
  .post-single__content p:not(:last-child), .post-single__content ul:not(:last-child), .post-single__content ol:not(:last-child){
    margin-bottom: 30px;
  }
  .post-single__content h2{
    line-height: 32px;
  }

  .post-author{
    margin: 30px 0 40px 0;
  }
  .post-author__wrapper{
    padding: 14px 0;
    grid-template-columns: 80px 1fr;
  }

  .post-author__img img{
    width: 80px;
    height: 80px;
  }
  .post-author__name{
    font-size: 16px;
    line-height: 19.5px;
  }
  .post-author__descr{
    margin-top: 4px;
    font-size: 14px;
    line-height: 24px;
  }

  .nav-previous svg, .nav-next svg{
    width: 20px;
    height: 20px;
  }
  .nav-previous a, .nav-next a{
    font-size: 13px;
    line-height: 20px;
  }
  .posts-nav .nav-links{
    flex-wrap: wrap;
    gap: 20px;
  }
  .post-single{
    margin-bottom: 100px;
  }
  .not-found{
    margin-bottom: 304px;
  }
  .not-found__title{
    font-size: 160px;
    line-height: 192px;
  }
  .not-found__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 234px;
    margin: 0 auto;
  }
  .info-page{
    margin-top: 40px;
    margin-bottom: 104px;
  }
  .info-page .info-page__title{
    font-size: 28px;
    line-height: 34.13px;
  }
  .info-page__content{
    font-size: 16px;
    line-height: 24px;
  }
  .info-page__content h1:not(:last-child), .info-page__content h2:not(:last-child), .info-page__content h3:not(:last-child), .info-page__content h4:not(:last-child), .info-page__content h5:not(:last-child), .info-page__content h6:not(:last-child){
    margin-top: 30px;
  }
  .info-page__content h1, .info-page__content h2, .info-page__content h3, .info-page__content h4, .info-page__content h5, .info-page__content h6{
    font-size: 18px;
    line-height: 28px;
  }
  .block-questions{
    margin-top: 60px;
  }
  .block-questions h3{
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    margin-top: 0;
  }
  .questions-wrapper{
    flex-direction: column;
  }
  .questions-phone{
    font-size: 18px;
    line-height: 21.6px;
  }
  .questions-btn{
    width: 100%;
  }
}



.order-popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  z-index: 99;
  display: none;
}
.order-popup.is-active{
  display: flex;
}

.popup-overflow{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.popup-container{
  position: relative;
  max-width: 680px;
  width: 100%;
  background-color: var(--clr-white);
  box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 32px;
  max-height: 100%;
  overflow-y: auto;
  margin: 0 10px;
}

.popup-close{
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 17px;
  right: 16px;
}

.popup-title{
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
  color: var(--clr-black);
  margin-bottom: 40px;
}

.form-input input{
  outline: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
  height: 52px;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid rgba(184, 26, 26, 0.1);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-black);
}

.form-input input::placeholder{
  color: var(--clr-gray);
}

.form-submit{
  margin-top: 40px;
}

.form-submit input{
  height: 50px;
}
.wpcf7-spinner{
  position: absolute;
}

.form-contacts{
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.footer-menus{
  max-width: 278px;
  width: 100%;
}

.form-phones, .form-emails{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-phone svg, .form-email{
  display: flex;
}

.form-phone, .form-email{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  color: var(--clr-black);
}

.form-phone:not(:first-child), .form-email:not(:first-child){
  padding-left: 30px;
}

.form-email span{
  position: relative;
  display: block;
}

.form-email span:after{
  content:'';
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--clr-black);
}

.form-socials{
  display: flex;
  gap: 20px;
}

.form-socials a{
  display: flex;
  text-decoration: none;
  align-items: flex-start;
}

.form-social svg{
  width: 36px;
  height: 36px;
}

.form-time__message{
  margin-top: 30px;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--clr-black)
}

.form-time__message span{
  color: var(--clr-carnelian-100);
  font-weight: 500;
}
.form-inputs{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 600px){
  .popup-container{
    padding: 24px 20px;
  }
  .popup-close{
    top: 10px;
    right: 6px;
  }
  .popup-title{
    text-align: center;
    font-size: 26px;
    line-height: 46px;
    margin-bottom: 30px;
  }
  .form-submit{
    margin-top: 30px;
  }
  .form-contacts{
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.form__success{
  display: none;
  flex-direction: column;
  align-items: center;
}
.wpcf7-form.is-success .form__success{
  display: flex;
}

.wpcf7-form.is-success .form-inputs, .wpcf7-form.is-success .form-submit{
  display: none;
}

.form__success-text p{
  text-align: center;
}

.wpcf7-form.is-success .wpcf7-response-output{
  display: none;
}

.wpcf7-not-valid-tip{
  margin-top: 5px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

@media (max-width: 600px){
  .footer__top{
    margin-bottom: 20px;
    flex-direction: column;
    gap: 5px;
  }
  .footer-text{
    font-size: 39.31px;
    line-height: 47.17px;
    text-align: center;
  }

}


#to-top{
  position: fixed;
  z-index: 19;
  bottom: 40px;
  right: 20px;
  width: 75px;
  height: 75px;
  border-radius: 100%;
  background-color:var(--clr-white);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: drop-shadow(0px 0px 20px rgba(184, 26, 26, 0.10));
}

@media (max-width: 991px){
  #to-top{
    width: 63px;
    height: 63px;
    right: 27px;
    bottom: 30px;
  }
  #to-top svg{
    width: 25px;
  }

}

.title-md,
.title-lg {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: var(--font-size);
}
.title-md {
 --font-size: 24px;
}
.title-lg {
  --font-size: 40px;
  line-height: 48.76px;
  text-transform: uppercase;
}

.title-sm{
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-black);
}

.block-title span {
  color: var(--clr-header-red);
}

.packets-arrow{
  position: absolute;
  display: flex;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%) !important;
  z-index: 1;
}

.packets-arrow svg, .packets-arrow svg path{
  transition: 300ms all;
}

.packets-arrow:hover svg{
  transform: scale(1.05);
}

.packets-arrow:hover svg path{
  stroke:#9c0f0f;
}

.packet-arrow__left{
  right: calc(100% + 77px);
}

.packet-arrow__right{
  left: calc(100% + 77px);
}


.review-arrow__left, .team-arrow__left{
  right: calc(100% + 30px);
}
.review-arrow__right, .team-arrow__right{
  left: calc(100% + 30px);
}

.gallery-arrow__left{
  right: calc(100% + 185px);
}
.gallery-arrow__right{
  left: calc(100% + 185px);
}

.swiper-pagination {
  top: calc(100% + 40px) !important;
  bottom:unset !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  height: 27px;
}

.swiper-pagination-bullet{
  width: 11px !important;
  height: 11px !important;
  margin: 0 !important;
  background-color: var(--pagination-color) !important;
  opacity: 1 !important;
  position: relative;
}

.swiper-pagination-bullet-active:before{
  content:'';
  position: absolute;
  left: -8px;
  top: -8px;
  width: 27px;
  height: 27px;
  border-radius: 100%;
  border: 1px solid rgba(184, 26, 26, 0.7);
}

.swiper-pagination-bullet-active{
  background-color: var(--clr-carnelian-100) !important;
}


@media (min-width: 767px) {
  .title-md {
    --font-size: 40px;
   }
   .title-lg {

  }
}

@media (max-width: 600px){
  .title-lg{
    font-size: 30px;
    line-height: 36.57px;
  }
  .title-sm{
    font-size: 16px;
    line-height: 26px;
  }
}




.status__icon {
  --size: 12px;
  --duration: 3s;
  --scale: 3;
  --opacity: 0.4;
  width: 12px;
  height: 12px;
  background: var(--clr-carnelian-100);
  border-radius: 100%;
  position: relative;
  animation: pulse-shadow var(--duration) calc(2 * var(--duration) / 3) linear infinite;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
}
.block-equipment .status__icon {
  position: relative;
  display: flex;
  top: unset;
  left: unset;
}
.block-equipment .benefit__content-button{
  justify-content: center;
  height: 34px;
  align-items: center;
}

.status__icon::after, .status__icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--clr-carnelian-100);
  border-radius: 100%;
}

.status__icon:after {
  animation: pulses var(--duration) linear infinite;
}

.status__icon:before {
  animation: pulses var(--duration) calc(var(--duration) / 2) linear infinite;
}

@keyframes pulses {
  0% {
      transform: scale(1);
      opacity: var(--opacity);
  }

  100% {
      transform: scale(var(--scale));
      opacity: 0;
  }
}

@keyframes pulse-shadow {
  0% {
      box-shadow: 0 0 0 0 rgba(184, 26, 26, var(--opacity))
  }

  100% {
      box-shadow: 0 0 0 calc((var(--scale) - 1) * var(--size) / 2) rgba(184, 26, 26, 0);
  }
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--header-message-height) - 10px);
}

body{
  position: relative;
  height: 100%;
}


@media (max-width: 600px){
  html{
    --header-height: 80;
  }
}
.fslightbox-open{
  overflow: unset !important;
  height: auto !important;
}


.header {
  --background-color: transparent;
  border-bottom: 1px solid transparent;
  background-color: var(--background-color);
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  transition: 300ms all;
}



.header-white .header-logo__img--colored{
  display: none;
}

.header-white .header-menu > li > a{
  color:var(--clr-white);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;  
  transition: all .2s ease;
  height: calc(var(--header-height) - 1px);
  --container-width-md: 1344px;
}
.header-logo { 
  max-width: 90px;
}
.header-logo__link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.header-logo__link img{
  width: 80px;
  height: 40px;
  object-fit: contain;
}
.header-menu {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header-menu > li > a{
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-decoration: none;
  color: inherit;
}
.header-btn {
  font-weight: 500;
}

.header-phones{
  margin-left: 88px;
}

.header-cities{
  margin-left: 32px;
}

.header-phones, .header-cities{
  position: relative;
}

.header-phones__main, .header-phones__list a{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 19.5px;
  text-decoration: none;
  color: var(--clr-white);
}

@media (max-width: 1050px) and (min-width: 1025px){
  .header-phones__main, .header-phones__list a{
    font-size: 18px;
  }
}

.header-phone__dropdown {
  position: absolute;
  top: 100%;
  left: 0px;
}
.header-phone__dropdown li{
  list-style-type: none;
}
.header-time{
  margin-top: 12px;
}

.header-time__title, .header-time__list li{
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-white);
}

.header-time__list{
  margin-top: 8px;
}

.header-cities__main{
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
}

.header-cities__main span{
  position: relative;
}

.header-cities__main span:after{
  content:'';
  position: absolute;
  bottom: 0;
  left: 1px;
  width: calc(100% - 1px);
  height: 1px;
  background-image: repeating-linear-gradient(90deg,  #ffffff 2px 5px, transparent 1px 8px);
  border-radius: 0;
  background-color: transparent;
	appearance:none;
}


.header-phones__arrow, .header-cities__arrow{
  display: flex;
  cursor: pointer;
}

.header-phone__shadow, .header-cities__shadow{
  padding: 10px 26px 12px 27px;
  border-radius: 0 0 8px 8px;
}

.header-phone__dropdown,  .header-cities__dropdown{
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  width: max-content;
}

.is-scrolled .header-phone__dropdown .header-phone__shadow, 
.is-scrolled .header-cities__dropdown .header-cities__shadow{
  background-color: var(--clr-white);
}

.header-phones.is-active .header-phone__dropdown, .header-cities.is-active .header-cities__dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cities__dropdown{
  position: absolute;
  left: 0px;
  top: 100%;
  width: max-content;
  padding-top: 9px;
}

.header-cities__dropdown li{
  display: flex;
  list-style-type: none;
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  position: relative;
  width: fit-content;
}

.header-cities__dropdown li a{
  text-decoration: none;
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
}

.header-cities__dropdown li:not(:last-child){
  margin-bottom: 10px;
}


@media (min-width: 1025px){
  .header-phone__dropdown, .header-cities__dropdown{
    border-radius: 0 0 8px 8px;
  }
  .is-scrolled .header-phone__dropdown,
  .header-black .header-phone__dropdown,
  .is-scrolled .header-cities__dropdown,
  .header-black .header-cities__dropdown{
    top: 100%;
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .is-scrolled .header-phone__shadow,
  .is-scrolled .header-cities__shadow ,
  .header-black .header-phone__shadow,
  .header-black .header-cities__shadow  {
    box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .header-black .header-cities__shadow {
    background-color: #fff;
  }
}

@media (hover:hover){
  .header-phones:hover .header-phones__arrow svg,
  .header-cities:hover .header-cities__arrow svg,
  .lang-select:hover .lang-select__arrow svg{
    transform: rotate(180deg);
  }
  .header-phones:hover .header-phone__dropdown,
  .header-cities:hover .header-cities__dropdown,
  .lang-select:hover .lang-select__list{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.burger {
  --width: 35px;
  --height: 25px;
  --thickness: 2px;
  font: inherit;
  display: inline-block;
  position: relative;
  overflow: visible;
  margin: 0;
  padding: 10px;
  margin: -10px;
  bottom: -5px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity,filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  user-select: none;
}


.burger:focus-visible, .burger-box:focus-visible, .burger-inner:focus-visible{
  outline: none;
}
.burger.is-active .burger-inner,.burger.is-active .burger-inner:after,.burger.is-active .burger-inner:before {
  background-color: var(--clr-black);
}


.burger-box {
  position: relative;
  display: inline-block;
  width: var(--width);
  height: var(--height);
}

.burger-inner {
  top: 50%;
  display: block;
  margin-top: -2px
}

.burger-inner,.burger-inner:after,.burger-inner:before {
  position: absolute;
  width: var(--width);
  height: var(--thickness);
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 0;
  background-color: var(--clr-white);
  border-radius:1px;
}

.is-scrolled .burger-inner, .is-scrolled .burger-inner:after, .is-scrolled .burger-inner:before,
.header-black  .burger-inner, .header-black  .burger-inner:after, .header-black  .burger-inner:before{
  background-color: var(--clr-black);
}
.header-black .burger-inner, .header-black  .burger-inner:after, .header-black  .burger-inner:before{
  background-color: var(--clr-carnelian-100);
}





.burger-inner:after,.burger-inner:before {
  display: block;
  content: ""
}

.burger-inner:before {
  top: -10px
}

.burger-inner:after {
  bottom: -10px;
  right: 0;
}
.burger--squeeze .burger-inner {
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: 75ms
}

.burger--squeeze .burger-inner:before {
  transition: top 75ms ease .12s,opacity 75ms ease
}

.burger--squeeze .burger-inner:after {
  transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)
}

.burger--squeeze.is-active .burger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215,.61,.355,1);
  transform: rotate(45deg)
}

.burger--squeeze.is-active .burger-inner:before {
  top: 0;
  transition: top 75ms ease,opacity 75ms ease .12s;
  opacity: 0
}

.burger--squeeze.is-active .burger-inner:after {
  bottom: 0;
  width: var(--width);
  transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
  transform: rotate(-90deg)
}



.lang-select {
  position: relative;
  margin-left: 32px;
}
.lang-select__current {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-transform: uppercase;
  color: var(--clr-white);
}


.lang-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0px;
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  width: fit-content;
}
.is-scrolled .lang-select__list{
  background-color: var(--clr-white);
}
.lang-select__list::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 100%;
  left: 0;
  height: 10px;
  width: 100%;
}
.lang-select__item {
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  transition: all .3s ease;
  text-decoration: none;
  color: var(--clr-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-transform: uppercase;
}
.lang-select__item.disabled{
  display: none;
}
.header-buttons{
  margin-left: 40px;
}

.lang-select__arrow{
  display: flex;
}

.header-cities__dropdown li, .header-cities__dropdown li a{
  transition: 300ms all;
  cursor: pointer;
}
.header-cities__dropdown li a:hover{
  color: var(--clr-carnelian-100) !important;
}

.header.is-scrolled {
  --background-color: var(--clr-white);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.header-black{
  --background-color: var(--clr-white);
}

.header.is-scrolled .header-logo__img--light,
.header-black .header-logo__img--light{
  display: none;
}

.header.is-scrolled .header-logo__img--colored,
.header-black .header-logo__img--colored{
  display: flex;
}

.header.is-scrolled .header-menu > li > a,
.header.is-active .header-menu > li > a,
.header-black .header-menu > li > a {
  color: var(--clr-black);
}

.header.is-scrolled .header-phones__main>svg path,
.header.is-scrolled .header-cities__main>svg path,
.header.is-scrolled .header-time__list path,
 header.is-active .header-phones__main>svg path,
 header.is-active .header-cities__main>svg path,
 header.is-active .header-time__list path,
.header-black .header-phones__main>svg path,
.header-black .header-cities__main>svg path,
.header-black .header-time__list path
{
  stroke: var(--clr-carnelian-100);
}
.header.is-scrolled .header-phones__arrow path,
.header.is-scrolled .header-cities__arrow path,
.header.is-scrolled .lang-select__arrow path,
.header.is-active .header-phones__arrow path,
.header.is-active .header-cities__arrow path,
.header.is-active .lang-select__arrow path,
.header-black .header-phones__arrow path,
.header-black .header-cities__arrow path,
.header-black .lang-select__arrow path{
  fill: var(--clr-carnelian-100);
}
.header.is-scrolled .header-phones__main, 
.header.is-scrolled .header-phones__list a, 
.header.is-scrolled .header-cities__main,
.header.is-scrolled  .lang-select__current,
.header.is-scrolled .header-cities__dropdown li a,
.header.is-scrolled  .lang-select__item,
.header.is-scrolled .header-time__title, 
.header.is-scrolled .header-time__list li,

.header-black .header-phones__main, 
.header-black .header-phones__list a, 
.header-black .header-cities__main,
.header-black  .lang-select__current,
.header-black .header-cities__dropdown li a,
.header-black  .lang-select__item,
.header-black .header-time__title, 
.header-black .header-time__list li,

header.is-active .header-phones__main, 
header.is-active .header-phones__list a, 
header.is-active .header-cities__main,
header.is-active  .lang-select__current,
header.is-active .header-cities__dropdown li a,
header.is-active  .lang-select__item,
header.is-active .header-time__title, 
header.is-active .header-time__list li
{
  color: var(--clr-black);
}


.header.is-scrolled .header-cities__main span:after, 
.header-black .header-cities__main span:after,
.header.is-active .header-cities__main span:after{
  background-image: repeating-linear-gradient(90deg, var(--clr-carnelian-100) 2px 5px, transparent 1px 8px);
}

.header.is-scrolled  .header-btn, 
.header.is-active  .header-btn, 
.header-black .header-btn {
  color: var(--clr-carnelian-100);
  border-color: var(--clr-carnelian-100);
}

.header.is-scrolled  .header-btn:hover, 
.header-black  .header-btn:hover {
  color: var(--clr-white);
}


.lang-select__list.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}  
header .menu-item a, 
.header-phones__main, 
.header-phones__main path, 
.header-cities__main path,  
.header-cities__main, 
.header-cities__main span:after,
.lang-select__current,
.lang-select__current path {
  transition: 300ms all;
}

.lang-select__current.is-active .lang-select__arrow svg{
  transform: rotate(180deg);
}

.header-cities__main{
  cursor: pointer;
}

.header-mob {
  display: none;
  align-items: center;
  gap: 23px;
}

.header-mob .lang-select{
  display: none;
  order: unset;
}

header.is-active  .header-mob .lang-select{
  display: none;
}

header.is-active {
  --background-color: var(--clr-white);
}

header.is-active .header-logo__img--light{
  display: none;
}

header.is-active .header-logo__img--colored{
  display: block;
}

header.is-active .burger-inner, header.is-active .burger-inner:after,header.is-active .burger-inner:before{
  background-color: var(--clr-black);
}


.header-cities svg,
.header-phones  svg,
.lang-select svg{
  transition: 300ms all;
}

.header-cities.is-active .header-cities__arrow svg,
.header-phones.is-active .header-phones__arrow svg,
.lang-select.is-active .lang-select__arrow svg {
  transform: rotate(180deg);
}
.header-phones__list a{
  transition: 300ms all;
}
.header-burger__wrapper{
  display: none;
}

[lang="uk"] .header-cities__main span:after{
  background-image: repeating-linear-gradient(90deg,#ffffff 7px 11px, transparent 8px 13px);
}

[lang="uk"] .header-cities__main:hover span:after,
[lang="uk"] header.is-active .header-cities__main span:after,
[lang="uk"] header.is-scrolled .header-cities__main span:after,
[lang="uk"] .header-black .header-cities__main span:after {
  background-image: repeating-linear-gradient(90deg,var(--clr-carnelian-100) 7px 11px, transparent 8px 13px);
}

[lang="en-US"] .header-cities__main span:after{
  bottom: -2px;
}

[lang="en-US"] .header-cities__main span:after{
  background-image: repeating-linear-gradient(90deg,#ffffff 6px 11px, transparent 5px 13px);
}

[lang="en-US"] .header-cities__main:hover span:after,
[lang="en-US"] header.is-active .header-cities__main span:after,
[lang="en-US"] header.is-scrolled .header-cities__main span:after,
[lang="en-US"] .header-black .header-cities__main span:after {
  background-image: repeating-linear-gradient(90deg,var(--clr-carnelian-100) 6px 11px, transparent 5px 13px);
}

.is-scrolled .header-cities__main>svg path{
  fill: var(--clr-carnelian-100) !important;
  stroke: var(--clr-carnelian-100) !important;
}


.header-black .header-cities__main>svg path{
  stroke:var(--clr-carnelian-100) !important;
  fill:var(--clr-carnelian-100) !important;
}


@media (hover:hover){
  header .menu-item a:hover,
  .is-scrolled .menu-item a:hover,
  .header-phones__main:hover,
  .is-scrolled .header-phones__main:hover,
  .header-cities__main:hover,
  .is-scrolled .header-cities__main:hover ,
  .lang-select__current:hover,
  .is-scrolled .lang-select__current:hover,
  .header-phones__list a:hover ,
  .lang-select__item:hover {
    color: var(--clr-carnelian-100) !important;
  }  

  .is-scrolled .header-phones__main:hover>svg path,
  .header-phones__main:hover>svg path,
  .header-cities__main:hover>svg path,
  .is-scrolled .header-cities__main:hover>svg path {
    stroke:var(--clr-carnelian-100) !important;
  }

  .header-phones__main:hover .header-phones__arrow path,
  .is-scrolled .header-phones__main:hover> .header-phones__arrow path,
  .header-cities__main:hover .header-cities__arrow  path,
  .is-scrolled .header-cities__main:hover> .header-cities__arrow  path,
  .lang-select__current:hover .lang-select__arrow path,
  .is-scrolled .lang-select__current:hover .lang-select__arrow path  {
    fill:var(--clr-carnelian-100) !important;
  }

  .header-cities__main:hover span:after{
    border-color: var(--clr-carnelian-100) !important;
  }

  .header-cities__main:hover span:after{
    background-image: repeating-linear-gradient(90deg, var(--clr-carnelian-100) 2px 5px, transparent 1px 8px);
  }
  .header-cities__main:hover>svg path,
  .is-scrolled .header-cities__main:hover>svg path  {
    stroke: var(--clr-carnelian-100) !important;
    fill: var(--clr-carnelian-100) !important;
  }
}



@media (min-width: 1025px) {
  .header-logo { 
    max-width: 120px;
  }
  .header-menu > li + li{
    margin-left: 28px;
  }
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 60px;
  }
  .burger {
    display: none;
  }
  .header-social, .header-message{
    display: none;
  }
  .header-nav .download-btn{
    display: none;
  }
}


@media (max-width: 1200px){
  .header-phones{
    margin-left: 40px;
  }
  .header-btn{
    padding: 15px 40px;
  }

  .header__container{
    --container-gap-md: 20px;
  }
  .header-buttons{
    margin-left: 20px;
  }
}


.contact-mob, .address-part-mob{
  display: none;
}


@media (max-width: 1024.98px) {

  .header-mob .header-btn{
    margin-left: -30px;
  }
  .header-mob__left{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-nav .header-btn, .header-mob .download-btn{
    display: none !important;
  }
  .download-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    transition: 300ms all; 
    box-shadow: 0px 0px 20px 0px rgba(184, 26, 26, 0.1);
    background-color: #fff;
    margin-bottom: 14px;
  }

  .download-btn path{
    transition: 300ms all;
  }

  .download-btn:hover{
    background-color: var(--clr-carnelian-100);
  }
  .download-btn:hover path{
    fill: #fff;
  }


  [lang="uk"] .download-en, 
  [lang="en-US"] .download-ua{
    display: none;
  }
  [lang="uk"] .download-ua,
  [lang="en-US"] .download-en {
    display: flex;
  }

  .download-google-play path{
    fill: #B81A1A;
  }

  .header-mob .header-btn{
    width: fit-content;
    background-color: transparent;
    color: var(--clr-white);
    padding: 0;
    border: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.94px;
  }

  
  .header-black .header-mob .header-btn{
    color: var(--clr-black) !important;
  }
  header.is-scrolled .header-btn  {
    color: var(--clr-black) !important;
  }
  header.is-active .header-btn{
    display: none;
  }
  .header-message{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #B81A1A;
    padding: 16px 0px;
    z-index: 99;
    display: none;
  }

  .header-message.is-active{
    display: block;
  }
  .header-message .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .header-message .header-message__close{
    display: flex;
    cursor: pointer;
  }
  .header-message__text{
    font-size: 13px;
    font-weight: 600;
    line-height: 15.85px;
    color: var(--clr-white);
  }
  header{
    top: var(--header-message-height) !important;
  }
  .header-mob {
    display: flex;
  }
  .header-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    z-index: 97 ;
    top: calc(var(--header-height) + var(--header-message-height));
    left: 0;
    height: calc(100dvh - var(--header-height) - var(--header-message-height));
    width: 100%;
    background-color: var(--background-color);
    padding: 40px 20px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all .2s ease;
    overflow-y: auto;
  }
  .header-nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    display: flex;
  }
  .header-menu {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 48px;
    margin-top: 48px;
    margin-left: 27px;
    align-items: flex-start;
  }

  .header-menu > li > a{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.94px;
  }

  .header-phones, .header-cities{
    width: fit-content;
    margin-left: 0px !important;
  }
  .header-phones__arrow{
    display: none;
  }
  .header-phone__dropdown{
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .header-phone__shadow, .header-cities__shadow{
    padding-left: 27px;
    padding-bottom: 0;
  }
  .header-cities__arrow {
    display: none;
  }
  .header-cities__dropdown{
    visibility: visible;
    opacity: 1;
    display: block;
    transform: none;
  }

  .header-buttons{
    order: 3;
    margin-top: 64px;
    margin-left: 0;
  }

  .header-mob .header-buttons {
    order: unset;
    margin-top: auto;
  }
  .header-nav  .header-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 15px;
    margin-top: auto;
  }
  .header-nav .download-btn{
    margin-left: 0;
    margin-right: 0;
    max-width: unset;
    margin-bottom: 0;
  }

  .header-nav .lang-select__arrow {
    display: none;
  }
  .header-nav .lang-select__list{
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 0;
    transform: none;  
  }

  .header.is-active .header-nav .header-btn{
    display: flex !important;
    grid-column: 1 / 3;
    height: 50px;
    color: #FFFFFF !important;
  }

  .header__container > a, .header-nav>a{
    display: none;
  }
  .header-phones{
    order: -2;
    margin-bottom: 14px !important; 
  }
  .header-phones__main, .header-phones__list a{
    font-weight: 900;
  }
  .header-phones.is-active .header-phone__dropdown{
    background-color: #ffffff;
    z-index: 1;
    box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
  }

  .header-cities__dropdown li a{
    position: relative;
  }
  .header-cities__dropdown li a:after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1px;
    width: calc(100% - 1px);
    height: 1px;
    border-radius: 0;
    background-color: transparent;
    appearance: none;
    background-image: repeating-linear-gradient(90deg, var(--clr-carnelian-100) 7px 11px, transparent 8px 13px);
  }
  .contact-mob{
    display: flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.94px;
  }
  .contact-mob:after{
    display: none;
  }
  .contact-desk{
    display: none;
  }
  .address-part-mob{
    display: inline;
  }

  .lang-select{
    margin-left: 27px;
    display: flex;
    align-items: center;
    background-color: #B81A1A;
    border-radius: 50px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: fit-content;
    margin-bottom: 77px;
  }
  .lang-select .lang-select__item, .lang-select__current{
    text-transform: capitalize;
  }

  .header.is-active .lang-select .lang-select__item,
  .lang-select .lang-select__item  {
    color: #FFFFFF !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.85px;
    display: flex;
    align-items: center;
    margin-left: 13px;
    margin-right: 8px;
  }
  .lang-select .lang-select__item.disabled{
    display: none !important;
  }

  .lang-select__current{
    font-size: 13px;
    font-weight: 500;
    line-height: 15.85px; 
    color: #000000;
    margin: 3px;
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 10.5px 9.5px;
  }
  .header-cities{
    order: -1;
    margin-bottom: 0px !important;
  }
  .header-btn{
    width: 100%;
    background-color: var(--clr-carnelian-100);
    color: var(--clr-white) !important;
    font-weight: 400;
  }
  .header-cities__dropdown{
    transform: translateY(-10px) translateX(-50%);
    left: 50%;
  }

  .header-cities.is-active .header-cities__dropdown{
    z-index: 10;
    transform: translateY(0) translateX(-50%) !important;
    background-color: var(--clr-white);
  }

  .header-cities__main{
    font-size: 18px;;
    line-height: 21.94px;
  }
  .burger{
    margin-top: -16px !important;
	  padding-right: 0;
	  margin-right:0;
  }
  .burger.is-active .burger-box{
	   width: 24px;
  }
  .burger.is-active  .burger-inner, .burger.is-active .burger-inner:after, .burger.is-active .burger-inner:before{
    width: 24px;
  }
	.header-burger__wrapper{
		min-width:37px;
    display: block;
	}
  .header-mob{
    gap: 20px;
  }
  .header-cities__dropdown{
    padding-top: 0px;
  }
  .header-cities__dropdown li:not(:last-child){
    margin-bottom: 16px;
  }
  .header-phones__main, .header-phones__list a{
    font-size: 18px;
    line-height: 21.6px;
  }
  .header-time{
    margin-top: 18px;
  }
  .header-time__list{
    margin-top: 10px;
  }
  .header-time__title, .header-time__list li{
    font-size: 14px;
    font-weight: 400;
    line-height: 17.07px;
    text-align: left;
    
    text-align: left;
  }
  .header-time__title{
    position: relative;
  }
  .header-time__title:before{
    content:'';
    position: absolute;
    left: -28px;
    width: 20px;
    height: 20.22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDYuNzM5OFYxMC4xMDk4TDExLjY2NjcgMTEuNzk0N00xNy41IDEwLjEwOThDMTcuNSAxNC4yOTc0IDE0LjE0MjEgMTcuNjkyMiAxMCAxNy42OTIyQzUuODU3ODYgMTcuNjkyMiAyLjUgMTQuMjk3NCAyLjUgMTAuMTA5OEMyLjUgNS45MjIxMSA1Ljg1Nzg2IDIuNTI3MzQgMTAgMi41MjczNEMxNC4xNDIxIDIuNTI3MzQgMTcuNSA1LjkyMjExIDE3LjUgMTAuMTA5OFoiIHN0cm9rZT0iI0I4MUExQSIgc3Ryb2tlLXdpZHRoPSIxLjMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);

  }
  .header-time__list svg{
    display: none;
  }
  .header-cities__main{
    justify-content: flex-start;
  }
  .header-cities__dropdown{
    position: static !important;
    transform: none !important;
  }

  .header-cities.is-active .header-cities__dropdown {
    display: block !important;
    transform: none !important;
  }

  .header-phones__arrow, .header-cities__arrow{
    margin-top: -20px;
    margin-bottom: -20px;
    margin-right: -20px;
    padding: 20px 20px 20px 0;
  }

 
  [lang="uk"] .header-cities__main span:after{
    background-image: repeating-linear-gradient(90deg,#ffffff 7px 11px, transparent 8px 13px);
  }

  [lang="uk"] .header-cities__main:hover span:after,
  [lang="uk"] header.is-active .header-cities__main span:after,
  [lang="uk"] header.is-scrolled .header-cities__main span:after,
  [lang="uk"] .header-black .header-cities__main span:after {
    background-image: repeating-linear-gradient(90deg,var(--clr-carnelian-100) 7px 11px, transparent 8px 13px);
  }


  [lang="en-US"] .header-cities__main span:after{
    background-image: repeating-linear-gradient(90deg,#ffffff 7px 11px, transparent 5px 13px);
  }

  [lang="en-US"] .header-cities__main:hover span:after,
  [lang="en-US"] header.is-active .header-cities__main span:after,
  [lang="en-US"] header.is-scrolled .header-cities__main span:after,
  [lang="en-US"] .header-black .header-cities__main span:after {
    background-image: repeating-linear-gradient(90deg,var(--clr-carnelian-100) 7px 11px, transparent 5px 13px);
  }

}

@media (max-width: 600px) {
  .header-logo__link img{
    height: 32px;
    display: block;
    width: 72px;
  }
  .header__container{
    --header-height: 75px;
  }
  .header-phone__shadow{
    padding-left: 26px;
  }
  .lang-select__list{
    padding-top: 10px;
  }
  .header-mob .header-buttons{
    margin-top: 0;
  }
  .header-mob{
    margin-top: -4px;
  }
  .burger{
    margin-top: -11px !important;
  }
  .burger-inner:before{
    top: -11px;
  }
  .header-burger__wrapper{
    display: flex;
    justify-content: flex-end;
  }
  .burger-inner:after{
    bottom: -11px;
  }
}




.cookie-popup{
  position: fixed;
  bottom: 20px;
  left: 20px;
  box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.15);
  background-color: var(--clr-white);
  padding: 16px 41px 16px 18px;
  border-radius: 16px;
  max-width: 387px;
  z-index: 20;
}

.cookie-popup.is-active{
  display: none;
}

.cookie-close{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.cookie-text{
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--clr-black);
}

.cookie-text a{
  text-decoration: none;
  color: var(--clr-carnelian-100);
  position: relative;
}
.cookie-text a:after{
  content:'';
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--clr-carnelian-100);
}
.cookie-text{
  margin-bottom: 20px;
}
.cookie-btn{
  width: fit-content;
  padding: 16.5px 25px;
  font-size: 14px;
  line-height: 17.07px;
}


@media (max-width: 600px){
  .cookie-popup{
    bottom: 10px;
    left: 10px;
    right: 105px;
    padding: 16px 14px;
  }
  .cookie-close{
    top: 5px;
    right: 5px;
  }
  .cookie-close svg{
    width: 32px;
    height: 32px;
  }
  .cookie-text{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 12px;
    padding-right: 38px;
  }
  .cookie-btn{
    padding-top: 16.5px;
    padding-bottom: 16.5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.07px;
    width: 100%;
  }
}

body #bingc-phone-button svg.bingc-phone-button-circle circle.bingc-phone-button-circle-inside {
  fill: #B81A1A !important;
}
body #bingc-phone-button:hover svg.bingc-phone-button-circle circle.bingc-phone-button-circle-inside {
  fill: #B81A1A !important;
}
body #bingc-phone-button div.bingc-phone-button-tooltip {
  background: #B81A1A !important;
}
body #bingc-phone-button div.bingc-phone-button-tooltip svg.bingc-phone-button-arrow polyline {
  fill: #B81A1A !important;
}

html #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-passive-get-phone-form form.bingc-passive-get-phone-form a.bingc-passive-phone-form-button{
  background-color: #B81A1A !important;
}
html #bingc-active div.bingc-active-overlay div.bingc-active-content div.bingc-active-get-phone-form form.bingc-active-get-phone-form a.bingc-active-phone-form-button{
  background-color: #B81A1A !important;
}


body #bingc-active {
  background: #949294 !important;

}

body #bingc-passive div.bingc-passive-overlay {
  background: #949294 !important;
  }
  

html #bingc-phone-button.bingc-show{
  right: 10px !important;
  left: unset !important;
  z-index: 19 !important;
  bottom: 230px !important;

}

html #bingc-phone-button.top-active{
  bottom: 10px;
}
  

html #bingc-phone-button div.bingc-phone-button-tooltip.bingc-phone-button-tooltip-bottom-left{
  right: 6px !important;
  bottom: 105px !important;
  left: unset !important;
}

html #bingc-phone-button div.bingc-phone-button-tooltip.bingc-phone-button-tooltip-bottom-left svg.bingc-phone-button-arrow{
  right: 29px !important;
  left: unset !important;
}

html #bingc-phone-button{
  transition: 300ms all !important;
}
html #bwcrm-widget-action{
  bottom: 130px;
  right: 26px;
}
html #bwcrm-widget-action .bwcrm-btn-widget-action{
  height: 64px;
  min-width: 64px;
}
@media (min-width: 992px){
  html #bwcrm-widget-action .bwcrm-btn-widget-action{
    height: 79px;
    min-width: 79px;
  }
  html #bwcrm-widget-action{
    right: 17px;
  }
}
@media (max-width: 991px){

  html #bingc-phone-button.bingc-show{
    bottom: 175px!important;
  }
  html #bwcrm-widget-action{
    bottom: 110px;
  }
  html #bingc-phone-button.top-active{
    bottom: 10px!important;
  }
}




.block-about {
  padding-bottom: 200px;
  padding-top: 60px;
  background-color: var(--clr-white);
  position: relative;
  z-index: 1;
  margin-top: -1px;
  margin-bottom: -1px;
  margin-top: calc(var(--vh, 1vh) * 100);
}

.block-about__head{
  display: flex;
  gap: 75px;
}
.block-about__left{
  padding-top: 13px;
  padding-bottom: 40px;
  max-width: 505px;
  flex: 1;
  width: 100%;
  position: relative;
}
.block-about__left:after{
  content:'';
  position: absolute;
  top: 0;
  right: -38px;
  height: 100%;
  width: 1px;
  background-color: rgba(184, 26, 26, 0.1);
}

.block-about__right{
  max-width: 660px;
  width: 100%;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 40px;
}

.block-about__tabs{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(184, 26, 26, 0.1);
}
.block-about__tabs input{
  display: none;
}

.block-about__tabs label{
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 31.69px;
  padding-bottom: 30px;
  color: var( --clr-gray);
  position: relative;
  transition: 300ms all;
}


.block-about__tabs input:checked + label{
  color: var(--clr-black);
}

.block-about__tabs input:checked + label:after{
  content:'';
  position: absolute;
  left: 0;
  bottom:-2px;
  width: 100%;
  height: 3px;
  background-color: var( --clr-carnelian-100);
}

.block-title{
  margin-bottom: 61px;
}

.block-subtitle{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-black-light);
}

.block-subtitle span{
  font-weight: 600;
  color: var(--clr-carnelian-100);
}

.block-about__content{
  margin-top: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-black-light);
  display: none;
}

.block-about__content.is-active{
  display: block;
}

.block-about__video{
  margin-top: 100px;
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 600px;
}
.block-about__video video{
  width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}

.block-about__bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-about__play{
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}

@media (max-width: 991px){
  .block-about__head{
    flex-direction: column;
    gap: 40px;
  }
  .block-about__left{
    padding-bottom: 0;
    padding-top: 0;
  }
  .block-about__left, .block-about__right{
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .block-about__left .block-title{
    margin-bottom: 20px;
    text-align: center;
  }
  .block-about__video {
    width: 100%;
  }
  
}

@media (max-width: 600px){
  .block-about{
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .block-subtitle{
    font-size: 16px;
    line-height: 24px;
  }
  .block-about__tabs label{
    font-size: 17px;
    line-height: 20.72px;
    padding-bottom: 17px;
  }
  .block-about__content{
    margin-top: 31px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.007em;
  }
  .block-about__video{
    margin-top: 40px;
  }
  .block-about__play svg{
    width: 64px;
    height: 64px;
  }
  .block-about__video{
    height: 240px;
    padding-bottom: 0;
  }
}




.block-benefits {
  background-color: var(--block-bg-color);
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.block-benefits .block-title{
  text-align: center;
  margin-bottom: 50px;
}


.block-benefits__wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 41px;
}

.block-benefits__item{
  min-height: 214px;
  padding: 59px 43px;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms all !important;
  cursor: none;
  overflow: hidden;
  position: relative;
}


.block-benefits__item:nth-child(2){
  padding-left: 38.5px;
  padding-right: 38.5px;
}

.block-benefits__item-content{
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--clr-black);
}
.block-benefits__item-content span>span{
  color: var(--clr-carnelian-100);
  font-weight: 600;
}

.block-benefits__item:nth-child(2) .block-benefits__item-content strong{
  display: block;
}

.block-benefits__item-content strong span{
  color: var(--block-text-red);
  transition: 300ms all;
}

.block-benefits__item-content >span{
  font-size: 16px;
  line-height: 26px;
}


@media (hover:hover){
  .block-benefits__item:hover{
    background-color: var(--clr-netherworld-100);
    border-color: var(--clr-netherworld-100);
  }
  .block-benefits__item:hover span{
    color: var(--clr-white);
  }
  .block-benefits__item:hover .block-benefits__item-content{
    color: var(--clr-white);
  }
}


@media (max-width:1200px){
  .block-benefits__wrapper{
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .block-benefits__item{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .block-benefits__item .status__icon{
    display: none;
  }
}

@media (max-width: 600px){
  .block-benefits__item{
    cursor: pointer;
  }
  .block-benefits__wrapper{
    grid-template-columns: 1fr;
  }
  .block-benefits{
    padding: 30px 0;
  }
  .block-benefits__item{
    min-height: 150px;
    padding: 27px 28.5px !important;
  }
  .block-benefits__item-content{
    font-size: 16px;
    line-height: 24px;
  }
  .block-benefits .block-title{
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .block-benefits__item-content >span{
    font-size: 14px;
    line-height: 26px;
    display: block;
    margin-top: -4px;
  }
}

.block-benefits__item .status__icon{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 300ms opacity;
  background-color: var(--block-text-red);
}

.block-benefits__item:hover .status__icon{
  opacity: 1;
}


.block-benefits__item .status__icon::after, 
.block-benefits__item .status__icon::before{
  background-color: var(--block-text-red);
}



.block-blog {
  padding: 200px 0 100px;
  background-color: var(--clr-white);
  position: relative;
  z-index: 1;
}

.block-blog .block-title{
  text-align: center;
  margin-bottom: 50px;
}

.blog-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.block-blog__more{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.block-blog__more .btn{
  padding: 15px 51px;
}


@media (max-width: 991px){
  .blog-wrapper{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .blog-wrapper{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .block-blog{
    padding: 100px 0 50px;
  }
  .blog-wrapper .blog-item:first-child ~ .blog-item{
    display: none;
  }
  .block-blog .block-title{
    margin-bottom: 40px;
  }
  .block-blog__more{
    margin-top: 40px;
  }
}




.block-contact {
  padding-top: 100px;
  position: relative;
  z-index: 1;
  background-color: var(--clr-white);
  margin-top: -1px;
}

.block-contact .block-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-map {
  display: flex;
  overflow: hidden;
  position: relative;
}
.contact-map img{
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: calc(100vh + 70px - 190px - var(--header-height) - var(--header-message-height));
  border: none !important;
  margin-top: -70px;
}

.contact-map__overflow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 300ms all;
}

.contact-map__text {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-white);
}

.contact-map:hover .contact-map__overflow {
  visibility: visible;
  opacity: 1;
}

.contact-map__overflow.not-active {
  visibility: hidden !important;
  opacity: 0 !important;
}

@media (max-width:1200px) {
  .contact-map iframe {
      pointer-events: all !important;
      margin-top: -70px;
  }
}

@media (max-width: 991px) {
  .contact-map__overflow {
      display: none;
  }
}

@media (max-width: 600px) {
  .contact-map iframe {
      height: calc(100vh - 284px - var(--header-message-height));
      margin-top: -70px;
  }

  .block-contact .block-title {
      margin-bottom: 40px;
  }

  .block-contact {
      padding-top: 50px;
  }
}




.block-equipment{
  padding: 200px 0;
  background-color: var(--clr-white);
  position: relative;
  z-index: 1;
  margin-top: -1px;
  margin-bottom: -1px;
}

.block-equipment .block-title{
  text-align: center;
  padding-top: 13px;
  margin-bottom: 14px;
}

.block-title__bold{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--clr-black);
  margin-bottom: 14px;
}

.block-title__bold span{
  color: var(--block-text-red);
}

.benefit__wrapper{
  margin-top: 40px;
  position: relative;
  min-height: 722px;
  display: flex;
  flex-direction: column;
}

.benefit__image{
  display: flex;
  position: absolute;
  bottom: 26px;
  height: calc(100% - 26px);
  left: 50%;
  transform: translateX(-50%);
  max-width: 648px;
  z-index: 1;
}

.benefit__image img{
  width: auto;
  height: 100%;
  object-fit: cover;
  min-height: 225px;
}

.benefit__content{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-black);
  position: relative;
}

.benefit__content-button{
  position: absolute;
  display: flex;
  width: 32px;
}

.benefit__content:nth-child(1){
  margin-top: 84px;
}

.benefit__content:nth-child(1):after{
  content:'';
  position: absolute;
  top: calc(100% + 33px);
  left: 84px;
  width: 316px;
  height: 40px;
  border-left: 1px dashed var(--clr-carnelian-100);
  border-bottom: 1px dashed var(--clr-carnelian-100);
}

.benefit__content:nth-child(1) .benefit__content-button {
  left: 68px;
  top: calc(100% + 8px);
}

.benefit__content:nth-child(1):before{
  content:'';
  position: absolute;
}

.benefit__content:nth-child(2){
  margin-top: 24px;
  margin-left: auto;
  text-align: right;
  margin-right: 100px;
}

.benefit__content:nth-child(2):after{
  content:'';
  position: absolute;
  top: calc(100% + 29px);
  right: 118px;
  width: 231px;
  height: 40px;
  border-right: 1px dashed var(--clr-carnelian-100);
  border-bottom: 1px dashed var(--clr-carnelian-100);
}

.benefit__content:nth-child(2) .benefit__content-button{
  right: 102px;
  top: calc(100% + 3px);
}

.benefit__content:nth-child(3){
  margin-top: 144px;
  margin-left: 112px;
  max-width: 251px;
}

[lang="en-US"] .benefit__content:nth-child(3){
  margin-top: 144px;
  margin-left: 184px;
  max-width: 251px;
  width: fit-content;
}

[lang="en-US"] .benefit__content:nth-child(3) .benefit__content-button{
  left: calc(100% + 11px);
}
[lang="en-US"] .benefit__content:nth-child(3):after{
  left: calc(100% + 37px);
}

.benefit__content:nth-child(3):after{
  content:'';
  position: absolute;
  top: 26px;
  left: calc(100% + 30px);
  width: 69px;
  height: 1px;
  border-bottom: 1px dashed var(--clr-carnelian-100);
}

.benefit__content:nth-child(3) .benefit__content-button{
  top: 9px;
  left: calc(100% + 4px);
}

.benefit__content:nth-child(5){
  margin-top: 164px;
  max-width: 350px;
}

.benefit__content:nth-child(5):after{
  content:'';
  position: absolute;
  top: 26px;
  left: calc(100% + 30px);
  width: 102px;
  height: 1px;
  border-bottom: 1px dashed var(--clr-carnelian-100);
}

.benefit__content:nth-child(5) .benefit__content-button{
  left: calc(100% + 4px);
  top: 9px;
}

.benefit__content:nth-child(6){
  margin-top: -83px;
  max-width: 476px;
  margin-left: auto;
}
.benefit__content:nth-child(6):after{
  content:'';
  position: absolute;
  bottom: calc(100% + 29px);
  left: -3px;
  width: 241px;
  height: 40px;
  border-top: 1px dashed var(--clr-carnelian-100);
  border-right: 1px dashed var(--clr-carnelian-100);
}

.benefit__content:nth-child(6) .benefit__content-button{
  bottom: calc(100% + 2px);
  left: 222px;
}


@media (max-width: 1250px){
  .benefit__content:nth-child(6){
      max-width: 400px;
  }
  .benefit__content:nth-child(2){
      margin-right: 50px;
  }
  .benefit__content:nth-child(5){
      max-width: 300px;
  }
  .benefit__content:nth-child(3){
      margin-left: 50px;
  }
  [lang="en-US"] .benefit__content:nth-child(3){
    margin-left: 129px;
  }
}

@media (max-width: 1080px){
  .benefit__content:nth-child(6){
      max-width: 300px;
  }
  .benefit__content:nth-child(2){
      margin-right: 0;
  }
  .benefit__content:nth-child(2) .benefit__content-button{
      right: 50px;
  }
  .benefit__content:nth-child(2):after{
      right: 64px;
  }
  .benefit__content:nth-child(1) .benefit__content-button{
      left: 50px;
  }
  .benefit__content:nth-child(1):after{
      left: 64px;
      width: 241px;
  }
  .benefit__content:nth-child(3){
      margin-left: 0;
  }
  .benefit__content:nth-child(5){
      max-width: 250px;
  }
  [lang="en-US"] .benefit__content:nth-child(3){
    margin-left: 0px;
  }
}

@media (max-width: 991px){
  .benefit__image{
      position: static;
      transform: none;
  }
  .benefit__content{
      padding-left: 44px;
      margin-left: 0 !important;
      margin-right: 0 !important;
      max-width: 100% !important;
      text-align: left !important;
  }
  .benefit__content .benefit__content-button{
      left: -2px !important;
      top: 0% !important;
      transform: none;
      bottom: unset !important;
  }
  .benefit__content:nth-child(1){
      margin-top: 0;
  }
  .benefit__content:not(:first-child){
      margin-top: 29px;
  }
  [lang="en-US"] .benefit__content:nth-child(3){
    margin-top: 29px;
  }
  [lang="en-US"] .benefit__content:nth-child(3) br{
    display: none;
  }

  .benefit__content:after{
      width: 24px !important;
      height: 1px !important;
      border:none !important;
      border-bottom: 1px dashed var(--clr-carnelian-100) !important;
      top: 17px !important;
      transform: none !important;
      left: -20px !important;
  }
}

@media (max-width:600px){
  .benefit__image{
      margin: 50px 0;
  }
  .block-equipment{
      padding: 100px 0;
  }
  .block-equipment .block-title{
      padding-top: 0;
      margin-bottom: 20px;
  }
  .block-title__bold{
      font-size: 18px;
      margin-bottom: 10px;
  }
  .benefit__wrapper{
      min-height: unset;
      margin-top: 45px;
  }
  .benefit__content{
      line-height: 24px;
  }
  .benefit__content:not(:first-child){
      margin-top: 32px;
  }
  .benefit__image + .benefit__content{
      margin-top: -5px;
  }
  .block-equipment .status__icon{
      top: -6px;
  }
  .benefit__content:after{
      top: 12px !important;
  }
}

@media (max-width: 400px) and (min-width:370px){
  .benefit__image img{
    min-height: 270px;
  }
}



.block-faq{
  padding: 50px 0;
  background-color: var(--block-bg-color);
  position: relative;
  z-index: 1;
}

.block-faq .block-title{
  text-align: center;
  margin-bottom: 50px;
}

.faq-item{
  display: grid;
  grid-template-columns: 152px 0.9fr 0.85fr 100px;
  padding: 32px 0;
  border-bottom: 1px solid #3D3F43;
  transition: 300ms all !important;
  cursor: pointer;
}

.faq-item.is-active{
  padding: 52px 0;
}

.faq-item:first-child{
  padding-top: 0;
}

.faq-item:last-child{
  padding-bottom: 0;
  border:none
}

.faq-num{
  min-width: 50px;
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  line-height: 36px;
  color: var(--clr-black);
}

.faq-title{
  font-size: 25px;
  font-weight: 500;
  line-height: 36px;
  color: var(--clr-carnelian-100);
  text-transform: uppercase;
  padding-right: 22px;
}

.faq-title span{
  color: var(--clr-black);
  text-transform: none;
}

.faq-title span span{
  color: var(--block-text-red);
}

.faq-text{
  padding-right: 62px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #3D3F43;
  opacity: 0;
  max-height: 0px;
  overflow: hidden;
  transition: 300ms all ease-in;
}

.faq-item.is-active .faq-text{
  max-height: 100%;
  transition: 300ms all ease-in-out;
  opacity: 1;
}


.faq-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100px;
  height: 40px;
}

.faq-arrow svg,
.faq-arrow svg path {
  transition: 300ms all;
}


.faq-item.is-active .faq-arrow svg{
  transform: rotate(180deg);
  margin-top: -10px;
}

.faq-text ul li{
  list-style-type: none;
  padding-left: 16px;
  position: relative;
}
.faq-text li:not(:last-child){
  margin-bottom: 6px;
}

.faq-text ul li:before{
  content:'';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  top: 12px;
  left: 0;
  background-color: #3D3F43;
}

.faq-text ol{
  padding-left: 20px;
}

.faq-text ol:not(:last-child),
.faq-text ul:not(:last-child),
.faq-text p:not(:last-child){
  margin-bottom: 20px;
}

@media (hover:hover){
  .faq-arrow:hover svg{
      transform: scale(1.05);
  }
  
  .faq-arrow:hover svg path {
      stroke: #000000;
  }
}


@media (max-width: 991px){
  .faq-text{
      order: 1;
      grid-row: 2/3;
      grid-column: 1/4;
      padding-left: 70px;
      padding-right: 0;
      margin-top: 0;
  }
  .faq-item.is-active .faq-text{
      margin-top: 14px;
  }
  .faq-item{
      grid-template-columns: 70px 1fr 100px;
  }
  .faq-num{
      margin-top: 5px;
  }
}

@media (max-width: 600px){
  .block-faq{
      padding: 30px 0;
      margin-top: -1px;
      margin-bottom: -1px;
  }
  .block-faq .block-title{
      margin-bottom: 40px;
  }
  .faq-num{
      font-size: 30px;
      line-height: 36px;
      padding-right: 16px;
      margin-top: 0;
  }
  .faq-item{
      grid-template-columns: 48px 1fr 40px;
  }
  .faq-title{
      font-size: 20px;
      line-height: 29px;
      padding-right: 10px;
  }
  .faq-arrow{
      width: 40px;
      height: 14px;
      margin-top: 13px;
  }
  .faq-item.is-active .faq-arrow{
      margin-top: 18px;
  }
  .faq-arrow svg{
      width: 100%;
      height: auto;
  }
  .faq-text{
      padding-left: 48px;
      font-size: 16px;
      line-height: 28px;
  }
  .faq-item{
      padding: 24px 0;
  }
  .faq-item.is-active{
      padding: 44px 0;
  }
}




.block-gallery{
  padding-bottom: 200px;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--clr-white);
  margin-top: -1px;
}

.block-gallery .block-title{
  text-align: center;
  margin-bottom: 50px;
}

.gallery-wrapper{
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.gallery-wrapper .swiper{
  overflow: unset !important;
}
.gallery-wrapper .swiper-slide{
  height: auto;
  display: flex;
}

.gallery-wrapper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

.gallery-wrapper .swiper-slide-prev, .gallery-wrapper .swiper-slide-next{
  position: relative;
}

.gallery-wrapper .swiper-slide-prev:after, .gallery-wrapper .swiper-slide-next:after{
  content:'';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(237, 238, 242, 0.7);
}

.gallery-pagination{
  position: static !important;
  margin-top: 40px;
}

@media (max-width: 1400px){
  .gallery-arrow__right{
      left: calc(100% - 60px);
  }
  .gallery-arrow__left{
      right: calc(100% - 60px);
  }
}

@media (max-width: 991px){
  .block-gallery .packets-arrow{
      display: none;
  }
}

@media (max-width: 600px){
  .block-gallery{
      padding-bottom: 100px;
      padding-top: 50px;
  }
  .block-gallery .block-title{
      margin-bottom: 40px;
  }
  .gallery-wrapper .swiper-slide img{
      aspect-ratio: 336/280;
  }
}




.block-main {
  padding: 0px 0 141px;
  background-color: #1B1B1B;
  color: var(--clr-white);
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
} 
.block-main__container {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.wp-admin .block-main{
  position: absolute !important;
}
.block-main picture{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;  
  display: flex;
}
.block-main picture img {
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 100%;
}


.block-main__title {
  font-family: var(--font-family-secondary);
  font-size: 280px;
  font-weight: 400;
  line-height: 336px;
  margin-left: 27px;
  margin-top: 9px;
}

[lang="en-US"] .block-main__title{
  font-size: 240px;
  line-height: 288px;
  margin-left: 0;
}

[lang="en-US"] .block-main__subtitle{
  margin-top: -90px;
  margin-right: 161px;
}


.block-main__subtitle {
  font-family: var(--font-family-secondary);
  font-size: 150px;
  font-weight: 400;
  line-height: 180px; 
  text-align: right;
  margin-top: -109px;
  margin-right: 14px;
}

.block-main__btn {
  margin-top: -90px;
  margin-left: 519px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--clr-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: 300ms all;
}

.block-main__btn:before{
  content:'';
  position: absolute;
  left: -60px;
  top: -38px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: rgba(184, 26, 26, 0.5);
  z-index: -1;
  transition: 300ms all;
}

.block-main__btn:after{
  content:'';
  display: inline-flex;
  width: 26px;
  height: 26px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxLjY2NjMgMTNMNC4zMzMwMSAxM00yMS42NjYzIDEzTDE1LjE2NjMgMTkuNU0yMS42NjYzIDEzTDE1LjE2NjMgNi41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  background-size: contain;
  background-repeat: no-repeat;
}


@media (hover:hover){
  .block-main__btn:hover:before{
    width: 120px;
    height: 120px;
    top: -48px;
    left: -60px;
  }
  .block-main__btn:hover{
    gap: 22px;
  }
}


@media (max-width: 1300px){
  .block-main__btn{
    margin-top: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(50%);
  }
  [lang="en-US"]  .block-main__title{
    font-size: 200px;
  }
  [lang="en-US"] .block-main__subtitle{
    margin-right: 0;
  }
}

@media (max-width: 1200px){
  .block-main__container{
    --container-gap-md: 30px;
  }
}

@media (max-width: 1100px){
  [lang="en-US"] .block-main__title{
    font-size: 150px;
  }
}

@media (max-width: 991px){
  .block-main__title{
    margin-left: 0;
    font-size: 200px;
  }
  .block-main__subtitle{
    font-size: 100px;
  }
}

@media (max-width: 920px){
  [lang="en-US"]  .block-main__title{
    font-size: 200px;
  }
  [lang="en-US"] .block-main__title span:last-child{
    display: block;
    margin-top: -197px;
    text-align: right;
  }
}

@media (max-width: 768px){
  .block-main__title{
    font-size: 140px;
    line-height: 168px;
  }
  [lang="en-US"] .block-main__title{
    font-size: 140px;
    line-height: 1;
  }
  [lang="en-US"] .block-main__title span:last-child{
    margin-top: -37px;
    margin-bottom: 16px;
    text-align: center;
  }
}

@media (max-width: 600px){
  .block-main{
    padding: 0px 0 94px 0;
  }
  .block-main__title{
    margin-top: 0;
  }
  .block-main__title span{
    display: block;
  }
  .block-main__title span:nth-child(1){
    margin-top: -13px;
    margin-left: -4px;
  }
  .block-main__title span:nth-child(2){
    text-align: right;
    margin-top: -81px;
    margin-right: 3px;
  }
  .block-main__subtitle{
    font-size: 70px;
    line-height: 84px;
    text-align: left;
    margin-top: -52px;
    margin-right: 0;
    margin-left: -9px;
  }
  .block-main__btn{
    margin-top: 49px;
    width: fit-content;
    margin-left: 120px;
    margin-right: 0;
    transform: none;
  }
  [lang="en-US"] .block-main__title span:nth-child(2),
  [lang="en-US"] .block-main__title span:nth-child(1)
  {
    display: inline;
  }
  [lang="en-US"] .block-main__title span:last-child{
    text-align: right;
    margin-top: -66px;
  }
  [lang="en-US"] .block-main__title{
    margin-top: -12px;
    margin-left: -4px;
  }
  [lang="en-US"] .block-main__title span:nth-child(2){
    margin-left: -10px;
  }
  [lang="en-US"] .block-main__subtitle{
    margin-top: -70px;
  }
  [lang="en-US"]  .block-main__btn{
    margin-top: 54px;
  }
}

@media (max-width: 450px){
  [lang="en-US"] .block-main__title{
    font-size: 100px;
  }
  [lang="en-US"] .block-main__title span:last-child{
    margin-top: -23px;
  }
  [lang="en-US"] .block-main__subtitle{
    margin-top: -33px;
  }
}





.block-packets{
  padding: 200px 0;
  position: relative;
  z-index: 1;
  background-color: var(--clr-white);
  margin-top: -1px;
  margin-bottom: -1px;
}
.block-packets .block-title{
  text-align: center;
  margin-bottom: 14px;
}
.block-packets .block-descr{
 color: var(--clr-black-light); 
}

.block-descr span{
  font-weight: 600;
  color: var(--clr-carnelian-100);
}
.packets-wrapper{
  margin-top: 50px;
  position: relative;
  max-width: 1117px;
  margin-left: auto;
  margin-right: auto;
}
.packet-slider {
  margin: -10px;
  padding: 10px;
}
.packet-item{
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 24px;
  border-radius: 1px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 464px;
}

.packet-name{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 48.76px;
  color: var(--clr-carnelian-100);
  margin-bottom: 20px;
}
.packet-row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  position: relative;
}

.packet-row:before{
  content:'';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--clr-carnelian-100);
}

.packet-row:not(:last-child){
  margin-bottom: 12px;
}
.packet-col:last-child{
  text-align:right;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #949294;
}
.packet-col:first-child{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #35353C;
}
.packet-item .price-divider{
  margin-top: 14px;
  margin-bottom: 14px;
}
.packet-fullprice, .packet-saleprice, .packet-withsaleprice{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.packet-fullprice{
  margin-bottom: 12px;
}
.packet-fullprice__left{
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #35353C;
}
.packet-fullprice__right{
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #35353C;
}
.packet-price{
  margin-top: auto;
  max-width: 214px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.packet-saleprice__left{
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #949294;
  display: flex;
  align-items: center;
  gap: 10px;
}

.packet-saleprice__right{
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #949294;
}

.packet-saleprice__left span{
  color: #B81A1A;
}
.packet-withsaleprice__left{
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #35353C;
}
.packet-withsaleprice__right{
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  color: #35353C;
}
.packet-withsaleprice{
  margin-bottom: auto;
}
.packet-order{
  margin-top: 14px;
  transition: 300ms all;
}

@media (hover:hover){
  .packet-order:hover,
  .packet-item__blank .btn-red:hover{
      border: 1px solid var(--clr-carnelian-100);
      background-color: #fff;
      color: var(--clr-carnelian-100);
  }
}


.packet-blank{
  max-width: 240px;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.packet-item__blank .btn-red{
  margin-top: auto;
}

.packet-pagination{
  position: static !important;
  margin-top: 50px;
}



@media (max-width: 1400px){
  .block-packets .packet-arrow__left {
      right: calc(100% + 20px);
  }
  .block-packets .packet-arrow__right {
      left: calc(100% + 20px);
  }
}

@media (max-width: 1270px){
  .block-packets .packets-arrow{
      display: none;
  }
}

@media (max-width: 600px){
  .block-packets{
      padding: 100px 0 134px 0;
  }
  .block-packets .block-title{
      max-width: 266px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
  }
  .packets-wrapper{
      margin-top: 40px;
  }
  .packet-item{
      min-height: 430px;
  }
  .packet-price{
      max-width: 243px;
  }
  .packet-sale, .packet-price__regular{
      font-size: 20px;
      line-height: 24.38px;
  }
  .packet-pagination{
      margin-top: 40px;
  }
  .packet-blank{
      font-size: 18px;
      line-height: 29px;
  }
}





.block-price{
  background-color: var(--block-bg-color);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

.block-price .block-title{
  text-align: center;
  margin-bottom: 14px;
}

.block-descr{
  max-width: 365px;
  margin: 0 auto;
}
.block-price__tabs{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 660px;
  margin: 0 auto;
  margin-top: 52px;
}

.block-price__tabs input{
  display: none;
}

.block-price__tabs label{
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  color: var(--clr-gray);
  display: flex;
  justify-content: center;
  padding-bottom: 21px;
  position: relative;
  cursor: pointer;
}

.block-price__tabs input:checked + label{
  color: var(--clr-black);
}

.block-price__tabs input:checked + label:after{
  content:'';
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 100%;
  height: 3px;
  background-color: var(--clr-carnelian-100);
}

.block-price__tabs{
  border-bottom: 1px solid rgba(184, 26, 26, 0.1);
}

.block-price__content{
  display: none;
}

.block-price__content.is-active{
  display: block;
}

.block-price .block-about__contents{
  max-width: 839px;
  margin: 0 auto;
  margin-top: 27px;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
}

.service-row{
  display: grid;
  grid-template-columns: 0.7fr 0.5fr 0.5fr 40px;
  gap: 30px;
align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  transition: 300ms all;
  cursor: pointer;
}

.service-name, .service-time, .service-price{
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  color: var(--clr-black-light);
  display: flex;
  align-items: center;
}

.service-time{
  gap: 8px;
}
.service-time span{
min-width: 50px;
}
.service-price, .service-time{
  font-weight: 400;
  justify-content: center;
}

.service-action{
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.service-action span{
  transition: 300ms transform, 300ms top, 300ms left;
}

.service-action span:nth-child(1){
  width: 13.33px;
  height: 1.3px;
  border-radius: 1.3px;
  background-color: var(--clr-black-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.service-action span:nth-child(2){
  height: 13.33px;
  width: 1.3px;
  border-radius: 1.3px;
  background-color: var(--clr-black-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.price-summary{
  margin: 0 auto;
  margin-top: 20px;
  max-width: 839px;
  background-color: var(--clr-white);
  padding: 24px;
  border-radius: 16px;
}



.service-row:not(:last-child){
  padding-bottom: 18px;
  position: relative;
}

.service-row:not(:last-child):after{
  content:'';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  width: calc(100% - 48px);
  height: 1px;
  background-color: #DDDDDD;
  transition: 300ms all;
}

.service-row:not(:first-child){
  padding-top: 18px;
}

.service-row:first-child{
  padding-top: 26px;
  border-radius: 16px 16px 0 0;
}

.service-row:last-child{
  padding-bottom: 24px;
  border-radius: 0 0 16px 16px;
}


.price-title{
  font-size: 20px;
  font-weight: 700;
  line-height: 24.38px;
  color: var(--clr-black);
}

.price-blank{
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--clr-gray);
}

.price-divider{
  width: 100%;
  height: 1px;
  background-color: rgba(184, 26, 26, 0.1);
}

.price-time__row{
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.price-time__left{
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  color: #35353C;
}

.price-time__right{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #35353C;
}

.price-choosed{
  margin-top: 20px;
  margin-bottom: 17px;
}
.price-choosed__rows{
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.price-choosed__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price-choosed__left{
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--clr-gray);
}

.price-choosed__right{
  display: flex;
  align-items: center;
  gap: 45px;
}
.price-choosed__remove{
  display: flex;
  cursor: pointer;
}

.price-choosed__value{
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--clr-gray);
}

.price-row{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.price-row__title, .price-row__summa{
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: var(--clr-black-light);
}
.price-additional{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-additional__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-additional__left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-tooltip{
  display: flex;
  position: relative;
  cursor: pointer;
}

.price-tooltip__text{
  position: absolute;
  max-width: 476px;
  top: 100%;
  width: max-content;
  left: 28px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  background-color: var(--clr-white);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all;
}

.price-tooltip:active .price-tooltip__text{
  opacity: 1;
  visibility: visible;
}   


.price-tooltip:hover .price-tooltip__text{
  opacity: 1;
  visibility: visible;
}    

.service-row:hover .service-name,
.service-row:hover .service-time,
.service-row:hover .service-price
{
  font-weight: 600;
}
.service-row:hover{
  background-color: var(--clr-carnelian-100);
}

.service-row:hover:after{
  opacity: 0;
}

.service-row:hover .service-name, 
.service-row:hover .service-time, 
.service-row:hover .service-price{
  color: var(--clr-white) !important;
}

.service-row:hover .service-time path{
  stroke: var(--clr-white) !important;
}

.service-row:hover .service-action span{
  background-color:  var(--clr-white) !important;
}




.price-additional__text{
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--clr-gray);
}

.price-additional__right{
  display: flex;
  align-items: center;
  gap: 25px;
}

.price-additional__summa{
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--clr-gray);
  display: none;
}

.price-additional__sale{
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: rgba(184, 26, 26, 0.5);
}
.price-additional{
  margin-bottom: 18px;
}
.price-total__row{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  color: var(--clr-black-light);
}

.price-total__summa{
  font-weight: 600;
}
.price-total__row{
  margin-bottom: 32px;
}

.price-confirm{
  height: 50px;
  transition: 300ms all;
}


.price-confirm.disabled{
  background-color:rgba(61, 63, 67, 0.3) !important;
  pointer-events: none;
}

.price-confirm:not(.disabled):hover{
  border: 1px solid var(--clr-carnelian-100);
  background-color: #fff;
  color: var(--clr-carnelian-100);
}

.price-summary .price-title span:nth-child(2), .price-choosed{
  display: none;
}


.price-summary.item-choosed .price-title span:nth-child(1){
  display: none;
}
.price-summary.item-choosed .price-title span:nth-child(2){
  display: block;
}
.price-summary.item-choosed .price-blank{
  display: none;
}

.price-summary.item-choosed .price-choosed{
  display: block;
}

.price-summary.item-choosed .price-additional__summa{
  display: block;
}

.price-summary .price-additional__sale span:nth-child(1){
  display: none;
}
.price-summary.item-choosed .price-additional__sale span:nth-child(1){
  display: block;
}
.price-summary.item-choosed .price-additional__sale span:nth-child(2)
{
  display: none;
}

.service-row.is-selected .service-name, 
.service-row.is-selected .service-time, 
.service-row.is-selected .service-price{
  color: var(--clr-gray);
}

.service-row.is-selected .service-action span{
  background-color: var(--clr-gray);
}

.service-row.is-selected .service-time path{
  stroke: var(--clr-gray);
}

.service-row.is-selected .service-action span:nth-child(2){
  transform: rotate(-90deg);
  top: 3px;
  left: 10px;
  opacity: 0;
}
.price-icon{
  display: flex;
}

.price-choose__more{
  display: none;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--clr-carnelian-100);
  font-weight: 500;
}
.price-choose__more span{
  font-weight: 700;
}
@media (max-width: 600px){
  .block-price{
      padding: 30px 0;
  }
  .block-price .block-title{
      margin-bottom: 20px;
  }
  .block-price__tabs{
      margin-top: 40px;
  }
  .block-price__tabs label{
      font-size: 18px;
      line-height: 21.94px;
      padding-bottom: 15px;
  }
  .block-price .block-about__contents{
      margin-top: 31px;
  }
  .service-row{
      row-gap: 16px;
      grid-template-columns:1fr 1fr 24px;
      column-gap: 0;
      padding-left: 20px;
      padding-right: 20px;
  }
  .service-row:first-child{
      padding-top: 20px;
  }
  .service-row:last-child{
      padding-bottom: 20px;
  }
  .service-row:not(:first-child){
      padding-top: 16px;
  }
  .service-row:not(:last-child){
      padding-bottom: 16px;
  }
  .service-name{
      grid-column: 1/6;
      font-size: 16px;
      line-height: 19.5px;
  }
  .service-time{
      justify-content: flex-start;
  }
  .service-price, .service-time{
       font-size: 14px;
      line-height: 17.07px;
  }
  .service-price{
      justify-content: flex-end;
      padding-right: 59px;
  }
  .service-action{
      width: 24px;
      height: 24px;
  }
  .service-action span:nth-child(1){
      width: 14px;
  }
  .service-action span:nth-child(2){
      height: 14px;
  }
  .price-choosed{
      margin-top: 20px;
      margin-bottom: 24px;
  }
  .price-blank{
      margin-top: 24px;
      margin-bottom: 24px;
  }
  .price-choosed__right{
      gap: 30px;
  }
  .price-row{
      margin-top: 24px;
  }
  .price-icon svg{
      width: 24px;
      height: 24px;
  }
  .price-additional__left{
      gap: 12px;
  }
  .price-additional__right{
      gap: 15px;
  }
  .price-additional__sale{
      font-size: 12px;
      line-height: 16.8px;
  }
  .price-additional{
      margin-bottom: 24px;
  }
  .price-total__row{
      margin-top: 20px;
  }
  .price-tooltip__text{
      width: 200px;
  }
  .price-title span:nth-child(1){
      text-align: center;
      width: 100%;
      display: block;
  }
}



.block-questions{
  margin-top: 64px;
}

.questions-wrapper{
  display: flex;
  align-items: center;
  gap: 20px;
}

.questions-phone{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--clr-black-light);
  text-decoration: none;
}

.questions-btn{
  padding: 15px 47.5px;
}





.block-result{
  background-color: var(--block-bg-color);
  padding: 50px 0 0;
  min-height: 663px;
  position: relative;
  z-index: 1;
}

.block-result .block-title{
  text-align: center;
  margin-bottom: 14px;
}

.results-wrapper{
  display: flex;
}

.results-list{
  margin-top: 130px;
  max-width: 721px;
  width: 100%;
  flex:1;
  margin-left: -34px;
}

.results-image{
  display: flex;
  margin-left: -103px;
  margin-top: -138px;
}

.results-image.aos-init img {
  transition: filter 0.3s ease-out;
  transition-delay: 0.8s;
}
.results-image.aos-init:not(.aos-animate) img {
  filter: grayscale(1);
}

.results-list ul{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px 31px;
  list-style-type: none;
}

.results-list li{
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.94px;
  color: var(--clr-black);
}


@media (max-width: 1100px){
  .results-list{
      margin-left: -100px;
  }
  .results-list li br{
      display: none;
  }
  .block-result .block-title, .block-result .block-descr{
      position: relative;
  }
}

@media (max-width: 1024px){
  .results-list ul{
      grid-template-columns: 1fr;
      gap: 24px;
  }
  .results-image{
      margin-top: auto;
      max-width: 80%;
  }
  .results-list{
      margin-left: -90px;
  }
}
@media (min-width: 600px) {
  .results-image img {
      transform: rotate(345deg) translateY(32px);
  }
}
@media (max-width: 600px){
  .results-wrapper{
      flex-direction: column-reverse;
  }
  .results-image{
      margin-top: 30px;
      max-width: max-content;
      margin-left: -20px;
      margin-right: -20px;
  }
  .results-list{
      margin-left: 0;
      margin-top: 40px;
  }
  .block-result{
      min-height: unset;
      padding-top: 30px;
  }
  .block-result .block-title{
      margin-bottom: 20px;
  }
  .results-list li:before{
      width: 8px;
      height: 8px;
      top: 6px;
  }
  .results-list li{
      padding-left: 44px;
      position: relative;
  }

  .results-list .status__icon {
      left: 9px;
  }

  .results-image.aos-init img {
      transition: filter 0.15s ease-out;
      transition-delay: 0.4s;
  }

  .results-list li:after{
      width: 24px !important;
      height: 1px !important;
      border: none !important;
      border-bottom: 1px dashed var(--clr-carnelian-100) !important;
      top: 12px !important;
      transform: none !important;
      left: -20px !important;
      content: '';
      position: absolute;
  }
}




.block-reviews{
  padding-top: 200px;
  padding-bottom: 100px;
  background-color: var(--clr-white);
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.block-reviews .block-title{
  text-align: center;
  margin-bottom: 50px;
}

.review-slide{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 91px;
}

.review-image{
  max-width: 570px;
  width: 100%;
  flex: 1;
  position: relative;
  display: flex;
}

.review-play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  z-index: 1;
}

.review-image img{
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border-radius: 100%;
}

.review-image iframe{
  border-radius:100%;
}

.review-content{
  max-width: 524px;
  flex: 1;
  width: 100%;
}
.review-name{
  font-size: 26px;
  font-weight: 700;
  line-height: 31.69px;  
  color: var(--clr-black);
  margin-bottom: 40px;
}

.review-text{
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--clr-black-light);
}

.review-text span:not(.review-more,.review-less){
  font-weight: 600;
  color: #B81A1A;
}

.review-text p {
  display: inline;
}

.review-more, .review-less{
  color: var(--clr-gray);
  cursor: pointer;
  transition: 300ms all;
}

@media (hover:hover){
  .review-more:hover, 
  .review-less:hover{
      color: var(--clr-black-light);
  }
}

.review-more ~ p{
  display: none;
}

.review-less{
  display: none;
}

.review-text.is-active .review-more{
  display: none;
}
.review-text.is-active .review-less{
  display:  inline-block;
  padding-left: 10px;
}

.review-text.is-active .review-more ~ p{
  display: inline;
}

.review-text.is-active p{
  display: inline;
}

.reviews-wrapper{
  position: relative;
  max-width: 1185px;
  margin: 0 auto;
}

.review-pagination{
  position: static !important;
  margin-top: 20px;
}

@media (max-width: 1350px){
  .reviews-wrapper .packets-arrow{
      display: none;
  }
  .review-slide{
      gap: 50px;
  }
}

@media (max-width: 768px){
  .review-slide{
      flex-direction: column-reverse;
      gap: 32px;
  }
  .review-content, .review-image{
      max-width: 100%;
  }
  .review-pagination{
      margin-top: 40px;
  }
}

@media (max-width: 600px){
  .block-reviews{
      padding: 100px 0 50px;
  }
  .block-reviews .block-title{
      margin-bottom: 40px;
  }
  .review-play svg{
      width: 64px;
      height: 64px;
  }
  .review-name{
      font-size: 20px;
      line-height: 24.38px;
      margin-bottom: 20px;
  }
  .review-text{
      font-size: 16px;
      line-height: 24px;
  }
}



.block-team{
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
  background-color: var(--clr-white);
  margin-bottom: -1px;
}

.block-team .block-title{
  margin-bottom: 50px;
  text-align: center;
}

.team-wrapp{
  display: flex;
  gap: 113px;
  align-items: center;
  margin: -10px;
  padding: 10px;
}

.team-images{
  max-width: 782px;
  width: 100%;
  flex: 1;
  max-height: 500px;
}

.team-content{
  max-width: 330px;
  width: 100%;
  flex: 1;
}

.team-images__wrap{
  position: relative;
}

.team-name{
  font-size: 26px;
  font-weight: 700;
  line-height: 31.69px;
  color: var(--clr-black);
  margin-bottom: 32px;
}

.team-list ul{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-list li{
  list-style-type: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--clr-black-light);
}

.team-text{
  margin-top: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #3D3F43;
  margin-bottom: 56px;
}

.team-btn{
  padding: 15px 59.5px;
}


.team-images__wrap{
  max-width: 702px;
  flex: 1;
  width: 100%;
}
.team-images {
  max-width: 542px;
  overflow: unset;
  margin: 0;
}
.team-images .swiper-slide, .team-content .swiper-slide{
  height: auto;
}
.team-images__overflow{
  overflow: hidden;
}
.team-image{
  height: 100%;
  position: relative;
}
.team-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
}

.swiper-slide-next  .team-image, .swiper-slide-prev  .team-image{
  max-height: calc(100% - 52px);
  padding: 26px 0;
  position: relative;
}

.swiper-slide-next .team-image:after{
  content:'';
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 100%;
  height: calc(100% - 52px);
  background-color: rgba(237, 238, 242, 0.7);
  z-index: 1;
}

.team-pagination{
  position: static !important;
  margin-top: 50px;
}

@media (max-width: 1400px){
  .team-arrow__left{
    right: calc(100% - 60px);
    z-index: 10;
  }
  .team-arrow__right{
    left: calc(100% - 60px);
    z-index: 10;
  }
  .team-wrapp{
    gap: 50px;
  }
}

@media (max-width: 1200px){
  .team-images{
    max-width: 490px;
  }
  .team-image{
    display: flex;
  }
  .swiper-slide-next  .team-image img{
    height: 100%;
  }
  .swiper-slide-next .team-image{
    max-height: unset;
  }
}

@media (max-width: 991px){
  .team-images__wrap{
    max-width: 50%;
  }
  .team-images__wrap .packets-arrow{
    display: none;
  }
  .team-content{
    margin: 0;
    max-width: 50%;
  }
}

@media (max-width: 768px){
  .team-wrapp{
    flex-direction: column;
  }
  .team-content, .team-images__wrap{
    max-width: 100%;
  }
  .team-images{
    max-width: 100%;
  }
  .team-images__overflow{
    margin-right: -20px;
    padding-right: 20px;
  }
  .swiper-slide-next .team-image{
    max-height: calc(100% - 52px);
  }
}

@media (max-width: 600px){
  .block-team{
    padding-bottom: 100px;
  }
  .block-team .block-title{
    margin-bottom: 40px;
  }
  .swiper-slide-active .team-image img{
    aspect-ratio: 335 / 353;
    height: auto;
  }
  .swiper-slide-next .team-image{
    max-height: unset;
  }
  .team-wrapp{
    gap: 30px;
  }
  .team-name{
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.38px;
  }
  
  .team-list li{
    line-height: 24px;
  }
  .team-list ul{
    gap: 10px;
  }
  .team-text{
    margin-top: 10px;
    margin-bottom: 40px;
    display: none;
  }
  .team-btn{
    width: 100%;
    margin-top: 40px;
  }
  .team-content{
    margin-bottom: -10px;
    padding-bottom: 10px;
  }
  .team-pagination{
    margin-top: 40px;
  }
}

@media (max-width:375px){
  .team-images .swiper-slide{
    max-height: 353px;
  }
}


.footer-menus{
  max-width: 334px;
}

.footer-buttons{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.footer-buttons .download-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  min-width: 160px;
  height: 46px;
  transition: 300ms all;
  background-color: var(--clr-carnelian-100);
  margin-bottom: 0 !important;
}
.footer-buttons .download-btn path{
  transition: 300ms all;
  fill: #fff;
}

.footer-buttons .download-btn:hover{
  background-color: #fff;
}

.footer-buttons .download-btn:hover path{
  fill: var(--clr-carnelian-100);
}

[lang="uk"]  .footer-buttons .download-en, 
[lang="en-US"]  .footer-buttons .download-ua{
  display: none;
}
[lang="uk"]  .footer-buttons .download-ua,
[lang="en-US"]  .footer-buttons .download-en {
  display: flex;
}

[lang="uk"] .footer-buttons .download-appstore:hover path:nth-child(20){
  stroke: var(--clr-carnelian-100);
}
[lang="uk"] .footer-buttons .download-google-play:hover path:nth-child(12){
  stroke: var(--clr-carnelian-100);
}

[lang="uk"] header .download-appstore:hover path:nth-child(20){
  stroke: #ffffff;
}
[lang="uk"] header .download-google-play:hover path:nth-child(12){
  stroke:  #ffffff;
}







@media (max-width: 600px){
  .footer-buttons .download-btn{
    min-width: unset;
    width: 100%;
  }
  .footer-buttons{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

html #bingc-active div.bingc-active-overlay div.bingc-active-content div.bingc-active-get-phone-form form.bingc-active-get-phone-form div.bingc-active-get-phone-form-date-selection div.bingc-active-date-selection-select-hour, html #bingc-active div.bingc-active-overlay div.bingc-active-content div.bingc-active-get-phone-form form.bingc-active-get-phone-form div.bingc-active-get-phone-form-date-selection div.bingc-active-date-selection-select-minutes{
  background: var(--clr-netherworld-100) !important;
}