h1,
h2,
h3,
h4,
h5,
h5,
p {
  margin: 0;
}

ul {
  padding-left: 0;
  margin: 0;
}

.img-size {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.list {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  background-color: #FFFFFF;
}

:root {
  --body-tex-color: #E5E5E5;
  --background-color: #2F303A;
  --head-color: #FFFFFF;
  --text-color: #757575;
  --header-text-color: #212121;
  --section-padding: 94px;
}

.backdrop {
  position: fixed;
  z-index: 2;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 320px) {
  .modal {
    position: absolute;
    padding: 40px;
    width: 100%;
    height: 609px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
}
@media screen and (min-width: 480px) {
  .modal {
    position: absolute;
    padding: 40px;
    width: 450px;
    height: 609px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .modal {
    position: absolute;
    padding: 40px;
    width: 528px;
    height: 581px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
}

.modal__close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  fill: #000000;
  background-color: #FFFFFF;
}
.modal__close:focus, .modal__close:hover {
  fill: #2196F3;
}

.modal__header {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.03em;
  color: #212121;
}

.modal-box1__input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  cursor: pointer;
  padding-left: 42px;
  outline: none;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-box1__input:focus, .modal-box1__input:hover {
  border-color: #2196F3;
}

.modal-box1__input:focus + .modal-box1__svg,
.modal-box1__input:hover + .modal-box1__svg {
  fill: #2196F3;
}

.modal-box {
  margin-bottom: 10px;
}

.comment {
  margin-bottom: 20px;
}

.modal-box__text {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: #757575;
  margin-bottom: 4px;
  resize: none;
}

.modal-check {
  position: relative;
}

.modal-check__check {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.03em;
  color: #757575;
}

.modal-check__icon {
  justify-content: center;
  display: block;
  width: 16px;
  height: 15px;
  border: 2px solid #000000;
  border-radius: 3px;
  margin-right: 9px;
}
.modal-check__checkbox:checked + .modal-check__icon {
  background-color: #2196F3;
  border-color: transparent;
  background-image: url(../images/icon\ check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-check__terms {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  color: #757575;
}

.modal-check__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  text-decoration-line: underline;
  color: #2196F3;
}

.modal-box1 {
  position: relative;
}

.modal-box1__svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}

.comment__text {
  display: block;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  resize: none;
  outline: none;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.comment__text:focus, .comment__text:hover {
  border-color: #2196F3;
}

.modal-icon-svg {
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button-modal {
  position: absolute;
  margin-top: 30px;
  left: 27.79%;
  width: 200px;
  height: 50px;
  background-color: #2196F3;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.button-modal:hover, .button-modal:focus {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.button-modal-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.88;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

.btn-style {
  padding: 6px 22px;
  cursor: pointer;
  color: var(--header-text-color);
  border-radius: 4px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.03em;
  transition: color 250ms, background-color 250ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-style:hover, .btn-style:focus {
  color: #FFFFFF;
  background-color: #2196F3;
  box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 2px 2px rgba(0, 0, 0, 0.12);
}

.footer-name {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  color: #2196F3;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .footer-name {
    font-family: "Raleway";
    font-weight: 700;
    font-size: 26px;
    line-height: 1.19;
    letter-spacing: 0.03em;
    color: #2196F3;
    text-decoration: none;
  }
}

.footer-logo {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1666666667;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-info {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .footer-info {
    text-align: left;
  }
}

.footer-form {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.header__logo {
  margin-right: 93px;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 26px;
  line-height: 1.19;
  letter-spacing: 0.03em;
  color: #2196F3;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .header__logo {
    font-family: "Raleway";
    margin-right: 88px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: 0.03em;
    color: #2196F3;
    text-decoration: none;
  }
}

.logo__header-logo {
  color: #212121;
}

.header {
  position: relative;
  padding-top: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ECECEC;
}
@media screen and (min-width: 320px) and (max-width: 479px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
  }
  .header .header-nav {
    display: none;
  }
  .header .contacts__list {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .header {
    width: 480px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
  }
  .header .header-nav {
    display: none;
  }
  .header .contacts__list {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .header .contacts {
    display: block;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.16;
    letter-spacing: 0.02em;
    color: #757575;
  }
  .header .contacts__list:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .header .contacts__list + .contacts__list {
    margin-left: 30px;
  }
}

.header .container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
}

.header-nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  background-color: var(--head-color);
}

.text {
  color: var(--header-text-color);
}

.menu__info:not(:last-child) {
  margin-right: 50px;
}

.menu__item {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu__item:hover, .menu__item:focus {
  color: #2196F3;
}

.current {
  color: #2196F3;
  position: relative;
}

.menu__item.linea::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #2196F3;
  border-radius: 2px;
  bottom: -32px;
  left: 0;
}

.contacts {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.contacts__icon {
  margin-right: 10px;
  fill: currentColor;
}

.contacts__link {
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contacts__link:hover, .contacts__link:focus {
  color: #2196F3;
}

.icon-open-btn {
  right: 15px;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
}

.btn-menu {
  position: absolute;
  display: flex;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}

.mob-info {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ffffff;
  padding-top: 48px;
  padding-bottom: 48px;
}
.mob-info.is-hidden {
  display: none;
  pointer-events: none;
}
.mob-info .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: start;
  justify-content: space-between;
  padding-left: 40px;
  overflow-y: auto;
  z-index: 1;
}

.icon-close-btn {
  display: block;
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  padding: 0;
}
.icon-close-btn:hover, .icon-close-btn:focus {
  color: #2196F3;
}

.mob-menu__info:not(:last-child) {
  margin-bottom: 32px;
}

.mob-menu__list {
  margin-left: 40px;
}

.mob-menu__item {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: #212121;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-menu__item.current {
  color: #2196F3;
}

.mob-contacts {
  margin-bottom: 64px;
}

.mob-contacts__list:not(:last-child) {
  margin-bottom: 30px;
}

.mob-contacts__link {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: 0.02em;
  color: #757575;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.mob-contacts__link:hover, .mob-contacts__link:focus {
  color: #2196F3;
}

.soc-menu {
  display: flex;
  bottom: 48px;
}

.soc-menu-list {
  position: relative;
}
.soc-menu-list .soc-menu-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #2196F3;
}

.soc-menu-list:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  border: none;
  background-color: rgba(33, 33, 33, 0.2);
  transform: rotate(90deg);
}

.soc-menu-list:not(:last-child) {
  margin-right: 10px;
}

.soc-menu-list:nth-child(n+2) {
  margin-left: 10px;
}

.mob-menu-top {
  margin-bottom: 100px;
}

.no-scroll {
  overflow: hidden;
}

.modal-section {
  display: none;
}

@media screen and (min-width: 320px) {
  .business {
    width: 100%;
    text-align: center;
    width: 100%;
    padding: 118px 60px;
    background-color: var(--background-color);
    color: #FFFFFF;
    flex-grow: 1;
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/buissness-bg-mob.jpg);
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@media screen and (min-width: 320px) and (min-device-pixel-ratio: 2), screen and (min-width: 320px) and (min-resolution: 192dpi), screen and (min-width: 320px) and (min-resolution: 2dppx) {
  .business {
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/buissness-bg-mob-x2.jpg);
  }
}
@media screen and (min-width: 768px) {
  .business {
    padding: 118px 204px;
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/buissness-bg-tab.jpg);
  }
}
@media screen and (min-width: 768px) and (min-device-pixel-ratio: 2), screen and (min-width: 768px) and (min-resolution: 192dpi), screen and (min-width: 768px) and (min-resolution: 2dppx) {
  .business {
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/buissness-bg-tab-x2.jpg);
  }
}
@media screen and (min-width: 1200px) {
  .business {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 200px;
    background-color: var(--background-color);
    color: #FFFFFF;
    max-width: 1600px;
    flex-grow: 1;
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/buissness-bg.jpg);
    max-width: 1600px;
    margin: 0 auto;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1200px) and (min-device-pixel-ratio: 2), screen and (min-width: 1200px) and (min-resolution: 192dpi), screen and (min-width: 1200px) and (min-resolution: 2dppx) {
  .business {
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/buissness-bg-x2.jpg);
  }
}

.business-container__head {
  padding-bottom: 30px;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.62;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (min-width: 1200px) {
  .business-container__head {
    max-width: 696px;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    font-weight: 900;
    font-size: 44px;
    line-height: 1.36;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
  }
}

.section-work {
  text-align: center;
  padding-top: 94px;
  padding-bottom: 94px;
}

.section-team {
  background-color: #F5F4FA;
  padding-top: 94px;
  padding-bottom: 94px;
}

.header-team {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--header-text-color);
}

.business-container__order {
  padding: 10px 32px;
  border-radius: 4px;
  border: none;
  background-color: #2196F3;
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.88;
  letter-spacing: 0.06em;
}

.section-work {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .section-work {
    padding-top: 94px;
    padding-bottom: 94px;
  }
}

.priority-work {
  display: none;
}

.work-list {
  margin-bottom: -30px;
}
@media screen and (min-width: 768px) {
  .work-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: -30px;
  }
}

.work-priorities {
  text-align: left;
}
@media screen and (min-width: 480px) {
  .work-priorities {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .work-priorities {
    width: calc(50% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
    width: 354px;
    height: 251px;
  }
  .work-priorities .work-priorities:not(:last-child) {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .work-priorities {
    width: 270px;
    height: 251px;
  }
}

.work-svg {
  margin-bottom: 30px;
  background-color: #F5F4FA;
  border-radius: 4px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 480px) {
  .work-svg {
    width: 450px;
    height: 120px;
  }
}
@media screen and (min-width: 768px) {
  .work-svg {
    width: 354px;
    height: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .work-svg {
    width: 270px;
    height: 120px;
  }
}

.priority {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.03em;
  color: var(--header-text-color);
  text-transform: uppercase;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .priority {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0.03em;
    color: var(--header-text-color);
    text-transform: uppercase;
  }
}

.work-text {
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: 0.03em;
  color: var(--text-color);
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .work-text {
    font-weight: 400;
    line-height: 1.71;
    letter-spacing: 0.03em;
    color: var(--text-color);
    text-align: left;
  }
}

.section-img {
  padding-bottom: 94px;
  padding-top: 94px;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .section-img {
    display: none;
  }
}

.head-img {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: 0.03em;
  color: var(--header-text-color);
  text-align: center;
}

.list-img {
  display: flex;
}

.img-info {
  position: relative;
}

.img-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  width: 370px;
  height: 70px;
  mix-blend-mode: normal;
  background-color: rgba(47, 48, 58, 0.8);
}

.img-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.img + .img {
  margin-left: 30px;
}

.main h1 {
  display: none;
  text-align: center;
}

.section-team {
  background-color: #F5F4FA;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .section-team {
    padding-top: 94px;
    padding-bottom: 94px;
  }
}

.header-team {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1200px) {
  .header-team {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.16;
    text-align: center;
    letter-spacing: 0.03em;
    color: #212121;
  }
}

.list-team {
  margin-bottom: -30px;
}
@media screen and (min-width: 768px) {
  .list-team {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
  }
}

.team {
  margin-bottom: 30px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 4px 4px;
}
@media screen and (min-width: 768px) {
  .team {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .team {
    width: calc(25% - 30px);
  }
}

.img-team {
  width: 100%;
  height: auto;
  margin-bottom: -4px;
}

.team-container {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.employee {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.19;
  letter-spacing: 0.03em;
  color: var(--header-text-color);
  margin-bottom: 10px;
}

.team-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.19;
  letter-spacing: 0.03em;
  color: var(--text-color);
}

.team-li {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.team-icon:not(:last-child) {
  margin-right: 10px;
}

.team-link {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team-link:hover, .team-link:focus {
  background-color: #2196F3;
}

.team-link-svg {
  fill: #AFB1B8;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.team-link:hover .team-link-svg, .team-link:focus .team-link-svg {
  fill: #FFFFFF;
}

.section-client {
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .section-client {
    padding-top: 94px;
    padding-bottom: 94px;
  }
}

.client-header {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.18;
  text-align: center;
  letter-spacing: 0.03em;
  color: #212121;
}
@media screen and (min-width: 1200px) {
  .client-header {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.17;
    text-align: center;
    letter-spacing: 0.03em;
    color: #212121;
  }
}

.client-li {
  display: flex;
  justify-content: space-between;
  margin-bottom: -30px;
}
@media screen and (max-width: 480px) {
  .client-li {
    max-width: 480px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 480px) {
  .client-li {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 768px) {
  .client-li {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
  }
}

@media screen and (max-width: 767px) {
  .client-img {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .client-img {
    width: calc(33.3333333333% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .client-img {
    width: calc(16.6666666667% - 30px);
  }
}

.client-link {
  width: 210px;
  height: 92px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #AFB1B8;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.client-link:hover, .client-link:focus {
  border-color: #2196F3;
}
@media screen and (min-width: 320px) {
  .client-link {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .client-link {
    width: 226px;
  }
}
@media screen and (min-width: 1200px) {
  .client-link {
    width: 170px;
  }
}

.client-link-svg {
  fill: #AFB1B8;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.client-link:hover .client-link-svg, .client-link:focus .client-link-svg {
  fill: #2196F3;
}

.section-list {
  display: flex;
  flex-wrap: wrap;
}

.section-list {
  margin-bottom: -30px;
}
@media screen and (min-width: 480px) {
  .section-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .section-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
  }
}

.section-pictures {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section-pictures {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
    box-sizing: border-box;
    background-color: var(--head-color);
  }
}
@media screen and (min-width: 1200px) {
  .section-pictures {
    width: calc(33.3333333333% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
    box-sizing: border-box;
    background-color: var(--head-color);
  }
}

.block:hover .section-info-text {
  transform: translateY(0%);
}

.block {
  display: block;
  text-decoration: none;
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.block:hover, .block:focus {
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12), 0px 4px 4px rgba(0, 0, 0, 0.06), 1px 4px 6px rgba(0, 0, 0, 0.16);
}

.section-top-text {
  position: relative;
  overflow: hidden;
}

.section-info-text {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 30px 24px;
  overflow-y: auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  background-color: rgba(33, 150, 243, 0.9);
  transform: translateY(101%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 480px) {
  .section-info-text {
    padding: 77px 24px;
  }
}
@media screen and (min-width: 768px) {
  .section-info-text {
    padding: 49px 24px 77px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .section-info-text {
    padding: 63px 24px;
  }
}

.section-link {
  width: 100%;
}
@media screen and (min-width: 480px) {
  .section-link {
    width: 450px;
    height: 294px;
    left: 215px;
    top: 262px;
  }
}
@media screen and (min-width: 767px) {
  .section-link {
    width: 354px;
    left: 215px;
    top: 262px;
  }
}
@media screen and (min-width: 1200px) {
  .section-link {
    width: 370px;
    left: 215px;
    top: 262px;
  }
}

.section-info {
  padding: 20px 24px;
  border-left: 1px solid #EEEEEE;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .one {
    padding-bottom: 56px;
  }
}

.section-header {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.section-text {
  font-style: normal;
  font-size: 16px;
  line-height: 1.88;
  letter-spacing: 0.03em;
  color: var(--text-color);
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
  }
  .footer .container .container-soc {
    margin-top: 0;
  }
  .footer .container .registered-box {
    margin-top: 60px;
  }
  .footer .container .footer-imput {
    width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .footer .container {
    display: flex;
    align-items: baseline;
  }
  .footer .container .container-soc {
    margin-top: 12px;
  }
  .footer .container .address-conteiner {
    margin-bottom: 20px;
    margin-right: 70px;
  }
  .footer .container .footer-pad:not(:last-child) {
    margin-bottom: 9px;
  }
  .footer .container .footer-name {
    display: block;
  }
  .footer .container .footer-address {
    text-align: start;
  }
  .footer .container .registered-box {
    margin-left: 93px;
    text-align: left;
  }
  .footer .container .form-box {
    display: flex;
    align-items: center;
  }
  .footer .container .footer-button {
    margin-left: 12px;
  }
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--background-color);
  display: flex;
  align-items: center;
}

.footer-name {
  display: flex;
  justify-content: center;
}

.footer-address {
  margin-top: 20px;
  text-align: center;
}

.footer-pad:not(:last-child) {
  margin-bottom: 8px;
}

.footer-text {
  font-size: 14px;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}

.footer-contact {
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-top: 9px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contact:hover, .footer-contact:focus {
  color: #2196F3;
}

.container-soc {
  margin-top: 60px;
}

.footer-soc-li {
  margin-top: 20px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-soc:not(:last-child) {
  margin-right: 10px;
}

.footer-link {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-color: rgba(145, 125, 125, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-link:not(:last-child) {
  margin-left: 10px;
}
@media screen and (min-width: 1200px) {
  .footer-link:hover, .footer-link:focus {
    background-color: #2196F3;
  }
}

.footer-soc-link {
  fill: #FFFFFF;
}

.registered-box {
  text-align: center;
}

.footer-form-box {
  margin-bottom: 20px;
}

.footer-form {
  display: block;
}

.footer-imput {
  height: 50px;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #2F303A;
  border: 1px solid rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
  border-radius: 4px;
  padding-left: 16px;
  margin-bottom: 20px;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-imput:focus, .footer-imput:hover {
  border-color: #2196F3;
}
@media screen and (min-width: 320px) {
  .footer-imput {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .footer-imput {
    width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-imput {
    width: 358px;
  }
}

.footer-button {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: #2196F3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding-left: 29px;
  border: none;
  cursor: pointer;
}

.footer-button-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.88;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  cursor: pointer;
}

.button-footer-box {
  display: flex;
  justify-content: center;
}

.footer-soc-svg {
  fill: #FFFFFF;
  margin-left: 10px;
}

.main-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .main-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .main-section {
    padding-top: 94px;
    padding-bottom: 94px;
  }
  .main-section .main-list {
    margin-bottom: 50px;
  }
}

.main-list {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .main-list {
    max-width: 480px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 40px;
  }
}

.main h1 {
  display: none;
}

.main-btn:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .main-btn:not(:last-child) {
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=main.css.map */