/*
Template Name: Callie HTML Template
Author: yaminncco

Colors:
	Body 		  : #505050
	Headers 	: #11151c
	Primary 	: #ee4266
	Dark 		  : #1b1c1e
	Grey 		  : #e8eaed #97989b #323335

Fonts: Montserrat & Muli

Table OF Contents
------------------------------------
GENERAL
NAVIGATION
PAGE HEADER
POST
POST PAGE
ASIDE
FOOTER
RESPONSIVE
------------------------------------*/

/*=========================================================
	GENERAL
===========================================================*/

/*----------------------------*\
	typography
\*----------------------------*/

body {
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  color: #505050;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #11151c;
  font-weight: 700;
  margin: 0px 0px 15px;
}

h1 {
  font-size: 32.437px;
}

h2 {
  font-size: 25.629px;
}

h3 {
  font-size: 20.25px;
}

h4 {
  font-size: 16px;
}

h5 {}

p {
  margin: 0px 0px 20px;
}

::-moz-selection {
  background-color: #ee4266;
  color: #FFF;
}

::selection {
  background-color: #ee4266;
  color: #FFF;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

ul.list-style, ol.list-style {
  padding-left: 15px;
  margin-bottom: 10px;
}

ul.list-style {
  list-style-type: disc;
}

ol.list-style {
  list-style-type: decimal;
}

blockquote.blockquote {
  padding: 30px;
  margin: 0px 0px 20px;
  border: 2px solid #e8eaed;
}

blockquote.blockquote:before {
  content: "\f10d";
  font-family: fontAwesome;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color: #ee4266;
  font-size: 30px;
  background: #fff;
  border: 2px solid #e8eaed;
  float: left;
  margin-right: 10px;
}

blockquote.blockquote .blockquote-footer {
  color: #97989b;
}

figure {
  margin-bottom: 20px;
}

figure>img {
  width: 100%;
}

figure.pull-right {
  margin-left: 15px;
}

figure.pull-left {
  margin-right: 15px;
}

figure>figcaption, figure>figcaption a {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: #97989b;
}

/*----------------------------*\
	section
\*----------------------------*/

.section {
  padding-top: 30px;
}

.section-row {
  margin-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 20px;
}

.section-title .title {
  position: relative;
  display: inline-block;
  background-color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-right: 10px;
  z-index: 20;
}

.section-title:after {
  content: "";
  display: inline-block;
  height: 2px;
  background-color: #e8eaed;
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  z-index: 10;
}

/*----------------------------*\
	input
\*----------------------------*/

.input {
  width: 100%;
  height: 40px;
  padding: 0px 15px;
  background-color: #fff;
  border-radius: 2px;
  border: 2px solid #e8eaed;
}

textarea.input {
  padding: 15px;
  height: 90px;
}

/*----------------------------*\
	button
\*----------------------------*/

.primary-button, .secondary-button {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 2px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-button {
  background-color: #ee4266;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #ee4266 inset;
  box-shadow: 0px 0px 0px 2px #ee4266 inset;
}

.secondary-button {
  background-color: #353535;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #353535 inset;
  box-shadow: 0px 0px 0px 2px #353535 inset;
}

.primary-button:hover, .primary-button:focus {
  background-color: transparent;
  color: #ee4266;
}

.secondary-button:hover, .secondary-button:focus {
  background-color: transparent;
  color: #353535;
}

/*----------------------------*\
	social colors
\*----------------------------*/

.social-facebook {
  background: #225b99 !important;
}

.social-twitter {
  background: #00adf2 !important;
}

.social-google-plus {
  background: #dc4d2d !important;
}

.social-pinterest {
  background: #cc2127 !important;
}

.social-instagram {
  background: #d341b2 !important;
}

/*=========================================================
	NAVIGATION
===========================================================*/

#nav {
  border-bottom: 1px solid #e8eaed;
}

#nav:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#nav.shadow-active:after {
  opacity: 1;
  visibility: visible;
}

#nav-top {
  text-align: center;
}

#nav-top>.container {
  position: relative;
}

#nav-bottom {
  border-top: 1px solid #e8eaed;
}

/*----------------------------*\
	social
\*----------------------------*/

.nav-social {
  float: left;
  padding: 10px 0px;
}

.nav-social li {
  display: inline-block;
}

.nav-social li a {
  display: block;
  padding: 15px;
  line-height: 20px;
}

/*----------------------------*\
	logo
\*----------------------------*/

.nav-logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-logo .logo {
  display: inline-block;
  line-height: 70px;
  height: 70px;
}

.nav-logo .logo>img {
  /* width: 100%; */
  max-height: 70px;
}

/*----------------------------*\
	search
\*----------------------------*/

.nav-btns {
  float: right;
  padding: 10px 0px;
}

.nav-btns>button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: none;
  background: transparent;
}

#nav-search {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  max-width: 960px;
  width: 100%;
  padding: 60px 5%;
  background: #1b1c1e;
  z-index: 999;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#nav-search.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

#nav-search form .input {
  height: 80px;
  background: transparent;
  border: 2px solid #323335;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 15px 25px;
}

/*----------------------------*\
	menu
\*----------------------------*/

.nav-menu {
  position: relative;
  text-align: center;
  float: none;
}

.nav-menu>li {
  float: none;
  display: inline-block;
}

