/* .header{
    display: flex;
    flex-direction: row;
    height: 100px;
    justify-content: space-between;
    align-items: center;
    padding-left: 120px;
    padding-right: 80px;

} */

.header div{
    font-weight: 400;
}

.logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
    display: flex;
    flex-direction: row;
    font-size: 20px;
    text-align: center;
}

.down-arrow{
    height: 100%;
    padding-top: 30%;
    padding-left: 10%;
}







.models, .world-of-bentley{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 20px;
}

.models:hover{
    cursor: pointer;
}

.world-of-bentley:hover{
    cursor: pointer;
}

.models-expand, .world-of-bentley-expand{
    width: 350px;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 58px;
    right: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    justify-content: space-between;
    z-index: 100;
    border: none;
}

.world-of-bentley-expand{
    right: 310px;
}

.world-of-bentley-title, .models-title{
    font-weight:bolder;
    font-size: 20px;
    color: black;
}

.models-title-img-div{
    
}

.models-title-img{
    height: 20px;
    width: 20px;
    object-fit: cover;
}

.models-expand div{
    padding-top: 4px;
    padding-bottom: 4px;
    /*border: 1px solid red;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(244, 244, 244);
}

.world-of-bentley-expand div{
    padding-top: 4px;
    padding-bottom: 4px;
    /*border: 1px solid red;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(244, 244, 244);
}


.models-expand div:hover{
    background-color: rgba(96, 173, 96, 0.682);
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.world-of-bentley-expand div:hover{
    background-color: rgba(96, 173, 96, 0.682);
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.models:hover .models-expand{
    opacity: 1;
    transition: 0.15s;
}

.world-of-bentley:hover .world-of-bentley-expand{
    opacity: 1;
    transition: 0.15s;
}

.world-of-bentley:hover{
    cursor: pointer;
}







.header button{
    background-color: rgb(51, 91, 76);
    color: white;
    padding: 13px 18px 12px 18px;
    border: none;
    font-weight: bold;
}

.header button:hover{
    background-color: black;
    transition: 0.15s;
}