.mont {
    font-family: 'Montserrat', sans-serif;
}

@import url('https://fonts.cdnfonts.com/css/segoe-ui-4');
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');


.mh-alert {
    padding: 0px 10px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mh-alert-x {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 10px;

}

.mh-message {
    background-color: #842990;
}

.alert-dismiss {
    font-weight: 200;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

a {
    cursor: pointer;
}

.container {
    margin-top: 0px;
}

.banner_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5px;
    padding: 0px 6%;
    position: absolute;
    top: 200px;
    width: 100%;
    max-height: 600px;
}

.banner_content.gif {
    position: static;
}

.sub-header {
    /* margin-top: 250px; */
}

.sub-header.gif {
    /* margin-top:5px; */
}

img {
    width: 100%;
}

.banner_right_img>img {
    /* max-width: 75%; */
    max-height: 600px;
    max-width: 610px;
}

.header_container {
    width: 100%;
    height: 650px;
    margin-top: 100px;
    margin-bottom: 10px;
}

.header_container.inner_container {
    height: 130px;
}

.header_img_container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 10%;
}

.left_img {
    height: 400px;
    width: 100%;
}

.banner_right_img {
    text-align: right;
}

.left_img>div {
    /* height: 100px;
    width:100px;
    background-size: contain;
    display:inline-block; */
    height: 100%;
    width: 100%;
    background-size: contain;
    display: inline-block;
    margin-top: 50px;
}

.left_img>div.icon_m:first-child {
    background: url("/static/images/DonutIcon-1-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    animation: icon1 linear 10s infinite alternate;
    left: 60px;
    top: 44%;
    position: absolute;
}

.left_img>div.icon_m:nth-child(2) {
    background: url("/static/images/FemaleIcon-2-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    animation: icon2 linear 10s infinite alternate;
    position: absolute;
    left: 12%;
    top: 25%;
}

.left_img>div.icon_m:nth-child(3) {
    background: url("/static/images/FemaleIcon-1-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    position: absolute;
    left: 24%;
    top: 44%;
    animation: icon3 linear 10s infinite alternate;
}

.left_img>div.icon_m:nth-child(4) {
    background: url("/static/images/MaleIcon-2-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    position: absolute;
    left: 37%;
    top: 280px;
    animation: icon4 linear 10s infinite alternate;
}

.left_img>div.icon_m:nth-child(5) {
    background: url("/static/images/MaleIcon-1-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    position: absolute;
    left: 70%;
    top: 350px;
    animation: icon5 linear 10s infinite alternate;
}

.left_img>div.icon_m:nth-child(6) {
    background: url("/static/images/TriangleIcon-1-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    position: absolute;
    left: 45%;
    top: 197px;
    animation: icon5 linear 10s infinite alternate;
}

.left_img>div.icon_m:nth-child(7) {
    background: url("/static/images/DonutIcon-2-topbanner.png") no-repeat;
    height: 100px;
    width: 100px;
    background-size: contain;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 390px;
    animation: icon1 linear 10s infinite alternate;
    z-index: -1;
}

@keyframes icon1 {

    0% {
        transform: scaleX(1)
    }

    25% {
        transform: scaleX(1.1)
    }

    50% {
        transform: scaleX(1.2)
    }

    75% {
        transform: scaleX(1.1)
    }

    100% {
        transform: scaleX(1)
    }

}

@keyframes icon2 {

    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(60deg)
    }

    50% {
        transform: rotate(90deg)
    }

    75% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }

}

@keyframes icon3 {

    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(60deg)
    }

    50% {
        transform: rotate(90deg)
    }

    75% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }

}

@keyframes icon4 {

    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(60deg)
    }

    50% {
        transform: rotate(90deg)
    }

    75% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }

}

@keyframes icon5 {

    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(60deg)
    }

    50% {
        transform: rotate(90deg)
    }

    75% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }

}

.right_img {
    background: url("/static/images/right_girl_bg.png") no-repeat;
    height: 100%;
    background-size: contain;
    width: 48%;
    background-position: 100% 100%;
}

.icon_play {
    background: url("/static/images/PlayButton.png");
    width: 100px;
    height: 100px;
    background-size: contain;
    position: absolute;
    right: 17%;
    top: 35%;
}

.mh-content {
    padding: 10px 6%;
    /* max-width: 1580px; */
    margin: 0 auto;
}

.read_more {
    display: flex;
    justify-content: flex-end;
}

.slider-box-container {
    background-color: #006eb9;
    color: #fff;
}

.slider-box-container.inner_container {
    margin-top: 20px;
}

.slider_main_header {
    width: 100%;
    margin: 0 auto;
    font-size: 2rem;
}

.slider_content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.slider_cards {
    min-width: 235px;
    max-width: 235px;
    box-shadow: 0px 3px 6px #0a0a0a38;
    border-radius: 10px;
    width: 250px;
}

.slider_card_header {
    height: 150px;
    border-radius: 10px 10px 0px 0px;
}

.slider_card_header>img {
    height: 150px;
    max-height: 150px;
    width: 100%;
}

.slider_preview {
    background-color: purple;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0px 5px 5px 0px;
    position: absolute;
    margin-top: -29px;
}

.mh-caret-right {
    background-image: url("/static/images/preview.png");
    width: 13px;
    height: 11px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider_card_body {
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
    max-height: 175px;
}

.slider_card_body>h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 70px;
}

.enroll_now_a {
    background-color: #842990;
    padding: 5px 10px;
    color: #fff !important;
    border-radius: 4px;
}

.slider_card_body>p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
}

.slider_card_footer {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px 0px 10px 10px;
    background-color: #fff;
    color: #000;
}

.mh-timer {
    background-image: url("/static/gradfirst-theme-v2/images/Icon-Duration.a3d8bdd904d5.png");
    width: 15px;
    height: 15px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
}

.cards-section-container {
    background-color: #842990;
}

.purple-font {
    color: #842990;
}

.card_section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 90px 10% 30px 10% !important;
}

.cards_container {
    /* width: 350px;
    height: 260px;
    max-width: 350px;
    border-radius: 15px;
    color:#fff;
    margin-bottom: 40px;
    box-shadow:4px 4px 6px 0px #242424b8; */
    width: 300px;
    height: 300px;
    max-width: 265px;
    border-radius: 15px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 80px;

}

.cards_bg_img {
    background-image: url("/static/images/deisgn_box_back2.png");
    /* background-repeat: no-repeat;
    background-size: 105%;
    height: 100%;
    border-radius: 15px; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 28px;
}

.card_icon {
    /* background-color: #fff; */
    padding: 10px;
    border-radius: 50px;
    /* width: 90px; */
    position: absolute;
    margin-top: -80px;
    margin-left: 50px;
    text-align: center;
    /* box-shadow: 0px 3px 12px #2e2e2ec9; */
}

.card_icon>img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    box-shadow: 5px 3px 12px #2e2e2ec9;
}

.card_text {
    padding: 80px 25px 40px 25px;
    text-align: center;
}