.nav-menu>li>a {
  display: block;
  padding: 25px 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

/*----------------------------*\
	dropdown
\*----------------------------*/

.nav-menu li.has-dropdown {
  position: relative;
}

.nav-menu li.has-dropdown>a:after {
  font-family: 'FontAwesome';
  content: "\f0d7";
  margin-left: 5px;
}

.nav-menu li.has-dropdown>.dropdown {
  position: absolute;
  left: 0;
  width: 200px;
  text-align: left;
  z-index: 60;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.nav-menu li.has-dropdown:hover>.dropdown {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.nav-menu li.has-dropdown>.dropdown .dropdown-body {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #fff;
}

.dropdown .dropdown-list li {
  border-bottom: 1px solid #e8eaed;
}

.dropdown .dropdown-list li a {
  display: block;
  padding: 10px;
  line-height: 20px;
}

.dropdown .dropdown-heading {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 30px;
}

/*----------------------------*\
	mega dropdown
\*----------------------------*/

.nav-menu li.has-dropdown.megamenu {
  position: static;
}

.nav-menu li.has-dropdown.megamenu>.dropdown {
  width: 100%;
}

.nav-menu li.has-dropdown.megamenu>.dropdown .dropdown-body {
  padding: 30px;
}

.nav-menu li.has-dropdown.megamenu>.dropdown .dropdown-list {
  margin-bottom: 30px;
}

.nav-menu li.has-dropdown.megamenu>.dropdown .dropdown-list li a {
  padding-left: 0px;
  padding-right: 0px;
}

/*----------------------------*\
	tab dropdown
\*----------------------------*/

.nav-menu li.has-dropdown.megamenu>.dropdown.tab-dropdown .tab-content {
  z-index: 70;
  position: relative;
  margin-left: -30px;
}

.nav-menu li.has-dropdown.megamenu>.dropdown.tab-dropdown .tab-nav {
  background-color: #1b1c1e;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 60;
}

.nav-menu li.has-dropdown.megamenu>.dropdown.tab-dropdown .tab-nav li {
  border-bottom: 1px solid #323335;
}

.nav-menu li.has-dropdown.megamenu>.dropdown.tab-dropdown .tab-nav li a {
  display: block;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.nav-menu li.has-dropdown.megamenu>.dropdown.tab-dropdown .tab-nav li.active {
  background: #ee4266
}

.nav-menu li.has-dropdown.megamenu>.dropdown.tab-dropdown .tab-nav li.active a {
  color: #fff;
}

/*----------------------------*\
	nav aside
\*----------------------------*/

#nav-aside {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #1b1c1e;
  max-width: 360px;
  width: 100%;
  padding: 80px 20px;
  overflow-y: scroll;
  z-index: 105;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.4s all cubic-bezier(.77, 0, .18, 1);
  transition: 0.4s all cubic-bezier(.77, 0, .18, 1);
}

#nav-aside.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.nav-aside-menu li a {
  display: block;
  padding: 15px 0px;
  color: #fff;
  border-bottom: 1px solid #323335;
}

.nav-aside-menu li a:hover, .nav-aside-menu li a:focus {
  color: #ee4266;
}

.nav-aside-menu li.has-dropdown>a {
  cursor: pointer;
}

.nav-aside-menu li.has-dropdown>a:after {
  font-family: 'FontAwesome';
  content: "\f0d7";
  float: right;
}

.nav-aside-menu li.has-dropdown>.dropdown {
  display: none;
  margin-left: 30px;
  border-left: 1px solid #323335;
}

.nav-aside-menu li.has-dropdown.active>.dropdown {
  display: block;
}

.nav-aside-menu li.has-dropdown>.dropdown a {
  padding: 15px;
}

.nav-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: none;
}

.nav-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-close span:before, .nav-close span:after {
  content: "";
  display: block;
  width: 30px;
  background-color: #fff;
  height: 2px;
}

.nav-close span:before {
  -webkit-transform: translateY(0px) rotate(-135deg);
  -ms-transform: translateY(0px) rotate(-135deg);
  transform: translateY(0px) rotate(-135deg);
}

.nav-close span:after {
  -webkit-transform: translateY(-2px) rotate(135deg);
  -ms-transform: translateY(-2px) rotate(135deg);
  transform: translateY(-2px) rotate(135deg);
}

/*=========================================================
	PAGE HEADER
===========================================================*/

.page-header {
  position: relative;
  margin: 0;
  padding-top: 80px;
  padding-bottom: 50px;
  background-color: #1b1c1e;
  background: linear-gradient(to bottom,#240b36,#42275a);
}

#post-header {
  padding-top: 630px;
  padding-bottom: 80px;
}

.page-header .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-header .page-header-bg:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.page-header h1 {
  font-size: 41.053px;
  color: #FFF;
}

.page-header p.lead {
  font-size: 20.25px;
  color: #FFF;
}

/*=========================================================
	POST
===========================================================*/

.post {
  position: relative;
  margin-bottom: 30px;
}

.post .post-body {
  position: relative;
  margin: -50px 0px 0px 3%;
  padding: 5%;
  background: #fff;
  z-index: 10;
}

.post .post-img {
  display: block;
  overflow: hidden;
}

.post-img>img {
  width: 100%;
  -webkit-transition: 1.6s -webkit-transform;
  transition: 1.6s -webkit-transform;
  transition: 1.6s transform;
  transition: 1.6s transform, 1.6s -webkit-transform;
}

.post-img:hover>img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.post .post-title {
  font-size: 18px;
}

.post .post-title.title-sm {
  font-size: 16px;
}

.post .post-title.title-lg {
  font-size: 25.629px;
}

.post .post-category {
  margin-bottom: 10px;
}

.post-category a {
  color: #ee4266;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.post-category a:after {
  content: ',';
  display: inline-block;
}

.post-category a:last-child:after {
  display: none;
}

.post-category p {
  color: #ee4266;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.post .post-meta {
  margin-bottom: 10px;
}

.post-meta li {
  display: inline-block;
  color: #97989b;
  font-size: 12px;
  text-transform: uppercase;
}

.post-meta li a {
  color: #97989b;
  font-weight: 700;
}

.post-meta li a:hover, .post-meta li a:focus {
  color: #ee4266;
}

.post-meta li:after {
  content: '•';
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.post-meta li:last-child:after {
  display: none;
}

/*----------------------------*\
	hot post
\*----------------------------*/

.hot-post {
  padding: 0 15px;
}

.hot-post .hot-post-left {
  padding-right: 0px;
  padding-left: 0px;
}

.hot-post .hot-post-right {
  padding-right: 0;
  padding-left: 5px;
}

.hot-post .post {
  margin-bottom: 7px;
}

.hot-post {
  margin-bottom: 25px;
}

/*----------------------------*\
	post thumb
\*----------------------------*/

.post.post-thumb .post-img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 28, 30, 0)), color-stop(90%, rgba(27, 28, 30, 0.8)));
  background: linear-gradient(180deg, rgba(27, 28, 30, 0) 0%, rgba(27, 28, 30, 0.8) 90%);
}

