header{
  margin: 0px ;
  padding: 0px ;
  width: 100vw ;
  height: 270px ;
  position: absolute;
  z-index: 10 ;
  text-align: center;
  top: 0 ;
  background-color: rgba(250, 160, 0, 1) ;
}
.header-icon{
  height: 100px ;
  margin-left: 0 auto ;
  margin-top: 10px ;
  width: auto;
}
.header-content{
  display: flex;
  flex-direction: column;
  height: 270px ;
  margin: 0px ;
}
.header-button-container{
  height: 100px ;
  display: flex;
  margin: 0px 0 ;
  flex-direction: column;
}
.phone-number{
  font-size: 18px ;
  font-family: "Montserrat", sans-serif;
  word-spacing: 1.2px ;
  font-weight: bold;
  align-self: center;
  text-decoration: none;
  color: rgba(51, 51, 51, 1) ;
}
.header-button{
  background-color: rgba(255, 255, 255, 1) ;
  width: 150px ;
  height: 40px ;
  font-size: 15px ;
  font-weight: bold;
  align-self: center;
  border: none ;
  border-radius: 10px ;
  color: rgba(250, 160, 0, 1) ;
  cursor: pointer;
  transition: 0.3s all ease-in-out ;
}
.header-button:hover{
   background-color: rgba(250, 200, 0, 1) ;
   color: rgba(255, 255, 255, 1) ;
}
.header-option{
  display: none ;
}
.header-menu{
  margin-top: 20px ;
  margin-right: 20px ;
  text-align: right;
  font-size: 30px ;
  color: rgba(255, 255, 255, 1) ;
}
.menu-option{
  position: absolute;
  top: 270px ;
  right: 0px ;
  width: 200px ;
  height: 0px ;
  z-index: 20;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 1) ;
  text-align: right;
  display: flex;
  flex-direction: column;
  transition: 0.2s all ease ;
}
.menu-option-text{
  font-size: 16px ;
  font-family: "Montserrat",sans-serif;
  color: rgba(250, 160, 0, 1) ;
  margin-top: 20px ;
  padding-right: 10px ;
  text-decoration: none;
}
@media screen and (min-width: 930px) {
  header{
    position: fixed;
    height: 120px ;
    text-align: justify ;
  }
  .header-menu{
    display: none ;
    visibility: hidden;
  }
  .header-icon{
    height: 100px ;
    margin-left: 20px ;
    margin-top: 10px ;
    display: inline-block;
  }
  .header-content{
    float: right;
    display: inline-flex;
  }
  .header-button-container{
    flex-direction: row;
    margin: 0px;
  }
  .header-option{
    display: flex;
    flex-direction: row;
    position: relative;
    top: -10px ;
  }
  .phone-number{
    margin-right: 25px ;
    height: 40px ;
    line-height: 40px ;
  }
  .header-button{
    margin: 0px;
  }
  .header-option-text{
    align-self: flex-end;
    font-size: 15px ;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 1) ;
    margin-right: 10px ;
    padding-right: 10px ;
    cursor: pointer;
    letter-spacing: 1.3px ;
    text-decoration: none;
    border-right: 2px solid white ;
    transition: 0.3s all ease-in-out ;
  }
  .header-option-text:last-child{
    border: none ;
  }
  .header-option-text:hover{
    color: rgba(51, 51, 51, 1) ;
  }
}
