/* General styles */
body {
  overflow-x: unset;
}

.home section>.container {
  position: relative;
  width: 1168px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .home section>.container {
    max-width: calc(100% - 32px);
  }
}

/* .cover section styles */
.home section.cover {
  position: relative;
  height: calc(100vh - 76px);
  background-color: var(--tether-black);
  color: var(--tether-white);
}

.home section.cover::after {
  position: absolute;
  background: linear-gradient(236.18deg, rgba(0, 0, 0, 0) 18.49%, #000000 70.06%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.home section.cover .cover__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
  z-index: 0;
  pointer-events: none;
}

.home section.cover>.container {
  height: 100%;
  z-index: 1;
}

.home section.cover .cover__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 719px;
  max-width: 100%;
}

.home section.cover h1 {
  margin: 0;
  letter-spacing: 1.4px;
}

.home section.cover p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.54px;
  margin: 0;
  margin-top: 30px;
  transform: translateX(100px);
  width: 519px;
  max-width: 100%;
  padding-bottom: 8%;
}

.home section.cover .to-bottom__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px - 78.5px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.home section.cover .to-bottom {
  display: flex;
  width: 8px;
  cursor: pointer;
  pointer-events: all;
}

@media (max-width: 991.98px) {
  .home section.cover {
    height: calc(100vh - 68px);
    background-size: cover;
  }

  .home section.cover::after {
    background: linear-gradient(171.05deg, #171717 45.37%, rgba(23, 23, 23, 0.2) 71.56%);
  }

  .home section.cover .cover__image {
    top: 30%;
    height: 70%;
  }

  .home section.cover .cover__content {
    justify-content: flex-start;
    padding-top: 42px;
    width: 360px;
    max-width: calc(100% - 16px);
  }

  .home section.cover h1 {
    letter-spacing: 0.52px;
  }

  .home section.cover p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.42px;
    transform: translateX(0);
    width: 340px;
    padding-bottom: 0;
  }

  .home section.cover .to-bottom__container {
    height: calc(100svh - 68px - 41.5px);
  }
}

@media (max-width: 370px) {
  .home section.cover h1 {
    font-size: 42px;
    line-height: 46.8px;
  }
}

/* .about section styles */
.home section.about {
  position: relative;
  padding-top: 61px;
  padding-bottom: 78px;
}

.home section.about .about__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 768px;
  max-width: 100%;
  margin-left: auto;
}

.home section.about p {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.52px;
  margin: 0;
}

.home section.about a.btn {
  margin-top: 36px;
}

.home section.about::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 88px 82px;
  border-color: transparent transparent var(--tether-black) transparent;
  content: '';
}

@media (max-width: 991.98px) {
  .home section.about {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .home section.about::after {
    border-width: 0 0 78px 78px;
  }

  .home section.about .about__content {
    margin: 0 auto;
  }

  .home section.about p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.22px;
  }

  .home section.about a.btn {
    font-size: 14px;
    letter-spacing: 1.12px;
  }
}

/* .explore section styles */
.home section.explore {
  position: relative;
  background-color: var(--tether-black);
  color: var(--tether-white);
  padding-top: 86px;
  padding-bottom: 111px;
}

.home section.explore h2 {
  font-size: 70px;
  line-height: 78px;
  letter-spacing: 0.7px;
  margin: 0;
}

.home section.explore p {
  margin-top: 20px;
  margin-bottom: 90px;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.52px;
  width: 760px;
  max-width: 100%;
}

.home section.explore .tech-stack__items {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
}

.home section.explore .tech-stack__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: calc((100% - 46px - 60px) / 2);
  min-height: 263px;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.home section.explore .tech-stack__item>* {
  z-index: 1;
}

.home section.explore .tech-stack__item-logo {
  display: flex;
}

.home section.explore .tech-stack__item-description {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.36px;
  width: 277px;
  max-width: 100%;
  color: var(--tether-white);
}

.home section.explore .tech-stack__item button {
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.2px;
  padding: 12.5px 18.5px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--tether-white);
  background-color: transparent;
  color: var(--tether-white);
  transition: all 0.4s cubic-bezier(.215, .61, .355, 1);
}

.home section.explore .tech-stack__item:hover button {
  background-color: var(--tether-white);
  color: var(--tether-black);
}

.home section.explore .qvac::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/home/bg-qvac.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

.home section.explore .qvac::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.8) 100.68%);
  background-blend-mode: multiply;
  content: '';
}

.home section.explore .qvac .tech-stack__item-logo {
  margin-top: 10px;
}

.home section.explore .mdk::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/home/bg-mdk.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

.home section.explore .mdk::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  content: '';
}

.home section.explore .mdk .tech-stack__item-logo img {
  width: 221px;
}