.post.post-thumb .post-body {
  position: absolute;
  margin: 0px;
  padding: 0px 5%;
  z-index: 20;
  bottom: 5%;
  background-color: transparent;
}

.post.post-thumb .post-title a {
  color: #fff;
}

.post.post-thumb .post-title a:hover, .post.post-thumb .post-title a:focus {
  color: #ee4266;
}

.post.post-thumb .post-meta li {
  color: #fff;
}

.post.post-thumb .post-meta li a {
  color: #fff;
}

.post.post-thumb .post-meta li a:hover, .post.post-thumb .post-meta li a:focus {
  color: #ee4266;
}

/*----------------------------*\
	post small
\*----------------------------*/

.post.post-sm .post-body {
  margin: 15px 0px 0px;
  background: transparent;
  padding: 0;
}

/*----------------------------*\
	post widget
\*----------------------------*/

.post.post-widget:after {
  content: "";
  display: table;
  clear: both;
}

.post.post-widget .post-img {
  float: left;
  width: 130px;
}

.post.post-widget .post-body {
  position: relative;
  background: transparent;
  margin: 0px 0px 0px 150px;
  padding: 0;
}

.post.post-widget .post-title {
  font-size: 16px;
  margin-bottom: 0px;
}

/*----------------------------*\
	post row
\*----------------------------*/

.post.post-row:after {
  content: '';
  display: table;
  clear: both;
}

.post.post-row .post-img {
  width: 40%;
  float: left;
}

.post.post-row .post-body {
  margin: 0px 0px 0px calc(40% + 30px);
  padding: 0;
}

/*=========================================================
	POST PAGE
===========================================================*/

.page-header .post-category {
  margin-bottom: 10px;
}

.page-header .post-meta li {
  color: #fff;
}

.page-header .post-meta li a {
  color: #fff;
}

.page-header .post-meta li a:hover, .page-header .post-meta li a:focus {
  color: #ee4266;
}

.post-share a {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  background-color: #97989b;
  margin-right: 4px;
  margin-bottom: 6px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post-share a:hover {
  opacity: 0.9;
}

.post-share a i {
  width: 20px;
  text-align: center;
}

.post-share a span {
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}

.post-content .post-attachement.pull-left {
  margin-right: 15px;
}

.post-content .post-attachement.pull-right {
  margin-left: 15px;
}

.post-tags ul li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.post-tags ul li:first-child {
  font-weight: 400;
}

.post-tags ul li:after {
  content: ',';
  display: inline-block;
}

.post-tags ul li:first-child:after {
  display: none;
}

.post-tags ul li:last-child:after {
  display: none;
}

/*----------------------------*\
	post nav
\*----------------------------*/

.post-nav:after {
  content: "";
  display: table;
  clear: both;
}

.post-nav .post-title {
  font-size: 14px;
  margin: 0px;
}

.post-nav .prev-post {
  float: left;
  width: 50%;
  padding-right: 15px;
}

.post-nav .next-post {
  float: right;
  width: 50%;
  text-align: right;
  padding-left: 15px;
}

.post-nav .post-img {
  display: block;
  width: 100px;
  overflow: hidden;
}

.post-nav .prev-post .post-img {
  float: left;
  margin-right: 15px;
}

.post-nav .next-post .post-img {
  float: right;
  margin-left: 15px;
}

.post-nav .next-post span, .post-nav .prev-post span {
  font-weight: 700;
  color: #97989b;
  text-transform: uppercase;
  font-size: 12px;
}

.post-nav .next-post:after, .post-nav .prev-post:after {
  content: '';
  display: table;
  clear: both;
}

/*----------------------------*\
	author
\*----------------------------*/

.author.media .media-left {
  position: relative;
  padding-right: 30px;
}

.author .author-img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  ;
}

.author .author-social li {
  display: inline-block;
  margin-right: 10px;
}

.author .author-social li a {
  display: block;
}

.page-header .author .author-social li a {
  color: #fff;
}

.page-header .author .author-social li a:hover, .page-header .author .author-social li a:focus {
  color: #ee4266;
}

/*----------------------------*\
	comments
\*----------------------------*/

.post-comments .media {
  margin-top: 30px;
}

.post-comments .media:nth-child(1) {
  margin-top: 0px;
}

.post-comments .media .media-left {
  position: relative;
  padding-right: 15px;
}

.post-comments .media .media-left .media-object {
  width: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 20;
}

.post-comments .media .media-left:after {
  content: '';
  position: absolute;
  left: calc(50% - 9px);
  top: 80px;
  bottom: 15px;
  width: 1px;
  background-color: #e8eaed;
}

.post-comments .media .media-heading h4 {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
}

.post-comments .media .media-heading .time {
  color: #97989b;
  margin-left: 10px;
  font-size: 12px;
}