.card_info {
    padding: 0px 25px 0px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card_info>a>img {
    width: 25px !important;
}

.card_info>a {
    color: #fff !important;
}

.card_info>a:hover {
    text-decoration: underline;
}

.left_timer>span,
.right_price>span {
    font-size: 15px;
}

.right_price>span {
    font-weight: 600;
}

.right_price {
    margin-top: 10px;
}

.sub-footer-container {
    background-color: #000;
    color: #fff;
}

.sub-footer {
    display: grid;
    gap: 20px;
    justify-content: space-between;
    /*align-items: center;*/
    grid-template-columns: repeat(auto-fit, minmax(130px, 220px));
    padding: 30px 0px 0px 0px;
}

.sub-footer>ul>li {
    height: 35px;
    list-style: none;
}

.sub-footer>ul>li>a:hover {
    text-decoration: underline;
}

.text-input {
    min-width: 360px;
    /* min-width: calc(100% + 13vw); */
}

a {
    border: none;
    background: none;
    text-decoration: none;
}

.with_nav {
    margin-top: 190px;
}

.btn_input {
    border: none;
    outline: none;
    color: #000;
    padding: 10px;
    width: 70%;
    font-size: 16px;
}

.btn {
    border: none;
    outline: none;
    background-color: #FB6603;
    padding: 10px;
    color: #fff;
    /* border-radius: 4px; */
}

.btn_sub {
    margin-left: -10px;
    width: 30%;
    font-size: 16px;
}

.sub-footer>ul>li>a>img {
    margin-top: -10px;
    max-width: 115px;
}

footer>.mh-content {
    /* text-align: center; */
    font-size: 18px;
}

select {
    color: #fff;
    background-color: #000;
    padding: 5px;
    border-radius: 4px;
    border: 2px solid #878787;
    width: 100px;
}

.icons_container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.icons {
    width: 25px !important;
    height: 25px;
    background-size: contain;
    list-style-type: none;
    cursor: pointer;
}

.fb {
    background: url("/static/gradfirst-theme-v2/images/FB-icon.620668977847.png") no-repeat;
    background-size: contain
}

.tw {
    background: url("/static/gradfirst-theme-v2/images/Twitter-icon.f6370e70a21d.png") no-repeat;
    background-size: contain
}

.yt {
    background: url("/static/gradfirst-theme-v2/images/Youtube-icon.7194ed229827.png") no-repeat;
    background-size: contain
}

.ig {
    background: url("/static/gradfirst-theme-v2/images/Instagram-icon.5e38de4dc244.png") no-repeat;
    background-size: contain
}

.li {
    background: url("/static/gradfirst-theme-v2/images/Linkedin.c93b9ba323b6.png") no-repeat;
    background-size: contain
}

.wa {
    background: url("/static/images/whatsapp-icon.png") no-repeat;
    background-size: contain
}

footer {
    background-color: #3d3c3c;
    color: #fff;
    padding: 5px;
    text-align: left;
}

.header_img_container_small {
    display: none;
}

.banner_left_text {
    position: absolute;
    z-index: 2;
    top: 250px;
    width: 45%;
    /* left: 10%; */
}

.card_text>h2 {
    height: 25px;
    font-size: 20px;
}

.card_text>p {
    height: 38px;
}

.banner_left_text>button {
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 17px;
    box-shadow: 1px 1px 4px #54535380;
}

.banner_menu {
    position: absolute;
    top: 30px;
    /* left:10%; */
    width: 100%;
    padding: 10px 6% !important;
}

.banner_menu>div {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.left_icon>img {
    /* height: 170px;
    width: 115px; */
    width: auto;
}

.right_icons {
    top: 10px;

    right: 5%;
}

.search {
    border: 1px solid #ccc;
    background: #ffffff66;
    color: #030000;
    padding: 11px;
    border-radius: 6px;
    box-shadow: 2px 1px 3px 0px #dfdbdb;
    width: 60vw;
    max-width: 550px;
}

.search_icon {
    margin-left: -22px;
    z-index: 3;
    position: absolute;
    margin-top: 11px;
}

button .search_icon {
    margin-left: -29px;
    z-index: 3;
    position: absolute;
    margin-top: -10px;
    font-size: 16px;
}

body.login-and-register button .search_icon {
    margin-top: 10px;
}

body.login-and-register .search {
    font: inherit;
}

.search_container form button {
    appearance: auto;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    box-sizing: border-box;
    background-color: -internal-light-dark(rgb(239, 239, 239), rgb(59, 59, 59));
    margin: 0em;
    padding: 0;
    border-width: 0;
    border-style: outset;
}

.menu_container {
    /* margin-top: 5%;
    text-align: right; */
}

.menu_course {
    background: none;
    color: #030000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 17px;
    margin-right: 15px;
}

.menu_course.active {
    color: #006eb9;
}

.menu_login {
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 30px;
    font-size: 17px;
    box-shadow: 1px 1px 4px #54535380;
}


.grid_2 {
    display: grid;
    grid-template-columns: 270px auto;
    column-gap: 20px;
    /* margin: 0px 5%; */
}

#sidebar {
    grid-row: 2;
    grid-column: 1;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
}

#sidebar {
    transition: left 0.4s cubic-bezier(0.25, 1, 0.25, 1), width 0.4s cubic-bezier(0.25, 1, 0.25, 1);
    z-index: 10;
}

#content {
    grid-row: 2;
    grid-column: 2;
}

#content {
    transition: left 0.4s cubic-bezier(0.25, 1, 0.25, 1);
}

.filter_content:first-child {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-radius: 4px 4px 0px 0px;
}

.filter_content:last-child {
    border-bottom: 1px solid #fff;
    border-radius: 0px 0px 4px 4px;
}