.home section.explore .mdk .tech-stack__item-description {
  margin-top: -10px;
  width: 342px;
}

.home section.explore .pears::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/home/bg-pears.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

.home section.explore .pears::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.86) 100%);
  content: '';
}

.home section.explore .pears .tech-stack__item-description {
  width: 342px;
}

.home section.explore .wdk-by-tether::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/home/bg-wdk-by-tether.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

.home section.explore .wdk-by-tether::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
  content: '';
}

.home section.explore .wdk-by-tether .tech-stack__item-description {
  width: 342px;
}

@media (max-width: 991.98px) {
  .home section.explore {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .home section.explore h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
  }

  .home section.explore p {
    margin-top: 30px;
    margin-bottom: 53px;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.22px;
  }

  .home section.explore .tech-stack__items {
    gap: 23px;
  }

  .home section.explore .tech-stack__item {
    width: calc((100% - 23px - 60px) / 2);
    min-height: 237px;
  }

  .home section.explore .tech-stack__item-description {
    font-size: 14px;
    letter-spacing: 0.28px;
    width: 213px;
  }

  .home section.explore .tech-stack__item a {
    display: flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.12px;
    padding: 12.5px 18.5px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--tether-white);
    background-color: transparent;
    color: var(--tether-white);
    transition: all 0.4s cubic-bezier(.215, .61, .355, 1);
  }

  .home section.explore .qvac .tech-stack__item-logo img {
    width: 285px;
  }

  .home section.explore .mdk .tech-stack__item-logo img {
    width: 193px;
  }

  .home section.explore .mdk .tech-stack__item-description {
    width: 218px;
  }

  .home section.explore .pears .tech-stack__item-logo img {
    width: 242px;
  }

  .home section.explore .pears .tech-stack__item-description {
    width: 280px;
  }

  .home section.explore .wdk-by-tether .tech-stack__item-logo img {
    width: 193px;
  }

  .home section.explore .wdk-by-tether .tech-stack__item-description {
    width: 263px;
  }
}

@media (max-width: 991.98px) and (max-height: 598.98px) {

  .home section.cover .cover__content,
  .home section.cover p {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .home section.explore .tech-stack__items {
    justify-content: center;
    gap: 15px;
  }

  .home section.explore .tech-stack__item {
    width: 366px;
    max-width: 100%;
  }
}

/* .grants section styles */
.home section.grants {
  position: relative;
  height: calc(100vh - 76px);
  background-color: var(--tether-black);
  color: var(--tether-white);
}

.home section.grants::before {
  position: absolute;
  background-image: url('../assets/images/home/grants.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.home section.grants::after {
  position: absolute;
  background: linear-gradient(281.63deg, rgba(0, 0, 0, 0) -2.95%, rgba(0, 0, 0, 0.9) 66.18%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.home section.grants>.container {
  height: 100%;
  z-index: 1;
}

.home section.grants .grants__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 719px;
  max-width: 100%;
  transform: translateY(-5%);
}

.home section.grants h2 {
  font-size: 70px;
  line-height: 78px;
  letter-spacing: 0.7px;
  margin: 0;
  margin-bottom: 50px;
}

.home section.grants h3 {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.78px;
  margin: 0;
  transform: translateX(100px);
}

.home section.grants p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.54px;
  margin: 0;
  margin-top: 15px;
  transform: translateX(100px);
  width: 495px;
  max-width: 100%;
}

.home section.grants a.btn {
  transform: translateX(100px);
  transition: opacity 0.4s cubic-bezier(.215, .61, .355, 1);
  margin-top: 30px;
  padding: 12.5px 18px;
}

.home section.grants a.btn:hover {
  opacity: 0.5;
}

.home section.grants .to-bottom__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px - 78.5px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.home section.grants .to-bottom {
  display: flex;
  width: 8px;
  cursor: pointer;
  pointer-events: all;
}

@media (max-width: 991.98px) {
  .home section.grants {
    height: calc(100vh - 68px);
    background-size: cover;
  }

  .home section.grants::before {
    top: 40%;
    height: 60%;
  }

  .home section.grants::after {
    background: linear-gradient(171.05deg, #171717 49.13%, rgba(23, 23, 23, 0.2) 79.16%);
  }

  .home section.grants .grants__content {
    justify-content: flex-start;
    padding-top: 0;
    width: 360px;
    max-width: calc(100% - 16px);
    transform: translateY(0);
  }

  .home section.grants h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
    margin-bottom: 30px;
  }

  .home section.grants h3 {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.66px;
    transform: translateX(0);
  }

  .home section.grants p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.42px;
    transform: translateX(0);
    width: 340px;
    padding-bottom: 0;
    margin-top: 4px;
  }

  .home section.grants a.btn {
    transform: translateX(0);
    font-size: 14px;
    letter-spacing: 1.12px;
  }

  .home section.grants .to-bottom__container {
    height: calc(100vh - 68px - 41.5px);
  }
}

@media (max-width: 991.98px) and (max-height: 598.98px) {

  .home section.grants .grants__content,
  .home section.grants p {
    width: 100%;
  }

  .home section.grants .to-bottom__container {
    display: none;
  }
}

/* .grants-list section styles */
.home section.grants-list {
  position: relative;
  padding: 60px 0 75px;
}

.home section.grants-list::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 88px 82px;
  border-color: transparent transparent var(--tether-black) transparent;
  content: '';
}

