@import url('https://fonts.googleapis.com/css2?family=Tajawal&display=swap');

* {
    font-family: 'Tajawal', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;p
    background-color: #F6F6F6;
}

body {
    position: relative;
}

.card {
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    width: 100%;
    display: block;
    transition: 0.8s;
}

.no-decoration {
    text-decoration: none;
    color: #000;
}

.background-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.box-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card:hover {
    scale: 1.1;
    transform: rotateZ(-4deg);
}

.h-100-vh {
    height: 100vh;
}

.logo-main {
    top: 0;
    /* left: 50%;
    transform: translateX(-50%); */
    left: 0;
    width: 90px;
    padding: 5px;
}

.footer {
    position: absolute;
    bottom: 0;
    /*color: white;*/
    left: 0;
    right: 0;
    font-size: 14px;
}

.social-icon {
    border-radius: 50%;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 12px;
    padding: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    transition: 0.8s;
    cursor: pointer;
}

.social-icon i {
    font-size: 15px;
}

.social-icon:hover {
    text-decoration: none;
    color: #000;
    background-color: #FFF;
}

.title {
    color: #f4c24f;
    font-weight: 800;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 575px) {
    .title {
        left: inherit;
        right: 0;
        transform: translateX(0);
    }
}

@media only screen and (min-width: 768px) {
    #scroll-to-next-institute-card {
        display: none !important;
    }
}

@media only screen and (max-width: 768px) {
    .footer {
        bottom: 55px;
    }
}

#scroll-to-next-institute-card {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.cursor-pointer {
    cursor: pointer !important;
}