/* .page {
  font-family: var(--main-font);
  letter-spacing: 0.03em;
  color: var(--titel-txt-cl);
} */

/* .section {
  padding-top: 94px;
  padding-bottom: 94px;
} */

/*----- reset -----*/

/* ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img {
  display: block;
} */

/* .container {
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
} */

/* .nav {
  display: flex;
  align-items: center;
} */

/* -----logo -----*/

/* .logo {
  display: block;
  margin-right: 93px;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 26px;
  line-height: calc(31 / 26);
  color: var(--accent-color);
  text-decoration: none;
}

.logo__footer {
  margin-bottom: 20px;
  margin-right: 0;
}

.logo__black {
  color: var(--black-logo-color);
}

.logo__white {
  color: var(--white-text-color);
} */

/*-----Header-----*/

/* .header {
  border-bottom: 1px solid #ececec;
}

.nav__list {
  display: flex;
  gap: 50px;
}

.nav__link {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: calc(16 / 14);
  letter-spacing: 0.02em;
  color: var(--titel-txt-cl);
  padding-top: 32px;
  padding-bottom: 32px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.nav__contact {
  display: flex;
  gap: 10px;
  align-items: center;
  fill: var(--main-txt-cl);
  font-weight: 500;
  font-size: 14px;
  line-height: calc(16 / 14);
  letter-spacing: 0.02em;
  color: var(--main-txt-cl);
  padding-top: 32px;
  padding-bottom: 32px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1), fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav__link:hover,
.nav__link:focus,
.nav__contact:hover,
.nav__contact:focus {
  color: var(--accent-color);
  fill: var(--accent-color);
}

.nav__list .current {
  color: var(--accent-color);
}

.current::after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 4px;
  border-radius: 2px;
  bottom: -1px;
  background-color: var(--accent-color);
}

.nav__list--contact {
  margin-left: auto;
} */

/*----- main -----*/

/*----- hero ----*/
/* .hero {
  background-color: var(--accent-bg-cl);
  background-image: linear-gradient(rgba(47, 48, 58, 0.4), rgba(47, 48, 58, 0.4)),
    url(../images/hero/Img.jpg);
  padding: 200px 0px;
  text-align: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__title {
  font-weight: 900;
  font-size: 44px;
  line-height: calc(60 / 44);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-text-color);
  margin-bottom: 30px;
}

.hero__btn {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: calc(30 / 16);
  letter-spacing: 0.06em;
  background-color: var(--accent-color);
  color: var(--white-text-color);
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  border: none;
  padding: 10px 32px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__btn:hover,
.hero__btn:focus {
  background-color: var(--white-text-color);
  color: var(--accent-color);
} */

/* Features */

/* .features__list {
  display: flex;
  gap: 30px;
}

.features__item {
  width: 270px;
}

.features__background {
  padding: 25px 100px;
  margin-bottom: 30px;
  background-color: var(--background-lite-color);
} */

/* .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;

  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
} */

/* .features__titel {
  font-weight: 700;
  font-size: 14px;
  line-height: calc(16 / 14);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features__text {
  font-size: 14px;
  line-height: calc(24 / 14);
  color: var(--main-txt-cl);
} */

/* Work */

/* .work {
  padding-top: 0px;
}

.work__titel {
  font-weight: 700;
  font-size: 36px;
  line-height: calc(42 / 36);
  color: var(--titel-txt-cl);
  text-align: center;
  margin-bottom: 50px;
}

.work__list {
  display: flex;
  gap: 30px;
}

.work__item {
  position: relative;
}

.work__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: calc(16 / 14);
  text-align: center;
  text-transform: uppercase;
  color: var(--white-text-color);
  padding: 27px 0;
  background: rgba(47, 48, 58, 0.8);
} */

/* Team */

/* .team {
  background-color: var(--background-lite-color);
}

.team__title {
  font-weight: 700;
  font-size: 36px;
  line-height: calc(42 / 36);
  color: var(--titel-txt-cl);
  text-align: center;
  margin-bottom: 50px;
}

.team__list {
  display: flex;
  gap: 30px;
}
.team__description {
  padding-top: 30px;
  padding-bottom: 30px;
}

.team__item {
  background-color: var(--white-text-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: 0px 0px 4px 4px;
}

.team__description-title {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(19 / 16);
  color: var(--titel-txt-cl);
  margin-bottom: 10px;
  text-align: center;
}

.team__description-text {
  line-height: calc(19 / 16);
  color: var(--main-txt-cl);
  text-align: center;
  margin-bottom: 16px;
} */

/* .socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials__linc {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  fill: var(--socials-icons);
  background-color: var(--white-text-color);
  border-radius: 50%;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.socials__linc:hover,
.socials__linc:focus {
  fill: var(--white-text-color);
  background-color: var(--accent-color);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
} */

/* -----Customers----- */

/* .customers__title {
  font-weight: 700;
  font-size: 36px;
  line-height: calc(42 / 36);
  color: var(--titel-txt-cl);
  text-align: center;
  margin-bottom: 50px;
}

.customers__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customers__linc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid;
  border-radius: 4px;
  fill: var(--socials-icons);
  color: var(--socials-icons);
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1), fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.customers__linc:hover,
.customers__linc:focus {
  fill: var(--accent-color);
  color: var(--accent-color);
  cursor: pointer;
} */

/* -----portfolio----- */

