/*----------------------------------------------------------------------------------

Theme Name:     PANA
Description:    
Author:         Spnoy
Author URI:     http://www.spnoy.com
Version:        1.0.0
License:        GNU General Public License
License URI:

-----------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------*/
/*  1. Document Body
/*---------------------------------------------------------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  background-color: #ffffff;
  color: #000000;
  direction: ltr;
  font-size: 100%;
}
* {
  outline-color: #de1f26;
}
a {
  text-decoration: none;
  color: #de1f26;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out, border 0.3s ease-out, opacity 0.3s ease-out;
  transition: background-color 0.3s ease-out, color 0.3s ease-out, border 0.3s ease-out, opacity 0.3s ease-out;
}
a:hover,
a:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 2.813rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.438rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125em;
}
video {
	max-width: 100%;
	height: auto;
}
input,
textarea {
  font-family: 'Poppins', helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
iframe {
  max-width: 100%;
}
.ss-tp blockquote {
  font-family: 'Poppins', helvetica, Arial, sans-serif;
}
.ss-heading-font {
  font-family: 'Playfair Display', helvetica, Arial, sans-serif;
}
.ss-body-font {
  font-family: 'Poppins', helvetica, Arial, sans-serif;
}
/* Gap */
.ss-gap {
    clear: both;
    width: 100%;
    margin: 0;
}
.invisible {
	visibility: hidden;
}

/*---------------------------------------------------------------------------------*/
/*  Header
/*---------------------------------------------------------------------------------*/

.ss-header {
	padding-top: 30px;
	padding-bottom: 30px;
}
.ss-header a {
	color: #000;
}
.ss-header a:hover {
	color: #de1f26;
}
.ss-menu-btn {
	display: none;
	float: right;
	margin-top: 25px;
}
.ss-menu-btn-open {
	font-size: 24px;
}
.ss-menu-btn-close {
	font-size: 26px;
}

.ss-menu-btn-txt {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-right: 10px;
	transform: translateY(-5px);
}
.ss-search-btn {
	float: right;
	margin-left: 35px;
	margin-top: 25px;
}
.ss-search-btn .far {
	font-size: 24px;
}

/*.ss-header-nav-close .ss-menu-btn-close {
	display: none;
}
.ss-header-nav-open .ss-search-btn {
	display: none;
}
.ss-header-nav-open .ss-menu-btn-open {
	display: none;
}
.ss-header-nav-open .ss-menu-btn-txt {
	display: none;
}
.ss-header-nav-open .ss-menu-btn {
	padding-left: 15px;
}
.ss-header-nav-open .ss-nav {
	display: block;
}*/
.ss-header-black {
	background-color: #000;
}
.ss-header-black a {
	color: #fff;
}
.ss-header-black .ss-header {

}
.ss-page-title-wrap {
	padding-top: 60px;
	padding-bottom: 90px;
	border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 1110px;
}
.ss-page-title-wrap.ss-empty {
	padding: 0;
}
.ss-page-title-wrap .col {
	padding-left: 0;
	padding-right: 0;
}
.ss-page-title {
	color: #fff;
	font-size: 48px;
}


