@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.hero{
    height: 100vh;
    width: 100%;
    padding: 20px 10%;
    /* background-color: red; */
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
nav .logo{
    width: 150px;
    cursor: pointer;
}
nav .menu-img{
    width: 60px;
    cursor: pointer;
}
nav ul{
    /* display: flex; */
    flex: 1;
    text-align: right;
    /* background-color: red; */
    margin-right: 150px;
}
nav ul li{
    display: inline-block;
    list-style: none;
    padding: 10px 30px;
}
nav ul li a{
    text-decoration: none;
    color: #000;
    font-weight: 700;
    position: relative;
    padding: 10px;
}
nav ul li a::before{
    content:'';
    width: 100%;
    height: 0px;
    background: #d9f688;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -5px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: height 0.5s;
}
nav ul li a:hover::before{
    content:'';
    width: 100%;
    height: 85px;
    background: #d9f688;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -5px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.row{
    display: flex;
    flex-wrap: wrap;
}
.col{
    flex-basis: 50%;
    position: relative;
}
.feature-img{
    width: 100%;
    margin-top: 10px;
}
.thumbnail-img{
    width: 280px;
    position: absolute;
    bottom: 10px;
    left: 0;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.col h1{
    margin-top: 180px;
    font-size: 38px;
    font-weight: 600;
}
.col a{
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 30px;
    background: #d9f688;
    display: inline-block;
    color: #000;
    font-weight: 700;
    margin-top: 70px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}