/*

01. GENERAL STYLES
02. PRELOADER
03. TOP NAVIGATION
04. HOME SECTION
05. ABOUT
06. FEATURED
07. SIMPLE BLOCK
08. SERVICES
09. SOME TEXT
10. STORY
11. TEAM
12. VIDEO
13. TESTIMONIALS
14. WORK
15. PRICING
16. CONTACT
17. FOOTER

*/

/*============================
     01. GENERAL STYLES
============================*/

/* TYPOGRAPHY */
@font-face {
    font-family: 'jaapokki';
    src: url('../fonts/jaapokki-regular.eot');
    src: url('../fonts/jaapokki-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/jaapokki-regular.woff2') format('woff2'),
         url('../fonts/jaapokki-regular.woff') format('woff'),
         url('../fonts/jaapokki-regular.ttf') format('truetype'),
         url('../fonts/jaapokki-regular.svg#jaapokkiregularregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
.text-uppercase{text-transform: uppercase;}
.text-capitalize{text-transform: capitalize;}
.italic{font-style: italic;}
.bold{font-weight: bold;}
.text-white{color: white !important;}

/* BASICS */
body, html{
	height: 100%;
	font-family: 'Bitter';
	position: relative;
}
*{margin: 0;padding: 0;outline: none;}
section.borders{border:13px double;}
.solid-border{border-style: solid !important;}
.double-border{border-style: double !important;}
.nobg{background: none !important}
.color-overlay:after{
	content: "";
	opacity: .6;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.container{
	position: relative;
	z-index: 2;
	text-align: center;
}
.row{
	margin: 0;
}
ul, ol{list-style: none;margin: 0;}
iframe{border:none;}
.tooltip-inner{
	background-color: #F5DEB3;
	color: #000;
	border-radius: 0;
}
.tooltip.top .tooltip-arrow{border-top-color: #F5DEB3;}
.tooltip.bottom .tooltip-arrow{border-bottom-color: #F5DEB3;}
.tooltip.left .tooltip-arrow{border-left-color: #F5DEB3;}
.tooltip.right .tooltip-arrow{border-right-color: #F5DEB3;}
section{
	position: relative;
	text-align: center;
	padding-top: 70px;
	padding-bottom: 50px;
}

/* BACKGROUNDS */
.bg-1{background-image: url('../img/1.jpg')}
.bg-2{background-image: url('../img/2.jpg')}
.bg-3{background-image: url('../img/3.jpg')}
.bg-4{background-image: url('../img/4.jpg')}
.bg-5{background-image: url('../img/5.jpg')}
.bg-6{background-image: url('../img/6.jpg')}
.bg-7{background-image: url('../img/7.jpg')}
.bg-8{background-image: url('../img/8.jpg')}
.bg-9{background-image: url('../img/9.jpg')}
.bg-10{background-image: url('../img/10.jpg')}
.bg-11{background-image: url('../img/11.jpg')}
.bg-12{background-image: url('../img/12.jpg')}
.bg-13{background-image: url('../img/13.jpg')}
.bg-14{background-image: url('../img/14.jpg')}
.bg-15{background-image: url('../img/15.jpg')}
.bg-16{background-image: url('../img/16.jpg')}
.bg-17{background-image: url('../img/17.jpg')}
.bg-18{background-image: url('../img/18.jpg')}
.bg-19{background-image: url('../img/19.jpg')}

/* HEADINGS */
.heading{
	display: inline-block;
	font-size: 39px;
	font-family: 'jaapokki';
	text-transform: uppercase;
	padding: 10px 25px 4px;
	margin-bottom: 70px;
}
.heading-1{
	border: 14px double;
}
.heading-2{
	border: none;
	border-bottom: 11px double;
}

/* BUTTONS */
.button, button{
	display: inline-block;
	background: #323232;
	color: white;
	border: none;
	padding: 15px 30px 10px;
	margin: 30px auto;
	font-family: jaapokki;
	font-size: 17px;
	text-transform: uppercase;
	text-decoration: none;
}
.button:hover, button:hover{
	background: #000;
	color: white;
	text-decoration: none;
}
.button.light, button.light{
	color: inherit;	
	border: 7px double;
	padding: 8px 23px 4px;
	background: none;
}
.button.light:hover,
button.light:hover{
	border: 7px solid;
	background: none;
}


/*======================
     02. PRELOADER 
========================*/
.preloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: inherit;
	color: inherit;
	z-index: 9999999;
	text-align: center;
}
.preloader .icon{
	position: absolute;
	left: 0;
	right: 0;
	top: 45%;
	font-size: 36px;
}



/*=======================
    03. TOP NAVIGATION
=========================*/
header#navbar{
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 0px 3px -1px #000;
			box-shadow: 0 0px 3px -1px #000;
}
/* LOGO */
.navbar-brand img{
	height: 40px;
	margin-top: -6px;
}
#navbar ul{
	float: right;
}
#navbar ul li{
	display: inline-block;
}
#navbar ul li a{
	display: block;
	float: left;
	opacity: .55;
	font-size: 14px;
	padding: 19px 16px 14px;
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}
#navbar ul li:hover a,
#navbar ul li.active a{
	opacity: 1;
	background: none;
	outline: none;
}
#navbar ul li.active a:after{
	content: "";
	width: 18px;
	height: 2px;
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin-left: -9px;
}
#navbar ul li a:focus{
	background: none;
	outline: none;
}
/* MOBILE MENU BUTTON */
.mob-nav{
	display: none;
	float: right;
	font-size: 30px;
	padding: 7px 15px;
}
.mob-nav:hover{
	opacity: .7;
}



