* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff');
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

:root {
  --gove-gray: #666;
  --white: #fff;
  --steel-gray: #212133;
  --accent: #ff6d00;
  --sky: #89c8fd;
}

body {
  margin: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  color: var(--gove-gray);
  background-color: var(--white);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--white);
}

.link-dark {
  color: var(--gove-gray);
}

p {
  margin: 0;
}

.dis-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.logo-img {
  display: block;
  max-width: 100%;
  /* max-height: 100%; */
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.title--dark {
  color: var(--steel-gray);
}

.title--light {
  color: var(--white);
}

.title--big {
  font-size: 60px;
  line-height: 60px;
}

.title--section {
  margin-bottom: 50px;
}

.title--block {
  margin-bottom: 20px;
}

.container {
  max-width: 1700px;
  padding: 0 50px;
  margin: 0 auto;
}

/*-------------header--------------*/
.header {
  background-color: var(--blue-color);
  -webkit-box-shadow: 0px 6px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 6px 8px 0px rgba(34, 60, 80, 0.2);
  padding: 25px 0;
  /* margin-bottom: 80px; */
  position: relative;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  max-width: 250px;
}

.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--steel-gray);
  border: 1px solid green;
  border-radius: 30px;
  padding: 0 15px 0 0;

}

.header__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;

  background-color: green;
  border-radius: 30px;
  margin-right: 10px;
}

.header__tel svg {
  width: 20px;
  height: 20px;
  /* margin-right: 10px; */
}

.header__nav-list {
  display: flex;
  gap: 30px;
}

.header__nav-item {
  padding: 5px 10px;
}

.header__nav-link {
  font-size: 18px;
  color: var(--steel-gray);
}

.header__burger {
  display: none;
  background: none;
  border: none;
}

.burger-icon {
  width: 36px;
  height: 28px;
  width: 28px;
  height: 21px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.burger-icon .line {
  width: 100%;
  height: 3px;
  position: relative;
  right: 0px;
  background-color: var(--steel-gray);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.burger-icon .line:nth-child(2) {
  /* width: 80%; */
  width: 60%;
}

.burger-icon .line:nth-child(3) {
  /* width: 65%; */
  width: 40%;
}

.burger-icon-active .line {
  width: 100%;
  background-color: var(--steel-gray);
}

.burger-icon-active .line:nth-child(1) {
  width: 100%;
  /* top: 12px; */
  top: 9px;
  transform: rotate(45deg);
}

.burger-icon-active .line:nth-child(2) {
  width: 0;
}

.burger-icon-active .line:nth-child(3) {
  width: 100%;
  /* top: -12px; */
  top: -9px;
  transform: rotate(-45deg);
}


/*----intro----*/
.intro {
  background-image: url(../img/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  color: #fff;
}

.intro__wrapp {
  color: var(--white);
  background-color: #212133d6;
  padding: 50px;
  border-radius: 30px;
  font-size: 20px;
}

.intro__title {
  font-size: 40px;
  line-height: 40px;
}

.intro__text {
  margin-bottom: 10px;
}

/*----card----*/
.card {
  /* position: relative; */
  color: var(--white);
  background-color: var(--steel-gray);
  padding: 60px 0;
  margin-bottom: 80px;
  background-image: url(../img/card.png);
  background-repeat: no-repeat;
  background-size: calc(100vw - 70%);
  background-position: 115% 50%;
}

.card__wrapp {
  width: 80%;
}

.card__top {
  margin-bottom: 50px;
}

.card__security-text {
  margin-bottom: 20px;
}

.card__security-list {
  margin-bottom: 50px;
}

.card__security-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--accent);
  border-radius: 15px;
  padding: 15px;
}

.card__security-item:not(:last-child) {
  margin-bottom: 25px;
}

.count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: var(--steel-gray);
  background-color: var(--white);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  font-size: 18px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.card__plus-list {
  margin-bottom: 50px;
}

.card__plus-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--accent);
  border-radius: 15px;
}

