
.footer {
  align-items: flex-start;
  background-color: var(--colorsecondarybackground);
  border-bottom-style: none;
  border-color: var(--white);
  border-left-style: none;
  border-right-style: none;
  border-top-style: solid;
  border-top-width: 1px;
  display: flex;
  flex-direction: row;
  flex-shrink: 1;
  gap: 418px;
  height: 196px;
  justify-content: flex-start;
  margin-top: 104px;
  mix-blend-mode: normal;
  padding: 32px 150px;
  width: 1440px;
}

.home-page-ui .content {
  display: flex;
  flex-direction: column;
}

.footer .content-left {
  align-items: flex-start;
  gap: 53px;
  min-height: 123px;
  width: 251px;
}

.footer .content-right {
  align-items: flex-end;
  align-self: center;
  gap: 52px;
  margin-bottom: 4.0px;
  min-height: 114px;
  width: 471px;
}

.footer .tabs {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  position: relative;
  width: fit-content;
}

.footer .nav-tab {
  border-radius: 8px;
  gap: 12px;
  height: 48px;
  padding: 8px 12px;
  width: fit-content;
  align-items: center;
  display: flex;
  position: relative;
}

.footer .text {
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.footer .copyright {
  letter-spacing: 0;
  line-height: normal;
  min-height: 14px;
  white-space: nowrap;
}

.footer .terms-and-conditions-container {
  align-items: flex-start;
  display: flex;
  height: 14px;
  min-width: 471px;
}

.footer .terms-and-conditions {
  letter-spacing: 0;
  line-height: normal;
  min-height: 14px;
  min-width: 180px;
  text-align: right;
  white-space: nowrap;
}

.footer .terms-and-conditions-1 {
  letter-spacing: 0;
  line-height: normal;
  margin-left: 65px;
  min-height: 14px;
  min-width: 90px;
  text-align: right;
  white-space: nowrap;
}

.footer .terms-and-conditions-2 {
  letter-spacing: 0;
  line-height: normal;
  margin-left: 60px;
  min-height: 14px;
  min-width: 76px;
  text-align: right;
  white-space: nowrap;
}

.landing-footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  background-color: var(--colorsecondarybackground);
  border-top: 1px solid var(--shuttle-gray-6);
  height: 196px;
  margin-top: 104px;
  padding: 0 80px;
  width: 100%;

  .landing-footer-content {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
  }

  .landing-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    .landing-footer-menu-block {
      width: fit-content;
    }
    
	.landing-vimeo-block {
	  align-items: center;
	  display: flex;
	  justify-content: space-between;
	  position: relative;
	  width: 220px;
	
	  span {
	    color: var(--black-2);
	    font-family: var(--font-family);
	    font-size: var(--font-size-xl);
	    font-weight: 400;
	    line-height: 19px;
	  }
	
	  a {
	    border: 1px solid;
	    border-color: var(--colorgreymain);
	    border-radius: 6px;
	    width: 88px;
	    height: 40px;
	    align-items: center;
	    justify-content: center;
	    display: flex;
	    position: relative;
	    
	    > img {
	      width: 64px;
	    }
	  }
	}
    
  }

  .landing-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;

    p {
      color: var(--black-2);
      font-family: var(--font-family);
      font-size: var(--font-size-m);
      font-weight: 400;
      line-height: 14px;
      margin: 4px 0 0 0;
    }

    div {
      display: flex;
      align-items: center;

      a {
        display: block;
        color: var(--black-2);
        font-family: var(--font-family);
        font-size: var(--font-size-m);
        font-weight: 400;
        line-height: 14px;
        margin-left: 60px;

        &:first-of-type {
          margin-left: 0;
        }
      }
    }
  }

  @media (max-width: 1440px) {
    & {
      padding: 0 40px;
    }
  }

  @media (max-width: 1024px) {
    & {
      margin-top: 60px;
    }

    .landing-footer-bottom {
      align-items: flex-end;
      margin-top: 40px;

      div {
        flex-direction: column;
        align-items: end;
        row-gap: 6px;
      }
    }
  }

  @media (max-width: 767px) {
    & {
      height: auto;
      padding: 40px 16px 22px;
    }

    .landing-footer-top {
      flex-direction: column;
    }

    .landing-nav-menu {
      flex-direction: column;
      margin-top: 38px;

      .link {
        display: block;
        padding: 14px 12px;
        border-radius: 0;
      }
    }

    .landing-footer-bottom {
      flex-direction: column-reverse;
      align-items: center;
      margin-top: 56px;

      div {
        align-items: center;
        row-gap: 32px;

        a {
          margin-left: 0;
        }
      }

      p {
        margin-top: 79px;
      }
    }
  }
}