@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

header#h1{
    height: 235vh;
}

nav {
    overflow: hidden;
    width: 100%;
    transition: 0.6s ease;
    position: fixed;
    box-sizing: border-box;
    z-index: 100000000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #fff;
    height: 15vh;
}

nav ul {
    list-style: none;
    display: inline-flex;
    align-items: center;
    transition: 0.9s ease;
}

nav ul li {
    list-style: none;
    position: relative;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    padding: 10px 20px;
    transition: 0.6s ease;
    font-size: 1.1em;
    font-weight: 500;
}

nav ul li a:hover {
    background: transparent;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 5px;
    left: 0;
    bottom: -6px;
    transform: scaleX(0);
    transition: transform .5s;
    transform-origin: left;
}

nav a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

nav .logo img {
    width: 150px;
    height: auto;
}

.title-privacy{
    position: absolute;
    top: 20%;
    left: 30%;
    transform: translate(-50%,-50%);
}

.para1{
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.para1 p span{
    font-weight: 1000;
}

header#footer{
    height: 10vh;
    background: linear-gradient(darkgreen, green);
}

.wrapper2{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amfi-reg p{
    color: #fff;
}

.all-rights-res {
    color: #fff;
}