.filter_content {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.filter_header>h3 {
    padding: 10px 15px;
}

.filter_body {
    padding: 10px 15px 25px;
}


.popular_content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.popular_content>div {
    border: 1px solid #3d3c3c;
    padding: 10px 30px;
    color: #006eb9;
    cursor: pointer;
    width: 220px;
    height: 60px;
    border-radius: 4px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    display: flex;
}

.popular_content>div:hover {
    background-color: #ccc;
}

.popular_content>div>span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.login_box_container {
    max-width: 500px;
    width: 90%;
    margin: auto;
    margin-top: 10%;
    margin-bottom: 20%;
}

.login_box {
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 4px 12px #000;
}

.login_header {
    color: #000;
}

.login_form_control {
    width: 100%;
    padding: 10px;
    border-radius: 0px;
    border: 1px solid #ada3a3;
    margin: 10px 0px;
    font-weight: 500;
}

.btn.login_form_control {
    width: 100%;
    padding: 10px;
    border-radius: 0px;
    margin: 10px 0px;
    font-weight: 500;
}

.login_misc {
    display: flex;
    justify-content: space-between;
    color: #3d3c3c;
}

.remember_me>.checkbox_container {
    color: #3d3c3c;
    font-size: 13px;
}

.remember_me>.checkbox_container>.checkmark {
    background-color: #eee0;
    border: 1px solid #242424;
    height: 18px;
    width: 18px;
}

.remember_me>.checkbox_container>.checkmark:after {
    left: 5px;
    top: 2px;
    width: 3px;
    height: 8px;
}

button {
    cursor: pointer;
}

.forgot_pwd>a {
    font-size: 13px;
    color: #3d3c3c;
    cursor: pointer;
    font-weight: 300;
}

.offer_perc {
    color: #fdaf40;
}

.offer_code_new {
    color: #000;
    background-color: #fdaf40;
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px dashed #fff;
    font-size: 20px;
    font-weight: bolder;
    width: 140px;
    cursor: copy;
}

input:focus {
    outline: none;
}

.login_social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.login_social>img {
    height: 50px;
    width: 150px;
}

a.black {
    cursor: pointer;
}

a.black:hover {
    text-decoration: underline;
}

.passTxt {
    position: absolute;
    margin-top: 20px;
    margin-left: -25px;
}

.course_menu_side {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.course_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.course_menu>li {
    list-style: none;
    cursor: pointer;
}

.course_menu>li:hover {
    color: #030000;
}

.course_menu>li.active {
    color: #842990;
}

.img-avatar {
    position: absolute;
    margin-left: 10px;
    width: 35px;
    height: 35px;
}

.course_start_container {
    display: flex;
    gap: 30px;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.module_header {
    color: #006eb9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.module_body,
.module_container {
    width: 100%;
    max-width: 400px;
    min-width: 400px;
    height: 100%;
    /* border: 1px solid #ccc; */
    /* padding: 10px; */
    margin-bottom: 20px;
}

.module_toggler,
.module__header_toggler {
    color: #919191;
}

.module_video {
    background: url("/static/images/CourseStartPage/Icon-1.png") no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.module_body_box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #ccc;
    padding: 10px;
}

.center_box_container {
    display: none;
}

.course_video_container {
    min-width: 500px;
    min-height: 300px;
}

.course_video_container>a {
    float: right;
    color: #006eb9;
    font-weight: bold;
}

video {
    height: 100%;
    width: 100%;
}

.faculty_info {
    margin: 20px 0px;
}

.faculty_info>img {
    width: 120px;
    height: 120px
}

.courseP {
    max-width: 400px;
}

.non_dash {
    max-width: 1200px;
    margin: 0 auto;
}

.right_video {
    position: absolute;
    z-index: 3;
    right: 8%;
    /* border: 1px solid #8e8e8e; */
    top: 380px;
}

.video_container {
    height: 179px;
    width: 300px;
}

.preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(0deg, rgb(140 140 140 / 30%), rgb(111 111 111 / 30%)), url("/static/images/Corsecardimage-6.png") no-repeat;
    background-size: cover;

    border: 1px solid #8e8e8e;
}

.mt30 {
    margin-top: 30px !important;
}

.pt30 {
    padding-top: 30px;
}

.cart_options {
    margin-bottom: 20px;
    border: 1px solid #8e8e8e;
}

.mt50 {
    margin-top: 50px;
}

.code_apply {
    display: flex;
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}

.code_apply>input {
    border-top: 1px solid #8e8e8e;
    border-right: none;
    border-bottom: 1px solid #8e8e8e;
    border-left: 1px solid #8e8e8e;
    outline: none;
    padding: 5px;
    width: 90%;
}

.btn-height {
    height: 30px;
}

.mh-btn {
    border: none;
    outline: none;
    padding: 5px 10px;
}

.cart_options>button {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    height: 35px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.db {
    display: block !important;
}

.apply {
    background-color: #030000;
    color: #fff;
}

.single_course_box {
    margin-bottom: 30px;
}

.single_box_header,
.single_box_body {
    padding: 10px
}

.single_box_header {
    border: 1px solid #ccc;
}

.single_box_body {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.single_box_body>h3 {
    font-weight: 400;
}

.single_box_header {
    background-color: #006eb9;
    color: #fff;
}

.learning_list>li {
    list-style: none;
    color: #030000;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Customize the label (the container) */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 200;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee0;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked~.checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #006eb9;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.course_card_container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit,minmax(100px, 235px) ); */
    grid-template-columns: 1fr;
    column-gap: 10px;
    row-gap: 20px;
}

.course_card_container .slider_preview {
    margin-left: -235px;
    margin-top: 120px;
}


.pagination {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 10px;
    text-decoration: none;
    transition: background-color .3s;

    color: #fff;
}

.pagination a.active {
    text-decoration: underline;
    font-size: 18px;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}


.header_logo {
    width: 100%;

}

.slider_cards_f {
    min-width: 255px;
    max-width: 255px;
    /* box-shadow: 0px 3px 6px #0a0a0a38; */
    border-radius: 10px;
    margin: 0 auto;
}

.slider_cards:hover {
    /* box-shadow: 0px 3px 12px #ccc; */
}

/* Top nav */
nav {
    background: #fff;
    padding: 10px 6% 0px 6%;
    box-shadow: -4px -7px 16px #02394e3d;
    transition: top 0.3s;
    position: sticky;
    z-index: 2;

}

.fixed_container {
    background: #006eb9 !important;
    width: 100%;
    height: 650px;
    margin-bottom: 10px;
}

.fixed_container.inner_container {
    height: 100px;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    transition: top 0.3s;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    /* flex-wrap: wrap; */
}

.nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    /* flex-wrap: wrap; */
}

.mobile_opener {
    display: none;
}

.menu_2>li,
.menu>li {
    list-style-type: none;
}

.search_container {
    text-align: right;
}

.menu_2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.menu_2>li:nth-child(1),
.menu_2>li:nth-child(2),
.menu_2>li:nth-child(3) {
    align-self: flex-end;
}

.banner_left_text_v>button {
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 17px;
    box-shadow: 1px 1px 4px #54535380;
}

.banner_left_text_v>p {
    font-size: 1rem;
}

.gf_bg {
    background: url("/static/images/bg_gif.gif") no-repeat;
}

.banner_content.gif {
    background: url("/static/images/Animated_Icon_BG.gif") no-repeat center center;
    background-size: cover;
}

.newsletter {
    /*max-width: 550px;*/
    /* padding-bottom: 30px; */
    padding-bottom: 0px;
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    ;
    /* margin: 0 auto;  */
}

.newsletter>p {
    text-align: left;
    margin-bottom: 5px;
    font-size: 17px;
}


.video-container {
    padding: 0 0;
    width: 100%;
    position: relative;
}

#video {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.FontRed {
    color: red;
}

.strike {
    text-decoration: line-through;
}

.menu_2>li>a>img {
    vertical-align: middle;
}


/* dropdown menu */

.dropbtn {
    background-color: transparent;
    color: #006eb9;
    font-weight: bold;
    padding: 0 5px;
    font-size: 16px;
    border: none;
}

.dropbtn>a {
    background-color: transparent;
    color: #006eb9;
    font-weight: bold;
    font-size: 16px;
    border: none;
}


.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    width: auto;
    z-index: 100;
    /* max-height: 60vh; */
    overflow: auto;
    border-bottom: 9px solid #006eb9;
    /* margin-top: 10px;   */
}

.dropdown-content-mobile {
    display: none;
    position: relative;
    min-width: 160px;
    width: auto;
    z-index: 100;
    /* max-height: 60vh; */
    overflow: auto;
    border-bottom: 9px solid #006eb9;
    /* margin-top: 10px;   */
}

.dropdown-content a {
    color: black;

    text-decoration: none;
    display: block;
}

.dropdown-content-mobile a {
    color: black;

    text-decoration: none;
    display: block;
}

.dropdown-content li:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown:hover .dropbtn {
    background-color: transparent;
}

.dropdown_menu_container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: flex-start;
    /*align-items: center;*/

    background-color: #fffffff0;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    /* gap: 10px; */
}

.dropdown-content-mobile .dropdown-menu {
    max-width: 250px;
    width: 100%;
}

.dropdown-content-mobile .dropdown_menu_container {
    max-height: 60vh;
    overflow: auto;
}

.dropdown-menu {
    box-shadow: -4px 1px 9px 0px #b1b1b12e;
    min-width: 225px;
    max-width: 225px;
}

.dropdown_top {
    margin-top: 10px;
}

.dropdown-menu>li {
    list-style-type: none;
    padding: 12px 16px;
    height: 59px;
}

.dropdown-menu>li:first-child>a {
    color: #842990;
    font-weight: bold;
}

.dropdown-menu>li:first-child {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 59px;
}

.dropdown-menu>li:last-child {
    height: 40px;
}

.dropdown-menu>li>a {
    color: #006eb9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* height: 47px; */
    font-size: 14px;
}

.dropdown-menu>li {
    border-bottom: 1px solid #ededed;
}

.popOver {
    padding: 10px;
    background-color: #000;
    color: #fff;
    position: absolute;
    left: 45%;
    top: -50px;
    border-radius: 50px;
}

.popOver.show {
    animation-name: popover;
    animation-duration: 4s;
}


@keyframes popover {
    0% {
        top: 10px;
    }

    50% {
        top: 30px;
    }

    75% {
        top: 20px;
    }

    100% {
        top: 0px;
    }
}

.show {
    display: block;
}

.header_max {
    padding: 10px 6% 0px 6%;
}

nav.header_max_nopadding {
    padding: 0;
}

.banner_max,
.header_max,
.content_max,
.footer_max {
    max-width: 1920px;
    margin: auto;
}

.mh-content.content_max,
.mh-content.footer_max {
    padding-bottom: 10px !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
}

.register_text,
.register_text>a {
    font-size: 15px;
    color: #000;
}

.register_text>a {
    font-size: 15px;
    color: #006eb9;
}

.register_text>a:hover {
    text-decoration: underline !important;
}


.read_me {
    padding: 10px;
    background: red;
    position: sticky;
    z-index: 30;
    top: 0px;
}

#phone {
    border: 1px solid #dfd8d8;
    outline: none;
    padding: 0px 70px;
    border-radius: 8px;
    width: 100%;
    flex-basis: 100%;
    transition: all 0.5s ease;
    height: 37px;
}