/* .portfolio__btn-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.portfolio__btn {
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(26 / 16);
  color: var(--titel-txt-cl);
  background-color: var(--background-lite-color);
  cursor: pointer;
  border-radius: 4px;
  border: none;
  padding: 6px 22px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__btn:hover,
.portfolio__btn:focus {
  background-color: var(--accent-color);
  color: var(--white-text-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.portfolio__card {
  padding: 20px 24px;
  border-right: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.portfolio__link:hover,
.portfolio__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);
}

.portfolio__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.portfolio__link {
  text-decoration: none;
  background: var(--white-text-color);
  display: block;
}

.overlay {
  position: relative;
  overflow: hidden;
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay__item {
  position: absolute;
  top: 0;
  left: 0;

  transform: translateY(100%);
  transition: transform var(--anim-fast);
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(33, 150, 243, 0.9);
  backdrop-filter: blur(4px);
}

.portfolio__link:hover .overlay__item,
.portfolio__link:focus .overlay__item {
  transform: translateY(0);
}

.overlay__text {
  font-weight: 400;
  font-size: 18px;
  line-height: calc(28 / 18);
  color: var(--white-text-color);
  padding: 63px 24px;
}

.portfolio__name {
  font-weight: 700;
  font-size: 18px;
  line-height: calc(36 / 18);
  letter-spacing: 0.06em;
  color: var(--titel-txt-cl);
  margin-bottom: 4px;
}

.portfolio__type {
  line-height: calc(30 / 16);
  color: var(--main-txt-cl);
} */

/* -----footer------ */
/* .footer {
  background-color: var(--accent-bg-cl);
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer__container {
  display: flex;
  align-items: baseline;
}

.footer__contact {
  margin-right: 70px;
}

.footer__title {
  font-weight: 700;
  font-size: 14px;
  line-height: calc(16 / 14);
  text-transform: uppercase;
  color: var(--white-text-color);
  margin-bottom: 20px;
}

.footer__socials-linc {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  fill: var(--white-text-color);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__socials-linc:hover,
.footer__socials-linc:focus {
  fill: var(--white-text-color);
  background-color: var(--accent-color);
} */

/* address {
  font-style: normal;
}

.address__link {
  font-size: 14px;
  line-height: calc(24 / 14);

  color: var(--footer-text-color);
  text-decoration: none;
}

.address__location {
  font-size: 14px;
  line-height: calc(24 / 14);
  text-decoration: none;
  color: var(--white-text-color);
}

.footer__socials {
  margin-right: 93px;
}

.address__link:hover,
.address__link:focus,
.address__location:hover,
.address__location:focus {
  color: var(--accent-color);
}

.address__item {
  margin-bottom: 9px;
}

.address__item:last-child {
  margin-bottom: 0;
} */

/* .subscription__title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: calc(16 / 14);
  text-transform: uppercase;
  color: var(--white-text-color);
  margin-bottom: 20px;
}

.subscription__box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subscription__input {
  padding: 15px 16px;
  width: 358px;
  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: var(--accent-bg-cl);
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
  outline: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.subscription__input:focus {
  border-color: var(--accent-color);
}

.subscription__input::placeholder {
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.6);
}

.subscription__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 28px;
  gap: 10px;

  width: 200px;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  line-height: calc(30 / 16);
  letter-spacing: 0.06em;
  border-color: transparent;
  color: var(--white-text-color);

  fill: var(--white-text-color);
  background-color: var(--accent-color);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.subscription__btn:hover,
.subscription__btn:focus {
  background-color: var(--white-text-color);
  color: var(--accent-color);
  fill: var(--accent-color);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
} */

/* ------Modal window------ */

/* .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 528px;
  height: 581px;
  background: var(--white-text-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;
}
.btn__close {
  position: absolute;
  right: 8px;
  top: 8px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 1px solid var(--socials-icons);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn__close:hover,
.btn__close:focus {
  fill: var(--accent-color);
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form {
  padding: 40px;
}

.form__title {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: calc(23 / 20);
  color: var(--titel-txt-cl);
}

.form__group {
  margin-bottom: 20px;
}

.form__field {
  position: relative;
  display: block;
}

.form__field:nth-child(-n + 3) {
  margin-bottom: 10px;
}

.form__label {
  display: block;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: calc(14 / 12);
  letter-spacing: 0.01em;
  color: var(--main-txt-cl);
}

.form__input {
  width: 100%;
  height: 40px;
  padding-left: 42px;
  padding-right: 42px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  outline: transparent;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__input:focus {
  border-color: var(--accent-color);
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  fill: var(--titel-txt-cl);
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__input:focus + .form__icon {
  fill: var(--accent-color);
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__heading {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: calc(14 / 12);
  letter-spacing: 0.01em;
  color: var(--main-txt-cl);
}

.form__message {
  resize: none;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  font-size: 12px;
  outline: transparent;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 4px;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__message:focus {
  border-color: var(--accent-color);
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__message::placeholder {
  font-size: 12px;
  line-height: calc(14 / 12);
  letter-spacing: 0.01em;
  color: rgba(117, 117, 117, 0.5);
}

.form__agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 7px;
}

.form__btn {
  display: block;
  margin: 0 auto;
}

.icon-checked {
  opacity: 0;
  fill: var(--accent-color);
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form__checkbox:checked + .form__icons .icon-checked {
  opacity: 1;
}

.icon-unchecked {
  opacity: 1;
}

.form__checkbox:checked + .form__icons .unchecked {
  opacity: 0;
}

.form__desc {
  font-size: 14px;
  line-height: calc(24 / 14);
  color: var(--main-txt-cl);
  user-select: none;
}

.form__link {
  color: var(--accent-color);
} */
