.main-header{
    background-image: linear-gradient(rgb(255, 103, 65), rgba(255, 166, 114, .6));
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    display: flex;
    display: flexbox;
}
.header-info{
    text-align: left;
    color: rgb(219, 84, 75);
    position: absolute;
    left: 0;
    padding: 0;
    margin: 0px 14px 0 14px;
}
.header-info a{
    padding: 0;
    text-decoration: none;
}
.header-info a:hover{
    background-color: transparent;
}
.jumbotron{
    margin-top: 5%;
    color: coral;
    background-color: rgb(36, 75, 75);
    text-align: center;
    flex-wrap: wrap;
}
.container{
    max-width: 100%;
}
.tab{
    background-color: whitesmoke;
    overflow-x: scroll;
}
.item{
    background-color: white;
    margin: 2%;
    border-radius: 25px;
    max-width: 100%;
}
.item:hover{
    transform: scale(1.1,1.1);
}
.items{
    font-size: xx-large; 
    text-align: center;
}
.see-more{
    font-family: 'Courier New', Courier, monospace;
    font-size: large; 
    text-align: right;
}
.see-more:hover{
    color: orangered;
    cursor: pointer;
}
.h2:hover{
    color: orangered;
}
.highlights{
    margin: 40px;
}
.products{
    border-top: solid black 5px;
}
footer{
    background-color: rgb(245, 235, 220);
}
.main-footer {
    display: flex;
    justify-content: center;
    width: 100%;
}
.left-footer {
    margin-right: auto;
    margin-left: 40px;
}
.center-footer{
    margin-left: 20px;
    margin-right: 20px;
}
.info-left{
    color: rgb(219, 84, 75);
    text-align: left;
    width: 100%;
}
.info-right{
    color: rgb(219, 84, 75);
    text-align: right;
    width: 100%;
}
*{
    max-width: 100%;
    max-height: 100%;
}
@media(max-width: 600px) {
    *{
        font-size: 2vw;
        margin: 2px;
    }
}
.tab-opt{
    background-color: transparent;
    border: 0;
    position: relative;
    text-align: center;
}
.tab-opt:hover{
    border: white 2px solid;
}
.header-tab{
    list-style-type: none;
    background-color: transparent;
    display: block;
    text-justify: distribute;
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-content: space-evenly;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 25px auto;
    position: relative;
    text-align: center;
    margin-left: 20px;
    margin-right: 100px;
}
.contact-container{
    display: flex;
    justify-content: flex-start;
}
.illustration-img{
    margin:0px;
    padding-top: 60px;
    width: 800px;
}
.contact{
    display: inline-block;
    margin: 110px 70px;
    text-align: center;
}
.profile-contact-img{
    width: 200px;
}
.form-continer{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.input-container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.icon{
    margin-right: 6px;
}
.fa-user, .fa-map-marker-alt, .fa-envelope-open, .fa-content{
    font-size: 27px;
}
.form-label{
    position: absolute;
    left: 10px;
    top: 10px;
}
.form-input{
    position: relative;
    width: 100%;
    border-bottom: 1px solid grey;
    outline: none;
    height: 48px;
    margin-bottom: 15px;
    padding: 0;
}
.input-item{
    position: absolute;
    top: 0;
    left: 0;
    border-style: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 15px;
    height: 100%;
}
.textarea-container{
    display: flex;
    justify-content: center;
}
.form-textarea{
    position: relative;
}
.textarea{
    border-style: none;
    border-bottom: 1px solid grey;
    outline: none;
    margin-top: 10px;
}
.submit{
    border-style: none;
    border-radius: 25px;
    color: aliceblue;
    background-color: rgb(38, 70, 83);
    margin: 5px;
    cursor: pointer;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 2%;
    padding-bottom: 2%;
}
.input-item:focus + .form-label{
    top: -5px;
    left: -20px;
    font-size: 10px;
}
.textarea:focus + .form-label{
    top: -5px;
    left: -2px;
    font-size: 10px;
}
.input-item:not(:placeholder-shown).input-item:not(:focus) + .form-label{
    top: -2px;
    left: -2px;
    font-size: 10px;
    color: rgb(138, 130, 130);
}