*{
    margin: 0;
    padding: 0;
    font-family: 'Dosis', sans-serif;
}
.main-img{
    width: 100%;
    object-fit: cover;
    height: 90vh;
    opacity: 1;
}
.center{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
}
 .animate__animated.animate__backInDown {
    --animate-duration: 2s;
  }

  /* .secondary{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6%;
} */
.text{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.card{
    margin: 0 5%;
    max-width: 20rem;
    max-height: 30rem;
}
.display{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}
.display1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

  .footer-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
.footer-info{
    width: 16rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.footer-title{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: grey;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.footer-title img{
    width: 4.25rem;
    height: 4.25rem;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 30%;
}
.footer-title span{
    margin-left: 0.5rem;
}
.footer-tagline{
    font-size:0.95rem ;
    line-height: 4.25rem;
    color: grey;
}
.footer-section-wrapper{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.25rem;
}
.footer-category{
    color: black;
    font-weight: 500;
    letter-spacing: 0.1m;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.footer-list{
    display: flex;
    flex-direction: column;
    row-gap: 0.25rem;
    list-style-type: none;
}
.footer-link{
    color: grey;
    text-decoration: none;
}
.footer-link:hover{
    color: lightsalmon;
}
.footer-bottom{
    background-color: lightgray;
}
.footer-bottom-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 1rem;
    padding: 1.25rem 2rem;
    max-width: 88rem;
    margin-left: auto;
    margin-right: auto;
}
.footer-copyright{
    color: black;
    font-size: 0.85rem;
    line-height: 1.25rem;
    text-align: center;
}

.footer-social{
    display: flex;
    justify-content: center; 
    /* column-gap: 1rem; */
}
.footer-social img{
    color: aqua;
    width: 50px;
    padding: 20%;
}
@media screen and (max-width:600px){
    .center{
        position: absolute;
        top: 30%;
        left: 10%;
        transform: translate(-50%, -50%);
    }
    .first-text{
        margin-top: 3px;
    }

    .display, .display1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 30px 2px;
    }
    .card{
        margin-bottom: 20px;
    }
}

@media(min-width: 648px) {
    .footer-container{
        flex-direction: row;
    }
    .footer-info{
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
    .footer-title{
        justify-content: flex-start;
    }
    .footer-section-wrapper{
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer-bottom-container{
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-copyright{
        margin-top: 10px;
        font-size: 17px;
    }
    .footer-social{
        width: 30%;
        cursor: pointer;
    }
    
}