/*Navigation*/
.ss-nav {
	text-align: right;
	margin-top: 29px;
	font-size: 14px;
}
.ss-nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.ss-nav-item {
	display: inline-block;
	padding: 0 10px;
}
.ss-nav li {
	position: relative;
}
.ss-nav li .sub-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: 230px;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-align: left;
  list-style: none;
  opacity: 0;
  z-index: 50;
  visibility: hidden;
  transform: translateY(20px) perspective(0) rotateX(0deg);
  transition: visibility 0s linear 0.3s, opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);

}
.ss-nav li:hover > .sub-menu {
  visibility: visible;
  transform: translateY(0) perspective(0) rotateX(0);
  opacity: 1;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.ss-nav-list > li > .sub-menu:before {
  position: absolute;
  top: -30px;
  left: 0;
  content: "";
  width: 100%;
  height: 30px;
}
.ss-nav li .sub-menu li {
  width: 100%;
  padding: 15px 0px;
  margin: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.6em;
}
.ss-nav li .sub-menu li:last-child {
  margin-bottom: 0;
  border: 0px;
}
.ss-nav li .sub-menu li a {
  display: inline-block;
  width: 100%;
}
.ss-nav li .sub-menu .sub-menu {
  left: 210px;
  top: 0;
}
.ss-nav li .sub-menu .sub-menu:before {
  position: absolute;
  top: 0;
  left: -35px;
  content: "";
  width: 35px;
  height: 100%;
}
.ss-header-search {
	display: none;
	float: right;
}
.ss-search-input {
	display: inline-block;
	border: 0;
	border-bottom: 1px solid #aaa;
	outline: 0;
	padding: 10px 0;
	width: 755px;
	margin-top: 10px;
	margin-right: 20px;
	text-transform: none;
}
.ss-header-black .ss-search-input {
	background-color: transparent;
}
.ss-search-open .ss-header-search {
	display: block;
}
.ss-search-open .ss-nav {
	display: none;
}


/*---------------------------------------------------------------------------------*/
/*  Headings
/*---------------------------------------------------------------------------------*/

.ss-heading {
	display: block;
	/*padding-top: 30px;*/
	padding-bottom: 40px;
}
.ss-heading::before {
	content: '';
	display: block;
	height: 2px;
	width: 48px;
	background-color: #de1f26;
}
.ss-heading-title {
	font-size: 32px;
	font-weight: 400;
	margin: 30px 0 0 0;
}


/*---------------------------------------------------------------------------------*/
/*  Featured Posts
/*---------------------------------------------------------------------------------*/

.ss-f-posts {
	display: block;
}
.ss-f-posts-list {
	list-style: none;
	/*display: block;*/
	padding: 0;
	margin: 0 -15px;
}
.ss-f-posts-item {
	display: inline-block;
	/*width: 24.6%;*/
	margin: 0;
	margin-bottom: 60px;
}
.ss-f-posts-link {
	display: block;
	transition: all 0.2s ease;
}
.ss-f-posts-fig {
	position: relative;
	margin: 0;
	padding: 0;
	border: 5px solid #b49a81;
}
.ss-f-posts-fig img {
	display: block;
	width: 100%;
	height: auto;
}
.ss-f-posts-cat {
	display: block;
	padding: 7px 0 10px 0;
	font-size: 16px;
	color: #b49a81;
}
.ss-f-posts-cat span {
	display: inline-block;
	font-size: 32px;
	transform: translateY(5px);
}
.ss-f-posts-title {
	font-size: 26px;
	margin: 0;
	line-height: 1.2;
	color: #000;
	font-weight: normal;
	transition: all 0.2s ease;
	margin-top: 15px;
}
.ss-f-posts-link:hover .ss-f-posts-title {
	color: #de1f26;
}
.ss-f-posts-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	background-color: rgba(0,0,0,0.75);
	opacity: 0;
	color: #fff;
	transition: all 0.2s ease;
}
.ss-f-posts-link:hover .ss-f-posts-overlay {
	opacity: 1;
}
.ss-f-posts-link:hover .ss-f-posts-fig {
	border-color: #1ce0d5;
}
.ss-f-posts-overlay-inner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	padding: 20px;
	font-size: 14px;
}
.ss-f-posts-line {
	display: block;
	height: 1px;
	background-color: #fff;
	margin: 12px 0;
}
.ss-f-posts-overlay-inner  i {
	padding-right: 8px;
}
.ss-f-posts-like {
	padding-right: 15px;
}

/* Blog feature */
.ss-f-blog-cat {
	display: block;
	padding: 7px 0 10px 0;
	font-size: 16px;
	color: #b49a81;
}
.ss-f-blog-cat span {
	display: inline-block;
	font-size: 32px;
	transform: translateY(5px);
}
.ss-f-blog-title {
	font-size: 24px;
	line-height: 1.4;
	margin: 0 0 20px 0;
	font-weight: normal;
}
.ss-f-blog-title a {
	color: #fff;
}
.ss-f-blog-title a:hover {
	color: #de1f26;
}
.ss-f-blog-text {
	font-size: 14px;
	line-height: 2;
	color: #999999;
}

.ss-f-blog-line {
	display: block;
	height: 1px;
	background-color: #fff;
	margin: 12px 0;
}
.ss-f-blog-like {
	padding-right: 15px;
}
.ss-f-blog-img img {
	width: 100%;
	height: auto;
}
.ss-f-blog-date {
	float: right;
}
.ss-f-blog-date i,
.ss-f-blog-comment i,
.ss-f-blog-like i {
	padding-right: 8px;
}
.ss-f-blog-readmore {
	display: block;
	font-weight: 500;
	color: #fff;
	margin-bottom: 20px;
}
.ss-f-blog-readmore:hover {
	color: #de1f26;
}
.ss-f-blog-readmore i {
	margin-left: 5px;
	text-align: center;
	width: 24px;
	height: 24px;
	padding-top: 5px;
	border-radius: 50%;
	background-color: #de1f26;
	color: #fff;
}
.ss-blog-readmore {
	display: block;
	font-weight: 500;
	color: #000;
	margin-bottom: 20px;
}
.ss-blog-readmore:hover {
	color: #de1f26;
}
.ss-blog-readmore i {
	margin-left: 5px;
	text-align: center;
	width: 24px;
	height: 24px;
	padding-top: 4px;
	border-radius: 50%;
	background-color: #de1f26;
	color: #fff;
}


/* Latest Posts */

.ss-l-posts {
	display: block;
}
.ss-l-posts-list {
	list-style: none;
	/*display: block;*/
	padding: 0;
	margin: 0 -15px;
}
.ss-l-posts-item {
	display: inline-block;
	/*width: 24.6%;*/
	margin: 0;
	margin-bottom: 60px;
}
.ss-l-posts-link {
	display: block;
	transition: all 0.2s ease;
}
.ss-l-posts-fig {
	position: relative;
	margin: 0;
	padding: 0;
	border: 5px solid #b49a81;
	overflow: hidden;
}
.ss-l-posts-fig img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;

	animation: zoomanim 8s linear infinite;
  	animation-play-state: paused;
}
.ss-l-posts-fig img:hover {
  	animation-play-state: running;
}
.ss-l-posts-cat {
	display: block;
	padding: 7px 0 10px 0;
	font-size: 16px;
	color: #b49a81;
}
.ss-l-posts-cat span {
	display: inline-block;
	font-size: 32px;
	transform: translateY(5px);
}
.ss-l-posts-title {
	font-size: 24px;
	margin: 0;
	line-height: 1.2;
	color: #222222;
	font-weight: normal;
	margin-bottom: 30px;
	transition: all 0.2s ease;
	margin-top: 15px;
}
.ss-l-posts-link:hover .ss-l-posts-title {
	color: #de1f26;
}
.ss-l-posts-date {
	color: #999999;
}
.ss-l-posts-date i {
	padding-right: 8px;
}

