*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Hind Siliguri", sans-serif;
}

/*-------------------------------
|        common styles          | 
-------------------------------*/

.text-one{
    font-size: 56px;
}

.text-two{
    font-size: 24px !important;
    /* text-align: center !important; */
    font-weight: 500;
}

.max-width {
    max-width: 1140px !important;
}

.bg-color{
    background-color: #461E59;
}

.social-links-top-right {
    justify-content: end;
}

.link-fb:hover{
    color: rgb(0, 0, 255) !important;
}

.link-yt:hover{
    color: rgb(234, 19, 19) !important;
}

.hero-heading-style{
    color: #00FFBA !important;
}

.header-bg{
    background-image: linear-gradient(to bottom, #000000, #461E59);
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: white;
    border-radius: 10px 10px 10px 10px;
}

.buy-btn{
    border: 1px solid white;
    border-style: dashed;
    transition: transform 0.3s ease;
    z-index: 5;
}

.custom-btn{
    margin-top: 3rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.buy-btn:hover {
    animation: pulse 1s infinite;
}

.book-img{
    height: auto;
    width: 60%;
}

/*---------------------------------- 
|              footer              |
---------------------------------- */

footer {
    background-image: linear-gradient(180deg, #363643 0, #110e17 100%);
}

.footer-logo {
    width: 60%;
}

.footer-text {
    color: #d1cfcf;
    text-align: start;
}

.footer-link {
    color: #d1cfcf;
    display: block;
    font-weight: 500;
    line-height: 25px;
}

@media (max-width: 992px) {
    .text-one{
        font-size: 45px;
    }

    .text-two{
        font-size: 20px !important;
        text-align: justify !important;
    }

    .hero-description{
        text-align: justify;
    }

    .custom-padding{
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .social-links-top-right {
        justify-content: center;
    }

    .custom-btn{
        margin-top: 1.5rem;
    }

    .footer-elements{
        padding-top: 3rem;
        padding-left: 3rem;
    }

    .footer-logo {
        width: 30%;
    }

    .footer-text {
        max-width: 70%;
    }

}
@media (max-width: 576px) {
    .text-one{
        font-size: 28px;
    }

    .text-two{
        font-size: 18px !important;
        text-align: justify !important;
    }

    .custom-btn{
        margin-top: 0.5rem;
    }

    .footer-logo {
        width: 60%;
    }

    .footer-text {
        max-width: 100%;
        text-align: justify;
    }
}