@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --yellow: #F8CF65;
    --black: #0E0F11;
    --grey: #636B75;
    --white: #fff;
}

body {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.54px;
    overflow-x: hidden;
    margin: 0 !important;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
}

input:focus {
    outline: 0;
}

.text_yellow {
    color: var(--yellow);
}

.text_dark {
    color: var(--black);
}

.bg_light {
    background: var(--black);
}

.btn_transparent {
    background: transparent;
    border: 0;
    padding: 0;
}

button:focus {
    box-shadow: none !important;
    outline: 0 !important;
}

h1,
.h1 {
    font-size: 56px;
    line-height: 64px;
}

h2,
.h2 {
    font-size: 48px;
    line-height: 56px;
}

h3,
.h3 {
    font-size: 36px;
    line-height: 44px;
}

h4,
.h4 {
    font-size: 24px;
    line-height: 32px;
}

h5,
.h5 {
    font-size: 18px;
    line-height: 26px;
}

h6,
.h6 {
    font-size: 16px;
    line-height: 24px;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: var(--grey);
}

p.small {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.text_12 {
    font-size: 12px !important;
    line-height: 18px !important;
}

.text_14 {
    font-size: 14px !important;
    line-height: 22px !important;
}

.text_16 {
    font-size: 16px !important;
    line-height: 26px !important;
}

.text_18 {
    font-size: 18px !important;
    line-height: 30px !important;
}

.text_24 {
    font-size: 24px;
    line-height: 32px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.5s ease;
}

a:visited {
    color: unset;
}

a:hover {
    color: inherit;
}

.fw_100 {
    font-weight: 100;
}

.fw_200 {
    font-weight: 200;
}

.fw_300 {
    font-weight: 300;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700 !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

.btn_yellow {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    border: 1px solid var(--yellow);
    padding: 8px 16px;
    font-size: 16px;
    line-height: 26px;
    border-radius: 30px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.5s ease;
}

.btn_yellow:hover a {
    color: var(--yellow) !important;
}

.header_wrap .navbar-nav .nav-item.btn_yellow a:hover:after {
    content: none;
}

.btn_yellow a {
    color: var(--black) !important;
}

.btn_yellow:hover {
    background: var(--black);
    border: 1px solid var(--black);
    color: var(--yellow);
    transition: 0.5s ease;
}

.btn_yellow.with_icon {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.btn_yellow.with_icon:hover img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(390%) hue-rotate(320deg) brightness(100%) contrast(95%);
}

.btn_white_border {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 16px;
    font-size: 16px;
    line-height: 26px;
    border-radius: 30px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.5s ease;
}

.btn_white_border:hover {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
    transition: 0.5s ease;
}

.py_120 {
    padding: 120px 0;
}

.sub_title span {
    display: inline-block;
    background: #EDF0F3;
    color: var(--grey);
    padding: 4px 8px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.hover_img {
    overflow: hidden;
    transition: 0.5s ease;
}

.hover_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover_img:hover img {
    transition: 0.5s ease;
    transform: scale(1.02);
}

.wpforms-container .wpforms-field,
.wp-core-ui div.wpforms-container .wpforms-field {
    padding: 10px 0 !important;
}

/* reset css end */

/* header css start */
.header_wrap {
    background: var(--white);
    padding: 16px 0;
}

.header_wrap .navbar {
    background-color: transparent;
    padding: 0;
}

.header_right_wrap {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 25px;
}

.header_wrap .navbar-nav {
    gap: 25px;
    align-items: center;
}

.header_wrap .navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 28px;
    color: var(--grey);
    padding: 0;
    position: relative;
}

.header_wrap .navbar-nav .nav-item.current-menu-item a {
    color: var(--black);
}

.header_wrap .navbar-nav .nav-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: 0.5s ease;
}

.header_wrap .navbar-nav .nav-item.current-menu-item a::after {
    width: 100%;
    transition: 0.5s ease;
}

.header_wrap .navbar-nav .nav-item a:hover {
    color: var(--black);
}

.header_wrap .navbar-nav .nav-item a:hover:after {
    width: 100%;
    transition: 0.5s ease;
}

/* header css end */
.webinar-box,
.masterclass-box,
.master_content_wrap,
.introduction-box,
.our-mission-box,
.contact_box {
    max-width: 792px;
    margin: 0 auto;
}
.get_in_touch_box {
    max-width: 588px;
    margin: 0 auto;
    padding: 64px;
}
/* index page css start */
.banner_sec {
    background: #1E2024;
    color: var(--white);
    padding: 120px 0;
}

.banner_sec .btn_yellow {
    color: #1E2024;
    border-color: #F8CF65;
}
.banner_sec .btn_yellow:hover {
    color: #fff;
    border-color: #fff;
}
.banner_left_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.banner_left_wrap p {
    color: #EDF0F3;
}

.banner_right_wrap .img_wrap {
    max-width: 650px;
    margin: 0 auto;
}

.banner_right_wrap .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Introduction css start */
.video.video--in-content {
    height: 450px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.introduction-box {
    max-width: 792px;
    margin: 0 auto;
}

.introduction_sec {
    background: #F9FAFB;
}

.our_mission__wrap .img_wrap {
    margin-top: 40px;
    height: 450px;
    border-radius: 18px;
    position: relative;
}

/* Introduction css end */

/* our mission css start */
.our_mission_right_wrap {
    padding-top: 80px;
}


/* .acc_wrap .accordion-button::after {
    display: none;
} */

.acc_wrap .accordion-button {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--black);
    padding: 8px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.acc_wrap .accordion-body {
    padding: 8px 40px;
}

.acc_wrap .accordion-body p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.acc_wrap .accordion-body p:last-child {
    margin-bottom: 0;
}


.acc_wrap .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.acc_wrap .accordion-item:has(.accordion-collapse:not(.show)) {
    background: #F9FAFB;
}

.acc_wrap .accordion-item {
    border: 0;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #F8CF65;
    border-radius: 12px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
    transition: all 0.5s;
}


/* .acc_wrap .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 3px solid var(--yellow);
} */

/* our mission css end */

/* classes css start */

.classes_slider {
    padding-top: 70px;
}


.classes_slider_box .img_wrap {
    position: relative;
    height: 300px;
    border-radius: 20px;
    margin-bottom: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.classes_slider_box .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.img_wrap .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-button-next,
.swiper-button-prev {
    height: 44px;
    width: 52px;
    border: 2px solid #D0D4D9;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--yellow);
    border: 2px solid var(--yellow);
    transition: 0.5s ease;
}

.swiper-button-next::after {
    font-size: 0;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/right-arrow.svg);
    background-repeat: no-repeat;
    background-size: 13px;
}

.swiper-button-prev::after {
    font-size: 0;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/left-arrow.svg);
    background-repeat: no-repeat;
    background-size: 13px;
}

.classes_slider .swiper-button-next {
    top: 0;
    right: 0;
    margin-top: 0;
}


.classes_slider .swiper-button-prev {
    top: 0;
    right: 60px;
    margin-top: 0;
    left: inherit;
}

/* classes css end */

/* contact css start */
.contact_sec {
    background: #FCECC1;
}

.contact_box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 64px;
}
span.wpcf7-form-control-wrap {
    display: inline-block;
}
.masterclass-box span.wpcf7-form-control-wrap {
    display: block;
}
span.wpcf7-form-control.wpcf7-checkbox.cmn_check.form-check {
    padding: 0;
}
.form_control input[type=text],
.form_control input[type=email],
input[type=email].form_control ,
input[type=text].form_control  {
    padding: 8px 12px !important;
    font-size: 16px !important;
    line-height: 28px !important;
    color: #838D95 !important;
    width: 100% !important;
    background: var(--white) !important;
    border: 1px solid #DDE1E6 !important;
    border-radius: 6px !important;
    box-shadow: 0px 1px 3px 0px #00000014 !important;
}