/* Blog */
.ss-content-wrap {
	padding: 60px 0;
}
.ss-blog {
	display: block;
}
.ss-blog-item {
	display: inline-block;
	width: 100%;
	margin-bottom: 40px;
}
.ss-blog-content {
	float: left;
	width: calc(55% - 30px);
}
.ss-blog-fig {
	float: left;
	margin: 0 30px 0 0;
	padding: 0;
	border: 5px solid #b49a81;
	width: 45%;
	overflow: hidden;
}
.ss-blog-fig img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	animation: zoomanim 8s linear infinite;
  	animation-play-state: paused; 

}
.ss-blog-fig img:hover {
  	animation-play-state: running;
}

@keyframes zoomanim {
  0% {transform: scale(1); }
  50% {transform: scale(1.2); }
  100% {transform: scale(1); }
}

.ss-blog-cat {
	display: block;
	padding: 0;
	font-size: 16px;
	transform: translateY(-12px);
	color: #b49a81;
}
.ss-blog-cat a {
	color: #b49a81;
}
.ss-blog-cat span {
	display: inline-block;
	font-size: 32px;
	transform: translateY(5px);
}
.ss-blog-title {
	font-size: 26px;
	margin: 0;
	color: #222222;
	font-weight: normal;
	margin-bottom: 20px;
	transition: all 0.2s ease;
	line-height: 1.2;
}
.ss-blog-title a {
	color: #000;
}
.ss-blog-title a:hover {
	color: #de1f26;
}
.ss-blog-desc {
	font-size: 14px;
	color: #999999;
	line-height: 1.7;
}
.ss-blog-link:hover .ss-blog-title {
	color: #de1f26;
}
.ss-blog-date {
	font-size: 14px;
	color: #999999;
}
.ss-blog-date i {
	padding-right: 8px;
	font-size: 16px;
}

/* Pagination*/
.ss-pagination {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 60px 0;
}
.ss-pagination a:not(.ss-pagination-next),
.ss-pagination span {
  display: inline-block;
  width: 47px;
  height: 47px;
  color: #000;
  text-align: center;
  padding-top: 15px;
  font-size: 16px;
  border-radius: 50%;
  font-weight: 600;
  transition: all 0.2s ease-out;
  margin: 0 2px;
}
.ss-pagination a:not(.ss-pagination-next):hover,
.ss-pagination span.current {
  background-color: #de1f26;
  color: #ffffff;
}
.ss-pagination-next {
	float: right;
	font-weight: 500;
	color: #000;
	margin-top: 10px;
}
.ss-pagination-next:hover {
	color: #de1f26;
}
.ss-pagination-next i {
	margin-left: 5px;
	text-align: center;
	width: 24px;
	height: 24px;
	padding-top: 4px;
	border-radius: 50%;
	background-color: #de1f26;
	color: #fff;
	line-height: 1;
}

/* Sidebar */
.ss-sidebar img {
	max-width: 100%;
	height: auto;
}
.ss-sidebar-ad {
	display: inline-block;
	margin-bottom: 20px;
}
.ss-share {
	display: inline-block;
	width: 100%;
	padding: 20px 15px;
	background-color: #de1f26;
	color: #fff;
	line-height: 1;
}
.ss-share-icon {
	float: left;
	font-size: 24px;
	opacity: 0.5;
	margin-right: 10px;
	margin-top: 1px;
}
.ss-share-text {
	float: left;
	font-size: 14px;
	margin-right: 10px;
	margin-top: 6px;
}
.ss-share-btn {
	display: inline-block;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	padding-top: 7px;
	font-size: 14px;
	text-align: center;
	background-color: #fff;
	color: #000;
}
.ss-share-btn:hover {
	background-color: #000;
	color: #fff;
}
.ss-share-btn-facebook:hover {
	background-color: #3C5A99;
}
.ss-share-btn-twitter:hover {
	background-color: #1DA1F2;
}
.ss-share-btn-linkedin:hover {
	background-color: #0077B5;
}
.ss-share-btn-telegram:hover {
	background-color: #0088cc ;
}



