:root {
    --container: clamp(850px, 85%, 1170px);
    --container-padding:20px;
    --text-color: #2c2c2c;
    --logo_height: clamp(40px, 5vw + 20px, 64px);
    --headerheight: 99px;
    --bodyfontfamily: sans-serif, Helvetica, Arial;
    --site-bg: #ffffff;
    --bodylineheight: 1.7em;
    --bodyletterspacing: 0px;
    --dark_bgtext: #ffffff;
    --colortheme: #0065cb;
    --btnpadding: 12px 24px;
    --primarybtnborderradius: 4px;
    --tileradius: 10px;
    --btnlineheight: 1.6em;
    --btntexttransform: capitalize;
    --btnfontweight: 700;
    --spc_height: 40px;
    --tile_one: #f8f8f8;
    --tile_two: #0d1821;
    --center_block: clamp(470px, 60%, 570px);
    --menu_fontsize: clamp(12px, .5vw + 0.5rem, 16px);
    --tagline_fontsize: clamp(12px, .8vw + 0.5rem, 1.4rem);
    --btn_fontsize: clamp(14px, 1vw + 0.5rem, 16px);
    --body_fontsize: clamp(1rem, 1vw + 0.5rem, 1.06rem);
    --h1_fontsize: clamp(3rem, 3.4vw + 1rem, 4.1rem);
    --h2_fontsize: clamp(2rem, 2.3vw + 1rem, 2.9rem);
    --h3_fontsize: clamp(1rem, 1.2vw + 0.5rem, 1.5rem);
    --pricehead_h1_fontsize: clamp(2rem, 2.3vw + 1rem, 2.9rem);
    --priceval_fontsize: clamp(6rem, 5.2vw + 3rem, 7.5rem);
    --pricetype_fontsize: clamp(3rem, 3.5vw + 1rem, 4rem);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: var(--site-bg);
    color: var(--text-color);
    font-size: var(--body_fontsize);
    line-height: var(--bodylineheight);
    letter-spacing: var(--bodyletterspacing);
    font-family: var(--bodyfontfamily);
    text-transform: var(--bodytexttransform);
    overflow-x: hidden;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
}

h2 {
    font-size: var(--h2_fontsize);
    line-height: 1.3em;
}

h3 {
    font-size: var(--h3_fontsize);
}

p {
    margin-bottom: 30px;
}

.dark_bgtext {
    color: var(--dark_bgtext);
}

.header_container,
.menu_icon,
.menu_close,
.menu_list,
header,
.banner_block,
.inner_container,
.block {
    display: flex;
}

.menu_close,
.header_container,
header,
.banner_block,
.inner_container,
.align_center {
    align-items: center;
}

.menu_close,
header,
.justify_center {
    justify-content: center;
}

.menu_icon,
.flex_column {
    flex-direction: column;
}

.block_column {
    display: flex;
    flex-direction: column;
}

.menu_icon {
    justify-content: space-evenly;
}

.header_container,
.justify_between {
    justify-content: space-between;
}

.justify_right {
    justify-content: flex-end;
}

.full_width {
    width: 100%;
}

.text_center {
    text-align: center;
}

a {
    text-decoration: none;
}

.link {
    color: inherit;
    text-decoration: none;
    width: fit-content;
}

.mobileview {
    display: none;
}

.btn {
    cursor: pointer;
    outline: none;
    border: none;
    box-sizing: border-box;
    padding: var(--btnpadding, 13px 15px);
    border-radius: var(--primarybtnborderradius, 3px);
    font-weight: var(--btnfontweight);
    font-size: var(--btn_fontsize);
    line-height: var(--btnlineheight);
    letter-spacing: var(--btnletterspacing, var(--bodyletterspacing));
    text-transform: var(--btntexttransform, none);
    display: inline-block;
    transition: all .2s;
}

.btn:focus{
    border:2px solid rgb(22, 22, 22);
}

.darkbtn {
    background-color: var(--site-bg) !important;
    color: var(--text-color) !important;
}

.lightbtn {
    background-color: var(--text-color) !important;
    color: var(--dark_bgtext) !important;
}