/*=======================
    04. HOME SECTION
=========================*/
#home{
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
	-webkit-background-size: cover;
			background-size: cover;
	padding: 0;
}
#home .container{
	height: 100%;
	padding: 0;
}
/*top part*/
.home-top{
	position: relative;
	top: 0;
	padding: 20px 30px;
	z-index: 99;
}
.logo{
	float: left;
	height: 40px;
}
.home-social{
	float: right;
	padding-top: 8px;
}
.home-social a{
	color: inherit;
	font-size: 20px;
	padding: 5px;
}
.home-social a:hover{
	opacity: .7;
}


#home .inner{
	width: 100%;
	padding: 0 30px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}
.more_btn{
    color: inherit;
    font-size: 50px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -16px;
    z-index: 3;
}
.more_btn:hover{
    color: inherit;
    opacity: 0.7;
}

/* HOME SCREEN SLIDESHOW */
.slideshow,
.slideshow .slides,
.slideshow .slides li,
.slideshow .slides li div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.slideshow .slides li div{
	background-attachment: fixed;
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
			background-size: cover;
}
.slideshow .slides{
	z-index: 0;
}
.flex-direction-nav{
	position: absolute;
	top: 45%;
	left: 0;
	right: 0; 
	z-index: 3;
}
.flex-direction-nav li{
	display: inline;
}
.flex-direction-nav li a{
	font-size: 50px;
	color: inherit;
	margin: 0 5px;
}
.flex-prev{float: left;}
.flex-next{float: right;}


/* INTRO STYLE 1 */
#intro-1 fieldset{
	border: 17px double;
	display: inline-block;
	color: inherit;
	text-align: center;
	padding: 8px 50px 15px;
}
#intro-1 fieldset legend{
	color: inherit;
	width: auto;
	padding: 10px 20px;
	margin: 0;
	border: 17px double;
	font-size: 32px;
	-webkit-box-shadow: 0 0 40px 4px black;
			box-shadow: 0 0 40px 4px black;
}
#intro-1 fieldset h1{
	font-size: 60px;
}


/* INTRO STYLE 2 */
#intro-2 .home-title{
	border: 14px double;
	display: inline-block;
	padding: 0 25px 10px;
	color: inherit;
}
#intro-2 .home-title .title-upper{
	font-size: 21px;
	position: relative;
	display: inline-block;
	margin-bottom: 3px;
}
#intro-2 .home-title .title-upper i{
	font-size: 14px;
	position: relative;
	top: -2px;
}
#intro-2 .home-title .headline{
	font-family: 'jaapokki';
	font-size: 60px;
}
#intro-2 .home-title .title-lower{
	font-size: 18px;
}


/* INTRO STYLE 3 */
#home.borders{
	border: 25px double;
}
#intro-3 .home-title{
	display: inline-block;
	color: inherit;
}
#intro-3 .home-title .headline {
	font-family: 'jaapokki';
	font-size: 124px;
	margin-bottom: -15px;
}
#intro-3 .line {
	height: 3px;
	display: inline-block;
	margin: 5px 0px;
}
#intro-3 .home-title p{
	padding: 0 13px;
	font-style: italic;
	text-transform: capitalize;
	font-size: 19px;
	display: inline-block;
}