/* Widgets */
.ss-sidebar .widget {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 20px;
  background-color: #f3eae0;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget-title {
  font-family: 'Poppins', helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.widget ul {
  font-weight: normal;
  display: inline-block;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 16px;
}
.ss-sidebar .widget ul a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 13px;
	width: 20px;
	height: 1px;
	background-color: #d7d0c7;
	transition: background-color 0.3s ease-out, color 0.3s ease-out, border 0.3s ease-out, opacity 0.3s ease-out;
}
.ss-sidebar .widget ul li:hover > a:before {
	background-color: #de1f26;
}
.ss-sidebar .widget ul a {
	display: inline-block;
	width: 100%;
	position: relative;
	padding-left: 30px;
}
.ss-sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.ss-sidebar .widget ul ul {
	font-size: 14px;
	padding: 20px 0 20px 30px;
}
.ss-sidebar .widget ul ul a:before {
	width: 15px;
}
.ss-sidebar .widget ul ul a {
	padding-left: 20px
}
.widget a {
  color: #000;
}
.widget a:hover {
  color: #ed0027;
}
.ss-sidebar .widget_recent_entries ul,
.ss-sidebar .widget_recent_comments ul,
.ss-sidebar .widget_rss ul,
.ss-sidebar .widget_pages ul,
.ss-sidebar .widget_archive ul,
.ss-sidebar .widget_nav_menu ul,
.ss-sidebar .widget_meta ul,
.ss-sidebar .widget_categories ul {
  display: inline-block;
  width: 100%;
  list-style: none;
}
.ss-sidebar .widget_categories ul li,
.ss-sidebar .widget_recent_comments ul li,
.ss-sidebar .widget_rss ul li,
.ss-sidebar .widget_pages ul li,
.ss-sidebar .widget_nav_menu ul li,
.ss-sidebar .widget_archive ul li,
.ss-sidebar .widget_meta ul li,
.ss-sidebar .widget_recent_entries ul li {
  margin-bottom: 8px;
  line-height: 1.7em;
  text-transform: capitalize;
}
.widget_pages ul .children {
  margin-left: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.widget_nav_menu ul .sub-menu {
	/*display: none;*/
}
.widget_rss ul li {
  margin-bottom: 30px;
}
.tagcloud {
  font-family: 'Diavlo';
  font-weight: 300;
  display: inline-block;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 30px;
  background-color: #eaeaea;
  color: #222222;
}
.tagcloud a {
  display: inline-block;
  font-size: 18px !important;
  line-height: 1.7em;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.tagcloud a::after {
  content: '-';
  display: inline-block;
  margin: 0 7px;
}
.tagcloud a:last-child:after {
  content: normal;
}
.widget_calendar caption {
  margin-bottom: 15px;
}
.widget_calendar td,
.widget_calendar th {
  padding: 5px;
  text-align: center;
}
.widget_text .textwidget {
  font-size: 14px;
  line-height: 1.7em;
}
.widget_search {
  background-color: #eaeaea;
  padding: 30px;
}
.search-box {
  display: inline-block;
  width: 100%;
  position: relative;
  height: 45px;
}
.widget .search-box .search-box-text {
  padding: 11px 20px;
  width: 100%;
  border: 0;
  background-color: #ffffff;
}
.search-box .search-box-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 47px;
  height: 100%;
  border: none;
  display: table-cell;
  text-align: center;
  font-size: 16px;
  padding: 14px 0 0;
  color: #ffffff;
  background-color: #ed0027;
}
.search-box input.search-box-submit {
  background-color: transparent;
  z-index: 20;
}

/* Blog Single*/
.wp_ulike_btn:hover {
	cursor: pointer;
}
.ss-single-header-wrap {
	background-color: #000;
	color: #999;
}
.ss-single-header-wrap img {
	max-width: 100%;
	height: auto;
}
.ss-single-header-content {
	position: relative;
	padding-top: 40px;
	height: 100%;
}
.ss-single-meta {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 30px;
	font-size: 14px;
}
.ss-single-meta i {
	font-size: 16px;
}
.ss-single-line {
	display: block;
	height: 1px;
	background-color: #999;
	margin: 12px 0;
}
.ss-single-cat {
	display: block;
	padding: 7px 0 10px 0;
	font-size: 16px;
	color: #b49a81;
}
.ss-single-cat a {
	color: #b49a81;
}
.ss-single-cat span {
	display: inline-block;
	font-size: 32px;
	transform: translateY(5px);
}
.ss-single-title {
	font-size: 32px;
	line-height: 1.2;
	margin: 0;
	font-weight: normal;
}
.ss-single-title a {
	color: #fff;
}
.ss-single-title a:hover {
	color: #de1f26;
}
.ss-single-text {
	font-size: 16px;
	line-height: 1.6;
	color: #999999;
	margin-top: 15px;
}
.ss-single-like {
	padding-right: 15px;
}
.ss-single-img img {
	width: 100%;
	height: auto;
}
.ss-single-date {
	float: right;
}
.ss-single-comment {
	color: #999;
}
.ss-single-comment:hover,
.ss-single-comment:focus {
	color: #de1f26;
}
.ss-single-date i,
.ss-single-comment i,
.ss-single-like i {
	padding-right: 8px;
}
.blog-single-tags {
	display: inline-block;
	width: 100%;
	padding: 15px 0;
	margin-top: 30px;
	font-size: 14px;
	color: #000;
	font-weight: normal;
	border-top: 1px solid rgba(0,0,0,0.15);
	border-bottom: 1px solid rgba(0,0,0,0.15);
}
.blog-single-tags-title {
	color: #999999;
}
.blog-single-tags a {
	color: #000;
}
.blog-single-tags a:hover {
	color: #de1f26;
}
.ss-related-posts {
	margin-top: 60px;
}

/* Gallery */
.ss-gallery-wrap {
	padding: 60px 0;
	background-color: #000;
	color: #fff;
}
.ss-single-gallery-slides {
	margin: 0;
	padding: 0;
	list-style: none;
}
.ss-single-gallery-slides img {
	width: 100%;
	height: auto;
}
.ss-gallery {
	display: inline-block;
	width: calc(100% + 30px);
	list-style: none;
	padding: 0;
	margin: 0 -15px;
}
.ss-gallery-item,
.ss-gallery-sizer {
	width: calc(33.3% - 30px);
}
.ss-gallery-item {
	float: left;
	position: relative;
	
	margin: 0 15px 30px 15px;
}
.ss-gallery-item--big {
	width: calc(66.6% - 30px);
}
.ss-gallery-item img {
	width: 100%;
	height: auto;
}
.ss-gallery-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
	transition: opacity 0.3s ease;
	opacity: 0;
}
.ss-gallery-item:hover .ss-gallery-overlay {
	opacity: 1;
}
.ss-gallery-cat {
	display: block;
	padding: 7px 0 10px 0;
	font-size: 16px;
	color: #b49a81;
}
.ss-gallery-cat span {
	display: inline-block;
	font-size: 32px;
	transform: translateY(5px);
}
.ss-gallery-title {
	font-size: 26px;
	margin: 0;
	color: #fff;
	font-weight: normal;
	transition: all 0.2s ease;
}
.ss-gallery-inner {
	position: absolute;
	left: 30px;
	bottom: 60px;
}

