.footer {
  position: sticky;
}

.blogLink {
  display: block;
  width: fit-content;
  padding: 10px 40px;
  border: 2px solid #162636;
  background-color: #162636;
  font-size: 14px;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s color, 0.3s background-color;
}
.blogLink:hover {
  background-color: #fff;
  color: #162636 !important;
}

.stickyLinks {
  height: 0;
  position: sticky;
  z-index: 100;
  bottom: 48px;

  padding: 0 32px;

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.stickyLinks .linksWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 16px;
}

.stickyLinks .linksWrapper a {
  position: relative;

  width: 48px;
  height: 48px;

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

  filter: drop-shadow(0px 4px 36px rgba(0, 0, 0, 0.15));
  background-color: #fff;
  border-radius: 50%;

  transition: 0.3s background-color;
}

.stickyLinks .linksWrapper a svg path {
  transition: 0.3s fill;
}

.stickyLinks .linksWrapper a span {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;

  white-space: nowrap;

  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */

  display: block;
  border-radius: 1px;
  background: #162636;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 12px;

  transition: 0.3s transform;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  pointer-events: none;
}

.stickyLinks .linksWrapper a:hover {
  background-color: #162636;
}

.stickyLinks .linksWrapper a:hover svg path {
  fill: #fff;
}

.stickyLinks .linksWrapper a:hover span {
  transform: translateY(-50%) scaleX(1);
  pointer-events: all;
}

.grecaptcha-badge {
  visibility: hidden;
}

.subscribe {
  margin: 100px 0;
}

.subscribe .container .content {
  background: linear-gradient(270deg, #162636 58.47%, #007dc5 99.89%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
  padding: 64px;
}

.subscribe .container .content .leftCol {
  color: #fff;
}

.subscribe .container .content .leftCol h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 33.6px;
  margin-bottom: 16px;
}

.subscribe .container .content .leftCol .snippet {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 33.6px;
}

.subscribe .container .content .rightCol .form form > p {
  display: flex;
  align-items: stretch;
}

.subscribe .container .content .rightCol .form form .wpcf7-response-output {
  border: none;
  margin: 12px 0 0;
  padding: 0;
  color: #fff;
}

.subscribe .container .content .rightCol .form form > p > span > span {
  position: absolute;
}

.subscribe .container .content .rightCol .form form > p > span:last-child {
  margin-right: 0;
}

.subscribe .container .content .rightCol .form input[type="email"] {
  width: 100%;
  height: 100%;
  padding: 8px 20px;

  color: #162636;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 33.6px; /* 186.667% */
}

.subscribe .container .content .rightCol .form input[type="submit"] {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-color: #007dc5;
  outline: none;
  border: none;
  color: #fff;

  font-family: "Courier New", Courier, monospace;
  font-weight: 900;
  font-size: 24px;
  line-height: normal;
}

.subscribe .container .content .rightCol .info {
  color: #9ea6ae;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-top: 16px;
}

.subscribe .container .content .rightCol .info a {
  text-decoration-line: underline;
}

@media (max-width: 1499px) {
  .subscribe .container .content {
    gap: 74px;
    padding: 48px;
  }

  .subscribe .container .content .leftCol h2 {
    font-size: 42px;
  }
  .subscribe .container .content .leftCol .snippet {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .subscribe .container .content {
    gap: 40px;
  }

  .subscribe .container .content .leftCol h2 {
    font-size: 36px;
  }
  .subscribe .container .content .leftCol .snippet {
    font-size: 16px;
  }

  .subscribe .container .content .rightCol .info {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .stickyLinks {
    padding: 0 12px;
    bottom: 80px;
  }

  .stickyLinks .linksWrapper {
    gap: 12px;
  }

  .subscribe {
    margin: 65px 0;
  }

  .subscribe .container .content {
    flex-direction: column;
    align-items: start;
  }

  .subscribe .container .content .leftCol h2 {
    font-size: 32px;
  }
  .subscribe .container .content .leftCol .snippet {
    font-size: 15px;
  }

  .subscribe .container .content .rightCol {
    width: 100%;
  }

  .subscribe .container .content .rightCol .form form > p > span:first-child {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .subscribe {
    margin: 32px 0;
  }

  .subscribe .container .content {
    padding: 60px 20px;
  }

  .subscribe .container .content .leftCol h2 {
    font-size: 36px;
  }
  .subscribe .container .content .leftCol .snippet {
    font-size: 16px;
  }
}
