.hide {
  display: none;
}

/* #region Base styles */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #2e2f42;
  background-color: #fff;
}
body:has(.modal-overlay.is-open),
body:has(.mobile-menu.is-open) {
  overflow-y: hidden;
}
/* #endregion */

/* #region Reset */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: currentColor;
}
button {
  cursor: pointer;
  font-family: inherit;
  color: currentColor;
  border: none;
}
address {
  font-style: normal;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
input {
  font-family: inherit;
  color: inherit;
}
/* #endregion */

/* #region Common */
.container {
  max-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (min-width: 1158px) {
  .container {
    max-width: 1158px;
    padding: 0 15px;
  }
}
.section {
  padding: 96px 0;
}
@media only screen and (min-width: 1158px) {
  .section {
    padding: 120px 0;
  }
}
.title {
  font-size: 36px;
  line-height: 1.11;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 72px;
}

.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;
}
.logo {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.167;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 0px;
}
.accent-word {
  color: #4d5ae5;
}
.btn {
  font-weight: 500;
  min-width: 169px;
  height: 56px;
  border-radius: 4px;
  padding: 16px 32px;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #4d5ae5;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover,
.btn:focus {
  background-color: #404bbf;
}
/* #endregion */

/* #region Header */
.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);
  background: #fff;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1158px) {
  .header-wrapper {
    justify-content: flex-start;
  }
}
.logo-nav {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding: 16px 0;
}
@media only screen and (min-width: 768px) {
  .logo-nav {
    flex-grow: 0;
    padding: 0;
  }
}
.logo-header {
}
@media only screen and (min-width: 768px) {
  .logo-header {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-right: 120px;
  }
}
@media only screen and (min-width: 1158px) {
  .logo-header {
    margin-right: 76px;
  }
}
.header-nav {
}
.header-list {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 767.98px) {
  .header-list {
    display: none;
  }
}
.header-link {
  display: block;
  font-weight: 500;
  padding-top: 24px;
  padding-bottom: 24px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-link.current {
  position: relative;
  color: #404bbf;
}
.header-link.current::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background-color: #404bbf;
  border-radius: 2px;
  bottom: -1px;
}