/* Gallery Carousel */

.ss-single-car {
	position: relative;
}
.ss-single-car img {
	width: 100%;
	height: auto;
}
.ss-single-car-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, 0.4);
	box-shadow: inset 0px 0px 0px 5px rgba(28,224,213,1);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.ss-single-car-icon {
	background-color: #de1f26;
	width: 66px;
	height: 66px;
	text-align: center;
	line-height: 1;
	font-size: 24px;
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 33px);
	top: calc(50% - 33px);
	color: #fff;
	padding-top: 21px;
}
.ss-single-car:hover .ss-single-car-overlay {
	opacity: 1;
}
.ss-cal-arrows {
	float: right;
	margin-top: 15px;
}
.ss-cal-prev,
.ss-cal-next {
	display: inline-block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #f6f7f8;
	color: #de1f26;
	text-align: center;
	font-size: 24px;
	padding-top: 12px;
}
.ss-cal-prev:hover,
.ss-cal-next:hover,
.ss-cal-prev:focus,
.ss-cal-next:focus {
	background-color: #de1f26;
	color: #f6f7f8;
}

/*---------------------------------------------------------------------------------*/
/*  #  Single Blog Comments
/*---------------------------------------------------------------------------------*/

.ss-single-blog-post {
	margin-bottom: 30px;
}
.ss-single-blog-comments{
float: right;
width: 100%;
margin: 40px 0;
}

/* Single Blog Comments title */
.ss-single-comments-title,
.comment-reply-title{
display: block;
float: right;
width: 100%;
margin-bottom: 20px;
line-height: 1;
font-size: 32px;
}
.ss-single-comments-title span {
display: inline-block;
color: #c9a84b;
margin-left: 5px;
/*font-size:2.0rem;*/
}

/* Single Comment Lists */
.ss-single-cooment-list{
margin-right:-30px;
}
.ss-single-cooment-list li{
margin:0 30px 0 0;
display: block;
}
.ss-single-cooment-list li .children{
display: block;
float: right;
margin-bottom: 10px;
margin-top: -10px;
}
.ss-single-cooment-list li .children li .ss-single-comments-item{
border-right: 2px solid #c9a84b;
display: block;
float: right;
}
.ss-single-comments-item{
float: right;
width: 100%;
margin: 0;
padding: 0;
margin-bottom: 20px;
list-style: none;
}
.ss-single-ci-header{
float: right;
width: 100%;
padding: 20px;
background-color: #f5f5f5
}
.ss-single-cih-img{
float: right;
width: 50px;
height: 50px;
overflow:hidden;
-webkit-border-radius: 100%; 
-moz-border-radius: 100%; 
border-radius: 100%;
}
.ss-single-cih-img img{
display: block;
width: 100%;
}
.ss-single-cih-title{
float: right;
width: calc(100% - 175px);
padding-right: 20px;
padding-top: 10px;
}
.ss-single-cih-title h5,
.ss-single-cih-title cite{
line-height: 1.75rem;
font-family: "iransans";
font-size:1.0em;
margin-bottom: 4px;
}
.comment-reply-link {
	font-size: 0.875rem;
}
.ss-single-cih-title span{
display: block;
font-size:0.75em;
color: #828282
}
.ss-single-cih-reply{
float: left;
width: 100px;
padding-top: 20px;
}
.ss-single-cih-reply a{
padding: 6px 36px !important;
background-color: #fff;
}
.ss-single-ci-content{
float: right;
width: 100%;
background-color: #fafafa;
padding:20px 20px 40px 20px;
font-size: 14px;
line-height: 1.6;
}

