@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;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

/* body {
    scroll-behavior: smooth;
} */

.container-big {
    width: 100%;
    height: 100vh;
}

.logo1 {
    width: 100%;
    height: 100px;
    object-fit: contain;
    transform: translateY(-100px);
    opacity: 0;
    margin: 10px 0;
    animation: logoanimat 1s ease forwards;
}

@keyframes logoanimat {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.container {
    background: url('./assets/bg1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 110px);
    position: relative;
    z-index: 1;
}
.container::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.17); */
    backdrop-filter: blur(2px);
}

.container h1 {
    position: relative;
    z-index: 1;
    font-size: 50px;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 65px;
    line-height: 72px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    margin-bottom: 76px;
    transform: translateY(-100px);
    opacity: 0;
    animation: logoanimat 1s ease forwards 1s;

}

.container div {
    text-align: center;
}

.container a {
    position: relative;
    z-index: 1;
    padding: 19px 35px;
    background: rgba(76, 64, 247, 1);
    box-shadow: 5px 10px 30px 0px rgba(76, 64, 247, 0.5);
    transform: translateY(-100px);
    border-radius: 19px;
    font-weight: 600;
    font-size: 28px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0;
    animation: logoanimat 1s ease forwards 2s;
}

.grid {
    width: 100%;
    height: 100vh;
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
    /* margin-top: 40px; */
    background: rgba(0, 17, 59, 1);
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 20px;

}

.grid a {
    display: flex;
    gap: 20px;
}

.grid a span {

    font-family: 'Poppins';
    font-weight: 600;
    font-size: 35px;
    line-height: 72px;
    /* or 206% */
    display: flex;
    align-items: center;
    letter-spacing: -0.4px;
    gap: 39px;
    color: #FFFFFF;
    margin-bottom: 30px;

}

.grid a img {
    width: 70px;
    height: 70px;

}

.grid-2 {
    padding: 20px 105px;
    border-left: 3px solid rgba(255, 255, 255, 1)
}

.grid .img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

.grid .flex {
    display: flex;
    align-items: center;
    gap: 105px;
}

.container .logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .grid .flex {
        display: block;

    }

    body .grid .img,
    body .logo1 {
        width: 200px;
        height: auto;
    }
    .grid img{
        height: auto;
    }
    .logo1 {
        display: block;
        margin: auto;
    }

    .container h1 {
        font-size: 35px;
        line-height: normal;
        margin-bottom: 40px;
    }

    .container {
        height: 100%;
    }
    .grid a{
        /* align-items: center; */
    }

    .grid a img {
        width: 30px;
        height: 30px;
    }
    .grid a span{
        font-size: 15px;
        line-height: normal;
    }
    .grid-2{
        padding: 20px;
        border: 0;
    }
    .grid{
        gap: 0;
    }
    .container a{
        padding: 12px 20px;
        font-weight: 500;
        font-size: 20px;
        line-height: normal;
    }
}
body {
    overflow-x: hidden;
  }