* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background: #f8f8f8;
}
html, body {
    width: 100%;
    height: 100%;
}
#navbar {
    display: flex;
    justify-content: flex-end;
    gap: 45px;
    padding-top: 30px;
    padding-right: 35px;
    font-size: 18px;
}
#navbar i {
    font-size: 17px;
    color: white;
    background-color: black;
    border-radius: 50%;
    padding: 10px;    
}
h1 {
    font-weight: 500;
    font-size: 4.2vw;
}
#text {
    padding: 45px;
    padding-bottom: 15px;
    padding-left: 70px;
    line-height: 75px;
    line-height: 4.9vw;
    font-weight: 700;
}
#middiv {
    display: flex;
    justify-content: space-between;
}
#text2 p {
    max-width: 600px;
    padding: 15px;
    padding-left: 72px;
    font-size: 1.3vw;
    font-weight: 570;
    line-height: 2.2vw;
}
#under {
    text-decoration: none;
}
#menus {
    width: 20%;
    padding-right: 40px;
    padding-top: 25px;
}

.elem {
    position: relative;
    border-top: 2px solid #000;
    padding: 15px 0;
    font-weight: 600;
}
.elem a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    display: block;
}

.elem i {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.elem:hover i {
    opacity: 1;
}

.elem:hover a {
    text-decoration: underline;
}

#img {
    height: 35%;
    width: 100%;
    background-color: red;
    background-image: url(./Model\ img.jpg);
    background-size: cover;
    background-position: 0 60%;
}
@media (max-width:600px){

    #navbar {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding-top: 30px;
    padding-right: 35px;
    font-size: 16.5px;
}
#navbar i {
    font-size: 17px;
    color: white;
    background-color: black;
    border-radius: 50%;
    padding: 10px;    
}
h1 {
    font-weight: 500;
    font-size: 8.5vw;
}
#text {
    /* padding: 45px; */
    padding-bottom: 15px;
    padding-left: 33px;
    line-height: 10vw;
    font-weight: 700;
}
#middiv {
    display: flex;
    flex-direction: column;
    
}
#text2 p {
    max-width: 80vw;
    padding: 5px;
    padding-left: 33px;
    font-size: 3.5vw;
    font-weight: 570;
    line-height: 5vw;
}
#menus {
    width: 100%;
    padding-right: 40px;
    padding: 20px 33px;
    padding-bottom: 3px;
}

.elem {
    position: relative;
    border-top: 0.9px solid #000;
    padding-top: 15px;
    font-weight: 600;
}
.elem a {
    text-decoration: none;
    color: black;
    font-size: 15.5px;
    display: block;
}

.elem i {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
#img {
    height: 50%;
    width: 100%;
    background-color: red;
    background-image: url(./Model\ img.jpg);
    background-size: cover;
    background-position: 50% 70%;
}

}
