@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@500;700;900&family=Roboto:ital,wght@0,400;0,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth !important ;
}

body{
    background: #eff4fd;
}

section{
    padding: 160px 15px 120px;
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #eff4fd;
}

.hero nav .logo{
    font-size: 70px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

nav{
    display: flex;
    width: 84%;
    margin: auto;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

nav ul li a:hover{
    color: blue;
    transform: scale(0.9);
}

nav ul li a.active{
    color: blue;
}
.content{
    margin-left: 10%;
    margin-top: 13%;
}

.content h1{
    font-size: 70px;
    color: #000;
    margin-bottom: 20px;
}

span{
    color: blue;
}

.content p{
    color: #555;
    line-height: 22px;
}

.content a{
    background: #212121;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
}

.content a:hover{
    color: #000;
    background-color: transparent;
    border: 2px solid #000;
    transform: scale(0.9);
    cursor: pointer;
}

.images{
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
}
.pic{
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
}

.images:hover .pic{
    bottom: 40px;
}

.about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.about-img{
    margin-left: 200px;
}

.btn{
    background: #212121;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
}

.btn:hover{
    color: #000;
    background-color: transparent;
    border: 2px solid #000;
    transform: scale(0.9);
    cursor: pointer;
}

.about-text h1{
    font-size: 70px;
    color: #000;
    margin-bottom: 20px;
}

.about-text p{
    color: #555;
    line-height: 22px;
}
