@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: white;
}

.image-holder {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  background-image: url(./images/ff-bkg.svg);
  background-size: cover;
  background-position: 50% 40%;
}

.image-triangle-1 {
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 100vw;
  border-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.4) transparent
    transparent;
  z-index: 1;
}

.image-triangle-2 {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 100vw;
  border-color: transparent transparent rgba(255, 255, 255, 1)
    rgba(255, 255, 255, 1);
  z-index: 1;
}

.image-triangle-3 {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  right: 0;
  border-style: solid;
  border-width: 150px 100vw;
  border-color:  transparent rgba(255, 255, 255, 0.6) rgba(255, 255, 255, 0.6) transparent;
  z-index: 1;
}

.logo{
    position: absolute;
    top: 30px;
    width: 90%;
    margin: auto;
    z-index: 2;
    max-width: 300px;
}

ul{
    position: relative;
    top: -100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;

    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}

li{
    list-style: none;
    z-index: 2;
}

li img{
    width: 80px;
}

.footer-contact{
    position: relative;
    top: -100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

p.name{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.footer-contact a.tel{
    text-decoration: none;
    color: #000000;
    font-size: 1.7rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1.639px;
}

.footer-contact a.tel:hover{
    color: rgba(0, 0, 0, 0.6);
}

.footer-contact a{
    text-decoration: none;
    color: #000000;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.footer-contact a:hover{
    color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
    li img {
        width: 60px;
    }
}