.post-comments .media .reply {
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background-color: #323335;
  border-radius: 2px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post-comments .media .reply:hover {
  opacity: 0.9;
}

.post-comments .media.media-author .media-heading h4 {
  color: #ee4266;
}

.post-comments .media.media-author .media-left:after {
  background-color: #ee4266;
}

/*=========================================================
	ASIDE
===========================================================*/

.aside-widget {
  margin-bottom: 30px;
}

/*----------------------------*\
	social widget
\*----------------------------*/

.social-widget ul {
  overflow: auto;
}

.social-widget ul li {
  float: left;
  width: 33.33%;
}

.social-widget ul li a {
  display: block;
  text-align: center;
  padding: 30px 15px;
  color: #fff;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.social-widget ul li a:hover {
  opacity: 0.9;
}

.social-widget ul li a span {
  font-weight: 700;
  font-size: 14px;
}

.social-widget ul li a i {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

/*----------------------------*\
	newsletter widget
\*----------------------------*/

.newsletter-widget {
  position: relative;
  padding: 0px 30px 30px;
  border-left: 2px dashed #e8eaed;
  border-right: 2px dashed #e8eaed;
}

.aside-widget:last-child .newsletter-widget {
  border-bottom: 2px dashed #e8eaed;
}

.newsletter-widget form {
  position: relative;
  z-index: 20;
}

.newsletter-widget .input {
  margin-bottom: 15px;
}

.newsletter-widget:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  bottom: -25px;
  right: 27px;
  font-size: 160px;
  color: #e8eaed;
  -webkit-transform: rotate(13deg);
  -ms-transform: rotate(13deg);
  transform: rotate(13deg);
}

.footer-widget .newsletter-widget {
  padding: 0px;
  border: none;
}

.footer-widget .newsletter-widget:after {
  color: #323335;
}

/*----------------------------*\
	category widget
\*----------------------------*/

.category-widget ul li {
  padding: 15px 0px;
  border-bottom: 1px solid #e8eaed;
}

.category-widget ul li a {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}

.category-widget ul li a span {
  float: right;
  font-size: 14px;
  color: #97989b;
  margin-left: 15px;
}

.footer-widget .category-widget ul li {
  border-color: #323335;
}

/*----------------------------*\
	tags widget
\*----------------------------*/

.tags-widget ul li {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 6px;
}

.tags-widget ul li a {
  text-transform: uppercase;
  display: block;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 700;
  color: #97989b;
  background-color: #323335;
  border-radius: 2px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.tags-widget ul li a:hover, .tags-widget ul li a:focus {
  color: #fff !important;
  background-color: #ee4266;
}

/*----------------------------*\
	galery widget
\*----------------------------*/

.galery-widget ul {
  margin: -2px -2px;
}

.galery-widget ul li {
  display: inline-block;
  width: 33.33%;
  padding: 2px;
  margin-right: -4px;
}

.galery-widget ul li a {
  display: block;
  overflow: hidden;
}

.galery-widget ul li a img {
  width: 100%;
  -webkit-transition: 1.6s -webkit-transform;
  transition: 1.6s -webkit-transform;
  transition: 1.6s transform;
  transition: 1.6s transform, 1.6s -webkit-transform;
}

.galery-widget ul li a:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/*=========================================================
	FOOTER
===========================================================*/

#footer {
  margin-top: 40px;
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #1b1c1e;
}

#footer {
  color: #97989b;
}

#footer a {
  color: #97989b;
}

#footer a:hover, #footer a:focus {
  color: #ee4266;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .footer-title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo .logo {
  display: inline-block;
  line-height: 70px;
  height: 70px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #323335;
}

.footer-nav {
  text-align: right;
}

.footer-nav li {
  display: inline-block;
  margin-right: 10px;
}

/*----------------------------*\
	CONTACT
\*----------------------------*/

.contact li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 55px;
  padding-top: 5px;
  min-height: 40px;
}

.contact li i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 40px;
  background: #fff;
  color: #ee4266;
  border: 1px solid #e8eaed;
  line-height: 40px;
  border-radius: 50%;
}

.footer-widget .contact li i {
  color: #97989b;
  background-color: #353535;
  border: none;
}

.contact-social li {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 6px;
}

.contact-social li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  color: #fff !important;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.contact-social li a:hover {
  opacity: 0.9;
}

/*=========================================================
	RESPONSIVE
===========================================================*/

@media only screen and (max-width: 991px) {
  #nav-bottom {
    display: none;
  }
  .nav-social {
    display: none;
  }
  .nav-logo {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    display: inline-block;
    float: left;
  }
  .footer-nav {
    text-align: left;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .page-header h1 {
    font-size: 32.437px;
  }
  .post-nav .prev-post {
    float: none;
    width: 100%;
    margin-bottom: 15px;
    padding-right: 0px;
  }
  .post-nav .prev-post:last-child {
    margin-bottom: 0px;
  }
  .post-nav .next-post {
    float: none;
    width: 100%;
  }
  .post-nav .next-post {
    float: none;
    width: 100%;
    padding-left: 0px;
    text-align: left;
  }
  .post-nav .next-post .post-img {
    margin-right: 15px;
    float: left;
    margin-left: 0px;
  }
}





.postit-card {
	font-size: 14px;
	line-height: 1.42857143;
}

