body {
  font-family: "Roboto", sans-serif;
  color: #2e2f42;
  background-color: #fff;
}

body:has(.backdrop.is-open),
body:has(.mobile-menu.is-open) {
  overflow-y: hidden;
}

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

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 16px;
  }
}

@media screen and (min-width: 1158px) {
  .container {
    max-width: 1158px;
    padding: 0 15px;
  }
}

.section {
  padding: 96px 0;
}

@media screen and (min-width: 1158px) {
  .section {
    padding: 120px 0;
  }
}

.logo {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #2e2f42;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.16667;
  letter-spacing: 0.03em;
}

.header {
  border-bottom: 1px solid #e7e9fc;
  box-shadow:
    0 1px 6px 0 rgba(46, 47, 66, 0.08),
    0 1px 1px 0 rgba(46, 47, 66, 0.16),
    0 2px 1px 0 rgba(46, 47, 66, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
}

.navigation {
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .navigation {
    width: auto;
    gap: 120px;
  }
}

@media screen and (min-width: 1158px) {
  .navigation {
    gap: 76px;
  }
}

.accent-logo {
  color: #4d5ae5;
}

.list-nav {
  gap: 40px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  list-style-type: none;
  display: none;
}

@media screen and (min-width: 768px) {
  .list-nav {
    display: flex;
  }
}

.link-nav {
  position: relative;
  display: block;
  padding: 24px 0;
  color: #2e2f42;
  font-weight: 500;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.link-nav.current {
  color: #404bbf;
}

.link-nav.current::after {
  background-color: #404bbf;
  position: absolute;
  border-radius: 2px;
  width: 100%;
  height: 4px;
  display: block;
  content: "";
  left: 0;
  bottom: -1px;
}

.link-nav:hover,
.link-nav:focus {
  color: #404bbf;
}

.contact {
  font-style: normal;
  margin-left: auto;
}

.list-contact {
  display: none;
  line-height: 1.5;
  letter-spacing: 0.02em;
  list-style-type: none;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .list-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media screen and (min-width: 1158px) {
  .list-contact {
    flex-direction: row;
    gap: 40px;
  }
}

.link-contact {
  color: #434455;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .link-contact {
    padding: 0;
    font-size: 12px;
    line-height: 1.16667;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 1158px) {
  .link-contact {
    display: block;
    padding: 24px 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.link-contact:hover,
.link-contact:focus {
  color: #404bbf;
}
.mobile-menu-btn {
  background-color: transparent;
  border: none;
  padding: 16px;
  margin-left: auto;
  display: flex;
}

@media screen and (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcfcfc;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 72px 16px 40px;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 50%;
  background-color: #e7e9fc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 24px;
  height: 24px;
  fill: #2e2f42;
}

.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu-nav {
  margin-bottom: auto;
}
.mobile-menu-item-nav:not(:last-child) {
  margin-bottom: 40px;
}
.mobile-menu-link-nav {
  text-decoration: none;
  color: #2e2f42;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11111;
  letter-spacing: 0.02em;
}

.mobile-menu-link-contact {
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-link-nav.active {
  color: #404bbf;
}

.mobile-menu-link-contact:hover,
.mobile-menu-link-contact:focus {
  color: #404bbf;
}

.mobile-menu-contact {
  margin-bottom: 48px;
}
.mobile-menu-item-contact:not(:last-child) {
  margin-bottom: 24px;
}

.mobile-menu-link-contact {
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #434455;
}
.mobile-social-links {
  display: flex;
  gap: 40px;
}
/* section Effective Solutions for Your Business */
.solutions {
  margin: 0 auto;
  background-image:
    linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
    url(../images/hero-mobile.jpg);
  background-size: cover;
  background-color: #2e2f42;
  padding: 72px 0;

  background-repeat: no-repeat;
  background-position: center;
}

@media (min-resolution: 192dpi) {
  .solutions {
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url(../images/hero-mobile@2x.jpg);
  }
}

@media screen and (min-width: 768px) {
  .solutions {
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url("../images/hero-tablet.jpg");
  }
}

@media screen and (min-width: 768px) and (min-resolution: 192dpi) {
  .solutions {
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url("../images/hero-tablet@2x.jpg");
  }
}

@media screen and (min-width: 1158px) {
  .solutions {
    max-width: 1440px;
    padding: 188px 0;
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url("../images/hero-image.jpg");
  }
}

@media screen and (min-width: 1158px) and (min-resolution: 192dpi) {
  .solutions {
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url("../images/hero-image@2x.jpg");
  }
}

@media screen and (min-width: 768px) {
  .solutions {
    padding: 112px 0;
  }
}

@media screen and (min-width: 1158px) {
  .solutions {
    padding: 188px 0;
  }
}
.solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

@media screen and (min-width: 768px) {
  .solution {
    gap: 36px;
  }
}

@media screen and (min-width: 1158px) {
  .solution {
    gap: 48px;
  }
}

.title {
  text-align: center;
  line-height: 1.11111;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin: 0 auto 72px;
}

.hero-title {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
  line-height: 1.11111;
  letter-spacing: 0.02em;
  max-width: 216px;
}

@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 56px;
    line-height: 1.07143;
    max-width: 496px;
  }
}

.btn-order {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  background-color: #4d5ae5;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-order:hover,
.btn-order:focus {
  background-color: #404bbf;
}

/* section features */

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

.list-features {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

@media screen and (min-width: 768px) {
  .list-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 24px;
    row-gap: 72px;
  }
}

@media screen and (min-width: 768px) {
  .card-features {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1158px) {
  .card-features {
    width: calc((100% - 72px) / 4);
  }
}

.title-card-features {
  line-height: 1.11111;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .title-card-features {
    text-align: left;
  }
}

@media screen and (min-width: 1158px) {
  .title-card-features {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
}

.text-features {
  font-weight: 500;
  color: #434455;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 1158px) {
  .text-features {
    font-weight: 400;
  }
}

.features-icon {
  display: none;
}

@media screen and (min-width: 1158px) {
  .features-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8e8f99;
    border-radius: 4px;
    height: 112px;
    background-color: #f4f4fd;
    margin-bottom: 8px;
  }
}

/* team */
.team {
  background-color: #f4f4fd;
}

.list-team {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .list-team {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 24px;
    row-gap: 64px;
  }
}

@media screen and (min-width: 1158px) {
  .list-team {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.card-content-team {
  padding: 32px 16px;
}
.card-team {
  background-color: #fff;
  text-align: center;
  border-radius: 0px 0px 4px 4px;
  box-shadow:
    0 2px 1px 0 rgba(46, 47, 66, 0.08),
    0 1px 1px 0 rgba(46, 47, 66, 0.16),
    0 1px 6px 0 rgba(46, 47, 66, 0.08);
}

@media screen and (min-width: 768px) {
  .card-team {
    width: calc((100% - 24px) / 2);
    max-width: 264px;
  }
}

@media screen and (min-width: 1158px) {
  .card-team {
    width: calc((100% - 72px) / 4);
  }
}

.names-team {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 8px;
}

.text-team {
  color: #434455;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 8px;
}

.list-social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-self: center;
}

.social-links {
  fill: #f4f4fd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4d5ae5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links:focus,
.social-links:hover {
  background-color: #404bbf;
}

/* portfolio */

.card-portfolio {
  box-shadow:
    0px 1px 6px rgba(46, 47, 66, 0.08),
    0px 1px 1px rgba(46, 47, 66, 0.16),
    0px 2px 1px rgba(46, 47, 66, 0.08);
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 768px) {
  .card-portfolio {
    width: calc((100% - 24px) / 2);
    max-width: 356px;
  }
}

@media screen and (min-width: 1158px) {
  .card-portfolio {
    box-shadow: none;
    width: calc((100% - 48px) / 3);
    max-width: 360px;
  }

  .card-portfolio:hover {
    box-shadow:
      0px 1px 6px rgba(46, 47, 66, 0.08),
      0px 1px 1px rgba(46, 47, 66, 0.16),
      0px 2px 1px rgba(46, 47, 66, 0.08);
  }
}

.img-portfolio {
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  background-color: #4d5ae5;
  color: #f4f4fd;
  transform: translateY(100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 32px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-portfolio:hover .overlay {
  transform: translateY(0);
}

.p-overlay {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.card-content {
  border: 1px solid #e7e9fc;
  border-top: none;
  padding: 32px 16px;
}

.list-portfolio {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  /* flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 48px; */
}

@media screen and (min-width: 768px) {
  .list-portfolio {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 72px;
  }
}

@media screen and (min-width: 1158px) {
  .list-portfolio {
    row-gap: 48px;
  }
}

.title-catd-portfolio {
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
}

.text-portfolio {
  color: #434455;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* footer */

.page-footer {
  background-color: #2e2f42;
  padding: 96px 0;
}

@media screen and (min-width: 1158px) {
  .page-footer {
    padding: 100px 0;
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

@media screen and (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 72px 24px;
    max-width: 584px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1158px) {
  .footer-container {
    max-width: 1158px;
    flex-wrap: nowrap;
    gap: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1158px) {
  .footer-container > div:first-child {
    margin-right: 120px;
  }
}

@media screen and (min-width: 1158px) {
  .footer-container > div:nth-child(2) {
    margin-right: 0;
  }
}

@media screen and (min-width: 1158px) {
  .footer-container > div:last-child {
    margin-left: auto;
  }
}

.footer-logo {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: #f4f4fd;
  line-height: 1.16667;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer-logo {
    text-align: left;
  }
}

.footer-text {
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #f4f4fd;
  max-width: 288px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .footer-text {
    text-align: left;
    max-width: 264px;
  }
}

.title-footer {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title-footer {
    text-align: left;
  }
}

.accent-footer {
  color: #4d5ae5;
}

.footer-social-links {
  fill: #f4f4fd;
  list-style-type: none;
  display: flex;
  gap: 16px;
}

.footer-links {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4d5ae5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links:hover,
.footer-links:focus {
  background-color: #31d0aa;
}

.footer-form {
  fill: #f4f4fd;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .footer-form {
    flex-direction: row;
    gap: 24px;
  }
}

.footer-input {
  height: 40px;
  outline: none;
  border: 1px solid #fff;
  font-size: 12px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.04em;
  border-radius: 4px;
  background-color: transparent;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  width: 288px;
  padding: 8px 16px;
}

@media screen and (min-width: 768px) {
  .footer-input {
    width: 264px;
  }
}

.footer-input::placeholder {
  color: #ffffff;
}

.footer-input:hover,
.footer-input:focus {
  border-color: #31d0aa;
}

.send-footer {
  align-items: center;
  justify-content: center;
  min-width: 165px;
  height: 40px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border: none;
  font-weight: 500;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  flex-direction: row;
  gap: 16px;
  background-color: #4d5ae5;
  border-radius: 4px;
  padding: 8px 24px;
  color: #fff;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.send-footer:hover,
.send-footer:focus {
  background-color: #31d0aa;
}
/* Modal */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(46 47 66 / 40%);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.modal {
  padding: 72px 24px 24px 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 288px;
  min-height: 623px;
  /* width: 408px;
  min-height: 584px; */
  background-color: #fcfcfc;
  box-shadow:
    0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 1px 3px 0 rgba(0, 0, 0, 0.12),
    0 2px 1px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.modal {
  padding: 72px 16px 24px 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 288px;
  min-height: 623px;
  background-color: #fcfcfc;
  box-shadow:
    0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 1px 3px 0 rgba(0, 0, 0, 0.12),
    0 2px 1px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .modal {
    width: 408px;
    min-height: 584px;
    padding: 72px 24px 24px 24px;
  }
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 50%;
  background-color: #e7e9fc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 24px;
  height: 24px;
  fill: #2e2f42;
  transition:
    background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    border 250ms cubic-bezier(0.4, 0, 0.2, 1),
    fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.close-btn:focus,
.close-btn:hover {
  fill: #fff;
  background-color: #404bbf;
  border: none;
}

.close-icon {
  stroke: rgba(0, 0, 0, 0.1);
}

.text-modal {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.input-box {
  margin-bottom: 8px;
}

.input-box-comment {
  margin-bottom: 16px;
}

.form-name {
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.16667;
  letter-spacing: 0.04em;
  color: #8e8f99;
}

.form-item {
  padding: 11px 38px;
  outline: none;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 4px;
  width: 100%;
  height: 40px;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-item:focus {
  border-color: #4d5ae5;
}

.btn-send {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 16px 32px;
  width: 169px;
  height: 56px;
  background-color: #4d5ae5;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  border: none;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-send:focus,
.btn-send:hover {
  background-color: #404bbf;
}

.field {
  position: relative;
}

.form-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  fill: #2e2f42;
  pointer-events: none;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-item:focus + .form-icon {
  fill: #4d5ae5;
}

.comment {
  resize: none;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 4px;
  font-size: 12px;
  outline: none;
  padding: 8px 16px;
  width: 100%;
  height: 120px;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.comment:focus {
  border-color: #4d5ae5;
}

.comment::placeholder {
  color: rgba(46, 47, 66, 0.4);
}

.agreement {
  display: block;
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1.16667;
  letter-spacing: 0.04em;
  color: #8e8f99;
}

.agree-link {
  line-height: 1.33333;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #4d5ae5;
}

.toggler {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  fill: transparent;
  transition-property: background-color, border-color;
}

.input-checked:checked + .toggler {
  background-color: #404bbf;
  border-color: transparent;
  fill: #f4f4fd;
}

.agree-icon {
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.input-checked:checked + .toggler > .agree-icon {
  opacity: 1;
}
