:root {
  --bottom-title-color: #212121;
  --active-link-color: #2196f3;
  --header-logo-color: #303030;
  --header-mail-tel-body-color: #757575;
  --title-link-color: #ffffff;
  --footer-mail-tel-color: rgba(255, 255, 255, 0.6);
  --footer-background-color: #2f303a;
  --timing-animation: cubic-bezier(0.4, 0, 0.2, 1);
  --time-animation: 250ms;
}

.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;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--title-link-color);
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--header-mail-tel-body-color);
}

.link {
  text-decoration: none;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  /* outline: 1px solid red; */
}
@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;
  }
}

.backdrop {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  transition: var(--time-animation) var(--timing-animation);
  overflow-y: auto;
}
.backdrop__modal {
  position: absolute;
  width: 90vw;
  min-height: auto;
  background-color: var(--title-link-color);
  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;
  padding: 40px;
  top: 50%;
  left: 50%;
  transition: var(--time-animation) var(--timing-animation);
  transform: translate(-50%, -50%) scale(1);
}
.backdrop.is-hidden .backdrop__modal {
  transform: scale(0.2);
}
@media screen and (min-width: 480px) {
  .backdrop__modal {
    max-width: 480px;
    width: 450px;
    min-height: 609px;
  }
}
@media screen and (min-width: 768px) {
  .backdrop__modal {
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .backdrop__modal {
    max-width: 1200px;
    width: 528px;
    min-height: 581px;
  }
}
.backdrop__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: var(--bottom-title-color);
  margin-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .backdrop__title {
    max-width: 1200px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
  }
}

.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* modal-close-btn */
.modal-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--time-animation) var(--timing-animation);
}
.modal-close-btn:hover, .modal-close-btn:focus {
  fill: var(--active-link-color);
}
.modal-close-btn__icon {
  color: #000;
}

/* modal-field  */
.modal-field {
  margin-bottom: 10px;
}
.modal-field__label {
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.01em;
  color: var(--header-mail-tel-body-color);
  margin-bottom: 4px;
  display: block;
}
.modal-field__text {
  width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.01em;
  color: rgba(117, 117, 117, 0.5);
  resize: none;
  margin-bottom: 20px;
  outline: none;
}
.modal-field__text:focus {
  border-color: var(--active-link-color);
  transition: var(--time-animation) var(--timing-animation);
}

/* modal-wrap */
.modal-wrap {
  position: relative;
}
.modal-wrap__input {
  width: 100%;
  height: 40px;
  padding-left: 42px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: var(--time-animation) var(--timing-animation);
}
.modal-wrap__input:focus {
  border-color: var(--active-link-color);
}
.modal-wrap__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--time-animation) var(--timing-animation);
}
.modal-wrap__input:focus + .modal-wrap__icon {
  fill: var(--active-link-color);
}

/* check-text */
.check-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.16;
  color: var(--header-mail-tel-body-color);
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .check-text {
    max-width: 1200px;
    line-height: 1.71;
  }
}
.check-text__icon {
  fill: transparent;
}
.modal-field__check:checked + .check-text .check-text__icon {
  fill: var(--title-link-color);
}
.check-text span {
  width: 16px;
  height: 15px;
  border: 2px solid #000;
  border-radius: 2px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--time-animation) var(--timing-animation);
}
.modal-field__check:checked + .check-text span {
  border: none;
  background-color: var(--active-link-color);
}
.modal-field__check:focus + .check-text span {
  border-color: var(--active-link-color);
}
.check-text__link {
  font-family: inherit;
  font-size: 12px;
  line-height: 1.16;
  letter-spacing: 0.03em;
  color: var(--active-link-color);
}
@media screen and (min-width: 1200px) {
  .check-text {
    max-width: 1200px;
    font-size: 14px;
    line-height: 1.71;
    font-weight: 400;
  }
}

