* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    box-shadow: none;
    border: none;
    outline: none;
}

 :root
 {
    --normal_shadow: 1px 3px 6px rgba(0, 0, 0, 0.2);
    --hover_shadow: 1px 5px 10px rgba(0, 0, 0, 0.3);
    /*--first_color: #006633;*/
    /*--hover_color: #00331a;*/
    --second_color: #fff;
    --first_color: #ff7f33;
    --hover_color: #ff5d33;
}


/*Navbar */
.navigation_bar {
    background: var(--second_color);
    z-index: 999999999;
}

.navigation_bar.header-scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--second_color);
    box-shadow: var(--normal_shadow);
}

.navigation_bar li a:not(.goog-te-menu-value) {
    color: #000 !important;
    padding: 5px 15px !important;
    font-weight: 500;
}

.navigation_bar li a:not(.goog-te-menu-value):hover,
.navigation_bar li.active:not(.goog-te-menu-value) a {
    background-color: var(--first_color) !important;
    color: var(--second_color) !important;
    font-style: bold;
    border-radius: 10rem;
}

.navigation_bar li {
    margin: 0 5px;
}


/*Slider*/
.carousel-item{
    position: relative;
}

.carousel-item img{
    height: 450px;
    object-fit: cover;
}

.carousel-item:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-caption
{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.carousel-control-next, .carousel-control-prev
{
    z-index: 3;
}

/*all section heading*/
.section_heading {
    display: flex;
    justify-content: center;
    margin: 30px;
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 550;
}

/*product card*/
.product_card_div .card-body {
    text-align: center;
}

.product_card_div .card-body .card-title {
    margin-bottom: 20px;
}

.product_btn {
    background-color: var(--first_color);
    border: none;
    color: var(--second_color);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
}

.product_btn:hover {
    background-color: var(--hover_color);
    color: var(--second_color);
}

.product_view_btn {
    background-color: var(--first_color);
    border: none;
    color: var(--second_color);
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
}

.product_view_btn:hover {
    background-color: var(--hover_color);
    color: var(--second_color);
}

.modal-backdrop {
    z-index: 999999999;
}

.modal {
    z-index: 9999999999;
}

.modal_btn {
    background-color: var(--first_color);
    border: none;
    color: var(--second_color);
    padding: 10px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
}

.modal_btn:hover {
    background-color: var(--hover_color);
    color: var(--second_color);
}

.card_col .card {
    box-shadow: var(--normal_shadow);
    min-height: 380px;
}

.card_col .prodct_image_div
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card_col .card-body
{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/*footer*/
.footer_cont
{
    background-color: var(--first_color);
    color: var(--second_color);
}

.footer_heading
{
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    position: relative;
    padding: 8px 0;
    color: var(--second_color);
}

.footer_heading:before
{
    content: '';
    position: absolute;
    height: 2px;
    width: 50px;
    bottom: 0;
    left: 0;
    background: var(--second_color);
}

.footer_cont li 
{
    list-style: none;
    margin: 13px auto;
}

.footer_cont a 
{
    color: #fff;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    position: relative;
}

.footer_cont .site_link a:hover, .footer_cont .imp_link a:hover{
    color: var(--second_color) !important;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    padding-left: 20px;
}

.footer_cont .site_link a:hover:before, .footer_cont .imp_link a:hover:before{
    content: "\f0a4";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    transition: 0.2s ease-in-out;
}

.icon_div a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 3px;
    color: inherit;
    float: right;
}

.icon_div a:hover {
    opacity: 1;
}


/*mission vision goal*/
.cart_image
{
    height: 80px;
    text-align: center;
    margin-top: 10px;
}

.goal_cards .card-title
{
    text-transform: capitalize;
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
}

.goals_card .card
{
    margin-top: 20px;
    padding: 5px;
    margin-bottom: 20px;
    box-shadow: var(--normal_shadow);
    height: 100%;
}
.goals_card .card:hover
{
    box-shadow: var(--hover_shadow);
    transform: translateY(-10px);
    transition: 0.3s;
}
.goals_card .card
{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--second_color);
    background-clip: border-box;
    border-radius: .25rem;
    border-top: 5px solid var(--hover_color);
}

