/*
Theme Name: Math Master Blog
Description: Custom classic theme for the Math Master blog, reusing the main site's navbar and footer.
Version: 1.0.0
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
}

#website-preloader {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: #2196F3;
}

#website-preloader img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100px;
    width: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

/*PRE-LOADER AND ARROW ANIMATION*/
#website-preloader .pulse {
    -webkit-animation: pulse 1s linear infinite;
    -moz-animation: pulse 1s linear infinite;
    -ms-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
}


@keyframes pulse {
    0% {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(0.85);
        -moz-transform: scale(0.85);
        -o-transform: scale(0.85);
        -ms-transform: scale(0.85);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes pulse {
    0% {
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -ms-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

iframe#bookPopupIframe html body {
    padding: 0px !important;
}

.container-box {
    max-width: 1110px;
    margin: auto;
    padding: 0px 0px 128px;

    .icon-list {
        display: flex;
        flex-direction: column;
        gap: 46px;
        /* margin-bottom: 50px; */

        >div {
            display: flex;
            gap: 10px;
            padding-right: 60px;

            img {
                width: 39.46px;
                height: 39.46px;
                border-radius: 8.22px;
            }

            h5 {
                font-weight: 600;
                font-size: 20px;
                line-height: 120%;
                letter-spacing: -2%;
                color: #1A1A1A;
                margin-bottom: 10px;
            }

            span {
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;
                letter-spacing: -2%;

                color: #1A1A1A !important;
            }
        }
    }

    .icon-list.light {
        >div {

            h5,
            span {
                color: #FFFFFF !important;
            }
        }

    }
}

.text-white {
    color: #FFFFFF;
}

.text-dark {
    color: #1A1A1A;
}

.heading-1 {
    font-weight: 600;
    font-size: 72px;
    line-height: 120%;
    letter-spacing: -2%;

}

.heading-2 {
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;

}

.paragraph {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -2%;
    color: #444444;
}

.paragraph.light {
    color: #FFFFFF;
}



/* =============================================
   Responsive Breakpoints
   ============================================= */

/* 1200px — constrained desktops / large tablets */
@media (max-width: 1200px) {
    .container-box {
        max-width: 900px;
        padding: 0 20px 100px;
    }

    .heading-1 {
        font-size: 60px;
    }

    .heading-2 {
        font-size: 52px;
    }
}

/* 992px — tablets landscape */
@media (max-width: 992px) {
    .container-box {
        padding: 0 20px 80px;
    }

    .container-box .icon-list {
        gap: 36px;
    }

    .container-box .icon-list>div {
        padding-right: 30px;
    }

    .heading-1 {
        font-size: 48px;
        line-height: 140%;
    }

    .heading-2 {
        font-size: 42px;
        line-height: 115%;
    }

    .paragraph {
        font-size: 16px;
        line-height: 140%;
    }
}

/* 768px — tablets portrait / large phones */
@media (max-width: 768px) {
    .container-box {
        padding: 0 20px 60px;
    }

    .container-box .icon-list {
        gap: 28px;
    }

    .container-box .icon-list>div {
        padding-right: 16px;
    }

    .container-box .icon-list>div h5 {
        font-size: 18px;
    }

    .heading-1 {
        font-size: 40px;
    }

    .heading-2 {
        font-size: 36px;
    }

    .paragraph {
        font-size: 16px;
    }
}

/* 580px — small phones */
@media (max-width: 580px) {
    .container-box {
        padding: 0 20px 48px;
    }

    .container-box .icon-list {
        gap: 24px;
    }

    .container-box .icon-list>div {
        padding-right: 0;
    }

    .container-box .icon-list>div h5 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .container-box .icon-list>div span {
        font-size: 14px;
    }

    .heading-1 {
        font-size: 34px;
    }

    .heading-2 {
        font-size: 30px;
    }

    .paragraph {
        font-size: 15px;
    } 
}