.header-link:hover,
.header-link:focus {
  color: #404bbf;
}
.address-wrapper {
  display: flex;
}
@media only screen and (min-width: 1158px) {
  .address-wrapper {
    margin-left: auto;
  }
}
.address {
}
.address-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media only screen and (max-width: 767.98px) {
  .address-list {
    display: none;
  }
}
@media only screen and (min-width: 1158px) {
  .address-list {
    flex-direction: row;
    gap: 40px;
  }
}
.address-item {
}
.address-link {
  display: block;
  color: #434455;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .address-link {
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: 0.04em;
  }
}
@media only screen and (min-width: 1158px) {
  .address-link {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
.address-link:hover,
.address-link:focus {
  color: #404bbf;
}
/* #endregion */

/* #region Hero */
.hero-section {
  max-width: 320px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 72px;
  background-color: #2e2f42;
  background-image:
    linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
    url(../images/hero/hero_mob@1x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .hero-section {
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url(../images/hero/hero_mob@2x.jpg);
  }
}
@media only screen and (min-width: 768px) {
  .hero-section {
    max-width: 768px;
    padding-top: 112px;
    padding-bottom: 112px;
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url(../images/hero/hero_tab@1x.jpg);
  }
  @media (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .hero-section {
      background-image:
        linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
        url(../images/hero/hero_tab@2x.jpg);
    }
  }
}
@media only screen and (min-width: 1158px) {
  .hero-section {
    max-width: 1440px;
    padding-top: 188px;
    padding-bottom: 188px;
    background-image:
      linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
      url(../images/hero/hero_desk@1x.jpg);
  }
  @media (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .hero-section {
      background-image:
        linear-gradient(rgba(46, 47, 66, 0.7), rgba(46, 47, 66, 0.7)),
        url(../images/hero/hero_desk@2x.jpg);
    }
  }
}
.hero-wrapper {
  display: flex;
  flex-direction: column;
}
.hero-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  text-align: center;
  color: #fff;
  max-width: 216px;
  margin: 0 auto;
  margin-bottom: 72px;
}
@media only screen and (min-width: 768px) {
  .hero-title {
    max-width: 496px;
    font-size: 56px;
    line-height: 1.07;
    margin: 0 auto;
    margin-bottom: 36px;
  }
}
@media only screen and (min-width: 1158px) {
  .hero-title {
    margin-bottom: 48px;
  }
}
/* #endregion */

/* #region Features */
.features-section {
}
.feature-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 72px;
}
@media only screen and (min-width: 768px) {
  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 72px 24px;
  }
}
@media only screen and (min-width: 1158px) {
  .feature-list {
    gap: 24px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .feature-item {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (min-width: 1158px) {
  .feature-item {
    width: calc((100% - 3 * 24px) / 4);
  }
}
.feature-icon-wrapper {
  display: none;
}
@media only screen and (min-width: 1158px) {
  .feature-icon-wrapper {
    display: block;
    position: relative;
    width: 264px;
    height: 112px;
    background-color: #f4f4fd;
    border: 1px solid #8e8f99;
    border-radius: 4px;
  }
}
.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-caption {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  letter-spacing: 0.02em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .feature-caption {
    text-align: start;
  }
}
@media only screen and (min-width: 1158px) {
  .feature-caption {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
}
.feature-desc {
  font-weight: 500;
  color: #434455;
}
@media only screen and (min-width: 1158px) {
  .feature-desc {
    font-weight: 400;
  }
}
/* #endregion */

/* #region Team */
.team-section {
  background-color: #f4f4fd;
}
.team-title {
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
  /* gap: 24px; */
}
@media only screen and (min-width: 768px) {
  .team-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px 24px;
  }
}
.team-item {
  width: 264px;
  background: #fff;
  padding: 0px 0px 32px;
  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);
  border-radius: 0 0 4px 4px;
}
.worker-img {
}
.team-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.card-socials-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4d5ae5;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link:hover,
.social-link:focus {
  background-color: #404bbf;
}
.social-icon {
  fill: #f4f4fd;
}
.worker-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}
.worker-position {
  text-align: center;
  color: #434455;
}
/* #endregion */

/* #region Portfolio*/
.portfolio-title {
}
.portfolio-wrapper {
}
.portfolio-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media only screen and (min-width: 768px) {
  .portfolio-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 72px 24px;
  }
}
@media only screen and (min-width: 1158px) {
  .portfolio-list {
    gap: 48px 24px;
  }
}
.portfolio-item {
  width: 100%;
  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);
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .portfolio-item {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (min-width: 1158px) {
  .portfolio-item {
    width: calc((100% - 2 * 24px) / 3);
    box-shadow: none;
  }
  .portfolio-item:hover {
    box-shadow:
      0 4px 4px 0 rgba(46, 47, 66, 0.15),
      0 4px 1px 0 rgba(46, 47, 66, 0.2),
      0 2px 1px 0 rgba(46, 47, 66, 0.08);
  }
}
.portfolio-item:hover .overlay {
  transform: translateY(0);
}
.portfolio-img-wrapper {
  position: relative;
  overflow: hidden;
}
.portfolio-img {
}
.overlay {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #f4f4fd;
  background-color: #4d5ae5;
  padding: 40px 32px;
  transform: translateY(100%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-text-wrap {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e9fc;
  border-top: none;
  padding: 32px 16px;
}
.portfolio-item-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.portfolio-item-field {
  color: #434455;
}

/* #endregion */

/* #region Footer*/
@media only screen and (min-width: 768px) and (max-width: 1157.98px) {
  .footer .container {
    padding: 0 108px;
  }
}
.footer {
  background-color: #2e2f42;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media only screen and (min-width: 1158px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.footer-wrap-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 72px;
}
@media only screen and (min-width: 768px) {
  .footer-wrap-elements {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    row-gap: 0;
    column-gap: 0;
  }
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer-wrapper {
    margin-right: 24px;
  }
}
@media only screen and (min-width: 1158px) {
  .footer-wrapper {
    margin-right: 120px;
  }
}
.logo-footer {
  color: #f4f4fd;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .logo-footer {
    align-self: start;
  }
}
.footer-text {
  max-width: 288px;
  color: #f4f4fd;
}
@media only screen and (min-width: 768px) {
  .footer-text {
    max-width: 264px;
  }
}
.footer-socials {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer-socials {
    margin-right: auto;
  }
}
@media only screen and (min-width: 1158px) {
  .footer-socials {
    margin-right: 80px;
  }
}
.socials-caption {
  display: block;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .socials-caption {
    text-align: start;
  }
}
.footer-socials-list {
  width: 208px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-socials-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4d5ae5;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-socials-link:hover,
.footer-socials-link:focus {
  background-color: #31d0aa;
}
.footer-subscribe {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer-subscribe {
    margin-top: 72px;
  }
}
@media only screen and (min-width: 1158px) {
  .footer-subscribe {
    margin-top: 0;
  }
}
.footer-form-caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  margin-right: 0 auto;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .footer-form-caption {
    margin-right: auto;
  }
}
.footer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .footer-form {
    flex-direction: row;
    gap: 24px;
  }
}
.footer-form-input {
  width: 288px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 8px 16px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: transparent;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 768px) {
  .footer-form-input {
    width: 264px;
  }
}
.footer-form-input:hover,
.footer-form-input:focus {
  outline: none;
  border-color: #31d0aa;
}
.footer-form-input::placeholder {
  color: #fff;
}
.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  background-color: #4d5ae5;
  padding: 8px 24px;
  min-width: 165px;
  height: 40px;
  border-radius: 4px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-btn:hover,
.footer-btn:focus {
  background-color: #31d0aa;
}
.subscribe-icon {
  fill: #fff;
}
/* #endregion */

/* #region Modal window */
.modal-overlay {
  background-color: rgba(46, 47, 66, 0.4);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1) 250ms;
  transition-property: opacity, visibility;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
  transition-delay: 0ms;
}
.modal-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  opacity: 0;

  width: 288px;
  height: 623px;
  padding: 72px 16px 24px;
  border-radius: 4px;
  background: #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);

  transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: opacity, transform;
}
@media only screen and (min-width: 768px) {
  .modal-window {
    width: 408px;
    min-height: 584px;
    padding: 24px;
    padding-top: 72px;
  }
}
.modal-overlay.is-open .modal-window {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition-delay: 250ms;
}
.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;

  background-color: #e7e9fc;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);

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

  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-close-btn:hover,
