@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,400;1,600&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    direction: ltr;
    font-family: 'Cairo', sans-serif;
}
a, b, p, span, table{
    font-family: 'Cairo', sans-serif;
}
.landing{
    position: relative;
    overflow-x: hidden;
    padding: 40px 0 0 10px ;
    height: 100vh;
    background: linear-gradient(0deg, #94D3FF, transparent);
}
.landing::after,
.landing::before{
    content: '';
    opacity: 15%;
    position: absolute;
    width: 1000px;
    height: 1000px;
    transition: all .3s ease-out;
    background-image: url(../img/decoration.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.landing::after{
    right: 70%;
    top: -9%;
    animation: top 3s linear infinite;
}
@keyframes top {
    0%,100%{
        transform: translateY(-20px);
    }
    50%{
        transform: translateY(20px);
    }
}
.landing::before{
    left: 70%;
    transform: rotate(284deg);
    bottom: 25%;
    animation: bottom 2s linear infinite;
}
@keyframes bottom {
    0%,100%{
        transform: translateY(-20px) rotate(284deg);
    }
    50%{
        transform: translateY(20px) rotate(284deg);
    }
}
.landing .container{
    margin: auto;
    height: 100%;
    max-width: 2000px;

    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.landing .container .header{
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.landing .container .header .img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing .container .header .img::after,
.landing .container .header .img::before{
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transition: all .2s ease;
    transform: translate(-50%, -50%);
}
.landing .container .header .img::after{
    width: 120px;
    height: 120px;
    border: 1px solid #94D3FF;
}
.landing .container .header .img::before{
    width: 150px;
    height: 150px;
    border: 1px solid #94d2ff6e;
}


.landing .container .content{
    width: 100%;
    text-align: center;
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.landing .container .content .cards{
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.landing .container .content .cards .card{
    width: 100%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing .container .content .cards .card button{
    width: 60%;
    direction: ltr;
    padding: 0 10px;
    height: 55px;
    border-radius: 10px;
    color: #4E90BD;
    text-decoration: none;
    transition: .3s ease;
    text-transform: uppercase;
    background-color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.landing .container .content .cards .card button img{
    height: 20px;
}
.landing .container .content .cards .card button:hover{
    transition: .3s;
    border: 1px solid #4e91bd60;
    background-color: #94d2ff13;
    box-shadow: 0px 11px 12px 0px rgba(0, 0, 0, 0.151);
}

footer{
    width: 100%;
    padding: 10px;
    margin-top: 50px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .icons{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
footer .icons button{
    border: 0;
    background: transparent;
}
footer .icons button i{
    padding: 10px;
    color: #fff;
    border-radius: 50%;
    transition: .3s ease;
    border: 1px solid #fff;
}
footer .icons button i:hover{
    color: #4E90BD;
    border: 1px solid #4E90BD;
}

@media (max-width: 1000px){
    .landing .container .content .cards .card button {
        width: 90%;
    }
    .landing::after{
        right: 25%;
        top: -12%;
    }
    .landing::before{
        left: 28%;
        bottom: 43%;
    }
}

button{
    cursor: pointer;
    border: 0;
}
button:focus, button:focus-visible, button:focus-within{
    outline: 0;
}