.goals_card .card-body
{
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.chain_cont
{
    text-align: center;
    margin-top: 100px;
}

/*key managment testimonials*/
/*.testimonial_card {
    position: relative;
    border: solid 1px #212121;
    padding: 45px 50px 25px 60px;
    margin-top: 50px;
    background-color: #212121;
    border-radius: 10px;
    color: #fff
}

blockquote {
    margin: 0;
}

blockquote p {
    padding: 15px;
    border-radius: 5px;
}

blockquote p::before {
    font-family: Georgia, serif;
    position: absolute;
    font-size: 3em;
    line-height: 1;
    top: 65px;
    left: 45px;
    content: "\201C";
    color: var(--second_color);
}*/

/*core value*/
/*.core_value_card 
{
    position: relative;
    display: flex;
    flex-direction: row;
    box-shadow: var(--normal_shadow);
    border-radius: .25rem;
    padding: 45px 5px 25px 60px;
    margin-top: 30px;
}

.core_value_card img
{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--normal_shadow);
}

.core_value_card .care_value_number p
{
    font-size: 28px;
    margin-top: 30px;
}
.core_value_para p
{
    margin-top: 10px;
}
*/

/*award*/
.wrapped {
    width: 100%;
}

.wrapped .carousel {
    max-width: 1000px;
    margin: auto;
    padding: 0 30px;
}

.carousel .card {
    text-align: center;
    color: var(--second_color);
    font-size: 90px;
    font-weight: 900;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: var(--normal_shadow);
}


/*certificate*/
#owl-demo .item {
    margin: 3px;
}

#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/*contact form*/
.contact_form_main_Div .container {
    margin: 3rem auto;
    padding: 30px 10px;
}

.contact_form input {
    border: none;
    border-bottom: 1px solid #999;
    background: var(--second_color);
    border-radius: 0;
    height: 50px !important;
    line-height: 50px !important;
    margin-top: 20px;
}

.contact_form textarea {
    border: none;
    border-bottom: 1px solid #999 !important;
    background: var(--second_color);
    resize: none;
    border-radius: 0;
    height: 100px !important;
    margin-top: 20px;
}

.contact_form input:focus, .contact_form input:valid, .contact_form textarea:focus, .contact_form textarea:valid
{
    border-bottom-color: var(--first_color) !important;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #555;
}

input {
    border: none;
    border-bottom: 1px solid #999;
    background: var(--second_color);
}

.contact_form_btn {
    background-color: var(--first_color);
    border: none;
    color: var(--second_color);
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 0px;
    text-transform: capitalize;
}

.contact_form_btn:hover {
    background-color: var(--hover_color);
    color: var(--second_color);
}

.contact_form input
 {
    height: 45px;
    line-height: 45px;
}


.btn {
    outline: none !important;
    box-shadow: none !important;
}

input,
textarea {
    outline: none !important;
    box-shadow: none !important;
}


/*about us page css*/
.about_us_banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/second.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.about_us_banner_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.about_us_banner_card .card-title 
{
  text-transform: uppercase;
  color: var(--second_color);
  margin: auto;
  font-size: 5vw;
}

.content_cont .welcome_para {
    display: flex;
    justify-content: center;
    text-transform: capitalize;
    font-size: 28px;
    background-color: var(--first_color);
    color: var(--second_color);
}

.about_detail .doctor_img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--normal_shadow);
}
.about_detail .doctor_img:hover
{
    box-shadow: var(--hover_shadow);
}

