.plug-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: "Wix Madefor Display", sans-serif;
}

.plug-section__background {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.plug-section__background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.plug-section__background img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
}

.plug-section__logo {
    position: relative;
    z-index: 2;
    padding-top: 56px;
    padding-left: 53px;
    padding-right: 53px;
}

.plug-section__logo img {
    max-width: 100%;
}

.plug-section__footer {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    background-color: #3166b6;
    padding: 40px 53px;
    width: calc(100% - 150px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.plug-section__footer:after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: 0;
    width: 150px;
    height: 50%;
    background-color: #151A40;
}

.plug-section__footer:before {
    content: "";
    position: absolute;
    right: -150px;
    top: 0;
    width: 150px;
    height: 50%;
    border-left: 150px solid #151A40;
    border-top: 150px solid transparent;
}

.plug-section__footer-link {
  display: block;
  padding: 12px 20px 12px 24px;
  margin-top: 61px;
  border-radius: 100px;
  background-color: #151A40;
  color: white;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.plug-section__footer-link:hover {
  background-color: #3166B6;
}

.plug-section__footer-link:hover .plug-section__footer-link-content-inner {
  transform: translateY(-100%);
}

.plug-section__footer-link-content {
  display: flex;
  flex-direction: column;
  height: 20px;
  overflow: hidden;
}

.plug-section__footer-link-content img {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  margin-left: 8px;
}

.plug-section__footer-link-content-inner {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.plug-section__footer-text {
    color: white;
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.6px;
}

@media (max-width: 1280px) {
  .plug-section__footer-text {
    font-size: 40px;
  }

  .plug-section__logo {
    padding-top: 22px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .plug-section__footer {
    padding: 38px 22px;
    width: calc(100% - 70px);
  }

  .plug-section__footer:after {
        right: -70px;
        width: 70px;
    }

    .plug-section__footer:before {
        right: -70px;
        width: 70px;
        border-left: 70px solid #151A40;
        border-top: 70px solid transparent;
    }
}

@media (max-width: 960px) {
  .plug-section__logo {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .plug-section__footer-text {
    font-size: 22px;
    letter-spacing: -0.22px;
  }

  .plug-section__footer {
    padding: 24px 20px;
    width: 100%;
  }

  .plug-section__footer:after,
  .plug-section__footer:before {
        display: none;
  }

  .plug-section__footer-link {
    margin-top: 66px;
  }
}