.home section.grants-list .btn-black {
  margin: 46px auto 0;
}

.home section.grants-list>.container {
  width: 1440px;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .home section.grants-list {
    padding: 49px 0 62px;
  }

  .home section.grants-list::after {
    bottom: -1px;
    left: 0;
    right: unset;
    width: 0;
    border-width: 0 78px 78px 0;
  }

  .home section.grants-list .btn-black {
    font-size: 14px;
    letter-spacing: 1.12px;
    margin: 33px auto 0;
  }
}

/* .looking-for section styles */
.home section.looking-for {
  position: relative;
  padding: 90px 0 130px;
  background: var(--tether-black);
  color: var(--tether-white);
}

.home section.looking-for::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 85px 85px 0;
  border-color: transparent transparent var(--tether-white) transparent;
  content: '';
}

.home section.looking-for h2 {
  font-size: 70px;
  line-height: 78px;
  letter-spacing: 0.7px;
  width: 909px;
  max-width: 100%;
  margin: 0;
}

.home section.looking-for .looking-for__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 78px;
  gap: 80px;
}

.home section.looking-for .looking-for__item {
  display: flex;
  align-items: center;
  gap: 33px;
  width: calc(50% - 40px);
}

.home section.looking-for .looking-for__icon {
  display: flex;
  justify-content: center;
  min-width: 92.52px;
}

.home section.looking-for .looking-for__icon img.icon-code {
  width: 79.1px;
}

.home section.looking-for .looking-for__icon img.icon-doc {
  width: 92.52px;
}

.home section.looking-for .looking-for__icon img.icon-app {
  width: 51.32px;
}

.home section.looking-for .looking-for__icon img.icon-research {
  width: 69.17px;
}

.home section.looking-for .looking-for__icon img.icon-tool {
  width: 82px;
}

.home section.looking-for .looking-for__info {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.26px;
}

.home section.looking-for .looking-for__item.code .looking-for__info {
  max-width: 389px;
}

.home section.looking-for .looking-for__item.doc .looking-for__info {
  max-width: 348px;
}

.home section.looking-for .looking-for__item.app .looking-for__info {
  max-width: 400px;
}

.home section.looking-for .looking-for__item.research .looking-for__info {
  max-width: 400px;
}

.home section.looking-for .looking-for__item.tool .looking-for__info {
  max-width: 344px;
}

@media (max-width: 991.98px) {
  .home section.looking-for {
    padding: 50px 0 80px;
  }

  .home section.looking-for::after {
    left: unset;
    right: 0;
    border-width: 0 0 78px 78px;
  }

  .home section.looking-for h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
  }

  .home section.looking-for .looking-for__items {
    margin-top: 60px;
    gap: 26px;
  }

  .home section.looking-for .looking-for__item {
    gap: 25px;
    width: calc(50% - 13px);
  }

  .home section.looking-for .looking-for__info {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.14px;
  }

  .home section.looking-for .looking-for__icon {
    min-width: 49.76px;
  }

  .home section.looking-for .looking-for__icon img.icon-code {
    width: 49.76px;
  }

  .home section.looking-for .looking-for__icon img.icon-doc {
    width: 46.77px
  }

  .home section.looking-for .looking-for__icon img.icon-app {
    width: 27px;
  }

  .home section.looking-for .looking-for__icon img.icon-research {
    width: 36px;
  }

  .home section.looking-for .looking-for__icon img.icon-tool {
    width: 44px;
  }

  .home section.looking-for .looking-for__item.code .looking-for__info {
    max-width: 200px;
  }

  .home section.looking-for .looking-for__item.doc .looking-for__info {
    max-width: 238px;
  }

  .home section.looking-for .looking-for__item.app .looking-for__info {
    max-width: 231px;
  }

  .home section.looking-for .looking-for__item.research .looking-for__info {
    max-width: 235px;
  }

  .home section.looking-for .looking-for__item.tool .looking-for__info {
    max-width: 262px;
  }
}

@media (max-width: 767.98px) {
  .home section.looking-for .looking-for__item {
    width: 100%;
  }
}

/* .why-it-matter section styles */
.home section.why-it-matters {
  position: relative;
  padding: 80px 0 130px;
}

