
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Ubuntu',sans-serif;
    background-color: #f4f4f4;
    color: #ebebeb;
    overflow-x: hidden;
}
main{
    height: 100%;
}
nav{
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #343535;
    display: flex;
    height: 75px;
    font-size: 20px;
}
#left{
    width: 19%;
    margin-left: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 25px;
}
#left > *{
    text-align: center;
}
#left img{
    width: 130px;
}
#middle{
    width:53%;
}
#right{
    width: 32%;
    padding: 0;
}
#right ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}
#right ul li{
    padding: 0;
}
#right ul li a{
    color: #ebebeb;
    text-decoration: none;
}
#right ul li a:hover{
    color: #9c9a9a;
}
#status {
    font-size: 12px;
    margin-right: 10px;
}
/* section */

section{
    width: 100%;
    height: 100vh;
    background-color: #454647;
}
section #text{
    height: 60%;
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
section h1{
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
}
section h2{
    font-weight: 100;
    font-size: 23px;
    margin-bottom: 25px ;
}
section input{
    width: 100%;
    height:50px;
    margin-top: 40px;
    font: 1.5em 'Ubuntu', sans-serif;
    padding: 10px ; 
    
}
#banner-1 {
    background-color:#d9643a ;
    width: 100%;
    height: 5%;
    color: black;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: left;
    align-items: center;
}

#banner-1 > p:first-child{
    margin-left: 25px;
    font-size: 18px;
    font-weight: 400;
    border-right: 1.5px solid black ;
    padding-right: 8px;
}
#banner-1 > p+p{
    margin-left: 15px ;
    font-weight: 300;
    font-size: 16px;
}
#banner-1 i{
    font-size: 18px;
}
.underline{
    text-decoration: underline;
}
.underline:hover{
    color: #343232;
    cursor: pointer;
}

#banner-2{
    z-index: 0;
    margin-left: 20px;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-top: 180px solid #343535;
    position: absolute;
    bottom: -50px;
    right: -120px;
    rotate: -45deg;
} 
#suggestion{
    z-index: 3;
    width: 100px;
    height: 100px;
    font-size: 15px;
    text-wrap: nowrap;
    text-align: center;
    /* border: 2px solid green; */
    position: absolute;
    bottom: 0px;
    right: -10px;
    color: white;
    rotate: -45deg;
}
#suggestion i{
    font-size: 35px;
    margin-top: 5px;
}

/* footer */
footer .fa-brands{
    color: #ebebeb;
    margin-left: 15px;
    font-size: 22px;
}
footer{
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 32vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ebebeb;
    background-color: #242525;
}
footer > dl{
    margin-top: 35px;
    width: 25%;
    height: 100%;
    padding: 15px 0 0 15px;
    font-weight: 100;
}
footer > dl:first-child {
    width: calc(25% + 7%);
    color: #ebebeb;
    padding-left: 25px;
}
footer > dl:first-child img{
    width: 210px;
}
footer > dl:first-child span{
    font-size: 17px;
    font-weight: 300;
    border-right: 1.5px solid #ebebeb;
    padding: 2px;
}

footer dt{
    font-size: 14px;
    color:#979595 ;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.gap{
    margin-bottom: 20px;
}
footer dd{
    font-size:12px;
    margin-top: .5px;
    margin-bottom: 5px;
}
footer a{
    color: #ebebeb;
    text-decoration: none;
}
footer a:hover, footer a i:hover{
    color: #d9643a;
    cursor: pointer;
}