/* Single Blog Comments Respond */
.ss-comment-respond{
float: right;
width: 100%;
margin-bottom: 40px;
}
#comment-text textarea {
width: 100%;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
.ss-comment-respond #comment-text{
margin-bottom: 10px;
float: right;
width: 100%;
display: block;
}
.comment-respond p {
display: inline-block;
width: calc(33.333% - 10px);
margin-bottom: 15px;
margin-right: 10px;
float: left;
}
.comment-respond p.last {
margin-left: 0;
width: 33.3% ;
}
.comment-respond .form-submit {
width: 100% !important;
display: block;

}
p.comment-form-cookies-consent {
	display: inline-block;
	width: 100%;
	margin: 0;
}
p.comment-form-cookies-consent input {
	display: inline-block;
	width: auto;
}
p.comment-form-cookies-consent label {
	font-size: 14px;
	margin-left: 10px;
}
.moderation {
	font-size: 0.875rem;
	padding: 5px 15px;
	background-color: #f5f5f5;
	display: inline-block;
	margin-bottom: 10px;
}
#cancel-comment-reply-link {
	font-size: 0.875rem;
}
#cancel-comment-reply-link::before {
	content: ' / ';
}
.children .comment {
	margin-right: 30px;
}
.children .ss-single-comments-item	 {
	border-right: 2px solid #c9a84b
}


/* Footer */
.footer-para-btn {
	position: absolute;
	left: calc(50% - 22px);
	bottom: 60px;
	font-size: 62px;
	color: #fff;
	background-color: #999999;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	padding-top: 14px;
	text-align: center;
	transform: rotate(90deg);
}
.ss-footer-para-open .footer-para-btn {
	transform: rotate(-90deg);
}
.footer-para-overlay {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 200px;
	width: 100%;
    background: linear-gradient(0, rgba(246,247,248,1) 0%, rgba(246,247,248,1) 69%, rgba(255,255,255,0) 100%);
	transition: opacity 0.3s ease;
}
.footer-para-btn:hover,
.footer-para-btn:focus {
	opacity: 0.7;
	color: #fff;
}
.ss-footer-wrap {
	background-color: #f6f7f8;
	color: #000000;
	padding: 40px 0;
}
.ss-footer-wrap.ss-footer-black {
	background-color: #000;
	color: #fff;
}
.ss-footer-wrap.ss-footer-black a {
	color: #fff;
}
.footer-para {
	position: relative;
	text-align: center;
	padding: 0 120px 60px;
	height: 250px;
	overflow: hidden;
	transition: height 0.3s ease;
}
.footer-nav {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding-bottom: 15px;
	font-size: 14px;
	font-weight: 400;
}
.footer-nav a {
	color: #000;
}
.footer-nav a:hover {
	color: #de1f26;
}
.footer-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-nav-item {
	display: inline-block;
	padding: 0 15px;
	margin-bottom: 15px;
}
.ss-copyright {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	padding: 15px 0;
	text-align: center;
}
.ss-footer-social {
	display: inline-block;
	width: 100%;
	padding: 15px 0 0;
	text-align: center;
}
.ss-footer-social a {
	display: inline-block;
	font-size: 16px;
	color: #000;
	padding: 0 10px;
}
.ss-footer-social .ss-footer-social-facebook-f:hover {
	color: #3C5A99;
}
.ss-footer-social .ss-footer-social-twitter:hover {
	color: #1DA1F2;
}
.ss-footer-social .ss-footer-social-linkedin:hover {
	color: #0077B5;
}
.ss-footer-social .ss-footer-social-telegram-plane:hover {
	color: #0088cc ;
}

/* Mobile Menu */
.ss-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  width: 300px;
  height: 100%;
  background: #000;
  color: #ffffff;
  transform: translate3d(-100%, 0, 0);
}
.ss-mobile-navigation-wrap {
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
}
.ss-mobile-menu-close-btn {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 24px;
  line-height: 1;
  margin-left: -24px;
  color: #ffffff;
}
.ss-mobile-menu-close-btn:hover {
  color: #ed0027;
}
.ss-mobile-navigation {
  list-style: none;
  padding: 0;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  text-align: left;
}
.ss-mobile-navigation li {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
}
.ss-mobile-navigation li:first-child {
  padding-top: 0;
}
.ss-mobile-navigation li a {
  display: block;
  color: #a6a6a6;
  border-bottom: 1px solid #222222;
  padding: 20px 0;
}
.ss-mobile-navigation li:first-child > a {
  /*border-top: 1px solid #222222;*/
}
.ss-mobile-navigation li a:hover {
  color: #ffffff;
}
.ss-mobile-navigation li .sub-menu {
  padding-left: 15px;
  list-style: none;
}
.ss-mobile-navigation li .sub-menu > li {
  padding: 0;
  font-size: 14px;
}
.ss-mobile-navigation li .sub-menu > li:last-child {
  padding-bottom: 0;
}
.ss-mobile-navigation li .sub-menu > li:first-child a {
  border-top: none;
}
.ss-pusher {
  position: relative;
  z-index: 100;
  transition: transform 0.3s ease;
}
.ss-mobile-menu-open .ss-pusher {
  /*transform: translate3d(300px, 0, 0);*/
}
.ss-mobile-menu {
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}
.ss-mobile-menu-open .ss-mobile-menu {
  visibility: visible;
  transition: transform 0.3s ease, visibility 0.3s linear;
  transform: translate3d(0, 0, 0);
}
.ss-mobile-search-submit {
	display: none !important;
}
.ss-mobile-search {
	width: 100%;
	padding: 0 20px;
	margin-top: 90px;
	position: relative;
}
.ss-mobile-search-input {
	display: block;
	width: 100%;
	border: 0;
	border-bottom: 1px solid #aaa;
	color: #fff;
	background-color: transparent;
	outline: 0;
	padding: 10px 0;
	margin-top: 17px;
	margin-right: 20px;
	text-transform: none;
}
.ss-mobile-search-icon {
	position: absolute;
	right: 20px;
	top: 10px;
}