/* INTRO STYLE 4 */
#intro-4 .home-title{
	display: inline-block;
	padding: 0 24px 10px;
	color: inherit;
	border: 4px solid;
}
#intro-4 .home-title h3{
	font-family: 'jaapokki';
	font-size: 90px;
	margin-bottom: -10px;
}
#intro-4 .home-title p{
	font-size: 16px;
}
#intro-4 .home-links{
	margin-top: 50px;
}
#intro-4 .home-links a{
	font-size: 13px;
	text-transform: uppercase;
	color: inherit;
}
#intro-4 .home-links a:hover{
	text-decoration: none;
	opacity: .8;
}


/* INTRO STYLE 5 */
#intro-5 h1{
	font-size: 45px;
	font-family: jaapokki;
	border-bottom: 4px double;
	display: inline-block;
	padding: 0 47px 24px;
	margin-bottom: 0;
}
#intro-5 p{
	font-size: 30px;
	margin: 40px 0;
	padding: 0 15px;
}
#intro-5 button, #intro-5 .button{
	margin:20px 10px;
}


/* INTRO STYLE 6 */
#intro-6 h1{
	font-size: 75px;
	font-family: jaapokki;
	border-bottom: 4px double;
	display: inline-block;
	padding: 0 47px 16px;
	margin-bottom: 0;
}
#intro-6 p{
	font-size: 22px;
	margin: 21px 0;
	padding: 0 15px;
}
#intro-6 button, #intro-6 .button{
	margin:20px 10px;
}



/*=======================
        05. ABOUT 
=========================*/
#about p{
	text-align: justify;
	font-size: 15px;
	width: 800px;
	max-width: 100%;
	padding: 0 20px;
	margin: auto;
	-webkit-column-count: 2;
	   -moz-column-count: 2;
			column-count: 2;
	-webkit-column-gap: 56px;
	   -moz-column-gap: 56px;
			column-gap: 56px;
}
#about p:first-letter{
	float: left;
	padding: 0px 18px 0px 7px;
	font-size: 70px;
	line-height: 63px;
}
/*bottom links*/
hr{
	margin-top: 80px;
	margin-bottom: -11px;
}
#about .links{
	display: inline-block;
	padding: 0 15px;
	font-size: 16px;
}

/*=======================
      06. FEATURED
=========================*/
#featured{
	padding-top: 70px;
	padding-bottom: 90px;
}
#featured .boxes{
    width:100%;
    display: inline-block;
}
#featured .box{
    width: 25%;
    float:left;
}
#featured .box.img{
	opacity: .5;
	-webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}
#featured .box.img.active{
	opacity: 1;
}
#featured .box.img img{
    width: 100%;
    height: auto;
    display: block;
}
#featured .box.info{
    width: 0;
    overflow: hidden;
    -webkit-transition: .25s;
    		transition: .25s;
}
#featured .box.info .info-inner{
    overflow: hidden;
}
#featured .info-wrapper{
    width: 100%;
    height: 100%;
    border: 7px double;
    padding: 10px;
  	-webkit-box-sizing: border-box;
  	   -moz-box-sizing: border-box;
  			box-sizing: border-box;
    text-align: center;
    position: relative;
}
#featured .info-wrapper .centered{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}
#featured .info h3{
    font-family: 'jaapokki';
    font-size: 22px;
    text-transform: uppercase;
    border-bottom: 3px double;
    display: inline-block;
    padding:0 18px 9px;
    margin-top: 0px;
    margin-bottom: 24px;
}
#featured .info p{
	padding: 0 10px;
	font-style: italic;
}
#featured .box.info.active{
    width: 25%;
}



/*=======================
    07. SIMPLE BLOCK
=========================*/
#block{
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	-webkit-background-size: cover;
			background-size: cover;
	padding: 75px 0;
}
#block h1{
	font-family: jaapokki;
	border-bottom: 4px double;
	display: inline-block;
	padding: 0 47px 24px;
	margin-bottom: 24px;
}
#block p{
	font-size: 30px;
}
#block .button, #block button{
	margin: 35px 10px 0px;
}


/*========================
       08. SERVICES
==========================*/