.home section.why-it-matters h2 {
  font-size: 70px;
  line-height: 78px;
  letter-spacing: 0.7px;
  max-width: 100%;
  margin: 0;
}

.home section.why-it-matters .why-it-matters__items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 70px;
}

.home section.why-it-matters .why-it-matters__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 37px 30px;
  border: 1px solid var(--tether-black);
  border-radius: 10px;
  width: calc(50% - 76px);
}

.home section.why-it-matters .why-it-matters__icon {
  display: flex;
  min-width: 84.4px;
}

.home section.why-it-matters .why-it-matters__icon img.icon-build {
  width: 57.76px;
}

.home section.why-it-matters .why-it-matters__icon img.icon-join {
  width: 84.4px;
}

.home section.why-it-matters .why-it-matters__icon img.icon-earn {
  width: 81.65px;
}

.home section.why-it-matters .why-it-matters__icon img.icon-empower {
  width: 69.83px;
}

.home section.why-it-matters .why-it-matters__info {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.26px;
}

@media (max-width: 991.98px) {
  .home section.why-it-matters {
    padding: 40px 0 49px;
  }

  .home section.why-it-matters h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
  }

  .home section.why-it-matters .why-it-matters__icon {
    min-width: 46.52px;
  }

  .home section.why-it-matters .why-it-matters__icon img.icon-build {
    width: 31.83px;
  }

  .home section.why-it-matters .why-it-matters__icon img.icon-join {
    width: 46.52px;
  }

  .home section.why-it-matters .why-it-matters__icon img.icon-earn {
    width: 45px;
  }

  .home section.why-it-matters .why-it-matters__icon img.icon-empower {
    width: 40px;
  }

  .home section.why-it-matters .why-it-matters__items {
    gap: 15px;
    margin-top: 35px;
  }

  .home section.why-it-matters .why-it-matters__item {
    gap: 28px;
    padding: 22px;
    width: calc(50% - 54px);
  }

  .home section.why-it-matters .why-it-matters__info {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.14px;
  }
}

@media (max-width: 767.98px) {
  .home section.why-it-matters .why-it-matters__item {
    width: 100%;
  }
}

/* .cta section styles */
.home section.cta {
  position: relative;
  height: calc(100vh - 76px);
  background-color: var(--tether-black);
  color: var(--tether-white);
}

.home section.cta::before {
  position: absolute;
  background-image: url('../assets/images/home/cta.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.home section.cta::after {
  position: absolute;
  background: linear-gradient(236.18deg, rgba(0, 0, 0, 0) 18.49%, #000000 70.06%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.home section.cta>.container {
  height: 100%;
  z-index: 1;
}

.home section.cta .cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 719px;
  max-width: 100%;
  transform: translateY(-5%);
}

.home section.cta h2 {
  font-size: 70px;
  line-height: 78px;
  letter-spacing: 0.7px;
  margin: 0;
  margin-bottom: 20px;
}

.home section.cta p {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.54px;
  margin: 15px 0;
  transform: translateX(100px);
  width: 495px;
  max-width: 100%;
}

.home section.cta a.btn {
  transform: translateX(100px);
  transition: opacity 0.4s cubic-bezier(.215, .61, .355, 1);
  margin-top: 16px;
  padding: 12.5px 18px;
}

.home section.cta a.btn:hover {
  opacity: 0.5;
}

.home section.cta a.btn>div {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
}

.home section.cta a.btn img {
  width: 8px;
  height: 13px;
}

@media (max-width: 991.98px) {
  .home section.cta {
    height: calc(100vh - 68px - 40px);
    min-height: 812px;
    padding-top: 40px;
    background-size: cover;
    overflow: hidden;
  }

  .home section.cta::before {
    top: 58%;
    height: 50%;
  }

  .home section.cta::after {
    background: linear-gradient(179.75deg, #171717 57.79%, rgba(23, 23, 23, 0.2) 92.17%);
  }

  .home section.cta .cta__content {
    justify-content: flex-start;
    padding-top: 0;
    width: 360px;
    max-width: calc(100% - 16px);
    transform: translateY(0);
  }

  .home section.cta h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
    margin-bottom: 0;
  }

  .home section.cta p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.42px;
    transform: translateX(0);
    width: 340px;
    padding-bottom: 0;
  }

  .home section.cta a.btn {
    transform: translateX(0);
    font-size: 14px;
    letter-spacing: 1.12px;
  }

  .home section.cta a.btn img {
    display: none;
  }
}

@media (max-width: 991.98px) and (max-height: 598.98px) {

  .home section.cta .cta__content,
  .home section.cta p {
    width: 100%;
  }
}

/* Footer styles */
@media (max-width: 991.98px) {
  footer {
    position: relative;
    z-index: 1;
    margin-top: -6%;
  }
}