/*---------------------------------------------------------------------------------*/
/*  Typography
/*---------------------------------------------------------------------------------*/

.ss-tp {
  font-weight: normal;
  font-size: 14px;
}
.ss-tp h1:not(.ss-no-tp) {
  font-size: 38px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.ss-tp h2:not(.ss-no-tp) {
  font-size: 36px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.ss-tp h3:not(.ss-no-tp) {
  font-size: 28px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.ss-tp h4:not(.ss-no-tp) {
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.ss-tp h5:not(.ss-no-tp) {
  font-size: 18px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.ss-tp h6:not(.ss-no-tp) {
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 15px;
}
.ss-tp p:not(.ss-no-tp) {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 1em 0;
}
.ss-tp p:not(.ss-no-tp):last-child {
  margin-bottom: 0;
}
.ss-tp img:not(.ss-no-tp) {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.ss-tp ul li:not(.ss-no-tp),
.ss-tpol li:not(.ss-no-tp) {
  margin-bottom: 1em;
}
.ss-tp li ul:not(.ss-no-tp),
.ss-tp li ol:not(.ss-no-tp) {
  margin-bottom: 1em;
  margin-top: 1em;
}
.ss-tp table {
  margin-bottom: 15px;
}
.ss-tp address {
  font-size: 1.6rem;
  line-height: 1.6;
}
.ss-tp blockquote:not(.ss-no-tp) {
	display: inline-block;
	width: 100%;
	margin: 30px 0;
	padding: 40px 30px 30px;
	border: 5px solid #b49a81;
	font-size: 16px;
	position: relative;
}
.ss-tp blockquote p:not(.ss-no-tp) {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
}	
.ss-tp blockquote:not(.ss-no-tp):before {
	position: absolute;
	font-size: 56px;
	left: 45px;
    top: -30px; 
    background-color: #fff;
    color: #b49a81;
    padding: 0 10px;
	content: "\f10d";
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.valign {
  display: table;
  width: 100%;
}
.valign > div,
.valign > article,
.valign > section,
.valign > figure,
.valign > ul,
.valign > span {
  display: table-cell;
  vertical-align: middle;
}

/* Contact */
.ss-form label {
	display: inline-block;
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 16px;
}
.ss-form textarea {
	height: 183px;
}
.ss-contact-side {
	background-color: #f3eae0;
	padding: 25px 30px 50px;
	margin-top: 230px;
}
.ss-contact-side h4 {
	font-family: 'Poppins', helvetica, Arial, sans-serif;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 30px;
}
.ss-contact-side h5 {
	font-family: 'Poppins', helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1;
	margin-bottom: 20px;
}
.ss-contact-info {
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
}
.ss-contact-info li {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 400;
}
.ss-contact-social {
	display: inline-block;
	margin-right: 20px;
	font-size: 16px;
	color: #000;
}
.ss-contact-social:hover {
	color: #de1f26;
}
.wpcf7-validation-errors {
	border: 0 !important;
	color: #f1c40f;
	margin: 30px 0 0 0 !important;
	padding: 0 !important;
}
.wpcf7-mail-sent-ng {
	border: 0 !important;
	color: #e74c3c;
	margin: 30px 0 0 0 !important;
	padding: 0 !important;
}
span.wpcf7-not-valid-tip {
	margin-top: 5px !important;
}

/* WP Styling */

.wp-caption {
	margin-bottom: 1.75em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}
.wp-caption img {
	margin-bottom: 0 !important;
}
.wp-caption .wp-caption-text {
	color: #999999;
	font-size: 14px;
	font-style: italic;
	line-height: 1.6153846154;
	padding-top: 0.5384615385em;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.alignleft {
	float: left;
	margin: 0.375em 1.75em 1em 0;
}

.alignright {
	float: right;
	margin: 0.375em 0 1em 1.75em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

blockquote.alignleft {
	margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
}

blockquote.alignright {
	margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
}

blockquote.aligncenter {
	margin-bottom: 1.473684211em;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: Inconsolata, monospace;
}

pre {
	border: 1px solid #d1d1d1;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3125;
	margin: 0 0 1.75em;
	max-width: 100%;
	overflow: auto;
	padding: 1.75em;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

code {
	background-color: #d1d1d1;
	padding: 0.125em 0.25em;
}

abbr,
acronym {
	border-bottom: 1px dotted #d1d1d1;
	cursor: help;
}

mark,
ins {
	background: #007acc;
	color: #fff;
	padding: 0.125em 0.25em;
	text-decoration: none;
}

big {
	font-size: 125%;
}


/*---------------------------------------------------------------------------------*/
/*  20. Form Fields
/*---------------------------------------------------------------------------------*/
input,
textarea {
  width: 100%;
  font-size: 16px;
  padding: 11px 20px;
  background-color: #ffffff;
  color: #222222;
  line-height: 1;
  font-weight: normal;
  border: 1px solid rgba(0,0,0,0.15);
  margin: 0;
  text-transform: capitalize;
}
input:focus,
textarea:focus {
  outline: 0;
}
input[type="submit"],
input[type="button"],
input[type="reset"] {
  display: inline-block;
  background-color: #de1f26;
  color: #ffffff;
  padding: 10px 30px;
  border: 0;
  width: auto;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.2s ease-out;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  color: #fff;
  background-color: #000;
}
input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999999;
}
input:-moz-placeholder {
  font-size: 14px;
  color: #999999;
}
input::-moz-placeholder {
  font-size: 14px;
  color: #999999;
}
input:-ms-input-placeholder {
  font-size: 14px;
  color: #999999;
}
textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #999999;
}
textarea:-moz-placeholder {
  font-size: 14px;
  color: #999999;
}
textarea::-moz-placeholder {
  font-size: 14px;
  color: #999999;
}
textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #999999;
}

/* Custom */
/*.widget_categories ul ul {
	display: hide;
}
.widget_categories ul a {
	pointer-events: none;
}
.widget_categories ul a:before {
	pointer-events: all;
}*/
.ss-sidebar .widget_categories .children {
	display: none;
}
.widget_categories ul li {
	position: relative;
}
.widget_categories > ul > li > a:before {
	content: initial !important;
}
.ss-widget-btn {
	position: absolute;
    left: 7px;
    top: 2px;
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    z-index: 300;
}
.ss-widget-btn:hover {
	cursor: pointer;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

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

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  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: 1045; }

.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: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.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;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

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: #FFF;
  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: #333; }

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

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

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .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);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 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-wrap: break-word;
  padding-right: 36px; }

.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; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    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; } }

@media all and (max-width: 900px) {
  .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; } }




/*---------------------------------------------------------------------------------*/
/*  ## Media Queries
/*---------------------------------------------------------------------------------*/

/* Under 1200px */
@media screen and (max-width: 1199px) {
	.ss-search-input {
		width: 600px;
	}
	.ss-page-title-wrap {
		max-width: 942px;
	}
	.ss-single-title {
		font-size: 24px;
	}
	.ss-single-text,
	.ss-single-cat {
		font-size: 14px;
	}
	.ss-share-text {
		display: none;
	}
	.ss-single-header-row {
		flex-direction: column-reverse;
	}
	.ss-single-header-content {
		height: auto;
	}
	.ss-single-header-content {
		padding-top: 10px;
	}
	.ss-single-meta {
		position: static;
	}
	.ss-single-header-content {
		margin-bottom: 30px;
	}
	.ss-single-fig {
		padding: 0;
	}
}
/* Under 1024px */
/* Tablets */
@media screen and (max-width: 992px) {
	.ss-search-input {
		width: 350px;
	}
	.ss-heading-title {
		font-size: 26px;
	}
	.ss-f-posts-title,
	.ss-f-blog-title,
	.ss-l-posts-title {
		font-size: 24px;
	}
	.footer-para {
		padding-left: 20px;
		padding-right: 20px;
	}
	.ss-search-input,
	.ss-search-btn {
		display: none;
	}
	.ss-page-title-wrap {
		max-width: 700px;
	}
	.ss-gallery-title {
		font-size: 20px;
	}
	.ss-contact-side {
		margin-top: 60px;
	}
	.ss-nav {
		display: none;
	}
	.ss-menu-btn {
		display: inline-block;
	}
}
/* Tablets & Mobiles */
@media screen and (max-width: 768px) {
	.ss-search-input {
		width: 200px;
	}
	.ss-page-title-wrap {
		max-width: 520px;
	}
	.ss-page-title {
		font-size: 32px;
	}
	.ss-blog-title {
		font-size: 24px;
	}
	.ss-gallery-item,
	.ss-gallery-sizer {
		width: 100%;
	}
	.ss-gallery-item {
		margin-left: 0;
		margin-right: 0;
	}
	.ss-gallery-item--big {
		width: 100%;
	}
	.ss-gallery {
		width: 100%;
		margin: 0;
	}

}
/* Small Devices */
@media screen and (max-width: 576px) {

	.ss-page-title-wrap {
		max-width: calc(100% - 30px);
	}
	.ss-blog-fig {
		width: 100%;
		margin: 0 0 30px 0;
	}
	.ss-blog-content {
		width: 100%;
	}
	.footer-para {
		height: auto !important;
	}
	.footer-para-overlay,
	.footer-para-btn {
		display: none !important;
	}
	
}
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}