b, strong; {
	font-weight: 700;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: .67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

div {
	display: block;
}

.text-center {
	text-align: center;
}

.text-separate {
	color: #005826;
	display: inline-block;
	float: left;
	font-family: risque,helvetica;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: -2px;
	margin: 30px 0 0;
	text-align: left;
	width: 35%;
}

	.text-separate > span {
		display: inline-block;
		float: left;
		height: 23px;
		margin: 0;
		padding: 0;
		position: relative;
		width: 100%;
	}

		.text-separate > span:first-child {
			color: #790000;
		}

		.text-separate > span:nth-child(2) {
			padding: 0 0 0 20px;
		}

		.text-separate > span:nth-child(3) {
			font-size: 16px;
			line-height: 25px;
			letter-spacing: -1px;
		}


.flexipostits {
	color: #000;
	text-align: center;
	padding-bottom: 30px;
}

.webp .flexipostits {
	background: url(/assets/img/content-border-top-bg.webp) top repeat-x, url(/assets/img/content-border-bot-bg.webp) bottom repeat-x;
}

.no-webp .flexipostits {
	background: url(/assets/img/content-border-top-bg.jpg) top repeat-x, url(/assets/img/content-border-bot-bg.jpg) bottom repeat-x;
}

.flexipostit {
	background: #fffde7;
	background: -moz-linear-gradient(105deg, #fffde7 0, #fffffe 50%, #fffde7 100%);
	background: -webkit-linear-gradient(105deg, #fffde7, #fffffe 50%, #fffde7);
	background: linear-gradient(105deg, #fffde7, #fffffe 50%, #fffde7);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fffde7", endColorstr="#fffde7", GradientType=1);
	-webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .6);
	-moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .6);
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, .6);
	clear: both;
	float: none !important;
	margin: 0 !important;
	max-width: none !important;
	min-height: auto !important;
	padding: 6px;
}

	.flexipostit > .wrapper {
		border: 2px solid #f1efd6;
		font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
		padding: 1.5em 1.125em;
	}

	.flexipostit.postit-card {
		display: inline-block;
		position: relative;
	}

	.flexipostit p {
		font-size: 17px;
	}

.postit-card-parent:hover {
	z-index: 999;
}

.flexipostit.postit-card > .wrapper {
	width: 340px;
	height: 425px;
	padding: 2.5em 1.125em .5em;
}

.flexipostit h2,
.flexipostit h3 {
	color: #005826;
	font-family: Risque, serif;
	letter-spacing: -.05em;
	line-height: .9;
	margin: .5em 0 .75em;
}

.flexipostit h2 {
	font-size: 3em;
}

	.flexipostit h2:first-child,
	.flexipostit h3:first-child {
		margin-top: 0;
	}

	.flexipostit h2 b,
	.flexipostit h3 b {
		color: #790000;
		font-weight: 400;
	}

.flexipostit#DiwaliOrDeepavali {
	z-index: 100;
}

	.flexipostit#DiwaliOrDeepavali h2 {
		text-align: left;
		padding-left: 2.1em;
	}

		.flexipostit#DiwaliOrDeepavali h2:before {
			background: url(/HtmlPage/Diwali/img/lord-ram.png) 0 0px no-repeat;
			content: "";
			display: block;
			float: left;
			margin-left: -2.1em;
			height: 1.8em;
			width: 2.1em;
		}

		.flexipostit#DiwaliOrDeepavali h2 b {
			display: block;
		}

	.flexipostit#DiwaliOrDeepavali form {
		display: inline;
	}

.flexipostit#DiwaliCounter {
	z-index: 90;
}

	.flexipostit#DiwaliCounter h2 {
		padding-right: 1.9em;
		text-align: right;
	}

		.flexipostit#DiwaliCounter h2:before {
			background: url(../img/hourglass.png) 8px 0 no-repeat;
			content: "";
			display: block;
			float: right;
			margin-right: -1.9em;
			height: 1.5em;
			width: 1.8em;
		}

		.flexipostit#DiwaliCounter h2 span.big {
			font-size: 1.25em;
		}

		.flexipostit#DiwaliCounter h2 b {
			display: block;
			position: relative;
			right: -.6em;
		}

			.flexipostit#DiwaliCounter h2 b small {
				color: inherit;
				position: relative;
				bottom: .25em;
				font-size: .68em;
			}

	.flexipostit#DiwaliCounter .holder {
		padding: 0 20px 30px;
		height: auto;
	}

		.flexipostit#DiwaliCounter .holder p {
			margin: 0;
		}

			.flexipostit#DiwaliCounter .holder p em {
				color: #005826;
				font-size: 22px;
				font-family: Risque, serif;
				font-style: normal;
				display: block;
			}

				.flexipostit#DiwaliCounter .holder p em span {
					font-size: 16px;
					line-height: 16px;
				}

			.flexipostit#DiwaliCounter .holder p span.just,
			.flexipostit#DiwaliCounter .holder p span.just2 {
				display: inline-block;
				text-align: center;
				font-family: Risque, serif;
				color: #790000;
				font-size: 20px;
				line-height: 1;
			}

			.flexipostit#DiwaliCounter .holder p span.bigem {
				display: inline-block;
				text-align: center;
				font-family: Risque, serif;
				color: #005826;
				font-size: 57px;
				line-height: .8;
				vertical-align: bottom;
				margin: 14px 4px 0 14px;
			}

	.flexipostit#DiwaliCounter form {
		display: inline;
	}

.flexipostit#Rangoli {
	z-index: 80;
}

	.flexipostit#Rangoli h2 {
		font-size: 3em;
		padding-right: 1.5em;
	}

		.flexipostit#Rangoli h2:before {
			background: url(../img/diwali-rangoli.png) 0 0px no-repeat;
			content: "";
			display: block;
			float: right;
			margin-right: -1.1em;
			margin-left: 0.5em;
			height: 1.8em;
			width: 1.7em;
		}

		.flexipostit#Rangoli h2 b {
			display: block;
			font-size: .9em;
		}

	.flexipostit#Rangoli p {
		padding: 0 2.5em;
		margin: 1em 0;
	}

		.flexipostit#Rangoli p em {
			display: block;
			color: #005826;
			font-weight: 700;
			margin-bottom: 1em;
		}

	.flexipostit#Rangoli form {
		display: inline;
	}