#phone:focus {
    box-shadow: 1px 1px 8px #ccc;
}

.iti--allow-dropdown {
    width: 100%;
}

.hide {
    display: none;
}

#valid-msg,
.valid-msg {
    color: green;
}

#error-msg,
.error-msg {
    color: red;
}

.font14 {
    font-size: 14px;
}

button:disabled {
    cursor: not-allowed;
    background-color: grey;
}



.banner_content.wrapper_banner {
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: center;
    justify-content: center;
}

.wrapper_banner_container {
    width: 80%;
    margin: auto;
    padding: 80px 20px;
}

.wrapper_banner_container>h1 {
    text-align: center;
    margin-bottom: 20px;
}

.white-bg {
    background: #fff !important;
    color: #000;
}

.mastermind_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 450px));
    justify-content: center;
    align-content: center;
    gap: 50px;
    margin-top: 30px;
}

img.masterming_img {
    max-width: 300px;
    height: 360px;
}

img.linkedin {
    max-width: 30px;
}

.master_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.master_info_p {
    max-width: 450px;
    margin: auto;
    text-align: justify;
}

.course_off_img {
    display: flex;
    gap: 20px;
    margin: 20px;
    justify-content: center;
}

.course_off_img>img {
    width: 150px;
    height: 150px;
}

.newsletter_ccont {
    display: grid;
    grid-template-columns: 6fr 1fr;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;

}

.newsletter_ccont>div>a>img {
    max-width: max-content;
    justify-self: flex-end;
}

.newsletter_ccont>a {
    justify-self: flex-end;
}

.slider_card_body>h3.dName {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 70px;
}

.slider_cards_f.dName {
    box-shadow: 0px 3px 6px #0a0a0a38;
}

p.dName {
    height: 57px;
}

h3.dName {
    font-size: 1.2rem !important;
}

.purple-bg {
    background-color: #842990;
}

.black {
    color: #000 !important;
}

.sub-footer>ul>li>a {
    color: #fff !important;
}

.drInfo {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
}

.drLinkedInHere {
    float: right;
}

.sub-footer>ul:last-child {
    justify-self: auto;
}

.slider_card_footer>a {
    color: #000;
}

.slider_card_footer>a:hover {
    text-decoration: underline;
}

.slider_card_footer>a>img {
    width: 25px !important;
}

/* Start -- Email template */

.email_template_container {
    padding: 10px 5%;
    background-color: #e3e0e0;
}