.card__plus-item:not(:last-child) {
  margin-bottom: 15px;
}

.card__plus-item svg {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 15px;
}

.card__money-title, .card__recommendation-title, .accident__money-title {
  margin-bottom: 10px;
}

.card__money-list, .card__recommendation-list, .accident__money-list, .accident__requirements-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}



/*---question---*/
.question {
  text-align: center;
  color: var(--white);
  background-color: var(--steel-gray);
  padding: 60px 0;
  margin-bottom: 80px;
}

.question__text {
  margin-bottom: 15px;
}

.question__tel {
  display: inline-block;
  color: var(--white);
  background-color: var(--accent);
  border: 1px solid transparent;
  border-radius: 30px;
  padding: 10px 25px;
}

.accident {
  margin-bottom: 80px;
}

.accident__wrapp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.accident__left {
  -ms-grid-column-span: 8;
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.accident__right {
  -ms-grid-column-span: 4;
  grid-column: span 4;
  margin: auto;
  height: 350px;
}

.accident__text {
  margin-bottom: 20px;
}

.accident__list {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  margin-top: 10px;
}

.accident__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
  text-align: center;
  color: var(--gove-gray);
  border: 3px solid var(--sky);
  border-radius: 15px;
  padding: 15px;
}

.mirrorX {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.accident__item svg {
  width: 100px;
  height: 100px;
  margin-right: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.accident__item p {
  margin: auto 0;
}

.accident__docs {
  margin-bottom: 50px;
}

.case__list {
  display: inline-block;
}

.case__item {}

.case__item:not(:last-child) {
  margin-bottom: 10px;
}

.partners {
  margin-bottom: 80px;
}

.partners__title {
  margin-bottom: 30px;
}

.partners__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners__item svg {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.partners__item:not(:last-child) {
  margin-right: 80px;
}

.footer {
  color: var(--white);
  background-color: var(--steel-gray);
  padding: 60px 0;
}

.footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.footer__logo svg {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.question__phone {
  color: var(--accent);
}

.footer-text {
  color: var(--white);
}

address {
  font-style: normal;
}

.doctor-head {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 50px;
}

.doctor-head:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--steel-gray);
  z-index: -1;
}

.doctor__description {
  margin-bottom: 20px;
}

.doctor__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.doctor__item {
  grid-column: span 4;
  text-align: center;
  background-color: var(--steel-gray);
  border-radius: 15px;
  padding: 25px 15px;
}

.doctor__count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  color: var(--steel-gray);
  border-radius: 30px;
  font-size: 25px;
  margin: 0 auto 20px;
}

.doctor__item p {
  font-size: 20px;
  color: var(--white);
}

.doctor-help {
  margin-bottom: 50px;
}

.doctor-help__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.doctor-help__card {
  grid-column: span 2;
  text-align: center;
  border: 2px solid var(--gove-gray);
  border-radius: 15px;
  /* color: var(--steel-gray); */
  padding: 25px 15px;

}

.doctor-help__card:nth-last-child(-n+2) {
  grid-column: span 3;
}

.doctor-help__card svg {
  height: 75px;
  width: 75px;
  margin-bottom: 10px;
}

.doctor-help__card p {
  font-size: 20px;
}

.doctor-take {
  margin-bottom: 50px;
}

.doctor-take__wrapp {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.doctor-take__list {
  grid-column: span 8;
}

.doctor-take__img {
  grid-column: span 4;
  display: flex;
  justify-content: center;
}

.doctor-take__item {
  display: flex;
  align-items: center;
  background-color: var(--steel-gray);
  color: var(--white);
  border-radius: 15px;
  padding: 25px 15px;
}

.doctor-take__item:not(:last-child) {
  margin-bottom: 15px;
}

.doctor-take__img img {
  margin: auto 0;
}

.doctor__docs {
  margin-bottom: 50px;
}

@media (max-width: 1440px) {
  .header__container {
    flex-wrap: wrap;
  }

  .header__nav {
    order: 1;
    width: 100%;
    padding: 15px 0 0 0;
  }

  .header__nav-list {
    justify-content: space-between;
  }
}

@media (max-width: 1023px) {
  .header__nav-link {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: 20px;
  }

  .title--big {
    font-size: 26px;
    line-height: 26px;

  }

  .title--block {
    margin-bottom: 15px;
  }

  .title--section {
    margin-bottom: 25px;
  }

  .container {
    padding: 0 20px;
  }

  .intro {
    padding: 80px 0;
  }

  .intro__wrapp {
    padding: 30px;
  }

  .intro__title {
    font-size: 24px;
    line-height: 24px;
  }

  .intro__wrapp {
    font-size: inherit;
  }

  .card {
    background-image: none;
    padding: 50px 0;
    margin-bottom: 50px;
  }

  .card__wrapp {
    width: 100%;
  }

  .accident__right {
    display: none;
  }

  .accident__wrapp {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .accident__left {
    -ms-grid-column: 1;
    grid-column: 1;
  }

  .accident {
    margin-bottom: 50px;
  }

  .accident__item svg {
    width: 75px;
    height: 75px;
    margin: 0;
  }

  .case {
    margin-bottom: 50px;
  }

  .question {
    padding: 40px 0px;
    margin-bottom: 50px;
  }

  .partners__title {
    margin-bottom: 25px;
  }

  .partners {
    margin-bottom: 50px;
  }

  .doctor__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor__item {
    grid-column: span 2;
  }

  .doctor__count {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin: 0 auto 10px;
  }

  .doctor__item p {
    font-size: 18px;
  }

  .doctor-help__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor-help__card {
    grid-column: span 1;
  }

  .doctor-help__card:nth-last-child(-n+2) {
    grid-column: auto;
  }

  .doctor-help__card:last-child {
    grid-column: span 2;
  }

  .doctor-help__card svg {
    height: 50px;
    width: 50px;
  }

  .doctor-help__card p {
    font-size: 18px;
  }

  .doctor-take__img {
    display: none;
  }

  .doctor-take__wrapp {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor-take__list {
    grid-column: span 2;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__tel {
    margin: 0 10px;
  }


  .header__nav {
    order: 1;
    width: auto;
    padding: 0;
  }

  .header__burger {
    display: flex;
    padding: 10px;
  }

  .header__nav-menu {
    display: none;
  }

  .header__nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 108px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .9);

    transform: translateX(-101%);
    transition: transform .3s ease-in-out;
    padding: 50px 20px 50px;
  }

  .header__nav-menu-active {
    transform: none;
  }

  .header__nav-list {
    flex-direction: column;
  }

  .header__nav-item {
    text-align: right;
  }

  .header__nav-link {
    color: var(--white);
    font-size: 24px;
  }
}

@media (max-width: 559px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }

  .header {
    padding: 15px 0;
  }

  .header__tel svg {
    width: 14px;
    height: 14px;
  }

  .header__icon {
    width: 28px;
    height: 28px;
  }

  .accident__item {
    width: 100%;
    padding: 10px;
  }

  .accident__list {
    flex-direction: column;
    gap: 10px;
  }

  .doctor-help__card {
    grid-column: span 2 !important;
  }

  .partners__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .partners__item:not(:last-child) {
    margin-right: 0px;
  }

  .footer {
    padding: 40px 0;
  }


  .header__tel-number {
    display: none;
  }

  .header__tel {
    padding: 0;
    border: none;
  }

  .header__icon {
    margin-right: 0;
  }

  .header__container {
    flex-wrap: nowrap;
  }

  .header__nav-menu {
    top: 85px;
  }

  .header__nav-link {
    font-size: 20px;
  }

  .header__nav-list {
    gap: 15px;
  }
}

@media (max-width: 374px) {
  .header__nav-menu {
    top: 75px;
  }
}