
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-UltraLightItalic.woff2);
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-Light.woff2);
  font-weight: 300;
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-Regular.woff2);
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-Medium.woff2);
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-SemiBold.woff2);
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-Bold.woff2);
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-ExtraBold.woff2);
  font-weight: 800;
}
@font-face {
  font-family: "Gilroy";
  src: url(./fonts/Gilroy-Heavy.woff2);
  font-weight: 900;
}

.hide {
  display: none !important;
}
.row {
  display: flex !important;
}
html {
    --accent-color: #E84E22;
    --clientsLineLeftHideBlockWidth: 25%;
    font-family: "Gilroy", sans-serif;
    font-style: normal;
    font-size: 20px;
    color: #1B1B1B;
    line-height: 1.25;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
  background-color: #FAFAFA;
  line-height: 1.2;
  margin: 0;

  position: relative;
}
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}
a {
  text-decoration: none;
  color: unset;
}
h1,h2,h3,h4,h5 {
  margin: 0;
}
@keyframes ticker {
  0% {
    transform: translate(0%, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes ticker_Clients {
  0% {
    transform: translate(300px, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}
.lightboxOverlay {
  width: 100vw !important;
}
.btn {
  font-weight: 500;
  background-color: var(--accent-color);
  color: white;
  padding: 22px 100px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
}
.btnAlt {
  border: 1px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}
.btnRound {
  width: 50px;
  aspect-ratio: 1;
  border: 1px solid var(--accent-color);
  border-radius: 100%;
  background-color: transparent;

  background-position: center;
  background-repeat: no-repeat;

  cursor: pointer;
}
.container {
  max-width: 1387px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.innerPd {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  position: relative;
}
.sectionTitle {
  font-size: 1.75rem;
  color: #343434;

  font-weight: 500;

}
.sectionTitle span{
  color: var(--accent-color);
}
.sectionTitle::before {
  content: '';
  position: absolute;
  width: 23px;
  aspect-ratio: 1;

  clip-path: polygon(0 0,100% 0,0 100%);
  background-color: red;

  left: 0;
  top: 0;
}
.linkAccess, .openLightbox {
  position: relative;

  cursor: pointer;
}
.linkAccess::after, .openLightbox::after {
  content: '';

  position: absolute;
  z-index: 10;

  opacity: 0;

  transition: opacity .2s ease-in;

  right: 5%;
  bottom: 5%;

  width: 46px;
  height: 46px;

  border-radius: 100%;

  background-color: #fff;
  background-image: url('./images/double_arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
}
.linkAccess:hover::after, .openLightbox:hover::after  {
  opacity: 1;
}
.header {
  padding-top: 2.3em;
}
.header .inner .header__main{
  display: flex;
  justify-content: space-between;
}
.header .inner .header__main .header__contacts {
  display: flex;
  align-items: center;
  column-gap: 0.85em;
}
.header .inner .header__main .header__contacts  .header__social {
  display: flex;
  column-gap: 0.25em;
}

.header .inner .header__main .header__info {
  text-align: right;
  padding-left: 0.7em;
}
.header .inner .header__main .header__info .phone{
  font-size: 1.5rem;
  font-weight: 500;
}
.header .inner .header__main .header__info .schedule{
  font-size: 0.8rem;
  position: relative;
}
.header .inner .header__main .header__info .schedule::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  left: 58px;
  top: 31%;
  border-radius: 100%;
  background-color: #25D366;
}
.header .inner .header__main .header__info .schedule .time {
  font-weight: 500;
}
.header .inner .header__main .header__feedbackCall .feedbackCall {
  padding: 17px 42px;
  font-size: 0.8rem;
}
.header .inner .header__menu{
  padding-top: 2.3em;
}
.header .inner .header__menu .nav{
  display: flex;
  justify-content: space-between;
}
.header .inner .header__menu .nav .nav__item{
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.75em;
}

.hero {
  padding-top: 8.5em;

  background-image: url(./images/hero_bg.svg);
  background-position: 86% center;
  background-repeat: no-repeat;
  background-size: 34%;

  padding-bottom: 7.25em;
}
.hero .inner {
  display: flex;
}
.hero .inner .content .title{
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5333em;

  max-width: 800px;

  color: #343434;
}
.hero .inner .content ul.desc {
  color: #696969;
  margin-bottom: 1.8em;
  padding-left: 2.6em;
}
.hero .inner .content ul.desc li {
  margin-bottom: 0.95em;
  position: relative;
  list-style-type: none;
}
.hero .inner .content ul.desc li::marker{

  color: var(--accent-color);
  font-size: 2.5rem;
  line-height: 0;
}
.hero .inner .content ul.desc li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 100%;
  opacity: .8;

  left: -28px;
  top: 5px;
}
.hero .hero__main .feedbackFormOpen {
  font-weight: 700;
  padding: 38px 98px;
  margin-left: 1em;
  font-size: 1.2rem;
}
.hero .inner .hero__image {
  position: absolute;
  right: 0;
}
.clientsLine {
  position: relative;
}
.clientsLine .inner{
  display: flex;
  align-items: end;
}
.clientsLine .inner::before {
  content: '';
  width: var(--clientsLineLeftHideBlockWidth);
  height: 109px;
  background-color: #FAFAFA;
  position: absolute;
  left: 0;
  top: 0;

  z-index: 10;
}
.clientsLine .inner .clientsLine__desc{
  flex-shrink: 0;
  z-index: 20;
}
.clientsLine .clientsLine__row {
  display: flex;
  align-items: center;
  column-gap: 6em;



  animation: ticker_Clients 30s infinite linear forwards;
}
.clientsLine .clientsLine__desc {
  font-style: italic;
  font-weight: 200;

  font-size: 1.2rem;
}
.clientsLine__item {
  flex-shrink: 0;
}
.about {
  padding-top: 4.75em;
}
.about .text {
  font-size: 1.2rem;
  color: #5d5d5d;
  text-align: justify;
  margin-bottom: 40px;
}
.about .about__list {
  display: flex;
  justify-content: space-between;
}
.about .about__list  .about__item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  padding: 40px 30px 40px 30px;
  font-size: 1.25rem;
  column-gap: 0.6em;
}


.opportunities {
  padding-top: 3.35em;
  position: relative;
}
.opportunities .opportunities__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2em;
}
.opportunities__buttons {
  display: flex;
  column-gap: 0.3em;
}
.opportunities__back {
  background-image: url(./images/arrow-back.svg);
}
.opportunities__forward {
  background-image: url(./images/arrow-forward.svg);
}
.opportunitiesLeftBlock {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 300px;
  width: 100px;
}
.opportunitiesRightBlock {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 300px;
  width: 100px;
}
.opportunities__list {
  display: flex;

  column-gap: 36px;

  /*animation: ticker 30s infinite linear forwards;*/

  transition: all .2s linear;
}
.opportunities__list .opportunities__item {
  flex-shrink: 0;
  transition: filter .2s ease-in;
}
.opportunities__list .opportunities__item.onBorder {
  filter: opacity(25%);
}
.opportunities .opportunities__wrapper{
  position: relative;
}
/*.opportunities__wrapper::before {
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;

  position: absolute;

  z-index: 10;

  background-color: rgba(1,1,1,.5);
  background: linear-gradient();
}
.opportunities__wrapper::after {
  content: '';
  top: 0;
  right: 0;
  height: 100%;
  width: 10%;

  position: absolute;

  z-index: 10;

  background-color: rgba(1,1,1,.5);
  background: linear-gradient();
}*/
.advs {
  padding-top: 4.8em;
  background-image: url(./images/adv_bg.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
}
.advs .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 4.5em;
}
.advs .inner .advs__pic {
  position: relative;
  flex-shrink: 0;
}
.advs .inner .advs__pic .advs__order {
  position: absolute;

  left: 345px;
  width: 386px;
  top: 18px;
}

.order__img--mobile {
  display: none;
}

.advs .inner .advs__pic .advs__order .orderExample__title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 20px;

  line-height: 1.27;
}
.advs .inner .advs__pic .advs__order .orderExample__title span {
  color: var(--accent-color);
}
.advs .inner .adv__title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  column-gap: 0.44em;
}
.advs .inner .adv__text {
  color: #5D5D5D;
}
.advs__list {
    display: flex;
    flex-direction: column;
    row-gap: 3em;
}
.specification {
  padding-top: 4.6em;
}
.specification__list {
  width: 100%;
  margin-top: 12px;
}
.specification__list tr td {
  border-bottom: 1px dashed #A8A8A8;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 20px 0;
}
.specification__list tr td.value {
  font-weight: 600;
}
.specification__btn {
  text-align: center;
  margin-top: 45px;
}
.specification__btn .btn {
  padding: 10px 100px;
  border-radius: 5px;
}

.spheres {
  margin-top: 5em;
  background-image: url(./images/spheres-bg.svg);
  background-position: 78% top;
  background-repeat: no-repeat;
}
.spheres .sectionTitle {
  margin-bottom: 40px;
}
.spheres .spheres__list {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.spheres .spheres__list .spheres__item {
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 10px;

  color: #fff;
  height: 306px;
  padding: 36px;
}
.spheres .spheres__list .spheres__item .spheres__name {
  display: flex;
  align-items: center;
  column-gap: .3em;
  margin-bottom: 0.5em;
  font-weight: 400;

  font-size: 1.25em;
}
.spheres .spheres__list .spheres__item .spheres__name h4 {
  font-weight: 400;
}
.spheres__back {
  background-image: url(./images/arrow-back.svg);
}
.spheres__forward {
  background-image: url(./images/arrow-forward.svg);
}

.spheres .spheres__list .spheres__item--1 {
  background-image: url(./images/sphere-1.png);
  grid-column: 1 / span 2;
}
.spheres .spheres__list .spheres__item--2 {
  background-image: url(./images/sphere-2.png);
  grid-column: 3 / span 3;
}
.spheres .spheres__list .spheres__item--3 {
  background-image: url(./images/sphere-3.png);
  grid-column: 1 / span 3;
}
.spheres .spheres__list .spheres__item--4 {
  background-image: url(./images/sphere-4.png);
  grid-column: 4 / span 2;
}
.spheres .spheres__list .spheres__item--5 {
  background-image: url(./images/sphere-5.png);
  grid-column: 1 / span 2;
}
.spheres .spheres__list .spheres__item--6 {
  background-image: url(./images/sphere-6.png);
  grid-column: 3 / span 3;
}
.spheres--mobile {
  display: none;
}
.offer {
  margin-top: 5em;
}
.offer__note--mobile {
  display: none;
}
.offer .offer__title {
  margin-bottom: 32px;
}
.offer .offer__title .sectionTitle {
  margin-bottom: 0.34em;
}
.offer .offer__title .subtitle{
  font-size: 1rem;
  font-weight: 400;
  text-wrap: auto;
  line-height: 1.2;
}
.offer .offer__content {
  display: flex;

  column-gap: 1em;
}
.offer .offer__content .offer__quiz {
  background-color: #fff;
  padding: 52px;
  border-radius: 10px;

  width: 60%;

}
.offer .offer__content .offer__quiz .quiz__answers {
  height: 245px;
}
.offer .offer__content .offer__quiz .quiz__answers .row{
  column-gap: 1em;
  margin-bottom: 1em;

  align-items: center;
}
.offer .offer__content .offer__quiz .quiz__answers .quiz__answer label{
  font-weight: 400;
  background-color: transparent;
  color: #3F3F3F;
  padding: 18px 70px;
  cursor: pointer;
  border: 1px solid #E0E0E0;
  border-radius: 50px;

  display: block;
}
.offer .offer__content .offer__quiz .quiz__buttons .btn{
  padding: 18px 100px;
  font-weight: 400;
}
.offer .offer__content .offer__quiz .quiz__answers .quiz__answer input:checked + label {
  border: 1px solid var(--accent-color);
  color: #fff;
  background-color: var(--accent-color);
}
.offer .offer__content .offer__quiz .quiz__answers .quiz__answer input[type="radio"] {
  display: none;
}
.offer .offer__content .offer__quiz .quiz__answers .inputTextValue {
  padding: 18px 40px;
  text-align: center;
  border: 1px solid #E0E0E0;

  border-radius: 50px;
} 
.offer .offer__content .offer__quiz .quiz__answers .user-data {
  padding: 18px 40px;
  border: 1px solid #E0E0E0;

  border-radius: 50px;
} 
.offer .offer__content .offer__quiz .quiz__answers .checkbox {

  appearance: none;

  width: 24px;
  height: 24px;
  border-radius: 5px;

  border: 1px solid #E0E0E0;

  position: relative;
}
.offer .offer__content .offer__quiz .quiz__answers .checkbox:checked::after {
  content: '';
  background-color: var(--accent-color);
  width: 80%;
  height: 80%;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 5px;
}
.quiz__counter {
  font-weight: 300;
  margin-bottom: .4em;
}
.quiz__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8em;
}
textarea.quiz__customAnswer  {
  resize: none;
  width: 100%;

  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 20px;

  padding-top: 1em;
  padding-bottom: 1em;
}
.quiz__buttons {
  display: flex;
  justify-content: space-between;
}
.quiz__buttons .btn {
  border-radius: 50px;
  border: 1px solid var(--accent-color);
  
}
.quiz__buttons .btn.quizBack {
  background-color: transparent;
  color: var(--accent-color);
}
.manager__content {
  background-color: #fff;
  padding: 62px 30px 30px 16px;
  border-radius: 10px;

  

  font-size: 0.8rem;
}
.manager__content .manager__data {
  display: flex;
  column-gap: 1em;
  align-items: center;
  margin-bottom: 2em;
}
.manager__content .manager__name {
  font-size: 1.2rem;
}
.manager__content .manager__phone, .manager__content .manager__email{
  color: #5D5D5D;
}
.manager__content .manager__phone .value, .manager__content .manager__email .value{
  color: #303030;
}
.manager__content .manager__socials a {
  display: flex;
  align-items: center;
}
.manager__content .manager__socials img {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}
.manager__title {
  font-size: 1.25rem;
  padding-top: .5em;
  padding-left: .5em;
  position: relative;
  margin-top: 2.1em;
  margin-left: 1em;
}
.manager__title::before {
  content: '';
  position: absolute;
  width: 17px;
  aspect-ratio: 1;

  clip-path: polygon(0 0,100% 0,0 100%);
  background-color: red;

  left: 0;
  top: 0;
}
.manager__feedback {
  width: 100%;
  padding: 19px 100px;
}
.manager__info {
  display: flex;
  flex-direction: column;
  row-gap: 0.4em;
}
.manager__socials {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
.offer .offer__content .offer__manager {
  display: flex;
  justify-content: space-between;
}
.certificates {
  margin-top: 74px;
}
.certificates__buttons{
  display: none;
}

.certificates .title {
  text-align: center;
  position: relative;
  
  font-weight: 500;

  display: inline-block;

  padding-top: 14px;
  padding-left: 25px;
}
.certificates .certificates__list {
  display: flex;
  column-gap: 35px;
}
.certificates .certificates__header{
  text-align: center;
  align-items: center;
  margin-bottom: 1.2em;
}
.certificates .certificates__list .certificates__item .certificates__pic {
  border-radius: 20px;
  overflow: hidden;
}
.certificates .certificates__list .certificates__item .certificates__pic img {
  overflow: hidden;
  width: 100%;
}
.certificates .certificates__list .certificates__item .certificates__title {
  margin-top: 1.04em;
  font-size: 1.2rem;
  margin-left: 1em;
  text-align: left;
}
.materials {
  margin-top: 95px;
}
.materials--mobile {
  display: none;
}
.materials .sectionTitle{
  margin-bottom: 1.3em;
}
.materials__list {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;

  gap: 1em;
}
.materials__list .materials__item {
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;

  color: #fff;

  padding: 178px 20px 20px 20px;

  align-content: end;
}

.materials__list .materials__item .materials__title{
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.materials__list .materials__item .materials__desc{
  font-weight: 300;
}

.materials__list .materials__item.materials__item--1 {
  background-image: url(./images/material-1.png);
  grid-column: 1 / span 4 ;
}
.materials__list .materials__item.materials__item--2 {
  background-image: url(./images/material-2.png);
  grid-column: 1 / span 4 ;

}
.materials__list .materials__item.materials__item--3 {
  background-image: url(./images/material-3.png);

    grid-column: 5 / span 6 ;
    grid-row: 1 / span 2;
}
.materials__item--btn {
  grid-column: 5 / span 6 ;
  
}
.materials__item--btn button {
  width: 100%;
}
.supply {
  position: relative;
}
.supply .mid_bg {
  position: absolute;
  top: -44%;
  right: -30%;
  z-index: -1;
}
.supply__list {
  margin-bottom: 4.3em;
}
.supply__line {
  display: flex;
  column-gap: 25px;
  margin-bottom: 25px;

  animation: ticker 500s infinite linear forwards;
}
.supply__line--2 {
  animation-direction: reverse;
}
.supply__line:hover, .clients .clients__line:hover {
  animation-play-state: paused;
}
.supply__line .supply__item {
  flex-shrink: 0;
}
.clients .clients__line {
  display: flex;
  column-gap: 80px;

  animation: ticker 200s infinite linear reverse;

  
}
.clients .clients__line .clientsLine__item {
  flex-shrink: 0;
}
.supply {
  margin-top: 48px;
}
.supply .sectionTitle {
  margin-bottom: 40px;
}
.faq {
  margin-top: 158px;

  background-image: url(./images/faq_bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
}
.faq .inner .faq__wrapper{
  display: flex;
}
.faq .inner .sectionTitle {
  margin-bottom: 36px;
  line-height: 1.2;
}

.faq .faq__wrapper {
  column-gap: 3em;
}
.faq .faq__item {
  
  border-bottom: 1px solid #E8E8E8;
}
.faq .faq__questions {
  flex-shrink: 1.6;
}
.faq .faq__question {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 1em;
  padding-bottom: 1em;
  min-width:600px;

  cursor: pointer;
}
.faq .faq__question .title {
  display: flex;
  align-items: baseline;
  column-gap: 1em;
  font-size: 1.5rem;
  font-weight: 500;
}
.faq .faq__question .title .num {
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;

  padding: 16px 10px 0 16px;
}
.num::before {
  content: '';
  position: absolute;
  width: 17px;
  aspect-ratio: 1;
  clip-path: polygon(0 0,100% 0,0 100%);
  background-color: red;
  left: 0;
  top: 0;
}
.faq .faq__item .toggle {
  width: 47px;
  height: 47px;

  background-color: #fff;
  border-radius: 100%;
  background-image: url(./images/arrow-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);

  transition: transform 0.3s ease;

  flex-shrink: 0;
}
.faq .faq__item.active .toggle {
   transform: rotate(0deg);
}
.faq .faq__answer {
  background-color: #fff;
  padding: 0 25px;
  border-radius: 20px;
  margin-left: 1em;
  
  max-height: 0;

  overflow: hidden;
  transition: all 0.3s ease-in;
}
.faq .faq__item.active .faq__answer {
  padding: 25px 25px;
  margin-bottom: 1.5em;
  margin-left: 1em;
}
.faq .faq__feedback {
  margin-top: 2.4em;
}
.faq .faq__feedback .title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.3em;
}
.faq .faq__feedback .title span{
  color: var(--accent-color);
}
.faq .faq__feedback .feedback__form {
  background-color: #fff;
  padding: 33px 38px;

  border-radius: 15px;
}
.faq .faq__feedback .privacy {
  font-size: 0.8rem;

  margin-bottom: 24px;
}
.faq .faq__feedback .feedback__title .subtitle {
  font-weight: 400;
  margin-bottom: 21px;
}
.faq .faq__feedback .feedback__form input {
  height: 36px;
  margin-bottom: 26px;
}
.faq .faq__feedback .feedback__form input, .faq .faq__feedback .feedback__form textarea {
  border: none;
  border-bottom: 1px solid #E8E8E8;
  resize: none;
  width: 100%;
  font-size: 0.7rem;
}
.feedback__form .btn{
  font-weight: 400;
  padding: 16px 100px;
}
.faq .faq__feedback .feedback__form textarea {
  margin-bottom: 12px;
}
.map {
  position: relative;
  margin-top: 5em;
  padding-bottom: 18em;
  
}
.containerMap {
  max-width: 1688px;
}
.containerMapHeader {
  max-width: 1380px;
}
.map .map__header {
  display: flex;
  position: relative;
  z-index: 10;
}
.map .map__contacts {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 60px 60px 60px;
}
.map .map__feedback {
  background-color: #fff;
  border-radius: 20px;
  padding: 37px 60px 60px 60px;
  height: 265px;

  flex-shrink: 0;

  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.map .map__feedback h3 {
  font-size: 1.6rem;
  margin-bottom: 0.53em;
}
.map .map__contacts h3 {
  position: relative;
  padding-top: 10px;
  padding-left: 10px;
}
.map .map__contacts h3::before {
  content: '';
  position: absolute;
  width: 17px;
  aspect-ratio: 1;

  clip-path: polygon(0 0,100% 0,0 100%);
  background-color: red;

  left: 0;
  top: 0;
}
.map .map__feedback form{
  display: flex;
  column-gap: 1em;
  margin-bottom: 0.55em;
}
.map .map__feedback form input{
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  padding: 1.42em 0.9333em;
  height: 52px;

  font-size: 0.7rem;
}
.map .map__feedback form .btn {
  height: 52px;
  padding: 10px 45px;
  border-radius: 5px;

  font-size: 0.8rem;
}
.map .map__feedback .privacy {
  font-size: 0.6rem;
  font-weight: 300;
}
.map__contacts h3 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}
.map__contacts .subtitle {
  font-size: 0.8rem;
  margin-bottom: 1.4em;

  font-weight: 400;
  padding-left: 10px;
}
.map .map__contacts {
    border-radius: 15px;
    border-top-right-radius: 0px;
    padding: 25px 25px 25px 50px;

}
.map__contacts .contacts__list .contacts__item {
  display: flex;
  align-items: center;
  column-gap: 1em;
  margin-bottom: 1em;

  font-size: 0.9rem;
}
.map__contacts .contacts__list .contacts__item img {
  background-color: #FAFAFA;
  border-radius: 100%;
  flex-shrink: 0;
  padding: 0.6em;
}
.map .innerMainMap {
  position: relative;
}
.map__main {
    position: absolute;
    top: -270px;
    z-index: 0;

    width: 100%;
}
.footer .inner {
  background-color: #373737;
  color: #fff;

  border-radius: 20px;
  padding: 48px 0;
}

.footer {
  max-width: 1545px;
  margin: 0 auto;
  background-color: #373737;
  border-radius: 20px;
}
.footer .inner .footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}
.footer .inner .footer__top  .title{
  font-size: 2rem;
}
.footer .inner .footer__top  .subtitle{
  font-size: 1rem;
}
.footer .inner .footer__top  .subtitle span{
  color: var(--accent-color);
}
.footer .inner .footer__middle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}
.footer .inner .footer__middle .footer__social {
  display: flex;
  font-size: 1.25rem;
  column-gap: 1.6em;
}
.footer__feedback {
  display: flex; align-items: center;
  column-gap: 1em;
}
.footer__feedback input{
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  padding: 1.42em 0.9333em;
  height: 52px;
  font-size: 0.7rem;

  width: 400px;
}
.footer__feedback .btn {
  height: 52px;
  padding: 12px 45px;

  font-size: 0.8rem;
}
.footer__social .social__item {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer__social .social__item img {
  flex-shrink: 0;
}
.footer__nav {
  display: flex;
  justify-content: space-between;

  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;

  padding-top: 1em;
  padding-bottom: 1em;

  margin-bottom: 1em;
}
.footer__nav .nav__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: .5em;

  align-items: center;
}
.footer__social--mobile {
  display: none;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
}
.footer__bottom .copyright {
  color: #575757;
}
.footer__bottom .privacyPolicy {
  color: #A5A5A5;
  font-size: 0.8rem;
}
.popupOverlay {
  background-color: #000000CC;
  position: fixed;
  z-index: 15;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.popupFeedback {
  position: fixed;
  border-radius: 15px;
  max-width: 690px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  overflow: hidden;
  z-index: 20;
}
.popupFeedback .closeBtn {
  top: 15px;
  right: 15px;
  position: absolute;
  cursor: pointer;
  width: 16px;
}
.popupFeedback .closeBtn img {
  width: 100%;
}
.popupFeedback .popupFeedback__form {
  line-height: 1;
  padding: 1em 4em;
}
.popupFeedback .popupFeedback__form h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5em;
}
.popupFeedback .popupFeedback__form input {
  border: 1px #000 solid;
  border-radius: 15px;
  color: #fff;
  padding: 18px 28px;
  background-color: transparent;
  height: 66px;
  width: 100%;
  margin-bottom: 1em;
}
.popupFeedback .popupFeedback__form input {
  color: #000;
}
.popupFeedback .popupFeedback__form input::placeholder {
  color: #000;
}
.popupFeedback .popupFeedback__form .btn {
  width: 100%;
}
.popupFeedback .popupFeedback__form .btn::before {
  right: 27%;
}
.popupFeedback .popupFeedback__note {
  font-size: 0.65rem;
  font-weight: 300;
  margin-bottom: 1em;
}



@media (min-width: 1921px) {
  html {
    --clientsLineLeftHideBlockWidth: 30%;
  }
  .hero {
      background-size: contain;
  }
  .clientsLine .inner::before {
    width: var(--clientsLineLeftHideBlockWidth);
  }
}

@media (max-width: 1700px) {
  .hero .inner{
    align-items: center;
  }
  .hero__image {
    width: 50%;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 18px;
  }
  .hero__image {
    width: 40%;
  }
  .hero .inner .content .title {
    max-width: 800px;
  }
  .about .about__list .about__item {
    padding: 30px 20px 30px 20px;
    font-size: 1.2rem;
  }
  .quiz__title {
    font-size: 1.4rem;
  }
  .offer .offer__content .offer__quiz .quiz__answers .quiz__answer label{
    padding: 18px 48px;
  }
  .manager__pic {
    width: 40%;
  }
  .map .map__feedback {
    flex-shrink: 0.4;
  }
  .advs__pic{
    max-width: 660px;
  }
  .advs .inner .advs__pic .advs__order {
    left: 292px;
    top: 3px;
  }
  .map .map__feedback form .btn {
    padding: 10px 26px;
  }
  .feedback__form .btn {
    padding: 22px 60px;
    width: 100%;
  }
  .map {
    padding-bottom: 13em;
  }
  .footer {
  margin-left: 1em;
  margin-right: 1em;
  }
  .manager__feedback {
    width: 100%;
    padding: 19px 50px;
  }
}
@media (max-width: 1180px) {
  .hero__image {
    width: 35%;
  }

  .about__img {
    width: 48px;
  }
  .about .about__list .about__item {
    font-size: 1rem;
  }
  .advs__pic {
    max-width: 580px;
  }
  .advs .inner .advs__pic .advs__order .orderExample__title {
    font-size: 1.55rem;
  }
  .advs .inner .advs__pic .advs__order {
    left: 250px;
    top: 0px;
  }
  .advs .inner .advs__pic .advs__order .orderExample__title {
    margin-bottom: 10px;
  }
  .advs .inner .advs__pic .advs__order .orderExample__title {
    font-size: 1.55rem;
  }
  .orderExample__order {
    padding: 22px 60px;
  } 
  .offer .offer__content .offer__quiz {
    padding: 33px;
  }
  .offer .offer__content .offer__quiz .quiz__answers .quiz__answer label {
    padding: 18px 22px;
  }
  .map {
    padding-bottom: 8em;
  }
  .map .map__feedback {
    flex-shrink: 0.6;
  }
  .footer .inner .footer__middle {
    flex-direction: column;
    row-gap: 1em;
  }
}


@media (max-width: 1040px) {
  html {
    font-size: 18px;
  }
  .map {
    padding-bottom: 6em;
  }
}
@media (max-width: 996px) {
  .sectionTitle {
    font-size: 1.65rem;
  }
  .header .inner .header__main {
    align-items: center;
  }
  .header .inner .header__main .header__contacts .header__social a {
    width: 46px;
  }
  .header .inner .header__main .header__info {
    padding-left: 0.4em;
  }
  .header .inner .header__main .header__info .phone {
    font-size: 1.2rem;
  }
  .header .inner .header__main .header__info .schedule::before {
    left: 3px;
  }
  .header .inner .header__main .header__feedbackCall .feedbackCall {
    padding: 17px 32px;
  }
  .header .inner .header__menu .nav .nav__item {
    font-size: 0.8rem;
  }
  .logo {
    max-width: 220px;
  }
  .advs .inner {
    flex-direction: column;
  }
  .about .about__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
  .offer .offer__content {
    flex-direction: column;
  }
  .offer .offer__content .offer__quiz {
    width: 100%;
    margin-bottom: 2em;
  }
  .manager__wrapper {
    width: 100%;
  }
  .manager__title {
    display: none;
  }
  .materials__item--btn button {
    padding: 22px 42px;
  }
  .materials__list .materials__item .materials__title {
    font-size: 1.5rem;
  }
  .faq .inner .faq__wrapper {
    flex-direction: column;
  }
  .map {
    padding-bottom: 4em;
  }
  .map__header {
    padding-bottom: 1.5em;
  }
  .map .map__feedback {
    display: none;
  }
  .map .map__contacts {
    width: 100%;
  }
  .map__main {
    position: static;
  }
  .footer__nav .nav__item {
    column-gap: .3em;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  @keyframes ticker_Clients {
    0% {
      transform: translate(50px, 0);
    }

    100% {
      transform: translate(-80%, 0);
    }
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .innerPd {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sectionTitle::before {
    width: 15px;

  }
  .linkAccess::after, .openLightbox::after {
    width: 23px;
    height: 23px;

    background-size: 50%;
  }
  .btn {
    font-size: 1.133rem;
    font-weight: 400;
    border-radius: 5px;
  }
  .btnRound {
    width: 36px;
    height: 36px;

    background-size: 30%;
  }
  .sectionTitle {
  font-size: 1.15rem;
  }
  .header__menu {
    display: none;
  }
  .header__feedbackCall {
    display: none;
  }
  .header__contacts {
    justify-content: end;
    width: 100%;
  }
  .header .inner .header__main .header__info {
    padding-left: 0;
  }
  .header .inner .header__main .header__contacts .header__social a{
    width: 26px;
  }
  .header .inner .header__main .header__info .phone {
    font-size: 1rem;
  }
  .header .inner .header__main .header__info .schedule {
    font-size: 0.6rem;
  }
  .header .inner .header__main .header__info .schedule::before {
    display: none;
  }
  .logo {
    max-width: 120px;
  }
  .hero {
    padding-top: 4.9em;

    background-position: 118% 68%;
    background-size: 45%;

    padding-bottom: 1.25em;
  }

  .hero .inner .content .title {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .hero .hero__main {
    max-width: 315px;
  }
  .hero .inner .hero__image {
    width: 55%;
    transform: translateX(32%);
  }
  .hero .hero__main .feedbackFormOpen {
    margin-left: 0;
    padding: 18px 30px;
    width: 86%;

    font-size: 1rem;
    font-weight: 400;
  }
  .hero .inner .content ul.desc {
    padding-left: 1.6em;
    margin-bottom: 1.1em;
  }
  .hero .inner .content ul.desc li::before {
    height: 9px;
    width: 9px;

    top: 3px;
    left: -20px;
  }

  .clientsLine__item {
    width: 18%;
  }
  .clientsLine {
    padding-top: 3.25em;
  }
  .clientsLine .clientsLine__desc {
    font-size: 1rem;
  }
  .clientsLine .clientsLine__row {
    column-gap: 2em;
  }
  .about {
    padding-top: 3.75em;
  }
  .about .text {
    font-size: 1rem;
  }
  .about .about__list {
    flex-wrap: wrap;
    row-gap: 1em;
  }
  .about .about__list  .about__item { 
    padding: 17px 18px 15px 16px;
    font-size: 1rem;

    height: 62px;
    flex-shrink: 0;
  }
  .about__item--rotateIcon img{
    transform: rotate(270deg);
  }
  .about .about__list  .about__item .about__img {
    width: 30px;

    flex-shrink: 0;
  }

  .opportunities__buttons {
    display: none;
  }
  .opportunities .sectionTitle {
    font-weight: 600;
  }
  .advs {
    padding-top: 3.3em;
  }
  .advs .inner {
    flex-direction: column;
  }
  .advs .inner .advs__pic .advs__order .orderExample__title {
    font-size: 1.65rem;
  }
  .advs .inner .advs__pic .advs__order {
    position: static;
    width: 90%;

    margin: 0 auto;
    margin-bottom: 1.5em;

  }
  .advs__list {
    width: 90%;
    padding-left: 1.2em;
  }
  .advs__list .adv__item {
    margin-bottom: 1.5em;
  }
  .opportunities__list {
    column-gap: 1em;
  }
  .opportunities__list .opportunities__item {
    width: 33%;
  }
  .order__img {
    display: none;
  }
  .order__img--mobile {
    display: block;
    

    text-align: center;
    margin: 0 auto;

    margin-bottom: 1em;
  }
  .advs .inner .advs__pic .advs__order .orderExample__title br{ 
    display: none;
  }
  .advs .inner .adv__title img{
    max-width: 42px;
  }

  .advs__pic {
    margin-bottom: 1em;
  }
  .advs .inner .adv__title {
    font-size: 1.16rem;
    font-weight: 500;
    column-gap: 1.5em;
  }
  .offer__title .subtitle{
    display: none;
  }
  .orderExample__order {
    width: 100%;
    font-size: 1.333rem;
    font-weight: 500;

    border-radius: 10px;
    padding: 18px 60px;
  }
  .offer .offer__content {
    flex-direction: column-reverse;
  }
  .offer__note--mobile {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 1em;
  }
  .offer .offer__content .offer__quiz .quiz__answers {
    height: 270px;
  }
  .specification__list tr td {
    font-size: 1rem;
    padding: 10px 0;
  }
  
  .specification__list tr td.value {
    text-align: right;
  }
  .specification__btn {
    margin-top: 1em;
  }
  .spheres {
    display: none;
  }
  .spheres {
    margin-top: 3em;
  }
  .spheres .sectionTitle {
    margin-bottom: 0;
  }
  .spheres--mobile {
    display: block;
  }
  .spheres--mobile .spheres__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2em;

    margin-bottom: 25px;
  }
  .spheres--mobile .spheres__title .spheres__buttons {
    display: flex;
    column-gap: 0.3em;
  }
  .spheres .spheres__list {
    display: flex;
    gap: unset;
  }
  .spheres .spheres__list .spheres__item {
    height: 276px;

    padding: 14px;
  }
  .spheres .spheres__list .spheres__item .spheres__name {
    margin-bottom: 0;
  }
  .spheres .spheres__list .spheres__item .desc {
    
  }
  .manager__content {
    font-size: 1rem;
  }
  .offer {
    margin-top: 3em;
  }
  .offer .offer__content .offer__quiz {
    width: 100%;
    padding: 22px;
  }
  .offer .offer__content .offer__quiz .quiz__answers .row {
    flex-direction: column;
    row-gap: 1em;
  }
    .offer .offer__content .offer__quiz .quiz__answers .row.rowNoColumn {
      flex-direction: row;
    }
  .offer .offer__content .offer__quiz .quiz__answers .quiz__answer {
    width: 100%;
    text-align: center;
  }
  .offer .offer__content .offer__quiz .quiz__answers .quiz__answer label {
    width: 100%;
    padding: 14px 30px;
    display: block;

    font-size: 1.166rem;
  }
  .offer .offer__content .offer__quiz .quiz__answers .inputTextValue {
    padding: 14px 18px;
    width: 100%;
  }
  .offer .offer__content .offer__quiz .quiz__answers .checkbox {
    flex-shrink: 0;
  }
  .quiz__counter {
    font-size: 1.166rem;
  }
  .offer .offer__content .offer__quiz .quiz__buttons .btn {
    padding: 14px 18px;
    font-size: 1.166rem;
  }
  .quiz__buttons {
    flex-direction: column;
    row-gap: 1em;
    margin-top: 0em;
  }
  .certificates {
    margin-top: 2em;
  }
  .certificates__back {
    background-image: url(./images/arrow-back.svg);
  }
  .certificates__forward {
    background-image: url(./images/arrow-forward.svg);
  }
  .certificates__buttons{
    display: flex;
    align-items: center;

    column-gap: 0.3em;
  }
  
  .certificates .certificates__header {
    display: flex;
    text-align: center;
    justify-content: space-between;

    
    column-gap: 2em;
  }
  .certificates .title {
    text-align: left;
    padding-top: 14px;
  }
  .certificates .certificates__list {
    column-gap: 0;
  }
  .certificates .certificates__list .certificates__item .certificates__pic {
    width: 80%;
    margin: 0 auto;
  }
  .certificates .certificates__list .certificates__item .certificates__title { 
    margin-left: 0;
    text-align: center;
  }
  .materials {
    display: none;
  }
  .materials--mobile {
    display: block;
    margin-top: 2em;
  }
  .materials--mobile .sectionTitle{
    margin-bottom: 1.5em;
  }
  .materials__list {
    display: flex;
    gap: unset;
    margin-bottom: 1em;
  }
  .materials__list .materials__item {
    padding: 32px 20px 150px 20px;
    max-height: 270px;
  }
  .materials__list .materials__item .materials__title {
    font-size: 1.25rem;
    margin-bottom: 0.6em;
    font-weight: 500;
  }
  .materials__buttons {
    display: flex;
    justify-content: center;
    column-gap: 0.3em;
  }
  .materials__back {
    background-image: url(./images/arrow-back.svg);
  }
  .materials__forward {
    background-image: url(./images/arrow-forward.svg);
  }
  .manager__title {
    display: none;
  }
  .manager__feedback {
    width: 100%;
    padding: 15px 41px;

    font-size: 1.2rem;

    border-radius: 10px;
  }
  .manager__wrapper {
    width: 100%;
  }
  .manager__content {
    padding: 20px;
    margin-bottom: 1em;
  }
  .manager__content .manager__data {
    align-items: center;
    
  }
  .manager__pic {
    max-width: 250px;
  }
  .faq .inner .faq__wrapper {
    flex-direction: column;
  }
  .faq .faq__feedback .feedback__form {
    padding: 16px;
  }
  .faq .faq__feedback .feedback__form input, .faq .faq__feedback .feedback__form textarea {
    font-size: 1rem;
  }
  .faq .faq__item .toggle {

    /*width: 26px;
    height: 26px;

    background-size: 33%;*/
  }
  .faq .faq__question {
    column-gap: 1em;
  }
  .faq .faq__question .title .num {
    font-size: 1.3rem;
  }
  .faq .faq__question .title {
    column-gap: 0;
  }
  .faq .faq__item.active .faq__answer {
    padding: 14px 12px;
    
 
  }
  .faq .faq__item .faq__answer {
    padding: 0 8px;
    font-weight: 300;
    font-size: 1rem;
  }
  .supply .sectionTitle {
    margin-bottom: 2em;
  }
  .supply__list {
    margin-bottom: 2em;
  }
  .supply__line {
    column-gap: 0.7em;
    margin-bottom: 0.3em;

    align-items: center;
    
  }
  .supply__line .supply__item {
    width: 30%;
  }
  .clients .clients__line {
    column-gap: 3em;
    align-items: center;
  }
  .clients .clients__line .clientsLine__item {
    width: 12%;
  }
  .faq {
    margin-top: 5em;
  }
  .faq .inner .sectionTitle {
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .faq .faq__question .title {
    font-size: 1.1rem;
  }
  .faq .faq__question .title .num {
    padding: 10px 10px 0 12px;
  }
  .num::before {
    width: 12px;
  }
  .faq .faq__feedback .title {
    font-size: 1.166em;
    text-align: center;
    margin-bottom: 1em;
  }
  .faq .faq__feedback .feedback__title .subtitle {
    display: none;
  }
  .faq .faq__feedback .feedback__form input {
    height: 2.5em;
    margin-bottom: 0.8333em;
  }
  .map {
    padding-bottom: 3em;
  }
  .map__feedback, .innerMainMap {
    display: none;
  }
  .feedback__form .btn {
    width: 100%;
    padding: 15px 38px;
  }
  .map__contacts .contacts__list .contacts__item {
    font-size: 1.115em;
  }

  .map .map__contacts h3 {
    font-size: 1.6rem;
  }
  .footer {
    margin-left: 26px;
    margin-right: 18px;
    margin-bottom: 22px;
  }
  .footer .inner {
    padding: 48px 12px;
  }
  footer .logo {
      max-width: 201px; 
  }
  .footer__title {
    display: none;
  }
  .footer__feedback {
    display: none;
  }
  .footer__feedback--contacts {
    display: none;
  }
  .footer .inner .footer__middle {
    display: none;
  }
  .footer__nav {
    flex-direction: column;
    row-gap: 1em;

    border: none;
  }
  .footer__nav .nav__item {
    font-size: 1.16rem;
  }
  .footer .inner .footer__social--mobile {
    display: flex;
    font-size: 1.25rem;
    column-gap: 1.6em;
    flex-direction: column;
    margin-top: 0em;
    margin-bottom: 1em;
  }
  .footer__nav {
    margin-bottom: 0;
  }
  .devLogo {
    max-width: 91px;
  }
  .footer__social--mobile .social__item{
    display: flex;
    align-items: center;
  }
  .footer__bottom {
    align-items: center;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 15px;
    --clientsLineLeftHideBlockWidth: 27%;
  }
  .hero .hero__main {
   max-width: 291px;
  }
  .hero .inner .content ul.desc {
    padding-right: 2em;
  }
  .hero .hero__main .feedbackFormOpen {
    font-size: 0.833rem;
    padding: 14px 30px;
  }
  .specification__list tr td {
    font-size: 0.9rem;
  }
  .spheres .spheres__list .spheres__item {
    height: 182px;
  }
  .manager__content .manager__data {
    justify-content: space-between;
  }
  .manager__pic {
    max-width: 180px;
    width: 55%;
  }
  .manager__feedback {
    padding: 14px 41px;
  }
  .materials__list .materials__item {
    padding: 32px 20px 115px 20px;
    max-height: 246px;
  }
  .faq .faq__item .toggle {

    width: 32px;
    height: 32px;

    background-size: 36%;
  }
  .feedback__form .btn {
    width: 100%;
    padding: 14px 38px;
  }
}
@media (max-width: 480px) {
  html {
    --clientsLineLeftHideBlockWidth: 29%;
  } 
  .hero .hero__main {
      max-width: 283px;
  }
  .sectionTitle {
    font-size: 1rem;
  }
  .manager__content .manager__data {
    align-items: start;
  }
  .manager__pic {
    max-width: 110px;
    width: 55%;
  }
  .faq .faq__item .toggle {

    width: 30px;
    height: 30px;

    background-size: 35%;
  }
  .faq .faq__question .title .num {
    font-size: 1.2rem;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 14px;
    --clientsLineLeftHideBlockWidth: 29%;
  }
  .btnRound {
    width: 32px;
    height: 32px;
  }
  .hero .inner .content ul.desc {
    padding-right: 3em;
  }
  .hero .hero__main .feedbackFormOpen {
    font-size: 0.833rem;
    padding: 12px 30px;
  }
  .sectionTitle {
    font-size: 1.1rem;
  }
  .manager__pic {
    max-width: 95px;
    width: 50%;
  }
  .spheres .spheres__list .spheres__item {
    height: 146px;
  }
  .materials__list .materials__item {
    padding: 32px 20px 115px 20px;
    max-height: 192px;
  }
  .faq .faq__question .title .num {
    font-size: 1rem;
  }
  .faq .faq__item .toggle {

    width: 28px;
    height: 28px;

    background-size: 34%;
  }
  .faq .faq__item .faq__answer {
    font-size: 0.9rem;
  }
  .faq .faq__feedback .feedback__form input, .faq .faq__feedback .feedback__form textarea {
    font-size: 0.9rem;
  }

}
@media (max-width: 380px) {
  html {
    font-size: 12px;
    --clientsLineLeftHideBlockWidth: 27%;
  }
  .btnRound {
    width: 24px;
    height: 24px;
  }
  .hero {
    padding-top: 4.9em;

    background-position: 118% 61%;
    background-size: 45%;

    padding-bottom: 1.25em;
  }
  .hero .hero__main {
    max-width: 223px;
  }
  .hero .hero__main .feedbackFormOpen {
    font-size: 0.833rem;
    padding: 11px 30px;
  }
  .advs .inner .advs__pic .advs__order .orderExample__title {
      font-size: 1.85rem;
  }
  .specification__list tr td {
    font-size: 0.8333rem;
  }
  .manager__pic {
    max-width: 74px;
    width: 40%;
  }
  .manager__feedback {
    padding: 11px 41px;
  }
  .faq .faq__feedback .privacy { 
    font-size: 0.6rem;
  }
  .hero .inner .content ul.desc {
    padding-right: unset;
  }
  .faq .faq__question .title .num {
      font-size: 1rem;
  }
  .faq .faq__feedback .title {
    margin-bottom: 1em;
  }
  .faq .faq__item .toggle {

    width: 26px;
    height: 26px;

    background-size: 33%;
  }
  .faq .faq__item .faq__answer {
    font-size: 0.833rem;
  }
  .map__contacts .contacts__list .contacts__item img {
    width: 32px;
    flex-shrink: 0;
  }
  .feedback__form .btn {
    width: 100%;
    padding: 8px 38px;
  }
}

.opportunities__list .opportunities__item {
  
  max-width: 300px;
  max-height: 300px;
  border-radius: 15px;
  overflow: hidden;
}
.opportunities__list .opportunities__item img {
  object-fit: cover;
  border-radius: 15px;
  height: 100%;
}