/* modal-form */
.modal-form__btn {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
.logo {
  font-family: "Raleway";
  letter-spacing: 0.03em;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .logo {
    max-width: 1200px;
    font-size: 26px;
    line-height: 1.19;
    font-weight: 700;
  }
}

.adress {
  font-family: inherit;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: var(--time-animation) var(--timing-animation);
  color: var(--header-mail-tel-body-color);
}
.adress:hover, .adress:focus {
  color: var(--active-link-color);
}

.big-btn {
  background-color: var(--active-link-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.88;
  font-weight: 700;
  letter-spacing: 0.06em;
  align-items: center;
  color: var(--title-link-color);
  cursor: pointer;
  border: none;
  transition: var(--time-animation) var(--timing-animation);
}
.big-btn:focus, .big-btn:hover {
  background-color: #188ce8;
}

.header {
  border-bottom: 1px solid #ececec;
}
.header .container {
  display: flex;
  align-items: center;
}

/* header-nav */
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav__logo-top {
  color: var(--active-link-color);
  padding-top: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .header-nav__logo-top {
    max-width: 768px;
    padding-top: 26px;
    padding-bottom: 26px;
    margin-right: 88px;
  }
}
@media screen and (min-width: 1200px) {
  .header-nav__logo-top {
    max-width: 1200px;
    margin-right: 93px;
    padding-top: 24px;
    padding-bottom: 25px;
  }
}
.header-nav__logo-bottom {
  color: var(--header-logo-color);
}

/* header-list */
.header-list {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-list {
    max-width: 768px;
    display: flex;
  }
}
.header-list__item:not(:last-child) {
  margin-right: 50px;
}
.header-list__link {
  position: relative;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bottom-title-color);
  padding: 32px 0;
  transition: var(--time-animation) var(--timing-animation);
}
.header-list__link:hover, .header-list__link:focus {
  color: var(--active-link-color);
}
.header-list__link--active {
  color: var(--active-link-color);
}
.header-list__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: var(--active-link-color);
}

/* header-list-adress */
.header-list-adress {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-list-adress {
    max-width: 768px;
    display: block;
    margin-left: auto;
    padding-top: 21px;
    padding-bottom: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .header-list-adress {
    max-width: 1200px;
    display: flex;
    padding: 0;
  }
}
.header-list-adress__mail, .header-list-adress__tel {
  display: flex;
  max-width: 768px;
  padding: 0;
  font-size: 12px;
  line-height: 1.16;
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .header-list-adress__mail, .header-list-adress__tel {
    align-items: center;
    max-width: 1200px;
    font-size: 14px;
    line-height: 1.14;
    font-weight: 500;
    padding: 32px 0;
  }
}
.header-list-adress__tel {
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .header-list-adress__tel {
    max-width: 1200px;
    margin-left: 50px;
    margin-top: 0;
  }
}
.header-list-adress__icon {
  margin-right: 10px;
  fill: currentColor;
}

.menu-open-btn {
  margin-left: auto;
  border: none;
  background-color: transparent;
  padding-top: 10px;
  cursor: pointer;
  fill: var(--bottom-title-color);
  transition: var(--time-animation) var(--timing-animation);
}
.menu-open-btn:hover, .menu-open-btn:focus {
  fill: var(--active-link-color);
}
@media screen and (min-width: 768px) {
  .menu-open-btn {
    max-width: 768px;
    display: none;
  }
}

.mob-menu {
  position: fixed;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.16);
  height: 100vh;
  width: 100vw;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 40px;
  transition: var(--time-animation) var(--timing-animation);
}
.mob-menu .container {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  overflow-y: scroll;
}
@media screen and (min-width: 480px) {
  .mob-menu .container {
    margin-left: 0;
  }
}
.mob-menu.is-hidden {
  transform: translateX(50%);
}
@media screen and (min-width: 480px) {
  .mob-menu {
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .mob-menu {
    max-width: 768px;
    display: none;
  }
}

.menu-close-btn {
  position: absolute;
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 15px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  fill: var(--bottom-title-color);
  transition: var(--time-animation) var(--timing-animation);
}
.menu-close-btn:hover, .menu-close-btn:focus {
  fill: var(--active-link-color);
}
.mob-menu-list {
  margin-bottom: 32px;
}
.mob-menu-list__item:not(:last-child) {
  margin-bottom: 32px;
}
.mob-menu-list__link {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 500;
  color: var(--bottom-title-color);
  transition: var(--time-animation) var(--timing-animation);
}
.mob-menu-list__link:hover, .mob-menu-list__link:focus {
  color: var(--active-link-color);
}
.mob-menu-list__link--active {
  color: var(--active-link-color);
}

.mob-menu-adress__mail {
  display: block;
  font-size: 24px;
  line-height: 1.17;
  font-weight: 500;
  margin-bottom: 64px;
}
.mob-menu-adress__tel {
  display: block;
  font-size: 24px;
  line-height: 1.17;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (min-width: 480px) {
  .mob-menu-adress__tel {
    max-width: 480px;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 500;
  }
}

.mob-menu-soc-list {
  display: flex;
}
.mob-menu-soc-list__item:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid rgba(33, 33, 33, 0.2);
}
.mob-menu-soc-list__item:not(:first-child) {
  padding-left: 10px;
}
.mob-menu-soc-list__link {
  font-size: 12px;
  line-height: 1.22;
  font-weight: 500;
  color: var(--active-link-color);
}
@media screen and (min-width: 480px) {
  .mob-menu-soc-list__link {
    max-width: 480px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 500;
  }
}

.no-scroll {
  overflow: hidden;
}

.hero {
  padding-top: 118px;
  padding-bottom: 118px;
  background-color: #2f303a;
  background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/herobgmobile.jpg);
  background-repeat: no-repeat;
  max-width: 480px;
  height: 400px;
  margin: 0 auto;
}
@media (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .hero {
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/herobgmobile2x.jpg);
  }
}
@media screen and (min-width: 768px) {
  .hero {
    max-width: 768px;
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/herobgtablet.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) {
  .hero {
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/herobgtablet2x.jpg);
  }
}
@media screen and (min-width: 1200px) {
  .hero {
    max-width: 1600px;
    padding-top: 200px;
    padding-bottom: 200px;
    height: auto;
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/herobg.jpg);
  }
}
@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) {
  .hero {
    background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)), url(../images/herobg2x.jpg);
  }
}
.hero__title {
  margin: 0 auto;
  font-size: 26px;
  line-height: 1.61;
  font-weight: 900;
  width: 280px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--title-link-color);
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  .hero__title {
    max-width: 480px;
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .hero__title {
    max-width: 1200px;
    width: 696px;
    font-size: 44px;
    line-height: 1.36;
    font-weight: 900;
  }
}