.colorbtn {
    --border-color:var(--colortheme);
    --hover-color: var(--dark_bgtext);
    background-color: var(--colortheme) !important;
    color: var(--dark_bgtext) !important;
    border: 2px solid var(--border-color);
}

.btn[disabled]{
    background: var(--tile_one) !important;
    border-color: var(--tile_two);
    color: var(--tile_two) !important;
}

.tooltip{
    position: relative;
    cursor: default;
}
.tooltip::after{
    content: var(--text);
    position: absolute;
    bottom: 100%;
    min-width: 185px;
    background: var(--site-bg);
    padding: 10px 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0,.3);
    font-size: 12px;
    line-height: 13px;
    color: var(--text-color);
    font-weight: lighter;
    display: none;
}

.tooltip:hover::after{
    display: inline;
}


.inactivebtn{
    background: transparent !important;
    color:var(--border-color) !important;
}
.inactivebtn:hover {
    background: var(--border-color) !important;
    color: var(--hover-color) !important;
}

.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
    transition: all .3s cubic-bezier(.79, .14, .15, .86);
    background: var(--site-bg);
}

.container {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin: 0 auto;
    width: var(--container);
    position: relative;
}

.inner_container {
    position: relative;
    min-height: 600px;
}

.row {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
}

.tile_one {
    background: var(--tile_one);
}

.subtileone {
    background: var(--tile_one);
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    padding: var(--container-padding);
    border-radius: var(--tileradius);
}

.tile_two {
    background-color: var(--tile_two);
    color: var(--dark_bgtext);
}

.tile_three {
    background-color: var(--colortheme);
    color: var(--dark_bgtext);
}

.image-background {
    border: none;
    bottom: 0;
    box-shadow: none;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    object-fit: cover;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    object-position: 50% 72%;
}

.menu_icon,
.menu_close {
    border: 1px solid var(--tile_two);
    padding: 5px 12px;
    border-radius: 4px;
    height: 35px;
    display: none;
}

.menuline {
    width: 25px;
    height: 2px;
    background: var(--tile_two);
}

.menu_close {
    padding: 5px 16px;
    line-height: 0px;
    font-size: 18px;
}

ul {
    list-style: none;
}

header {
    height: var(--headerheight);
}

.logo {
    margin-top: 8px;
    height: var(--logo_height);
}

.menu_list li a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: var(--menu_fontsize);
}

.menu_list {
    gap: 15px;
}

.menu_list li {
    margin: auto 5px;
}

.mainhead {
    font-size: var(--h1_fontsize);
    line-height: 1.3em;
    margin-bottom: 10px;
}

.tagline {
    font-size: var(--tagline_fontsize);
}

.banner_img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

.banner {
    flex-basis: 65%;
    padding-left: .44em;
    padding-right: .3em;
}

.banner_cover {
    flex: 1;
}

.spacer {
    width: 100%;
    height: var(--spc_height);
}

#center_block {
    width: var(--center_block) !important;
}

.banner_block {
    gap: 2em;
    height: fit-content;
    margin-bottom: 2em;
}

.icon {
    width: 72px;
    height: auto;
}

.icon_box {
    gap: 2.2em;
    margin-bottom: 1.7em;
}

.icon_box>.block_column {
    padding-left: .67em;
    padding-right: .67em;
}

.sample_img {
    margin-top: 1.7em;
    gap: 1em;
}

.sample_img figure,
.sample_img img {
    max-width: clamp(150px,100%,324px);
    border-radius: 16px;
}

.sample_img figure {
    margin-left: auto;
    margin-right: auto;
}

.li_margin_grp li {
    margin-top: 10px;
}

.li_margin_grp ul {
    margin: 0px 0px 30px 0px;
    list-style-type: Disc;
    padding-left: 20px;
}

.price_box {
    gap: 2em;
}

.pricecard {
    background: var(--dark_bgtext);
    padding: 3em 1.5rem;
}

.pricehead h3 {
    font-size: var(--pricehead_h1_fontsize);
    line-height: 3.7rem;
}

.price {
    line-height: 6rem;
}

.price .priceval {
    font-size: var(--priceval_fontsize);
    font-weight: 600;
    padding: 0px 5px;
}

.price .pricetype {
    font-size: var(--pricetype_fontsize);
    font-weight: 600;
}