.about_detail h4
{
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/*Product banner*/
.product_cont {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/product_banner.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.product_banner_card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/product_banner.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.product_cont .card-title 
{
  text-transform: uppercase;
  color: var(--second_color);
  margin: auto;
  font-size: 5vw;
}

/*Awards page css*/
.awards_banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/award.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.awards_banner_card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/award.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.awards_banner_card .card-title 
{
  text-transform: uppercase;
  color: var(--second_color);
  margin: auto;
  font-size: 5vw;
}

.awards_cont .welcome_para_awards {
    display: flex;
    justify-content: center;
    text-transform: capitalize;
    font-size: 28px;
    background-color: var(--first_color);
    color: var(--second_color);
}

body section,
html section {
    margin: 0 auto;
    max-width: 1280px;
}

body section::before,
body section::after,
html section::before,
html section::after {
    content: "";
    display: table;
}

body section::after,
html section::after {
    clear: both;
}

h1,
h2 {
    text-align: center;
}

.myCarousel {
    position: relative;
    background-color: #fafafa;
}

.myCarousel .slides-wrapper .slides {
    position: absolute;
}

.myCarousel .slides-wrapper .slides.content {
    height: 60%;
    width: 45%;
    top: 10%;
    left: 0;
}

.myCarousel .slides-wrapper .slides.content .bodytext {
    padding: 0 50px;
    position: relative;
    top: 45%;
    transform: translateY(-50%);
}

.myCarousel .slides-wrapper .slides.content .title {
    font-size: 1.5em;
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.myCarousel .slides-wrapper .slides.content .subtitle {
    font-size: 1em;
    line-height: 1.5;
}

.myCarousel .slides-wrapper .slides.photo {
    height: 100%;
    width: 55%;
    top: 0;
    right: 0;
}

.myCarousel .slides-wrapper .slides.photo .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.myCarousel .slides-wrapper .slides.title {
    height: 20%;
    width: 55%;
    bottom: 0;
    left: 0;
}

.myCarousel .slides-wrapper .slides.title .bodytext {
    padding: 0 50px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.myCarousel .slides-wrapper .slides.title .title {
    margin: 0;
    color: var(--second_color);
    margin-bottom: 5px;
    font-family: serif;
    font-size: 2.25em;
    letter-spacing: 1px;
}

.myCarousel .slides-wrapper .slides.title .link {
    position: relative;
    color: var(--second_color);
    text-transform: uppercase;
    font-size: 0.65em;
    letter-spacing: 2px;
    margin-left: 3px;
}

.myCarousel .slides-wrapper .slides.title .link:after {
    content: "";
    position: absolute;
    top: 2px;
    right: -15px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    border: 1px solid;
    border-left: 0;
    border-bottom: 0;
    transition: right 0.3s;
}

.myCarousel .slides-wrapper .slides.title .link:hover span {
    opacity: 0.5;
}

.myCarousel .slides-wrapper .slides.title .link:hover:after {
    right: -18px;
}

.myCarousel .slides-wrapper .slides.price {
    height: 20%;
    width: 25%;
    bottom: 0;
    left: 55%;
    background-color: #333;
}

.myCarousel .slides-wrapper .slides.price>* {
    transition-delay: 0.2s;
}

.myCarousel .slides-wrapper .slides.price .bodytext {
    padding: 0 50px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.myCarousel .slides-wrapper .slides.price .bodytext span {
    display: block;
    color: var(--second_color);
}

.myCarousel .slides-wrapper .slides.price .bodytext .title {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.myCarousel .slides-wrapper .slides.price .bodytext .label {
    font-size: 2em;
}

.myCarousel .slides-wrapper .slides.counter {
    position: absolute;
    top: 40%;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: var(--second_color);
    line-height: 50px;
    text-align: center;
    font-size: 12px;
}

.myCarousel .slides-wrapper .counter-content {
    position: absolute;
    top: 40%;
    margin-top: 50px;
    right: 0;
    width: 50px;
    background-color: #333;
}

.myCarousel .slides-wrapper .counter-content hr {
    position: relative;
    display: block;
    transform: rotate(-45deg);
    width: 20px;
}

.myCarousel .slides-wrapper .counter-content span {
    display: block;
    text-align: center;
    line-height: 50px;
    color: var(--second_color);
    font-size: 12px;
}

.myCarousel #arrows {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 0 0 50px;
}

.myCarousel #arrows span {
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
}

.myCarousel #arrows .prev,
.myCarousel #arrows .next {
    width: auto;
    height: auto;
    border: none !important;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    color: #000;
}

.myCarousel #arrows .prev.disable,
.myCarousel #arrows .next.disable {
    display: none;
}

.myCarousel #arrows .prev:hover,
.myCarousel #arrows .next:hover {
    opacity: 0.5;
}



/*certificate page css*/
.certificate_banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/certificate.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.certificate_banner_card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/award.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.certificate_banner_card .card-title 
{
  text-transform: uppercase;
  color: var(--second_color);
  margin: auto;
  font-size: 5vw;
}

.certificate_cont .welcome_para_certificate {
    display: flex;
    justify-content: center;
    text-transform: capitalize;
    font-size: 28px;
    background-color: var(--first_color);
    color: var(--second_color);
}

.award_heading p
{
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.award_container
{
    margin-top: 40px;
    margin-bottom: 40px;
}

.award_card {
  position: relative;
  height: 100%;
  box-shadow: var(--normal_shadow);
  overflow: hidden;
}

.award_card:hover
{
  transform: translate3D(0,-5px,0) scale(1.03); 
  box-shadow: var(--hover_shadow);
  transition: all .4s ease; /* zoom in */
  cursor: pointer;
}

.award_container .award_card_img
{
    min-height: 200px;
    margin: auto;
    padding: 10px;
}
.award_container .award_card_img img
{
    height: 100%;
    max-height: 200px;
}
.award_card .card-title
{
    padding: 10px;
    line-height: 1.5;
}


/*products page css*/
.card_product {
    box-shadow: var(--normal_shadow);
    height: 100%;
}

.card_product:hover {
    box-shadow: var(--hover_shadow);
}

.prodct_image_div
{
    min-height: 200px;
    margin: auto;
    padding: 10px;
}

.prodct_image_div img
{
    max-height: 200px;
}

.card_product .product_name a
{
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
}

.card_product .product_title a
{
    text-decoration: none;
    text-transform: capitalize;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_page_order_btn
{
    background-color: var(--first_color);
    border: none;
    color: var(--second_color);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
}

.product_page_order_btn:hover 
{
    background-color: var(--hover_color);
    color: var(--second_color);
}

/*product detail page css*/
.product_details_product_img img
{
  width: 100%;
  height: auto;
  box-shadow: var(--normal_shadow);
}

.product_details_product_img img:hover
{
  box-shadow: var(--hover_shadow);
}

.detail_col
{
  padding-left: 20px;
}
.name_and_company h4
{
  text-transform: uppercase;
  font-weight: 600;
}

.name_and_company p
{
  text-transform: capitalize;
  letter-spacing: 1px;
}

.name_and_company a
{
   text-decoration: none;
   color: #333;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.name_and_company i
{
  padding-right: 5px;
}

.description_of_product h4
{
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 1px;
  margin-top: 20px;
}

.description_of_product p
{
  font-size: 15px;
}

.product_description_order_btn {
    background-color: var(--first_color);
    border: none;
    color: var(--second_color);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 10px;
}

.product_description_order_btn:hover {
    background-color: var(--hover_color);
    color: var(--second_color);
    text-decoration: none;
}


/*contact us page css*/
.contact_us_banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/contact.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact_cont .welcome_para_contactus {
    display: flex;
    justify-content: center;
    text-transform: capitalize;
    font-size: 28px;
    background-color: var(--first_color);
    color: var(--second_color);
}

.contactus_icon a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 3px;
    opacity: 0.8;
    color: var(--first_color);
    box-shadow: var(--normal_shadow);
}

.contactus_icon a:hover {
    opacity: 1;
    box-shadow: var(--hover_shadow);
}
.contact_us_div h4
{
    text-transform: capitalize;
    letter-spacing: 2px;
}

.locate_us_div h4
{
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
}

.locate_us_div p
{
    margin-top: 0;
    margin-bottom: 1rem;
    color: #4d4d4d;
}

.call_mail_icon a:hover
{
    color: var(--first_color);
}

.call_mail_icon i
{
    color: var(--first_color);
    margin-right: 5px;
}

.call_mail_icon a
{
   text-decoration: none;
   color: #4d4d4d;
}

.location_icon i
{
    color: var(--first_color);
    margin-right: 5px;
}

.contact_us_banner_card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/contact.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.contact_us_banner_card .card-title 
{
  text-transform: uppercase;
  color: var(--second_color);
  margin: auto;
  font-size: 5vw;
}

.carousel_div
{
    height: 200px;
    width: auto;
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--normal_shadow);
}

.carousel_image
{
    height: 100%;
    width: auto !important;
    border-radius: 5px;
}

.about_detail ul
{
    padding: 0;
}

.about_detail ul li
{
    line-height: 2.5;
    list-style: none;
    position: relative;
    padding-left: 8px;
}

.about_detail ul li:before
{
    position: absolute;
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: -15px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    color: var(--first_color);
}

.image-source-link {
    color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out; 
    -moz-transition: all 0.3s ease-out; 
    -o-transition: all 0.3s ease-out; 
    transition: all 0.3s ease-out;
    z-index: 9999999999;
}

.mfp-wrap
{
    z-index: 999999999999;
}

.mfp-wrap .mfp-img
{
    padding: 10px !important;
}

.mfp-bottom-bar
{
    margin-top: 0;
    padding: 0 10px !important;
}

.mfp-counter
{
    right: 10px;
}

.mfp-with-zoom.mfp-ready .mfp-container {
        opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
        opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}