.service{
	padding: 0 30px;
}
.service fieldset{
	border: 5px double;
	text-align: center;
	padding: 20px 26px;
}
.service fieldset legend{
	width: auto;
	padding: 0px 35px;
	margin: 0;
	border: none;
	font-size: 70px;
}
.service h3{
	margin-top: 0;
	margin-bottom: 25px;
	display: inline-block;
	padding: 0px 17px 10px;
	border-bottom: 3px double;
	font-family: 'jaapokki';
	font-size: 24px;
}
.service p{
	font-size: 14px;
	font-style: italic;
}


/*=======================
      09. SOME TEXT
=========================*/
#sometext .container{
	padding: 0 30px;
}
#sometext i{
	font-size: 60px
}
#sometext h3{
	border-bottom: 3px double;
	display: inline-block;
	padding: 25px 40px;
	margin-bottom: 30px;
	margin-top: 0;
	position: relative;
}
#sometext h3 span{
	position: absolute;
	font-size: 18px;
	left: 50%;
	top: 100%;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	padding: 0 15px;	
}
#sometext p{
	font-size: 16px;
}

/*=======================
       10. STORY
=========================*/
#story .container{
	padding: 0 30px;
}
#story .story-inner{
	padding-bottom: 50px;
}
.story-overlay{
	position: relative;
}
.story-overlay:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#story h3{
	margin-top: 30px;
	margin-bottom: 50px;
	border-left: none;
	border-right: none;
	border-top: none;
}
#story p{
	-webkit-column-count: 2;
	   -moz-column-count: 2;
			column-count: 2;
	-webkit-column-gap: 50px;
	   -moz-column-gap: 50px;
			column-gap: 50px;
	padding: 0 165px;
	font-size: 16px;
	text-align: justify;
}
#story p:first-letter{
	float: left;
	padding: 0px 18px 0px 7px;
	font-size: 67px;
	line-height: 56px;
}

/*=======================
        11. TEAM
=========================*/
.team-member{
	position: relative;
	border: 5px double;
}
.team-member h3{
	font-family: 'jaapokki';
	text-transform: uppercase;
	font-size: 23px;
}
.team-member p{
	font-size: 15px;
	text-transform: capitalize;
	font-style: italic;
}
.team-member img{
	display: block;
	max-width: 100%;
	height: auto;
}
.team-member .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	opacity: 0;
	-webkit-transition: .3s;
			transition: .3s;
}
.team-member:hover .overlay{
	opacity: 1;
}
.team-member .overlay > .social{
	display: inline-block;
	margin-top: 40%;
	padding: 0 20px 5px;
	border-bottom: 2px solid;
	border-top: 2px solid;
}
.team-member .overlay .social a{
	font-size: 30px;
	margin: 8px;
	color: #000;
}
.team-member .overlay .social a:hover{
	color: #555;
}

/*=======================
        12. VIDEO
=========================*/

.video-info{
	text-align: left;
	padding-left: 40px;
}
.video-info h3{
	padding: 0 60px 10px 2px;
	margin-bottom: 30px;
}
.video-info p{
	font-size: 16px;
}

/*=======================
    13. TESTIMONIALS
=========================*/
#testimonials{
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;	
	-webkit-background-size: cover;
			background-size: cover;
	margin-top: 25px;
	margin-bottom: 25px;
	padding-bottom: 80px;
}
#testimonials i{font-size: 40px;}
#testimonials h3{
	font-family: 'jaapokki';
	font-size: 19px;
	text-transform: uppercase;
	margin-bottom: 25px;
	display: inline-block;
	border-top: 4px double;
	padding: 30px 80px;
}
#testimonials p{
	font-style: italic;
	font-size: 32px;
	margin-top: 25px;
	margin-bottom: 37px;
}
.flex-control-paging{
	position: absolute;
	bottom: -37px;
	left: 0;
	right: 0;
}
.flex-control-paging li{
	display: inline-block;
	margin: 5px
}
.flex-control-paging a{
	border: 2px solid;
	display: block;
	color: inherit;
	text-indent: -9999px;
	width: 17px;
	height: 17px;
	cursor: pointer;
	position: relative;
}
.flex-control-paging .flex-active{
	border: 6px double;
	top: 4px;
}



