@import url("./colors.css");

.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  }
.progress-container {
  width: 100%;
  height: 8px;}

.progress-bar {
  height: 8px;
  background: var(--color-purple);
  width: 0%;
}


body {
  margin: 0;
  padding: 0;
  background-image: url("../assets/bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", sans-serif;
  position: relative;
  min-height: 100vh;
  z-index: 1;
  color: var(--color-primary-500);
  line-height: 170%;
  font-weight: 400;
  font-size: 16px;
  overflow-x: clip;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d1d1dc9;
    z-index: -1;
  }

  .content-container {
    margin-top: 5rem;
  }

  .contact-container {
    position: relative;
    background-color: var(--color-purple);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    margin-top: 100px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
     color: var(--color-neutral-light);
     font-size: 14px;
     
     .text{
      font-size: 15px;

      @media(min-width:768px){
        font-size: 14px;
      }
     }

    .info-wrap {

      background: var(--color-secondary-600);
      display: flex;
      align-items: center;
      padding: 13px 14px;
      border-radius: 10px;
      gap: 13px;
      cursor: pointer;
      transition: transform 0.2s ease;
      &:hover {
        transform: scale(1.1);
      }

       a {
       text-decoration: none;
       font-size: 14px;
       line-height: 170%;
        letter-spacing: 0px;
         color: var(--color-neutral-light);
         }
    }

    .avatar-img {
      position: absolute;
      top: -56px;
      width: 95px;
      height: 95px;
      aspect-ratio: 1/1;
      transition: transform 0.2s;
      &:hover {
        transform: scale(1.1);
      }
    }

  &.icon {
      width: 17.4;
      height: 15.9;
      opacity: 1;
      cursor: pointer;
      transition: transform 0.2s;

      &:hover {
        transform: scale(1.1);
      }
    }
  }

  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .adress-container {
    background:var(--color-secondary-400);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 50px 57px;
    margin-top: 20px;
    margin-bottom: 30px;
   color: var(--color-secondary-500);
    font-family: Inter;
    font-size: 14px;
   font-weight: 600;
    
   @media (min-width: 768px) {
      flex-direction: row;
      justify-content: space-between;
    }

    a,
    div {
     color: var(--color-secondary-500);
       font-weight: 400;
     text-decoration: none;
    }
  }

  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .under-line {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }

    .footer-text {
    color:var(--color-primary-500);
    font-family: Inter;
    font-size: 15px;
    line-height: 160%;
    text-align: center;
    padding: 1rem 0rem 3rem 0rem;
    opacity: 0.75;
  }
}