.header_template {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.email_template_container a,
.color-blue {
    color: #006eb9;
}

.header_template>a:hover {
    text-decoration: underline;
}

.center_template {
    background-color: #fff;
    padding: 30px 40px;
}

.color-grey {
    color: #545252;
}

.email_template_container a.menu_login {
    max-width: 350px;
    display: block;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.email_template_container_2 {
    background-color: #f9f9f9;
}


.mh-email-footer {
    background-color: #030000;
}

.text-left {
    text-align: left;
}

.email_template_container_2 .mh-content2 {
    width: 50%;
    margin: 0 auto;
}

.grid_half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer_template>div {
    flex-wrap: wrap;
    gap: 10px;
}

/* End -- Email template */


/*Brochures start*/
.brochures-div.container {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.banner_max,
.header_max,
.content_max,
.footer_max {
    max-width: 1930px;
    margin: auto;
}

.center_gradient_banner {
    background-image: linear-gradient(to right, #842990 10%, #006eb9 90%);
    padding: 40px;
    border-radius: 50px 50px 0px 120px;
    color: #fff;
    margin: 0 auto;
    margin-top: 50px;
}

.brochures-div h1 {
    text-align: left;
    font-weight: bold;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
}

.brochures-div h1.active {
    color: black;
}

.brochures-div .mh-content.first {
    padding-top: 0px !important;
}

.center_gradient_banner.mw960 {
    max-width: 960px;
    border-radius: 20px 20px 0px 60px;
}

.master_grid_banner {
    background-color: #006eb9;
    padding: 30px 16% 30px 20%;
    max-width: 100%;
    height: auto;
    margin: 220px 0px 20px 0px;
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
}

.master_grid_banner>div {
    max-width: 350px;
}

.content_padding_gradient {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    word-break: break-word;
}

.footer_blue_banner {
    background-color: #006eb9;
    height: 100px;
}

.faq_table {
    width: 100%;
    margin-bottom: 30px;
}

.header_bar_faq {
    background-color: grey;
    height: 50px;
    box-shadow: 1px 1px 2px 0px #ccc;
    /* width:100%; */
    z-index: 2;
    margin-bottom: 150px;
    position: absolute;
}

.faq_body_content {
    display: grid;
    grid-template-columns: 0.3fr 1.7fr;
    gap: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid grey;
    border-radius: 15px;
}

.faq_table>div>p {
    /* border-right: 1px solid #000; */
    text-align: center;
    background-color: #006eb9;
    /* height:100%; */
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 35px 10px;
}

.faq_table_header {

    color: #fff;
    border-bottom: none;
}

.faq_anchor {
    color: #006eb9;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
}

.faq_header_banner {
    background-color: #E6F0F9;
    display: grid;
    grid-template-columns: 0.3fr 1.7fr;
    padding: 10px;
    gap: 35px;
    box-shadow: 2px 2px 3px 0px #191a1aa1;
    z-index: 100;
    position: absolute;
    width: 100%;
    max-width: inherit;
    margin-top: -30px;
    font-weight: bold;
}

.page_under_construction_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column-reverse;
}

.faq_list_header_downloads>li {
    cursor: pointer;
}

.faq_list_header_downloads>li.faq_header h1::after {
    background: transparent;
}

.faq_list>li.faq_header h1.eventTab::after {
    display: none;
}

.faq_list_header_downloads>li.faq_header h1.active::after {
    content: "";
    position: relative;
    display: block;
    width: 70px;
    height: 3px;
    background: #006eb9;
    margin-top: 0px;
    left: 0px;
}

.faq_list_header_downloads>li h1 {
    color: #000;
}

.faq_list_header_downloads {
    display: flex;
    gap: 50px;
}

.downloads_container {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

.downloads_container:last-child {
    width: 95%;
}

.brochures-div ul.menu>li>a>img {
    max-width: 130px;
}

.brochures-div .p040 {
    padding: 0 40px;
}

.brochures-div .mb-20 {
    margin-bottom: 20px;
}

.faq_list_header_downloads {
    margin-top: 0px !important;
}

.download_cards_outer {
    border: 1px solid grey;
    border-radius: 0px 0px 25px 25px;
    height: 100%;
    background-color: #fff;
}

.download_cards_inner {
    padding: 25px 35px;
    max-width: 310px;
}

.download_cards_body>img {
    box-shadow: 0px 3px 12px #ccc;
}

.download_card_text_body {
    margin-top: 10px;
}

.download_card_text_body>h2 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 90px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.btn-download {
    border: none;
    padding: 10px;
    width: 100%;
    background-color: #006eb9;
    display: block;
    color: white !important;
    text-align: center;
    font-weight: bold !important;
}

.btn-download:hover,
.btn-download:focus {
    text-decoration: none;
}

.download_cards_footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.download_cards_footer>span {
    color: #842990;
    font-weight: 500;
}

.download_cards_footer>input {
    width: 100%;
    padding: 10px;
    border: 1px solid grey;
    box-shadow: none;
    border-radius: 0;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    font-size: 14px !important;
}

.download_cards_footer>input:hover,
.download_cards_footer>input:focus {
    box-shadow: none;
}

.download_cards_inner a:hover,
.download_cards_inner a:focus {
    text-decoration: none;
}

.btn-save-download {
    border: none;
    padding: 5px;
    width: 60%;
    background-color: #842990;
    display: block;
    color: white;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    background: #842990 !important;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-shadow: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    margin: 0 auto;
    margin-top: 15px;
}

.btn-save-download:hover,
.btn-save-download:focus {
    box-shadow: none;
}

.events_cards_outer {
    max-width: 400px;
    border: 1px solid grey;
    border-radius: 0px 0px 25px 25px;
    background-color: #fff;
}

.events_card_text_body {
    padding: 20px 30px;
}

.events_card_text_body a:hover,
.events_card_text_body a:focus {
    text-decoration: none;
}

.events_card_text_body h2 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    height: 145px;
}

.events_card_footer {
    padding: 0px 30px 20px 30px;
}

.events_list {
    display: flex;
    gap: 20px;
    align-items: center;
    /* flex-wrap: wrap;*/
    margin-bottom: 10px;
    padding: 0;
}

.events_list li h4 {
    font-size: 16px;
    font-weight: bold;
}

.event_icon {
    width: 32px;
    height: 35px;
}

.event_info_container {
    box-shadow: 0px 3px 12px #ccc;
}

.event_info_grid {
    border: 1px solid #ccc;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.event_info_text_container {
    padding: 20px;
}

.events_info_card_footer {
    margin-top: 30px;
}

.event_info_text_container>h1 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 145px;
    text-align: left;
}

.course_info_img>img {
    object-fit: fill;
    height: 100%;
}

.event_info_border {
    padding: 10px;
    background-color: #fff;
}

.event_info_para {
    padding: 30px;
}

.event_info_img_cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.event_img {
    position: relative;
    width: 250px;
}

.event_img:hover .download_overlay {
    display: block;
    background: rgba(0, 0, 0, .3);
}

.event_actions {
    position: absolute;
    width: 10%;
    right: 10px;
    bottom: 5px;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
    cursor: pointer;
}

.event_img:hover .event_actions {
    opacity: 1;
    cursor: pointer;
}

#brochure-form {
    text-align: center;
}

#brochure-form input {
    font-style: normal;
}

.w-form-done {
    color: green;
    padding-top: 10px;
    text-align: center;
}

.w-form-fail {
    color: red;
    padding-top: 10px;
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

#about-us h2 {
    color: #fff;
    font-weight: bold;
}

#about-us p,
#privacy p,
#tos p,
#cookie-policy p,
#author-details p {
    line-height: 19px;
}

#about-us ul {
    padding: 0;
}

#about-us h3,
#about-us h5,
#cookie-policy h3 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: bold;
    color: black;
}

#about-us h5 {
    font-size: 13px;
}

#about-us .purple {
    color: #842990;
}

.mt-30 {
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.master_grid_banner>div:nth-child(1) {
    max-width: 400px;
}

.master_grid_img {
    width: 300px;
    margin-top: -225px;
}

.white {
    color: #fff !important;
}

#faqs .first h1 {
    color: #fff;
}

#faqs h1 {
    color: black;
}

.faq_list>li.faq_header h1::after {
    content: "";
    position: relative;
    display: block;
    width: 55px;
    height: 0.7vw;
    background: #EE343B;
    margin-top: 0px;
    left: 0px;
}

.faq_container {
    max-width: inherit;
    width: 100%;
    margin: auto;
}

.faq_list {
    margin: 50px 0px 50px 0px;

}

.faq_list h3 {
    color: #4A4A4A;
    font-size: 1.26vw;
    font-weight: bold;
}

.faq_list>li:not(.faq_header) {
    list-style-type: none;
    color: #EE343B;
    margin-bottom: 5px;
    background-color: #F5F2F2;
    border-radius: 0px;
    padding: 20px 30px;
    transition: 0.3s ease-in-out;
}

.faq_list>li:last-child {
    margin-bottom: 0px;
}

.faq_list>li:not(.faq_header):hover {
    z-index: 2;
    transform: scaleY(1.1) scaleX(1.1);
    box-shadow: 0px 1px 11px 1px rgb(0 0 0 / 20%);
}

li {
    list-style-type: none;
}

.faq_list>li.faq_header {
    margin-bottom: 20px;
    background-color: transparent !important;

}

.faq_list>li.faq_header h1::after {
    content: "";
    position: relative;
    display: block;
    width: 40px;
    height: 3px;
    background: #EE343B;
    margin-top: 0px;
    left: 0px;
}

.faq_captions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    /* The rule below is implemented in most browsers by now */
    user-select: none;
}

.faq_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq_content>ul {
    color: #4A4A4A;
    /* margin-bottom:10px; */
    padding: 10px;
    line-height: 1.4em;

}

.faq_content>ul>li {
    color: #4A4A4A;
    /* margin-bottom:10px; */
    padding: 10px;
    line-height: 1.4em;
    display: flex;
}