/*========================
         14. WORK
==========================*/
#work{
	padding-top: 65px;
}
.filter-options{
	position: relative;
	border: 2px solid;
	border-right: none;
	border-left: none;
	text-align: center;
	padding: 22px 40px 15px;
	display: inline-block;
	margin-bottom: 60px;
}
.filter-options > span{
	white-space: nowrap;
	font-family: 'jaapokki';
	font-size: 22px;
	padding: 4px 20px 0px;
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}
.filter-options button{
	border: 5px double;
	padding: 5px 13px;
	font-size: 15px;
	margin: 8px;
	font-family: inherit;
}
.filter-options button:hover,
.filter-options button.active{
	border: 5px solid;
}
/*work item*/
.work-item{
	position: relative;
	padding: 15px;
}
.work-item .overlay{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	opacity: 0;
	color: #323232;
	border: 5px double;
	-webkit-transition: .3s;
			transition: .3s;
}
.work-item:hover .overlay{
	opacity: 1;
}
.work-item .overlay .centered{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	padding: 30px;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}
.work-item h3{
	font-family: 'jaapokki';
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 6px;
	font-size: 30px;
}
.work-item p{
	text-transform: capitalize;
	font-style: italic;
	color: #555;
	font-size: 15px;
}
.work-item img{
	max-width: 100%;
	height: auto;
	display: block;
}


/*=======================
       15. PRICING
=========================*/
#pricing{
	padding-bottom: 100px;
}
.pricebox{
	border: 11px double;
	width: auto;
	max-width: 550px;
	margin: auto;
}
.pricebox h3{
	font-size: 25px;
	font-family: 'jaapokki';
	text-transform: uppercase;
}
.pricebox .price{
	font-size: 60px;
	color: #fff;
	font-family: 'jaapokki';
	padding-top: 15px; 
}
.pricebox .price span{
	font-size: 22px;
}
.pricebox ul{
	margin-top: 15px; 
}
.pricebox ul li{
	font-size: 15px;
	font-style: italic;
	text-transform: capitalize;
	padding: 8px 0;
}

/*=======================
       16. CONTACT
=========================*/
#contact{
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;	
	-webkit-background-size: cover;
			background-size: cover;
	padding-bottom: 0;
}
#contact .heading{
	color: inherit;
}
#contact form{
	width: 960px;
	max-width: 100%;
	margin: auto;
	margin-bottom: 120px;
}
#contact input, #contact textarea{
	width: 100%;
	border: 7px double;
	background: none;
	outline: none;
	font-family: 'jaapokki';
}
#contact input:focus, #contact textarea:focus{
	border: 7px solid;
}
#contact input{
	font-size: 20px;
	padding: 5px 15px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
#contact textarea{
	font-size: 18px;
	padding: 10px;
	height: 130px;
}
#contact #submit{
	display: inline-block;
	width: auto;
	font-size: 25px;
	padding: 6px 32px;
	margin-top: 17px;
}
#contact #submit:hover{
	border: 7px solid;
}
#contact ::-webkit-input-placeholder { /* WebKit browsers */
    color: inherit;
}
#contact :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: inherit;
}
#contact ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: inherit;
}
#contact :-ms-input-placeholder { /* Internet Explorer 10+ */
   color: inherit;
}
.contact-message{
	display: none;
	font-size: 25px;
	font-style: italic;
	padding: 20px 0;
}
.contact-message .error{
	color: #FF8686;
}
/* CONTACT INFO */
.contact-info{
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 20px;
	background: rgba(0, 0, 0, 0.52);
}
.contact-info a{
	display: block;
	color: #fff;
}
.contact-info i{font-size: 44px}
.contact-info p{
	font-size: 18px;
	font-style: italic;
	margin: 10px;
}


/*=======================
       17. FOOTER
=========================*/
footer{
	padding: 60px 0;
}
footer .social{
	position: relative;
	display: inline-block;
	margin-top: 70px;
	margin-bottom: 70px;
	border-top: 2px solid;
	border-bottom: 2px solid;
	padding: 33px 50px;
}
footer .social span{
	position: absolute;
	font-size: 25px;
	left: 50%;
	top: 0;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	padding: 0 15px 5px;		
}
footer .social a{
	opacity: 1;
	font-size: 30px;
	margin:0 18px;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
}
footer .social a:hover{
	opacity: .6;
}
footer .copyright{
	font-size: 15px;
}

/* MAGNIFIC POPUP OVERRIDES */
.mfp-close{margin: 0}
.mfp-close:hover, .mfp-arrow:hover{background: none}
.mfp-fade.mfp-bg {opacity: 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out}
.mfp-fade.mfp-bg.mfp-ready {opacity: 0.8}
.mfp-fade.mfp-bg.mfp-removing {opacity: 0}
.mfp-fade.mfp-wrap .mfp-content {opacity: 0; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {opacity: 1}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {opacity: 0}