.flexipostit#dhanteras {
	z-index: 70;
}

	.flexipostit#dhanteras h2 {
		font-size: 3em;
		padding-right: 2em;
		position: relative;
	}

		.flexipostit#dhanteras h2:before {
			background: url(../img/dhanteras.png) 0 0 no-repeat;
			content: "";
			display: block;
			float: right;
			margin-right: -2.2em;
			margin-left: -1em;
			height: 2.3em;
			width: 2.1em;
		}

		.flexipostit#dhanteras h2 b {
			display: block;
			font-size: .9em;
			margin-right: -1em;
		}

	.flexipostit#dhanteras .holder {
		padding: 0 2.5em;
	}

		.flexipostit#dhanteras .holder li {
			line-height: 100%;
			margin: 0 0 1em;
			text-align: left;
		}

			.flexipostit#dhanteras .holder li .pagetext {
				margin: 0;
			}

				.flexipostit#dhanteras .holder li .pagetext .Let2Sa {
					font-style: italic;
					font-weight: 700;
				}

				.flexipostit#dhanteras .holder li .pagetext .Let2S {
					font-size: .9em;
				}

	.flexipostit#dhanteras form {
		display: inline;
	}

.flexipostit#DiwaliFiveDays {
	z-index: 60;
}

	.flexipostit#DiwaliFiveDays h2 {
		font-size: 3em;
		position: relative;
		/*padding: 0 0 0 0.5em;*/
	}

		.flexipostit#DiwaliFiveDays h2:before {
			background: url(../img/diwali-lamp.png) 0 0px no-repeat;
			content: "";
			display: block;
			float: left;
			height: 1.8em;
			width: 2.1em;
			/*margin: .2em -.3em 0 0;*/
		}

		.flexipostit#DiwaliFiveDays h2 b {
			font-size: .9em;
			padding-right: .7em;
		}

	.flexipostit#DiwaliFiveDays p {
		text-align: left;
		margin-bottom: 2em;
	}

		.flexipostit#DiwaliFiveDays p span {
			display: block;
			padding-bottom: .25em;
			/*padding-top: .25em;*/
		}

		.flexipostit#DiwaliFiveDays p .pad1 {
			padding-left: .8em;
		}

		.flexipostit#DiwaliFiveDays p .pad2 {
			padding-left: 1.6em;
		}

		.flexipostit#DiwaliFiveDays p .pad3 {
			padding-left: 2.4em;
		}

		.flexipostit#DiwaliFiveDays p .pad4 {
			padding-left: 3.2em;
		}

		.flexipostit#DiwaliFiveDays p .pad5 {
			padding-left: 4em;
			color: #005826;
			font-weight: 700;
			font-style: italic;
		}

	.flexipostit#DiwaliFiveDays a {
		color: #790000;
	}

	.flexipostit#DiwaliFiveDays form {
		display: inline;
	}

.flexipostit#PresentCounter {
	z-index: 50;
}

	.flexipostit#PresentCounter h2 {
		font-size: 3.2em;
		position: relative;
		padding: 0 .5em 0 1.5em;
	}

		.flexipostit#PresentCounter h2:before {
			background: url(/assets/img/homesprites1.png) 0 -73px no-repeat;
			content: "";
			display: block;
			float: left;
			margin: 0 -.6em 0 -.5em;
			height: 1.3em;
			width: 1.4em;
		}

		.flexipostit#PresentCounter h2 b {
			display: block;
			font-size: .9em;
		}

	.flexipostit#PresentCounter p {
		padding: 0 3em;
		margin: 0 0 1em;
	}

	.flexipostit#PresentCounter .fl-l {
		float: left;
		clear: both;
		padding-top: .5em;
		max-width: 70%;
		text-align: left;
	}

	.flexipostit#PresentCounter .fl-r {
		float: right;
		font-family: Risque, serif;
		font-size: 1.5em;
		padding-left: .25em;
		text-align: right;
	}

	.flexipostit#PresentCounter form {
		display: inline;
	}