.faq_content>ul>li>p {
    word-break: break-word;
}

.white-bg {
    background: #fff !important;
    color: #000;
}

#privacy h2,
#tos h2,
#cookie-policy h2 {
    color: black;
    font-weight: bold;
    padding-bottom: 10px;
    font-size: 24px;
}

#cookie-policy .first h1,
#tos .first h1 {
    color: #fff;
}

#cookie-policy h1,
#tos h1 {
    color: black;
}

#cookie-policy p+p,
#knowledge-resource p+p,
#contact-us p+p {
    padding: 0;
    margin: 0;
}

#knowledge-resource .faq_header_banner {
    background-color: #E6F0F9;
    display: grid;
    grid-template-columns: 0.3fr 1.7fr;
    padding: 10px 10px 10px 0px;
    gap: 35px;
    box-shadow: 2px 2px 3px 0px #191a1aa1;
    z-index: 100;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-top: -30px;
    top: 10px;
    font-weight: bold;
}

#knowledge-resource .faq_anchor {
    color: #006eb9;
    text-decoration: underline;
    margin-bottom: 5px;
    display: block;
}

.contact_us_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 105px;
    /*align-items: center;*/
    justify-content: center;
    margin-bottom: 30px;
}

.contact_card {
    box-shadow: unset;
    padding: 30px;
    border-radius: 0px;
    /*max-width: 350px;*/
    margin: 20px 10px 20px 0px;
    line-height: 1.5;
    background-color: #F5F2F2;
}

.contact_card a {
    color: #006ebd;
}


.contact_us_container {
    /* max-width: 500px; */
    margin: 0 auto;
    float: right;
    width: 100%;
    max-width: unset;
}

select {
    border: 1px solid #dfd8d8;
    background: #fff;
    color: #000;
    outline: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    flex-basis: 100%;
    transition: all 0.5s ease;
}

/* Customize the label (the container) */
.container_radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_radio:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container_radio input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container_radio input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container_radio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

#contact-us .center_gradient_banner {
    border-radius: 20px 20px 0px 60px;
}

#contact-us h3,
#contact-us h4 {
    color: black;
    font-weight: bold;
}

#contact-us h4 {
    font-size: 16px;
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.contact-form-container>input,
.contact-form-container>textarea {
    border: 1px solid #dfd8d8;
    outline: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    flex-basis: 100%;
    transition: all 0.5s ease;
    font-style: normal;
}

.contact-form-container label {
    font-style: normal;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.people_banner {
    background-color: #006eb9;
    /* background-color: #006eb9; */
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    gap: 20px;
    border-radius: 0 0 0 140px;
}

.people_banner.content_max.mh-content {
    padding-bottom: 0px !important;
}

.people_banner>div {
    margin-top: 50px;
}

.left_banner_people_content {
    color: #fff;
    max-width: 420px;
}

.db {
    display: block !important;
    width: 100%;
}

.right_banner_people_img {
    display: flex;
    justify-content: flex-end;
}

.right_banner_people_img>img {
    max-width: 500px;
    bottom: -50px;
    position: relative;
    z-index: 1;
}

.peopleInfoText {
    color: #3d3c3c;
    font-size: 1.2rem;
    font-weight: 500;
}

#author-details h2,
#author-details h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

#author-details h3 {
    font-size: 18px;
}

.slider_card_header_doctor {
    height: 150px;
    border-radius: 10px 10px 0px 0px;
}

.slider_card_header_doctor>img {
    height: 135px;
    max-height: 150px;
    width: 100%;
}

.partner_div {
    width: 50%;
    margin-left: 25%;
}

.spl {
    width: 49%;
    margin-left: 0%;
}

.before_newsletter {
    width: 33%;
}

.before_newsletter_inner {
    max-width: 550px
}

.before_newsletter_inner>span {
    float: left;
}

.offers_container {
    max-width: 500px;
    margin: 0 auto;
}

.mhpro_logo_container_footer {
    margin-top: 0%;
    justify-self: start;
    width: 190px;
}

@media screen and (min-width:960px) and (max-width:1100px) {
    .left_icon>a {
        margin-left: -8%;
    }
}

/* New css starts -- Kini */

.font50 {
    font-size: 50px;
}

.font40 {
    font-size: 40px;
}



.mt-50 {
    margin-top: 50px;
}

.font30 {
    font-size: 30px;
}

.fontBlack {
    color: #000;
}

.center_gradient_banner.full-banner {
    background-image: none;
    background-color: #242323 !important;
    border-radius: 0px !important;
    padding: 0px;
    height: 80px;
    color: #fff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.new_banner_left_text {
    margin: 0;
}

.misc_header_border_bottom::after {
    content: "";
    position: relative;
    display: block;
    width: 99px;
    height: 12px;
    background: #EE343B;
    margin-top: 0px;
    left: 0px;
}

.faq_body_content {

    grid-template-columns: 0.2fr 1.7fr !important;
    gap: 15px !important;
}

.faq_header_banner {
    position: static !important;
}

.faq_header_banner>p:nth-child(2) {
    text-align: center;
}

.faq_header_banner {
    border: 1px solid #707070;
    color: #707070;
    background-color: #fff;
    box-shadow: none;
    margin-bottom: 10px;
    max-width: inherit;
}

.faq_container {
    max-width: 62vw;

}

.faq_table_content>p {
    width: 85%;
}

.faq_table>div>p {
    background-color: #4A4A4A;
    width: 172px;
    height: 172px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.faq_table_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    font-size: 20px;
    line-height: initial;
}

.faq_table_content>p {
    color: #707070;
}

.faq_list_table {
    padding: 0px;
}

.know_base {
    font-size: 30px;
    color: #707070;
}

.faq_header>h1 {
    font-weight: bold !important;
    font-family: Montserrat !important;
    font-size: 50px;
}

.text-left {
    text-align: left !important;
}

.white-font {
    color: white !important;
}

.font24 {
    font-size: 24px;
}

.font20 {
    font-size: 20px;
}

.font30 {
    font-size: 30px;
}

.line-height {
    line-height: initial !important;
}



@font-face {
    font-family: "myfont";
    src: url("/static/gradfirst-theme-v2/fonts/Segoe-UI.9a2931180d6b.woff") format('woff');
}

.segoe_font {
    font-family: 'Segoe UI', sans-serif;
    font-size: 30px !important;
}

.callback_form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.form_content {
    margin-bottom: 10px;
}


.input-control {
    border: 1px solid #D2CDCD !important;
    border-radius: 6px !important;
    padding: 10px !important;
    color: #4A4A4A !important;
    font-size: 30px !important;
    width: 100% !important;
    height: 90px !important;
    box-shadow: none !important;
}

.input-control::placeholder {
    color: #4a4a4a;
}

.form_content select {
    border: 1px solid #D2CDCD !important;
    border-radius: 6px !important;
    padding: 10px !important;
    color: #4A4A4A !important;
    font-size: 30px !important;
    height: 90px !important;
    font-weight: 300;
}

.form_btn {
    border: none;
    outline: none;
    padding: 20px !important;
    color: #fff;
    border-radius: 0px;
    font-size: 40px;
    background-image: none !important;
    font-family: Montserrat;
}

.form_btn:hover {
    background-image: none !important;
}

.form_name {
    width: 100%;
}

.form_content select {
    width: 39%;
}