.hero-btn {
  font-family: inherit;
  display: flex;
  text-align: center;
  padding: 10px 32px;
  margin: 0 auto;
}
.characteristics {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .characteristics {
    max-width: 768px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .characteristics {
    max-width: 1200px;
    padding: 94px 0;
    margin: 0 auto;
  }
}

/* characteristics-list */
@media screen and (min-width: 768px) {
  .characteristics-list {
    max-width: 768px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .characteristics-list {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
  }
}
.characteristics-list__item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .characteristics-list__item {
    max-width: 768px;
    flex-basis: calc((100% - 60px) / 2);
    margin-bottom: 30px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .characteristics-list__item {
    max-width: 1200px;
    flex-basis: calc((100% - 120px) / 4);
    margin-left: 30px;
  }
}
.characteristics-list__title {
  line-height: 1.14;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bottom-title-color);
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .characteristics-list__title {
    max-width: 768px;
    text-align: left;
  }
}
.characteristics-list__text {
  line-height: 1.71;
}

/* characteristics-soc */
.characteristics-soc {
  width: 100%;
  height: 120px;
  background-color: #f5f4fa;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.characteristics-soc__icon {
  width: 70px;
  height: 70px;
}

.employment {
  padding-top: 0;
  padding-bottom: 94px;
  margin: 0 auto;
  display: none;
}
@media screen and (min-width: 1200px) {
  .employment {
    max-width: 1200px;
    display: block;
  }
}
.employment__title {
  font-size: 36px;
  line-height: 1.17;
  font-weight: 700;
  text-align: center;
  color: var(--bottom-title-color);
  margin-bottom: 50px;
}

/* employment-list */
.employment-list {
  display: flex;
  margin-left: -30px;
}
.employment-list__item {
  position: relative;
  flex-basis: calc((100% - 90px) / 3);
  margin-left: 30px;
}
.employment-list__text {
  position: absolute;
  line-height: 1.14;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(47, 48, 58, 0.8);
  width: 100%;
  height: 70px;
  left: 0;
  bottom: 0;
}

.command {
  background: #f5f4fa;
  padding: 60px 0;
}
@media screen and (min-width: 1200px) {
  .command {
    max-width: 1200px;
    padding: 94px 0;
    margin: 0 auto;
  }
}
.command__title {
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  text-align: center;
  color: var(--bottom-title-color);
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .command__title {
    max-width: 1200px;
    font-size: 36px;
    line-height: 1.17;
    font-weight: 700;
    margin-bottom: 50px;
  }
}

/* command-list */
@media screen and (min-width: 768px) {
  .command-list {
    max-width: 768px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .command-list {
    max-width: 1200px;
    margin-left: -30px;
  }
}
.command-list__item {
  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;
  background-color: var(--title-link-color);
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .command-list__item {
    max-width: 768px;
    flex-basis: calc((100% - 60px) / 2);
    margin-bottom: 30px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .command-list__item {
    max-width: 1200px;
    flex-basis: calc((100% - 120px) / 4);
    margin-left: 30px;
  }
}
.command-list__img {
  margin-bottom: 30px;
  height: auto;
}
.command-list__title {
  font-size: 16px;
  line-height: 1.19;
  font-weight: 500;
  text-align: center;
  color: var(--bottom-title-color);
  margin-bottom: 10px;
}
.command-list__text {
  font-size: 16px;
  line-height: 1.19;
  margin-bottom: 15px;
  text-align: center;
}

/* command-soc-list */
.command-soc-list {
  display: flex;
  justify-content: center;
}
.command-soc-list__item:not(:last-child) {
  margin-right: 10px;
}
.command-soc-list__link {
  margin-bottom: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--title-link-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #afb1b8;
  transition: var(--time-animation) var(--timing-animation);
}
.command-soc-list__link:hover, .command-soc-list__link:focus {
  background-color: var(--active-link-color);
  color: var(--title-link-color);
}
@media screen and (min-width: 1200px) {
  .command-soc-list__link {
    max-width: 1200px;
    margin-bottom: 30px;
  }
}
.command-soc-list__icon {
  fill: currentColor;
}

.clients {
  padding: 60px 0;
}
@media screen and (min-width: 1200px) {
  .clients {
    max-width: 1200px;
    padding: 94px 0;
    margin: 0 auto;
  }
}
.clients__title {
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  text-align: center;
  color: var(--bottom-title-color);
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .clients__title {
    max-width: 1200px;
    font-size: 36px;
    line-height: 1.17;
    font-weight: 700;
    margin-bottom: 60px;
  }
}

/* clients-list */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-bottom: -30px;
}
@media screen and (min-width: 1200px) {
  .clients-list {
    max-width: 1200px;
    flex-wrap: nowrap;
    margin-left: -30px;
    margin-bottom: 0;
  }
}
.clients-list__item {
  flex-basis: calc((100% - 60px) / 2);
  margin-left: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .clients-list__item {
    max-width: 768px;
    flex-basis: calc((100% - 90px) / 3);
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .clients-list__item {
    max-width: 1200px;
    flex-basis: calc((100% - 180px) / 6);
    margin-left: 30px;
  }
}
.clients-list__link {
  max-width: 210px;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--title-link-color);
  border: 1px solid #afb1b8;
  border-radius: 4px;
  color: #afb1b8;
  transition: var(--time-animation) var(--timing-animation);
}
.clients-list__link:hover, .clients-list__link:focus {
  background-color: var(--title-link-color);
  color: var(--active-link-color);
  border: 1px solid var(--active-link-color);
}
@media screen and (min-width: 768px) {
  .clients-list__link {
    max-width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .clients-list__link {
    max-width: 1200px;
  }
}
.clients-list__icon {
  fill: currentColor;
}

.footer {
  background-color: var(--footer-background-color);
  padding-bottom: 60px;
  padding-top: 60px;
}
@media screen and (min-width: 1200px) {
  .footer .container {
    max-width: 1200px;
    display: flex;
    align-items: baseline;
  }
}

/* footer-link */
@media screen and (min-width: 768px) {
  .footer-link-icon {
    max-width: 768px;
    display: flex;
    align-items: baseline;
  }
}

@media screen and (min-width: 768px) {
  .footer-link {
    max-width: 768px;
    margin-left: 76px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-link {
    max-width: 1200px;
    margin-left: 0;
  }
}
.footer-link__logo-main {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer-link__logo-main {
    max-width: 1200px;
    text-align: left;
  }
}
.footer-link__logo-top {
  color: var(--active-link-color);
}
.footer-link__logo-bottom {
  color: var(--title-link-color);
}

/* footer-list */
.footer-list {
  margin-bottom: 60px;
}
.footer-list__item {
  display: block;
}
.footer-list__adress {
  line-height: 1.71;
  display: block;
  text-align: center;
  color: var(--title-link-color);
  margin-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .footer-list__adress {
    max-width: 1200px;
    margin-bottom: 9px;
    text-align: left;
  }
}
.footer-list__mail {
  text-align: center;
  line-height: 1.71;
  display: block;
  color: var(--footer-mail-tel-color);
  margin-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .footer-list__mail {
    max-width: 1200px;
    margin-bottom: 9px;
    text-align: left;
  }
}
.footer-list__tel {
  display: block;
  text-align: center;
  line-height: 1.71;
  color: var(--footer-mail-tel-color);
}
@media screen and (min-width: 1200px) {
  .footer-list__tel {
    max-width: 1200px;
    text-align: left;
  }
}

/* footer-icon */
@media screen and (min-width: 768px) {
  .footer-icon {
    max-width: 768px;
    margin-left: 165px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-icon {
    max-width: 1200px;
    margin-left: 70px;
  }
}
.footer-icon__title {
  line-height: 1.14;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-link-color);
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .footer-icon__title {
    max-width: 1200px;
    text-align: left;
  }
}

/* footer-soc-list */
.footer-soc-list {
  display: flex;
  margin-bottom: 60px;
  justify-content: center;
}
.footer-soc-list__item:not(:last-child) {
  margin-right: 10px;
}
.footer-soc-list__link {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--title-link-color);
  transition: var(--time-animation) var(--timing-animation);
}
.footer-soc-list__link:hover, .footer-soc-list__link:focus {
  background-color: var(--active-link-color);
}
.footer-soc-list__icon {
  fill: currentColor;
}

/* footer-subscription */
.footer-subscription__title {
  text-align: center;
  line-height: 1.14;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-link-color);
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer-subscription__title {
    max-width: 1200px;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .footer-subscription {
    max-width: 1200px;
    margin-right: 0;
    margin-left: auto;
  }
}

/* footer-form */
.footer-form__input {
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
  border-radius: 4px;
  background-color: transparent;
  padding-left: 16px;
  outline: none;
  transition: var(--time-animation) var(--timing-animation);
  margin-bottom: 20px;
  width: 100%;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer-form__input {
    max-width: 768px;
    width: 450px;
    display: block;
    margin: 0 auto 20px auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer-form__input {
    max-width: 1200px;
    width: 358px;
    display: inline;
  }
}
.footer-form__input:focus {
  border-color: var(--active-link-color);
  background-color: transparent;
  color: var(--title-link-color);
}
.footer-form__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-form-btn {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 200px;
  height: 50px;
  padding: 10px 62px 10px 29px;
}
@media screen and (min-width: 1200px) {
  .footer-form-btn {
    max-width: 1200px;
    display: inline;
    margin-left: 12px;
  }
}
.footer-form-btn__icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  fill: var(--title-link-color);
}

.employmen {
  padding: 60px 0;
}
@media screen and (min-width: 1200px) {
  .employmen {
    max-width: 1200px;
    padding: 94px 0;
    margin: 0 auto;
  }
}

/* employmen-list */
.employmen-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -15px;
}
@media screen and (min-width: 768px) {
  .employmen-list {
    max-width: 768px;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .employmen-list {
    max-width: 1200px;
    margin-bottom: 50px;
  }
}
.employmen-list__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .employmen-list__item {
    max-width: 768px;
    margin-bottom: 0;
  }
}
.employmen-list__item:not(:last-child) {
  margin-right: 8px;
}
.employmen-list__btn {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
  color: var(--bottom-title-color);
  background-color: var(--title-link-color);
  cursor: pointer;
  padding: 6px 22px;
  background-color: #f5f4fa;
  border-radius: 4px;
  border: none;
  transition: var(--time-animation) var(--timing-animation);
}
.employmen-list__btn:hover, .employmen-list__btn:focus {
  color: var(--title-link-color);
  background-color: var(--active-link-color);
  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);
}

.employmen-list-bottom {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .employmen-list-bottom {
    max-width: 768px;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .employmen-list-bottom {
    max-width: 1200px;
  }
}
.employmen-list-bottom__item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .employmen-list-bottom__item {
    max-width: 768px;
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .employmen-list-bottom__item {
    max-width: 1200px;
    width: calc(33.3333333333% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
.employmen-list-bottom__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.employmen-list-bottom__link:hover, .employmen-list-bottom__link: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);
}

/* employmen-inner */
.employmen-inner {
  position: relative;
  overflow: hidden;
}
.employmen-inner__text {
  position: absolute;
  top: 0;
  background-color: rgba(33, 150, 243, 0.9);
  font-size: 18px;
  line-height: 1.56;
  color: #ffffff;
  height: 100%;
  padding: 63px 24px;
  transform: translateY(101%);
  transition: transform var(--time-animation) linear;
}
.employmen-list-bottom__link:hover .employmen-inner__text {
  transform: translateY(0%);
}

/* employmen-content */
.employmen-content {
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 20px 24px;
  flex-grow: 1;
}
.employmen-content__title {
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bottom-title-color);
  margin-bottom: 4px;
}
.employmen-content__text {
  font-size: 16px;
  line-height: 1.88;
  color: var(--header-mail-tel-body-color);
}/*# sourceMappingURL=main.css.map */