.flexipostits .emailnow {
	position: relative;
	text-align: center;
	z-index: 100;
	width: 360px;
	margin: -2em auto 0;
	padding-bottom: 5em;
}

	.flexipostits .emailnow h1,
	.flexipostits .emailnow h2 {
		font-family: Risque, serif;
		font-size: 3.214em;
		font-weight: 400;
		letter-spacing: -.05em;
		line-height: 1;
		padding-top: 1.9em;
		margin: 0 0 -.25em;
		position: relative;
		z-index: 1000;
	}

		.flexipostits .emailnow h1 img,
		.flexipostits .emailnow h2 img {
			position: absolute;
			top: 3.089em;
			right: .444em;
			opacity: .9;
		}

		.flexipostits .emailnow h1 span.light-green,
		.flexipostits .emailnow h2 span.light-green {
			font-size: .956em;
			text-align: left;
			padding-left: 3%;
			position: relative;
			top: -.111em;
			display: block;
		}

			.flexipostits .emailnow h1 span.light-green em,
			.flexipostits .emailnow h2 span.light-green em {
				font-size: 1.1em;
				font-style: normal;
				margin-left: -.14em;
				position: relative;
				bottom: -.14em;
			}

		.flexipostits .emailnow h1 span.yellow,
		.flexipostits .emailnow h2 span.yellow {
			font-size: 1.3em;
			font-weight: 400;
			text-align: left;
			margin-left: -2em;
			position: relative;
			top: -.2em;
		}

	.flexipostits .emailnow .bg picture {
		width: 120%;
		left: -11.5%;
		position: absolute;
		height: auto;
	}

	.flexipostits .emailnow form {
		position: relative;
		width: 80%;
		margin: 0 auto;
	}

	.flexipostits .emailnow input[type=text] {
		background: #fffde7;
		min-height: 2.857em;
		width: 100%;
		border: 2px solid #f1eecc;
		outline: solid #fffde7;
		font-style: italic;
		margin: 5px 0 8px;
		color: #006400;
	}

	.flexipostits .emailnow button.btn.btn-green.send {
		background-size: 100% 100%;
		position: absolute;
		right: 0;
		top: 0;
		margin: 7px 2px;
		height: 2.5em;
		padding: 7px 11px;
		color: #fff;
		font-size: 1.071em;
		font-style: italic;
		outline: 0;
		border: none;
		background-color: #01c55f;
		background-image: -webkit-gradient(linear, left top, left bottom, from(#01c55f), to(#006229));
		background-image: -webkit-linear-gradient(top, #01c55f, #006229);
		background-image: -moz-linear-gradient(top, #01c55f, #006229);
		background-image: -ms-linear-gradient(top, #01c55f, #006229);
		background-image: -o-linear-gradient(top, #01c55f, #006229);
		background-image: linear-gradient(180deg, #01c55f, #006229);
		filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#01C55F, endColorstr=#006229);
		transition: all 1s ease-in-out;
	}

		.flexipostits .emailnow button.btn.btn-green.send:hover {
			border: none;
			background-color: #790000;
			background-image: -webkit-gradient(linear, left top, left bottom, from(#790000), to(#520000));
			background-image: -webkit-linear-gradient(top, #790000, #520000);
			background-image: -moz-linear-gradient(top, #790000, #520000);
			background-image: -ms-linear-gradient(top, #790000, #520000);
			background-image: -o-linear-gradient(top, #790000, #520000);
			background-image: linear-gradient(180deg, #790000, #520000);
			filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#790000, endColorstr=#520000);
		}

	.flexipostits .emailnow p {
		padding-top: 22px;
		font-size: 1.286em;
		max-width: 200px;
		margin: 0.9em auto;
		line-height: 1.333em;
		z-index: 100;
		position: relative;
	}

.pb-125 {
	padding-bottom: 125px;
}

.nnlinHt {
	text-align: left;
	font-size: 14px;
	line-height: 1;
}

section .holder {
	height: 165px;
	overflow: hidden;
	position: relative;
}

input[type=button] {
	background-size: 100% 100%;
	margin: 2px;
	padding: 7px 11px;
	color: #fff;
	font-size: 15px;
	font-style: italic;
	outline: 0;
	border: none;
	border-radius: 4px;
	background-color: #005726;
	width: 100%;
	white-space: normal;
}

	input[type=button]:hover {
		background-color: #790000;
		white-space: normal;
	}

button.gold {
	font-family: Risque, serif;
	font-size: 27px;
	border: none;
	outline: 0;
	color: #fff;
	-webkit-box-shadow: 0 3px 5px 1px rgba(61, 56, 41, .39);
	-moz-box-shadow: 0 3px 5px 1px rgba(61, 56, 41, .39);
	box-shadow: 0 3px 5px 1px rgba(61, 56, 41, .39);
	max-width: 80%;
	min-height: 60px;
	min-width: 180px;
	line-height: 28px;
	padding: 5px 15px;
	border-radius: 4px;
	background: #c9a73e;
	background: -moz-linear-gradient(top, #c9a73e 1%, #ceb352 48%, #dcc96c 97%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #c9a73e), color-stop(48%, #ceb352), color-stop(97%, #dcc96c));
	background: -webkit-linear-gradient(top, #c9a73e 1%, #ceb352 48%, #dcc96c 97%);
	background: -o-linear-gradient(top, #c9a73e 1%, #ceb352 48%, #dcc96c 97%);
	background: -ms-linear-gradient(top, #c9a73e 1%, #ceb352 48%, #dcc96c 97%);
	background: linear-gradient(180deg, #c9a73e 1%, #ceb352 48%, #dcc96c 97%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c9a73e", endColorstr="#dcc96c", GradientType=0);
}



.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes shake {
	0%, to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
}

@keyframes shake {
	0%, to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
}

.shake:hover {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg);
	}

	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}

	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg);
	}

	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}

	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.tada:hover {
	-webkit-animation-name: tada;
	animation-name: tada;
}



@media screen and (min-width:480px) {
	.postit-card.tilt-left {
		-webkit-transform: rotate(-4deg);
		-moz-transform: rotate(-4deg);
		-o-transform: rotate(-4deg);
		-ms-transform: rotate(-4deg);
		transform: rotate(-4deg);
	}

	.postit-card.tilt-right {
		-webkit-transform: rotate(4deg);
		-moz-transform: rotate(4deg);
		-o-transform: rotate(4deg);
		-ms-transform: rotate(4deg);
		transform: rotate(4deg);
	}

		.postit-card.tilt-left:hover,
		.postit-card.tilt-right:hover {
			-webkit-transform: rotate(0deg) scale(1.08);
			-moz-transform: rotate(0deg) scale(1.08);
			-o-transform: rotate(0deg) scale(1.08);
			-ms-transform: rotate(0deg) scale(1.08);
			transform: rotate(0deg) scale(1.08);
		}

	.flexipostits .emailnow:hover {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@media screen and (max-width:1199px) {
	.flexipostit.postit-card,
	.flexipostits .emailnow {
		zoom: .8;
		-webkit-text-size-adjust: 80%;
	}

	#SantaSnooper {
		margin-right: -16.8%;
		margin-left: 6%;
	}
	
	#post-header {
		padding-top: 500px;
		padding-bottom: 80px;
	}
}

@media screen and (max-width:1029px) {
	#post-header {
		padding-top: 480px;
		padding-bottom: 80px;
	}

	.flexipostits .emailnow {
		zoom: .9;
		-webkit-text-size-adjust: 90%;
	}
}

@media screen and (max-width:991px) {
	#post-header {
		padding-top: 380px;
		padding-bottom: 80px;
	}

	#DiwaliCounter {
		clear: both;
	}

	.flexipostit.postit-card {
		zoom: .95;
		-webkit-text-size-adjust: 95%;
	}

	.flexipostits .emailnow {
		padding-bottom: 10em;
	}

	#Rangoli {
		-webkit-transform: rotate(-4deg);
		-moz-transform: rotate(-4deg);
		-o-transform: rotate(-4deg);
		-ms-transform: rotate(-4deg);
		transform: rotate(-4deg);
	}

	#dhanteras {
		-webkit-transform: rotate(4deg);
		-moz-transform: rotate(4deg);
		-o-transform: rotate(4deg);
		-ms-transform: rotate(4deg);
		transform: rotate(4deg);
	}
}

@media screen and (max-width:767px) {
	#post-header {
		padding-top: 230px;
		padding-bottom: 80px;
	}

	.flexipostit.postit-card {
		zoom: 1;
		-webkit-text-size-adjust: 100%;
	}

	.flexipostits .emailnow {
		padding-bottom: 4.5em;
	}

	#SantaSnooper {
		width: 100%;
		margin: 20px 0 40px;
		max-width: 100%;
	}

		#SantaSnooper video {
			width: 100%;
		}
}

@media screen and (max-width:479px) {
	#post-header {
		padding-top: 100px;
		padding-bottom: 80px;
	}

	.padding-b {
		padding-bottom: 0px;
	}

	.flexipostits {
		padding: 40px 0 60px;
	}

	.flexipostit.postit-card {
		margin: 0 0 2em !important;
		zoom: .7;
		-webkit-text-size-adjust: 70%;
	}

	.flexipostits .ad02 {
		margin-bottom: 1em;
	}

	.flexipostits .emailnow {
		zoom: .7;
		-webkit-text-size-adjust: 70%;
	}

	#Rangoli {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	#dhanteras {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-o-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}

	#SantaSnooper h2 {
		left: -10px;
	}
}

@media screen and (max-width:379px) {
	#post-header {
		padding-top: 70px;
		padding-bottom: 80px;
	}

	.padding-b {
		padding-bottom: 0;
	}

	.flexipostits .ad02 {
		padding: 0;
	}

	.flexipostit.postit-card {
		zoom: .85;
		-webkit-text-size-adjust: 85%;
	}

	.flexipostits .emailnow {
		zoom: .65;
		-webkit-text-size-adjust: 65%;
	}
}

@media screen and (max-width:359px) {

	.flexipostit.postit-card {
		zoom: .75;
		-webkit-text-size-adjust: 75%;
	}
}


.edge-wrapper,
.firefox-wrapper,
.opera-home-screen-wrapper,
.samsung-wrapper {
	opacity: 0;
}

.firefox-wrapper,
.opera-home-screen-wrapper,
.samsung-wrapper {
	bottom: 21px;
}

.opera-home-screen-wrapper {
	width: 100%;
	max-width: 483px;
	right: 6px;
	left: auto;
}

.ipad-wrapper img {
	position: absolute;
	top: 0;
}

.setBkgrndImg {
	background-image: url(/HtmlPage/Diwali/img/bkg.jpg);
}

.red {
	color: #790000;
}

.yellow {
	color: #ffff00;
}

.light-green {
	color: #a7ff41;
}

.purple-bkg {
	background: #4c2c5e !important;
}

.purple-dark-bkg {
	background: #211641 !important;
}

.purple-menu-bkg {
	background: #64458b !important;
} 
  
.nav-side-color {
	color: #fec553;
}

.credit-link {
	font-size: 14px;
	font-style: italic;
	color: #97989b;
	margin: 0px;
}

.menu-link a {
	color: #fec553 !important;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.menu-link a:hover, a:focus {
  /* color: #333 !important; */
  text-decoration: none;
  outline: none;
}

.counter 
{
	display: inline-block;
	font-size: 13px;
	list-style-type: none;
	text-transform: uppercase;
	padding:5px;
}

.counter-text {
	display: block;
	font-size: 25px;
}

@media all and (max-width: 800px) {
	.counter {
		font-size: 1.125rem;
	}

	.counter-text {
		font-size: 3.375rem;
	}
}

.tag {	
	text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
	color: #110f8e;
}

.diwalidate {
    font-size: 20px;
}

.internal-link {
	color: #110f8e;
    border: solid 2px #110f8e;
    padding: 5px;
	display: flex;
}

.border-top-red {
	border-top: 1px solid #790000;
}

.pb-35 {
	padding-bottom:35px;
}

.diwali_infodiv {
    width: 100%;
    height: 115px;
    border: 1px solid #e2e1e1;
    background-color: #f1efef;
    display: inline-block;
    border-left: 10px solid #644a92;
    border-radius: 0 10px 10px 0;
    background-image: url('/htmlpage/diwali/img/diwali_bkg.webp');
    background-position: right;
}

.diwali_date_info {
    background-repeat: no-repeat;
    float: left;
    height: 90%;
    margin-top: 5px;
	margin-left: 10px;
    border-radius: 10px;
    background-color: #644a92;
}

.diali_date{
	color:#fff;
	font-size:14px;
	font-weight: 600;
    text-align: center;
    margin-top: 6px;
}

.diwali_day {
    font-size: 18px;
    color: #000;
    font-weight: 300;
    padding-top: 10px;
}

.fS-18 {
	font-size: 18px;
}

.bg-color-red {
	background-color: #cd1a1a;
}

.left-border-red {
	border-left: 10px solid #cd1a1a;
}

.bg-white {
	background-color: #fff;
}

.left-border-purple {
	border-left: 10px solid #644a92 !important;
}

.fw-400 {
	font-weight: 400 !important;
}

.download-button {
	font-size: 28px !important;
	font-weight:500 !important;
	font-style:normal !important;
	color:#cd1a1a !important;	
}

.mt-30 {
	margin-top: 30px;	
}