.form_code {
    width: 15%
}


.form_btn {
    width: 280px !important;
    background-color: #FB6603 !important;
    box-shadow: none !important;
}

.div_contact_grid_two {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.form_code_number {
    display: grid;
    gap: 10px;
    grid-template-columns: 0.5fr 1.5fr;
}

.form_code_number>div>label>select {
    width: 150px;
}


.select_custom {
    position: relative;
    /* min-width: 200px; */
}

.select_custom select {
    -webkit-appearance: none;
    padding: 7px 40px 7px 12px;
    width: 100%;
    height: 90px;
    border: 1px solid #D2CDCD;
    border-radius: 5px;
    background: transparent;
    box-shadow: 0 1px 3px -2px #9098a9;
    cursor: pointer;
    font-family: inherit;
    font-size: 30px;
    transition: all 150ms ease;
    color: #4A4A4A;
    /* max-width: 250px; */
}

.select_custom select:required:invalid {
    color: #4A4A4A;
}

.select_custom select option {
    color: #4A4A4A;
}

.select_custom select option[value=""][disabled] {
    display: none;
}

.select_custom select:focus {
    outline: none;
    border-color: #D2CDCD;
    /* box-shadow: 0 0 0 2px rgba(0,119,255,0.2); */
}

.filled_down_arrow {
    background-image: url("/static/gradfirst-theme-v2/images/filled_down_arrow.166b5f41c964.png");
    display: inline-block;
    opacity: 1;
    width: 26px;
    height: 20px;
    margin-left: -40px;
    margin-top: 38px;
    position: absolute;
    z-index: -1;
}

.search_container button .search_icon {
    margin-top: 10px;
}

.content-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
}

.mt-100 {
    margin-top: 100px;
}

.mb-20 {
    margin-bottom: 20px;
}



/* Brochures - Kini */

.brochures_misc_card {
    border: 1px solid #707070;
    width: 397px;
    height: 99%;
    border-radius: 33px;
    padding: 10px;

}

.brochures_misc_card_img {
    background-image: url("/static/images/bgs/Male/ Infertility/ -/ Masters_Page_01.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    height: 515px;
}

.Download_arrow {
    background-image: url("/static/images/icons/Union/ 1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 46px;
    width: 36px;
    display: inline-block;
}

.brochures_misc_card_button_content,
.brochures_misc_card_button_info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.owl-nav>button:active {
    box-shadow: none !important;
}

.owl-nav>button {
    box-shadow: none !important;
}

.brochures_misc_card_button_content>button {
    border: none;
    outline: none;
    display: flex;
    gap: 15px;
    color: #4A4A4A;
    background: none;
    box-shadow: none;
}

.brochures_misc_card_button_content>button:hover {
    background: none;
    box-shadow: none;
}

.brochures_misc_card_button_content>button:focus {
    background: none;
    box-shadow: none;
}

.brochures_misc_card_button_content>button:active {
    background: none;
    box-shadow: none;
}

.brochures_misc_card_button_content>button>span {
    font-size: 24px;
    color: #4A4A4A;
    display: inline-block;
    margin-top: 7px;
    text-shadow: none !important;
}

.brochures_misc_card_button_info {

    margin-top: 10px;
}

.brochures_misc_card_button_info>input {
    padding: 5px;
}

input,
textarea {
    font-style: normal !important;
    font-family: 'Montserrat';

}

.brochures_misc_card_button_info>button {
    border: none;
    outline: none;
    background-color: #EE343B !important;
    color: #fff;
    padding: 5px 8px;
    background: none;
    box-shadow: none;
    text-shadow: none !important;

}

.brochures_misc_card_button_info>button:hover {
    background-image: none !important;
    box-shadow: none;
    text-shadow: none !important;
}

.brochures_misc_card_button_info>button:focus {
    background-image: none !important;
    box-shadow: none;
    text-shadow: none !important;
}

.brochures_misc_card_button_info>button:active {
    background-image: none !important;
    box-shadow: none;
    text-shadow: none !important;
}


.brochures_misc_content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq_list_header_downloads>li.faq_header h1.active::after {
    width: 99px;
    height: 12px;
    background: #EE343B;
}

.events_cards_outer {
    border: none;
}

.lightGrey {
    color: #4A4A4A;

}


/* Referal - Kini */
.font65 {
    font-size: 65px;
}

.font80 {
    font-size: 80px;
}

.center_gradient_banner.full-banner.banner_ref_text {
    height: 100%;
    max-height: 250px;
}

.icons_grid_div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 100px;
    column-gap: 60px;
    justify-content: center;
}

.referral_icons_text_div {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    column-gap: 20px;
    row-gap: 60px;
    justify-content: center;
    align-items: center;
}

.referral_icons_text {
    font-size: 25px;
}

.referral_icons {
    width: 115px;
    height: 95px;
    object-fit: contain;
}

.red-text {
    color: #EE343B !important
}

.faq_list>li {
    background-color: fa-arrow-down#F5F2F2 !important;
    margin-bottom: 30px !important;
}

.faq_captions>h3,
.faq_content li {
    font-family: Montserrat !important;
    font-weight: bold !important;
    color: #4A4A4A;
    font-size: 30px !important;
}

.collapse_faq {
    width: 50px;
    height: 50px;
}

.collapse_faq {
    transition: 0.5s ease-in-out;
}

.small_padding {
    margin-left: 5%
}

.font100 {
    font-size: 100px;
}

.referal_top_banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: -20px;
}

.referal_top_banner_img {
    max-width: 860px;
}

.referal_more_help_container {
    border-left: 26px solid #FB6603;
    padding-left: 20px;
}

.referal_more_help_container>h3 {
    font-size: 30px;
}



/* Affiliate - Kini */

.center_for_mobile {
    display: none;
}

.grey_line {
    border: 1px solid #878383
}

.affiliate_btn {
    background-color: #FB6603 !important;
    box-shadow: 0px 3px 6px #00000061 !important;
    border-radius: 40px !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 40px;
    font-size: 35px;
    font-weight: bold;
    max-width: 400px;
    margin-bottom: 30px;
    background-image: none !important;
    text-shadow: none !important;
    lettter-spacing: 0px !important;
    height: 70px;
    width: 404px;

}

.affiliate_btn:hover,
.affiliate_btn:active {
    background-color: #FB6603 !important;
    box-shadow: 0px 3px 6px #00000061 !important;
    background-image: none !important;
    text-shadow: none !important;
    lettter-spacing: 0px !important;
}



