header{
    background: #14796d;
    display: flex;
    width: 100%;
    padding: 10px 20px;
    position: relative;
    justify-content: center;
}

header .cont {
  display: flex;
  max-width: 1440px;
  width: 100%;
  justify-content: space-between;
}

header .cont nav{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

header .cont nav ul{
    display: flex;
    gap: 20px;
}

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

header .phone-number {
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-size: 21px;
}

header .email {
  color: #fff;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-decoration: none;
}

header .logo img {
  flex: 1;
  height: 29px;
  max-width: 166px;
  max-height: 29.36px;
  position: relative;
  aspect-ratio: 163.96/29
}

header ul li a {
  color: #fff;
  text-align: left;
  font-weight: 300;
  font-size: 16px;
  line-height: 25.6px;
  position: relative
}

.logo {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}

header .logo span {
  color: #fff;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  width: 143px
}

@media screen and (max-width:1200px){
    header .cont nav{
        display: none;
    }
    header .logo span{
        display: none;
    }
}

@media screen and (max-width:500px){
    header .phone-number{
        font-size: 16px;
    }
    .email{
        font-size: 14px;
    }
    header .logo img{
        max-width: 96px;
    }
}