.modal-close-btn:focus {
  background-color: #404bbf;
}
.close-icon {
  fill: #2e2f42;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-close-btn:hover .close-icon,
.modal-close-btn:focus .close-icon {
  fill: #fff;
}
.form-caption {
  width: 256px;
  font-weight: 500;
  text-align: center;
  color: #2e2f42;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .form-caption {
    width: 360px;
  }
}
.order-form {
}
.form-wrapper {
  margin-bottom: 8px;
}
.textarea-wrapper {
  margin-bottom: 16px;
}
.order-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.04em;
  color: #8e8f99;
}
.order-field {
  position: relative;
}
.order-input {
  width: 100%;
  height: 40px;
  padding: 8px 38px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 4px;
  outline: none;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-input:focus {
  border-color: #4d5ae5;
}
.order-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);
}
.order-input:focus + .order-icon {
  fill: #4d5ae5;
}
.order-comment {
  width: 100%;
  height: 120px;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.04em;
  resize: none;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 4px;
  outline: none;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-comment::placeholder {
  color: rgba(46, 47, 66, 0.4);
}
.order-comment:focus {
  border-color: #4d5ae5;
}
.order-checkbox-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;

  max-width: 256px;
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.04em;
  color: #8e8f99;
}
@media only screen and (min-width: 768px) {
  .order-checkbox-label {
    max-width: none;
  }
}
.order-checkmark {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  fill: #f4f4fd;
  cursor: pointer;
  transition:
    background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-checkbox-input:checked + .order-checkmark {
  background-color: #404bbf;
  border-color: transparent;
}
.icon-order-checkmark {
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.order-checkbox-input:checked + .order-checkmark > .icon-order-checkmark {
  opacity: 1;
}
.order-checkbox-text {
  display: block;
}
.order-link {
  line-height: 1.33;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #4d5ae5;
}
.order-send-btn {
  display: block;
  margin: 0 auto;
}

/* #endregion */

/* #region Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 72px 16px 40px;
  transform: translateX(100%);

  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
@media only screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.mobile-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  background-color: transparent;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-btn:hover .mobile-menu-icon,
.mobile-menu-btn:focus .mobile-menu-icon {
  fill: #404bbf;
}
@media only screen and (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu .modal-close-btn {
}
.mobile-menu-icon {
  fill: #2f2f37;
}
.mobile-menu-nav-wrapper {
  margin-bottom: auto;
}
.mobile-menu-nav {
  /* margin-bottom: auto; */
}
.mobile-menu-item:not(:last-child) {
  margin-bottom: 40px;
}
.mobile-menu-link {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
}
.mobile-menu-link.active {
  color: #404bbf;
}
.mobile-contacts {
  margin-bottom: 48px;
}
.mobile-contacts-item:not(:last-child) {
  margin-bottom: 24px;
}
.mobile-contacts-item:first-child .mobile-contacts-link {
  color: #4d5ae5;
}
.mobile-contacts-link {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #434455;
}
.mobile-social-list {
  gap: 40px;
}
/* #endregion */