.pricebody li {
    line-height: 1.4rem;
    margin-bottom: 1rem;
}

.pricebody {
    margin-bottom: 2rem;
}

.inr {
    display: none;
}

.tutorcard {
    background: var(--dark_bgtext);
    color: var(--text-color);
    padding: 1.2rem !important;
    width: clamp(200px, 30%, 300px);
    gap: 1rem;
}

.tutor_head {
    font-weight: bold;
}

.tutor_body {
    height: 70px;
}

.tutor_body img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
}

.wrap {
    flex-wrap: wrap;
}

#faq .qa {
    width: 100%;
}

#faq h4 {
    margin-bottom: 0;
}

#footer .container>.block {
    justify-content: space-between;
}

#footer h4 {
    opacity: 0.6;
    margin-bottom: .8rem;
}

#footer p {
    margin-bottom: 0;
    margin-top: 1.2rem;
    width: 100%;
    text-align: center;
    font-size: .85rem;
}

.footwats {
    width: 22px;
    height: 22px;
    background: var(--dark_bgtext);
    mask: url(/images/whatsapp.svg) no-repeat center / 100%;
    -webkit-mask: url(/images/whatsapp.svg) no-repeat center / 100%;
    margin-right: 10px;
}

.footmail {
    width: 22px;
    height: 22px;
    background: var(--dark_bgtext);
    mask: url(/images/mail.svg) no-repeat center / 100%;
    -webkit-mask: url(/images/mail.svg) no-repeat center / 100%;
    margin-right: 10px;
}


@media screen and (max-width: 991px) {
    :root {
        --h1_fontsize: clamp(2.78rem, 3.2vw + 1rem, 4.1rem);
        --container: clamp(760px, 90%, 820px);
    }
}

@media screen and (max-width: 767px) {
    :root {
        --h1_fontsize: clamp(2rem, 3vw + 1rem, 3rem);
        --menu_fontsize: clamp(.8rem, .7vw + 0.5rem, 1rem);
        --container: clamp(400px, 90%, 691px);
    }

    .menu_icon,
    .menu_close {
        display: flex;
    }

    .menu_list {
        width: clamp(200px, 35%, 400px);
        height: 100%;
        background: var(--tile_one);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        display: none;
        flex-direction: column;
        gap: 3px;
        padding: 20px 0px;
    }
    .menu_icon.active::before{
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .menu_list li {
        margin: 0px;
    }

    .menu_list li a {
        display: block;
        padding: 5px 10px 5px 20px;
    }

    .menu_close{
        position: absolute;
        bottom: 2rem;
        right: 1rem;
    }

    .inner_container {
        min-height: unset;
    }

    .banner_block{
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .row{
        overflow-x: hidden;
    }

    .banner {
        text-align: center;
        width: clamp(300px, 90%, 450px);
        z-index: 1;
    }

    .banner_cover {
        position: absolute;
        width: 250px;
        transform: rotateY(180deg);
        left: -120px;
        top: 30px;
        filter: brightness(0.5);
        mix-blend-mode: screen;
    }

    .icon_box{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .highlights>.block_column {
        width: 170px;
    }

    .price_box {
        flex-wrap: wrap;
    } 

    .faqs .block{
        flex-direction: column;
    }
    .faqs{
        gap: 1.5rem;
    }

}
@media screen and (max-width: 480px) {
    :root {
        --h1_fontsize: clamp(1.7rem, 3vw + .7rem, 2.5rem);
        --h2_fontsize: clamp(1.6rem, 2.2vw + .7rem, 2rem);
        --headerheight:75px;
        --pricehead_h1_fontsize: clamp(1.8rem, 2.3vw + 1rem, 2.2rem);
    }
        
    #footer div.block:nth-of-type(2){
        gap: 1.5rem;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .pricehead h3 {
        line-height: 2.5rem;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --h1_fontsize: clamp(1.5rem, 3vw + .7rem, 2.5rem);
        --container: clamp(310px, 90%, 500px);
        --bodylineheight: 1.3em;
    }

    .sample_img img {
        max-width: clamp(100px, 100%, 200px);
        border-radius: 16px;
    }
}