.referal_top_banner_img.affiliate {
    background-image: url("/static/images/bgs/Afiliate/ marketing/ copy.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    height: 100%;
    min-height: 200px;
}

.faq_list.aff {
    padding-left: 0px !important;
}

.right_div {
    margin-bottom: 20px;
}

.verify {
    margin-top: 48px !important;
}

.right_div {
    margin-bottom: 20px;
}

.cert_container_bg {
    background-size: cover !important;
}


.faq_header_banner>p {
    font-size: 30px;
}

.font900 {
    font-weight: 900;
}

/* contact us page */

.window-wrap {
    background-color: white !important;
}

.brochures-bg {
    margin: 0;
    background-image: none !important;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.contact_card_span {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 1.56vw;
    color: #4A4A4A;
}

.contact_card_p {
    font-family: Montserrat;
    font-size: 1.56vw !important;
    color: #4A4A4A;
}

.sales_card_main_div {
    margin-top: 5vw;
    margin-left: 10px;
    display: flex;
}

.sales_card_div {
    line-height: 1.4;
    margin-left: 1.5vw;
}

.sales_card_span {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 2.6vw;
    color: #4A4A4A;
}

.sales_card_sub_span {
    font-family: Montserrat !important;
    font-weight: bold !important;
    font-size: 2vw !important;
    color: #0EAC1E;
}

.sales_card_email {
    color: #FB6603 !important;
}

.contact_us_page_form_input {
    font-family: Montserrat !important;
    color: #4A4A4A !important;
    font-size: 1.56vw !important;
    border-radius: 0px !important;
    border-color: #D2CDCD;
    height: 4.68vw !important;
    font-weight: 400;
}

.contact_us_page_form_input::placeholder {
    color: #4A4A4A !important;
    opacity: 1;
    /* Firefox */
}


.contact_info_container {
    justify-self: end;
}

.red_line_div {
    height: 100%;
    width: 0.7vw;
    background-color: #FB6603;
}

.contact_us_holder {
    width: 41vw;
    justify-self: start;
}

option {
    font-weight: 500;
    font-size: 1.56vw;
}

.contact_us_page_checkbox_text_span {
    line-height: normal;
    font-size: 1.04vw;
    font-family: Montserrat;
    font-weight: 500;
}

.succ_pop_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: rgb(204, 204, 204) 0px -1px 12px;
    padding: 10px;
    border-radius: 10px;
}

.contact_us_page_submit_button {
    font-family: Montserrat;
    text-shadow: unset;
    width: 21.56vw;
    height: 5.1vw;
    border-radius: 0px;
    font-size: 2vw;
    color: #FFFFFF;
    background-color: #FB6603;
    text-transform: capitalize;
}

.contact_us_page_select_input {
    appearance: none;
}

/* FAQ's Page */
.faq_list>li.faq_header h1::after {
    width: 5.1vw !important;
    height: 0.7vw !important;
    background: #FB6603;
}

.faqs_page_content_for_answers_p {
    font-family: Montserrat !important;
    font-size: 1.08vw;
    font-weight: 500;
}

/* Events */
.events_cards_inner {
    width: 400px;
}

/* Become a partner */
.partner-container-max {
    max-width: 1500px;
    margin: 0 auto;
    height: 100%;
}

.partner_font {
    font-size: 30px !important;
}

/* Offers Page */

.offers_page_banner_div {
    width: 100%;
    height: 41.66vw;
    background-color: #F5F2F2;
    display: flex;
    justify-content: center;
}

.offers_page_banner_div div {
    display: flex;
    align-items: center;
    justify-content: center;
}

img.offers_page_left_banner_image {
    width: 40.2vw;
}

img.offers_page_right_banner_image {
    width: 39.21vw;
}

.offer_page_right {
    display: flex;
    align-items: end;
    justify-content: center;
}

.offers_page_subheader_text {
    font-family: Montserrat;
    letter-spacing: 0px;
    font-weight: bold;
    font-size: 2.6041vw;
    color: black;
}

.offers_page_subheader_div {
    text-align: center;
    margin-top: 3vw;
    margin-bottom: 3vw;
}

.offers_page_div {
    display: flex;
    justify-content: center;
    margin-top: 5vw;
    margin-bottom: 5vw;
}

.offers_page_div_block {
    display: block;
    width: 62%;
}

.offers_page_div_block>div {
    text-align: center;
    margin-bottom: 1vw;
}

.offers_page_main_data {
    text-align: left;
    margin-left: 3vw;
    color: #EE343B;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 1.56vw;
}

.offers_page_sub_banner_div {
    width: 100%;
    height: 465px;
    background-color: #FB6603;
    display: flex;
    justify-content: center;
}

.offers_page_sub_banner_div>div {
    display: flex;
    align-items: end;
    justify-content: center;
}

.offer-table-header {
    align-items: center;
    height: 3.85vw;
    background-color: #F5F2F2;
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
}

.offer-table-row {
    text-align: center;
    margin-bottom: 1vw;
}

.offer-table-element {
    align-items: center;
    height: 3.85vw;
    background-color: #F5F2F2;
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
}

.offers_page_row_data {
    text-align: left;
    margin-left: 3vw;
    color: #4A4A4A;
    font-family: Montserrat;
    font-size: 1.56vw;
    font-weight: bold;
}

.offers_page_sub_banner_image {
    max-height: 430px;
}

.offers_page_sub_banner_text {
    width: 100%;
    font-family: Montserrat;
    line-height: 1;
    letter-spacing: 0px;
    font-size: 70px;
    color: #FFFFFF;
    font-weight: 900 !important;
}

.image_text_div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.image_text {
    display: block;
    width: 25vw;
}

.offers_page_contact_div {
    margin-top: 2vw;
    text-align: center;
    margin-bottom: 5vw;
    line-height: 1.5;
}

.offers_page_contact_data {
    font-family: Montserrat;
    letter-spacing: 0.4px;
    font-size: 40px;
    color: #4A4A4A;
}

.whatsapp_green {
    color: #09B220 !important;
}

.font_medium {
    font-weight: 500;
}

.owl-prev {
    box-shadow: unset !important;
}

.owl-next {
    box-shadow: unset !important;
}


.doctors_inner {
    cursor: pointer !important;
}

.doctors_inner:hover .doctors_back {
    display: flex !important;
}

.image_text_wrap {
    align-items: center !important;
}

/* Affiliate Page */
.orange-text {
    color: #FB6603;
}

.new_faq_list>li:not(.faq_header) {
    list-style-type: none;
    margin-bottom: 30px;
    background-color: #000;
    border-radius: 28px;
    padding: 25px 30px;
    transition: 0.3s ease-in-out;
}

.white-text {
    color: #fff !important;
}

.font55 {
    font-size: 55px
}

/* Cookie Page */
.cookie_page {
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0px !important;
    line-height: 27px !important;
}

.underline {
    text-decoration: underline;
}

.tosP>p.font20,
.tosP>h2.font20 {
    letter-spacing: 0px !important;
    line-height: 24px !important;
}

/* Refer Page */

.font90 {
    font-size: 90px;
}


.char_spacing {
    letter-spacing: 2.25px;
    line-height: 80px;
}

.refer_page .referal_top_banner {
    margin-bottom: -24px !important;
}

.extraBold {
    font-weight: bolder;
}

/* iframe */

iframe.header-frame{
    height: 110px;
}
iframe.footer-frame {
    height: 320px !important;
}

.newsletter_input {
    padding: 0px 0px !important;
    font-size: 13px !important;
    font-family: Roboto !important;
    font-style: normal !important;
    font-weight: 500 !important;
    height: 32px;
    border-radius: 0%;
    width: 240px;
}

.newsletter_for_homepage {
    padding: 6px;
    border-radius: 0%;
    height: 32px;
    font-size: 12px;
    text-shadow: none;
    letter-spacing: 0;
    font-family: revert;
    margin-left: -1%;
    color: #F2F2F2 !important;
    background-color: #FB6603 !important;
}


.valid-msg-new {
    color: green;
}

.error-msg-new {
    color: red;
}

.success-msg-new {
    color: green;
}

.footer-logo{
    max-width: 150px;
}