.form_control input::placeholder {
    color: #838D95 !important;
    opacity: 1 !important;
}

.form_group {
    margin: 0 0 12px;
}

/* .cmn_check {
    display: flex;
    align-items: flex-start;
} */

.cmn_check .form-check-input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 8px;
}

.cmn_check .form-check-input:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.cmn_check .form-check-input:focus {
    box-shadow: 0 0 0 5px rgb(15 21 33 / 11%);
}
.contact_box span.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}
body .cmn_check .wpcf7-form-control-wrap {
    width: auto;
    display: inline-block;
}
body .cmn_check .wpcf7-form-control-wrap .wpcf7-list-item{
   margin: 0;
}
.cmn_check label {
    color: #838D95 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: 0.9px !important;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn_yellow {
    display: inline-block;
    background: var(--yellow) !important;
    color: var(--black) !important;
    border: 1px solid var(--yellow);
    padding: 8px 16px;
    font-size: 16px;
    line-height: 26px;
    border-radius: 30px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.5s ease;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* background-image: url('../images/right-arrow.svg') !important; */
    background-repeat: no-repeat;
}
.wpcf7-checkbox [type="checkbox"]{
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: .25em !important;
    border: 1px solid rgba(0, 0, 0, .25) !important;
}

.with_icon:hover:after {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(390%) hue-rotate(320deg) brightness(100%) contrast(95%);
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn_yellow:hover {
    background: var(--black) !important;
    border: 1px solid var(--black);
    color: var(--yellow) !important;
    transition: 0.5s ease;
}

/* .cmn_check .form-check-label {
    color: #838D95;
    font-size: 14px;
    line-height: 20px;
} */

/* contact css end */

/* footer css start */
.footer {
    background: var(--black);
    color: var(--white);
}

.top_footer {
    padding: 80px 0;
    border-bottom: 1px solid var(--white);
    margin-bottom: 80px;
}

.footer_link h6 {
    margin-bottom: 15px;
}

.footer_link ul li a {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 5px;
    display: inline-block;
}

.footer_link ul li a:hover {
    color: var(--yellow);

}

.social_wrap ul {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.social_wrap ul li a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 20px;
    background: var(--white);
    border-radius: 6px;
    color: var(--black);
    transition: 0.5s ease;
}

.social_wrap ul li a:hover {
    opacity: 0.8;
    transition: 0.5s ease;
}

.bottom_footer {
    padding: 24px 0;
}

/* footer css end */

.modal-header .btn-close {
    padding: 5px;
    background-size: 13px;
}

.video_wrap {
    height: 300px;
}

.video_wrap iframe {
    width: 100%;
    height: 100%;
}

/* index page css end */


/* about page css start */

.about_us_sec .img_wrap {
    height: 500px;
    border-radius: 20px;
}

.pl50 {
    padding-left: 50px;
}

.we_are_left_wrap {
    max-width: 500px;
}


/* about page css end */

/* contact page css start */
.get_in_touch_sec {
    background: #FCECC1;
}

.get_in_touch_box {
    margin: 50px auto 0;
    padding: 60px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 8px 32px 0px #0000001A;
}

.get_in_touch_box .btn_yellow {
    width: 100%;
}

/* contact page css end */

/* master card page css start */
.masterclass_left_wrap .img_wrap {
    height: 450px;
    border-radius: 18px;
    position: relative;
}

.master_card_banner {
    padding: 200px 0;
    background-image: url(../images/masterclass-banner.jpg);
    background-size: cover;
    background-position: center;
}


.master_content_wrap {
    text-align: center;
}
.master_content_wrap h2{
    margin-bottom: 40px;
}
.time_wrap ul li {
    padding-right: 12px;
    margin-right: 12px;
    line-height: 100%;
    border-right: 1px solid var(--white);
}


.time_wrap ul li:last-child {
    border-right: 0;
    margin-right: 0;
}
.masterclass-box h2 {
    margin-bottom: 50px; 
}
.masterclass-box p strong{
    font-size: 24px;
    line-height: 32px;
    color: #0E0F11;
}
.masterclass-box p {
    margin-bottom: 30px;
}
.masterclass_left_wrap {
    margin-bottom: 40px;
}

/* master card page css end */

/*webinar page start*/
.webinar .about_us_sec {
    background: #F9FAFB;
}

.we_are_sec ol {
    font-size: 16px;
    line-height: 28px;
    color: var(--grey);
    padding-left: 20px;
    margin: 0 0 30px;
}

.we_are_right_wrap a {
    text-decoration: underline;
}

.we_are_right_wrap ul {
    list-style: decimal;
    padding-left: 20px;
    margin: 0 0 30px;
}

.we_are_right_wrap ul li {
    font-size: 16px;
    line-height: 28px;
    color: var(--grey);
}

.contact_full_wrapper .contact_box {
    max-width: 100%;
    padding: 64px;
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.contact_full_wrapper .contact_box .title h2 {
    font-size: 24px;
    line-height: 32px;
}

/*webinar page end*/

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 502;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 503;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    height: 100%;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 505;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #cccccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 504;
}

.mfp-preloader a {
    color: #cccccc;
}

.mfp-preloader a:hover {
    color: white;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    padding: 0;
    z-index: 506;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: white;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: white;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #cccccc;
    font-size: 12px;
    line-height: 18px;
}

.mfp-arrow {
    position: absolute;
    top: 0;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: solid transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
    opacity: 0.8;
    border-top-width: 12px;
    border-bottom-width: 12px;
    top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 20px;
    border-bottom-width: 20px;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 12px solid black;
    left: 5px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    border-right: 20px solid white;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 12px solid black;
    left: 3px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 20px solid white;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black;
}

.mfp-iframe-holder .mfp-close {
    top: -43px;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure {
    line-height: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-break: break-word;
    padding-right: 36px;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
     * Remove all paddings around the image on small screen
     */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    /* The shadow behind the image */
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
}

@media all and (max-width: 800px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

/*privacy-policy start*/
.privacy-policy .entry-title {
    text-align: center;
    margin: 90px 0 20px;
}

/*privacy-policy end*/