@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);

header {
    background: #0088cc;
    padding: 0.5rem 0rem;
}

.nav-logo a img {
    width: 170px;
}

.sign-up-login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sign-up-login button {
    background: #1e90ff;
    border: none;
    outline: none;
    height: 1.6rem;
    width: 5rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-family: 'Roboto';
    font-weight: 600;
    border-radius: 0.3rem;
    box-shadow: 3px 3px 5px #ffffff;
}

.sign-up-login button:hover {
    background: linear-gradient(90deg, #1e90ff 0, #00d4ff 100%);
}

.col-0 {
    display: none;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto';
    transition: color 0.3s ease-in-out;
}

.nav-links ul li a:hover {
    color: #ffd15b;
    text-decoration: none;
}

.nav-links ul li a img {
    width: 15px;
    height: 15px;
}

.marq-block {
    padding: 1rem 0rem 0rem;
}

.marqueee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border: 2px solid #ffd15b;
    border-radius: 5rem;
    color: #ffffff;
    font-family: 'Roboto';
    font-size: 0.8rem;
}

footer {
    background: #212121;
    padding: 1rem 0rem 4.8rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.footer-logo img {
    width: 200px;
}

.footer-logo p {
    color: #ffffff;
    font-family: 'Roboto';
    margin: 0;
    font-size: 0.8rem;
    text-align: justify;
}

.footer-logo h6 {
    color: #ffffff;
    margin: 0;
}

.footer-logo .socials .social-icons {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0rem;
}

.footer-logo .socials a {
    text-decoration: none;
}

.footer-logo .socials a:hover {
    text-decoration: none;
}

.footer-logo .socials .social-icons button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    border-radius: 5rem;
    border: none;
    outline: none;
    background: #ffffff;
}

.footer-logo .socials a i {
    font-size: 1rem;
}

.payment-partners {
    padding: 1rem 0rem;
    position: relative;
}

.payment-partners h5 {
    color: #ffffff;
    font-family: 'Roboto';
    background: none;
    font-size: 1.1rem;
    padding-bottom: 1rem;
}

.payment-partners h5::after {
    content: '';
    background: #ffc107;
    height: 2px;
    width: 50%;
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: 5rem;
}


.payment-partners img {
    width: 60%;
}

.payment-partners p {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-family: 'Roboto';
}

.payment-partners p a {
    text-decoration: none;
    color: #ffffff;
}

.payment-partners p a:hover {
    text-decoration: none;
    color: #ffffff;
}

.divider-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider {
    border: 2px solid #ffd15b;
    margin: 2rem 0rem 0.6rem;
    border-radius: 5rem;
    width: 90%;
}

.necessary-links {
    color: #ffffff;
    text-align: center;
}

.necessary-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto';
    font-size: 0.8rem;
}

.necessary-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.rights {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0rem;
}

.rights p {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Roboto';
    margin: 0;
}

.rating {
    display: flex;
    align-items: center;
}

.star {
    font-size: 25px;
    cursor: pointer;
    color: gray;
}

.star:hover,
.star.active {
    color: gold;
}

.rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-count {
    color: white;
}

#count {
    color: white;
}

.desclaimer-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.desclaimer-image img {
    width: 30%;
}

.desclaimer-text h6 {
    color: #ffffff;
    font-family: 'Roboto';
    margin: 0;
    font-size: 0.8rem;
}

.desclaimer-text p {
    color: #ffffff;
    font-family: 'Roboto';
    margin: 0;
    font-size: 0.8rem;
    text-align: justify;
}

@media only screen and (min-width:476px) {
    .col-0 {
        display: block;
    }

    .footer-logo img {
        width: 170px;
    }

    .footer-logo .socials .social-icons {
        gap: 1rem;
    }

    .payment-partners {
        padding: 0;
    }

    .payment-partners h5::after {
        top: 35px;
    }

    .payment-partners img {
        width: 100%;
    }

    .desclaimer-image img {
        width: 100%;
    }
}