@import url(https://fonts.googleapis.com/css?family=Barlow+Condensed:100,200,300,400,500,600,700,800,900&display=swap);
.iconButton {
  background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  background-color: #fff;
  background-repeat: repeat-x;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-shadow: 0 1px 0 #fff;
  color: #333;
  font-size: 12px;
  line-height: 12px; }

.iconButton:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
  background-position: 0 -15px; }

.iconButton[disabled] {
  opacity: .65;
  box-shadow: none;
  background-color: #e0e0e0;
  background-image: none; }

.iconButton[disabled]:hover {
  border-color: #ccc;
  cursor: default; }

.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em; }

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  margin-left: -160px; }

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em; }

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em; }

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  margin-left: -160px; }

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0; }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: 0; }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }

.Toastify__toast--rtl {
  direction: rtl; }

.Toastify__toast--default {
  background: #fff;
  color: #aaa; }

.Toastify__toast--info {
  background: #3498db; }

.Toastify__toast--success {
  background: #07bc0c; }

.Toastify__toast--warning {
  background: #f1c40f; }

.Toastify__toast--error {
  background: #e74c3c; }

.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1;
  flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
  align-self: flex-start; }

.Toastify__close-button--default {
  color: #000;
  opacity: 0.3; }

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards; }

.Toastify__progress-bar--controlled {
  transition: transform 0.2s; }

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right; }

.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }

@charset "UTF-8";
@font-face {
  font-family: "franklinGothicBook";
  src: url(/_next/static/chunks/fonts/franklin-gothic-book-regular-150ffe36d73edd34a14f51e7f922e0c6.eot);
  src: url(/_next/static/chunks/fonts/franklin-gothic-book-regular-150ffe36d73edd34a14f51e7f922e0c6.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/franklin-gothic-book-regular-2230f9c5c4e9b058b4e827766fd6714b.woff) format("woff"), url(/_next/static/chunks/fonts/franklin-gothic-book-regular-843bc6f0343291b1a977de584ff0f193.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvZnJhbmtsaW4tZ290aGljLWJvb2stcmVndWxhci03NmIyOTcyNGVmOTQwNDllNDYwZTQyYWI3YmY2Yjc3Mi5zdmciOw==) format("svg"); }

@font-face {
  font-family: "barlowBold";
  src: url(/_next/static/chunks/fonts/barlow-bold-a82c15d6c6eee4af3a8bfe190a9695f0.eot);
  src: url(/_next/static/chunks/fonts/barlow-bold-a82c15d6c6eee4af3a8bfe190a9695f0.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/barlow-bold-f046f0b28eaa6ccb98d6df08442b5ad9.woff) format("woff"), url(/_next/static/chunks/fonts/barlow-bold-746a3493956a4062dec222d27b113245.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvYmFybG93LWJvbGQtZTFmNGFmMWZmNTMyMGY5ODAzOTc5ZTIxMDZmNmQwZWYuc3ZnIjs=) format("svg"); }

@font-face {
  font-family: "franklinGothicDemiCond";
  src: url(/_next/static/chunks/fonts/franklin-gothic-demi-cond-regular-7858eeae10c98ce347fc92562b2eadc5.eot);
  src: url(/_next/static/chunks/fonts/franklin-gothic-demi-cond-regular-7858eeae10c98ce347fc92562b2eadc5.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/FranklinGothic-DemiCond-72cef69f549660448864a93da3355d33.woff) format("woff"), url(/_next/static/chunks/fonts/FranklinGothic-DemiCond-1f3e29717afff6bdd415ab4df3ea6145.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvRnJhbmtsaW5Hb3RoaWMtRGVtaUNvbmQtY2MyYzUzMGEzNzQ2MDJmMWNjNTRlMjNlMTY5YTVmYTYuc3ZnIjs=) format("svg"); }

@font-face {
  font-family: "franklin-fothic-demi-cond-regular";
  src: url(/_next/static/chunks/fonts/Franklin-Gothic-Demi-Cond-Regular-7858eeae10c98ce347fc92562b2eadc5.eot);
  src: url(/_next/static/chunks/fonts/Franklin-Gothic-Demi-Cond-Regular-7858eeae10c98ce347fc92562b2eadc5.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/FranklinGothic-DemiCond-e36a47d5468e853adcda443f304b8cac.woff) format("woff"), url(/_next/static/chunks/fonts/FranklinGothic-DemiCond-abe5037ce912a9ab0d88be12fc1a60d1.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvRnJhbmtsaW5Hb3RoaWMtRGVtaUNvbmQtY2MyYzUzMGEzNzQ2MDJmMWNjNTRlMjNlMTY5YTVmYTYuc3ZnIjs=) format("svg"); }

@font-face {
  font-family: "franklinGothicDemi";
  src: url(/_next/static/chunks/fonts/franklin-gothic-demi-regular-0f28f131e6b4cbebacc15f815c31ba1d.eot);
  src: url(/_next/static/chunks/fonts/franklin-gothic-demi-regular-0f28f131e6b4cbebacc15f815c31ba1d.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/franklin-gothic-demi-regular-13d505a10c779462b06e295fed534b9e.woff) format("woff"), url(/_next/static/chunks/fonts/franklin-gothic-demi-regular-6e41c9d8c0c96a2caad24747ab591c4d.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvZnJhbmtsaW4tZ290aGljLWRlbWktcmVndWxhci01MTNkOTY3MzNlMjQyYzhlYThkZGQxYzNkYjE0OWY3MS5zdmciOw==) format("svg"); }

@font-face {
  font-family: "georgia";
  src: url(/_next/static/chunks/fonts/georgia-italic-4616e45a41e0806cda063fd8328cd848.eot);
  src: url(/_next/static/chunks/fonts/georgia-italic-4616e45a41e0806cda063fd8328cd848.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/georgia-Italic-c6ba0e138c332edd4a119bf4674bb666.woff) format("woff"), url(/_next/static/chunks/fonts/georgia-Italic-6d5ec70c8ff244d5ebb9ba21097fcfd9.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvZ2VvcmdpYS1JdGFsaWMtYjI0MzNjMTYwZTEyOGI1OWU5ZjI3YWJlMzVmODY1MTkuc3ZnIjs=) format("svg"); }

@font-face {
  font-family: "franklinGothicMediumCondRegular";
  src: url(/_next/static/chunks/fonts/franklin-gothic-medium-cond-regular-724b67680454f5ca7d2590f3ea749f49.eot);
  src: url(/_next/static/chunks/fonts/franklin-gothic-medium-cond-regular-724b67680454f5ca7d2590f3ea749f49.eot) format("embedded-opentype"), url(/_next/static/chunks/fonts/franklin-gothic-medium-cond-regular-417abf1530bb819dad483c598bda6623.woff) format("woff"), url(/_next/static/chunks/fonts/franklin-gothic-medium-cond-regular-bb667ed28f70caaa101f95039ab14f59.ttf) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiL19uZXh0L3N0YXRpYy9pbWFnZXMvZnJhbmtsaW4tZ290aGljLW1lZGl1bS1jb25kLXJlZ3VsYXItN2Q3YTc0MDhmNWNiOTMzZDEyYjk4MTJhZGYyODlmZGUuc3ZnIjs=) format("svg"); }

*,
html {
  margin: 0;
  box-sizing: border-box;
  padding: 0; }

body {
  font-family: "franklinGothicDemi"; }

#app {
  min-height: 100%;
  min-width: 100%; }

p,
label {
  font-family: "georgiaBold", Times, "Times New Roman", serif; }

a {
  text-decoration: none; }

img.loading {
  content: " ";
  background: transparent url("http://thinkfuture.com/wp-content/uploads/2013/10/loading_spinner.gif") center no-repeat;
  background-size: auto 100%;
  width: 100px;
  height: 100px;
  float: left;
  display: block; }

.ReactModal__Overlay {
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.8) !important;
  overflow: hidden; }

.ReactModal__Content {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  overflow: hidden; }

.model-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .model-banner-container {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .model-banner-container > span {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      padding: 10px;
      margin: 0 0 20px; }
      .model-banner-container > span svg path {
        fill: #ffffff; }
    .model-banner-container iframe {
      max-width: 100%;
      height: 100% !important; }

.mostpopular ul {
  list-style: none; }
  .mostpopular ul > :last-child {
    border-bottom: none; }
  .mostpopular ul li {
    padding: 20px 0;
    border-bottom: 1px solid #dbdbdb;
    font-size: 18px;
    line-height: 21px;
    font-family: "georgia" !important;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }
    .mostpopular ul li a {
      font-size: 18px;
      line-height: 21px;
      font-family: "georgia" !important;
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      cursor: pointer;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; }

.slick-dots {
  bottom: 44px !important; }

.slick-dots li {
  margin: 0 !important; }

.category-Slider .slick-dots {
  bottom: 60px !important; }

@media only screen and (max-width: 1290px) {
  .category-Slider {
    display: none; } }

.specials-Slider .slick-dots {
  bottom: -40px !important; }

@media only screen and (max-width: 1290px) {
  .specials-Slider {
    display: none; } }

.ourlook-slider {
  display: block;
  width: 253px;
  height: 445px;
  margin: 1rem auto; }

@media only screen and (max-width: 1100px) {
  .desktopTopAds {
    display: none; } }

/* Fixed header */
.smoothSlide {
  animation: smoothSlider;
  animation-timing-function: ease;
  animation-duration: 0.5s; }

@keyframes smoothSlider {
  0% {
    -moz-transform: translate(0, -72px);
    -webkit-transform: translate(0, -72px);
    -o-transform: translate(0, -72px);
    -ms-transform: translate(0, -72px);
    transform: translate(0, -72px); }
  100% {
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

.covidBanner {
  margin: -30px 0 20px; }
  @media only screen and (max-width: 768px) {
    .covidBanner {
      margin: 0; } }

.covidhomebanner {
  background-image: url("/static/images/covid/covid-small-banner.png");
  background-size: cover;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .covidhomebanner h2 {
    font-family: "franklin-fothic-demi-cond-regular";
    font-size: 36px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase; }
  .covidhomebanner P {
    color: #ffffff;
    font-family: "franklin-fothic-demi-cond-regular";
    font-size: 18px;
    letter-spacing: 0;
    text-align: center;
    font-weight: 400; }
  .covidhomebanner img {
    max-width: 100%;
    width: 100%;
    height: 100%; }
  @media only screen and (max-width: 768px) {
    .covidhomebanner {
      height: auto;
      padding: 20px;
      margin: -10px 15px 20px;
      width: 96.5%;
      background-repeat: no-repeat;
      padding: 0; }
      .covidhomebanner.covid {
        height: 160px;
        margin: 0 auto 20px; }
      .covidhomebanner h2 {
        font-size: 28px;
        line-height: 32px; }
      .covidhomebanner P {
        font-size: 20px;
        line-height: 24px; }
      .covidhomebanner img {
        height: auto; } }
  @media only screen and (max-width: 600px) {
    .covidhomebanner {
      width: 94.5%; } }
  @media only screen and (max-width: 500px) {
    .covidhomebanner {
      width: 93.5%; } }
  @media only screen and (max-width: 400px) {
    .covidhomebanner {
      width: 90.5%; } }

.snackble-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .snackble-list > :last-child {
    border: none; }
  .snackble-list li {
    padding: 20px 0;
    border-bottom: 1px solid #dbdbdb;
    display: flex;
    align-items: flex-start; }
    .snackble-list li h2 {
      color: #d5d5d5;
      margin: 0;
      font-size: 30px;
      line-height: 34px;
      font-weight: normal; }
    .snackble-list li h4 {
      margin-top: 0;
      font-weight: normal; }
  .snackble-list div {
    margin-left: 16px; }
    .snackble-list div p {
      padding: 0; }
      .snackble-list div p p {
        font-size: 16px;
        line-height: 22px;
        font-weight: 300; }
        @media only screen and (max-width: 768px) {
          .snackble-list div p p {
            font-size: 12px;
            line-height: 16px;
            margin: 10px 0 0; } }
  @media only screen and (max-width: 768px) {
    .snackble-list {
      width: 100%; } }

.enterprise > :first-child {
  overflow: hidden;
  display: flex; }
  .enterprise > :first-child img {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    max-width: 100%;
    display: -webkit-flex;
    object-fit: cover;
    max-height: 232px;
    height: 232px; }
  .enterprise > :first-child:hover img {
    transform: scale(1.05); }

.enterprise > :nth-child(2) {
  max-height: 100px;
  height: 100px;
  overflow: hidden;
  display: flex; }

@media only screen and (max-width: 768px) {
  .enterprise {
    padding: 0 15px; }
    .enterprise > :first-child img {
      max-height: none;
      height: auto; }
    .enterprise > :nth-child(2) {
      height: auto; } }

.perspective {
  display: flex;
  flex-direction: column;
  list-style: none; }
  .perspective > :first-child {
    padding: 0px 0 20px; }
  .perspective > :last-child {
    border-bottom: none;
    padding: 20px 0 0px; }
  .perspective li {
    padding: 20px 0;
    border-bottom: 1px solid #dbdbdb; }
  @media only screen and (max-width: 768px) {
    .perspective > :first-child {
      padding: 0px 0 20px;
      margin: 0px 15px; }
    .perspective > :last-child {
      border-bottom: none;
      padding: 20px 0 0; }
    .perspective li {
      padding: 20px 0px;
      margin: 0 15px; } }

.pixtory {
  padding-bottom: 30px;
  border-bottom: 1px solid #dbdbdb; }
  .pixtory img {
    max-width: 100%;
    width: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
  .pixtory > :first-child {
    overflow: hidden;
    display: flex;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    max-height: 400px; }
    .pixtory > :first-child img {
      display: -webkit-flex; }
    .pixtory > :first-child:hover img {
      transform: scale(1.05); }
  .pixtory-title {
    margin-top: 20px; }
  @media only screen and (max-width: 768px) {
    .pixtory {
      padding-bottom: 20px; } }
  @media only screen and (max-width: 425px) {
    .pixtory img {
      max-height: 205px; } }

.latestnewswidget {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px; }
  @media only screen and (max-width: 768px) {
    .latestnewswidget {
      flex-direction: column; } }

.latestMagazineLink {
  padding: 30px 10px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #dbdbdb; }
  .latestMagazineLink > a {
    color: #000; }

.latestnewswidget .col1, .col2, .col3 {
  width: 33%;
  padding: 0 8px; }
  @media only screen and (max-width: 768px) {
    .latestnewswidget .col1, .col2, .col3 {
      width: 100%;
      padding: 0 16px; } }

.latestnewswidget .col1 {
  padding-right: 8px;
  padding-left: 0px; }
  @media only screen and (max-width: 768px) {
    .latestnewswidget .col1 {
      padding: 0 16px; } }

.latestNewsWithImage > a {
  overflow: hidden; }
  .latestNewsWithImage > a a {
    overflow: hidden;
    display: flex;
    margin-right: 20px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
    .latestNewsWithImage > a a img {
      width: 100%;
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
    .latestNewsWithImage > a a:hover img {
      transform: scale(1.05); }

@media only screen and (max-width: 768px) {
  .latestNewsWithImage > a > :first-child {
    margin-right: 0; }
  .latestNewsWithImage img {
    min-width: 80px;
    width: 100%;
    margin-right: 0; } }

.pixtorySubNews {
  margin-top: 30px; }
  .pixtorySubNews > a {
    overflow: hidden; }
    .pixtorySubNews > a a {
      overflow: hidden;
      display: flex;
      margin-right: 20px;
      margin-bottom: 20px;
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
      .pixtorySubNews > a a img {
        width: 100%;
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
      .pixtorySubNews > a a:hover img {
        transform: scale(1.05); }
  @media only screen and (max-width: 768px) {
    .pixtorySubNews > a > :first-child {
      margin-right: 0; }
    .pixtorySubNews img {
      min-width: 80px;
      width: 100%;
      margin-right: 0; } }

.videoWrapper {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 50px; }
  .videoWrapper-content img {
    width: 100%; }
  .videoWrapper > :first-child {
    margin-right: 40px; }
  @media only screen and (max-width: 1000px) {
    .videoWrapper {
      flex-direction: column; }
      .videoWrapper > :first-child {
        margin-right: 0px; } }
  @media only screen and (max-width: 768px) {
    .videoWrapper-content {
      padding: 0 0 20px; }
      .videoWrapper-content p {
        padding: 0 15px; }
      .videoWrapper-content img {
        height: auto !important; } }

.cur-issue {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0; }
  .cur-issue span {
    font-family: "georgia";
    font-size: 16px;
    line-height: 19px;
    text-align: center; }

.app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 46px 0; }
  .app-download h2 {
    margin: 0 0 40px;
    font-size: 36px;
    line-height: 43px;
    text-transform: uppercase;
    font-family: "barlowBold";
    text-align: center; }
  .app-download a {
    display: flex;
    justify-content: center;
    width: 60%;
    margin: 0 auto; }
  .app-download img {
    margin: 0 0 10px; }
  @media only screen and (max-width: 1280px) {
    .app-download img {
      width: 135px; } }

.videos {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 281px; }
  @media screen and (max-width: 1000px) {
    .videos {
      grid-template-columns: 1fr; } }
  .videos-list {
    list-style: none;
    max-height: 680px;
    overflow: scroll;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none; }
    .videos-list::-webkit-scrollbar {
      display: none;
      scrollbar-width: none; }
    .videos-list > :last-child {
      margin: 0; }
    .videos-list img {
      max-width: 100%;
      width: 100%; }
    .videos-list li {
      margin: 0 0 20px; }
      .videos-list li > div {
        cursor: pointer;
        position: relative; }
        .videos-list li > div > span {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: flex;
          align-items: center;
          justify-content: center; }
          .videos-list li > div > span svg {
            height: 40px;
            border-radius: 50%; }
            .videos-list li > div > span svg path {
              fill: #ffffff; }
          .videos-list li > div > span:hover svg {
            -webkit-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
            -moz-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
            box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64); }
            .videos-list li > div > span:hover svg path {
              fill: #e8e8e8; }
    @media screen and (max-width: 1000px) {
      .videos-list {
        max-height: 100%;
        display: grid;
        grid-gap: 40px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        overflow: scroll; }
        .videos-list > :last-child {
          padding-right: 15px; }
        .videos-list li {
          min-width: 300px; }
          .videos-list li p {
            display: none; } }
    @media only screen and (max-width: 768px) {
      .videos-list {
        padding-left: 15px; } }

.videoResponsive-Slider {
  display: none; }
  @media only screen and (max-width: 768px) {
    .videoResponsive-Slider {
      display: block; }
      .videoResponsive-Slider img {
        width: 200px;
        height: 200px; } }

.specials {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 395px; }
  .specials-main {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: 1fr 1fr; }
    .specials-main > div {
      display: flex;
      flex-direction: column; }
      .specials-main > div > :first-child {
        overflow: hidden; }
        @media only screen and (max-width: 768px) {
          .specials-main > div > :first-child {
            display: block; } }
        .specials-main > div > :first-child img {
          -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          object-fit: cover;
          display: -webkit-flex; }
        .specials-main > div > :first-child:hover img {
          transform: scale(1.05); }
    .specials-main img {
      max-width: 100%;
      width: 100%; }
  .specials-list {
    list-style: none; }
    .specials-list > :first-child {
      padding: 0 0 20px; }
      @media only screen and (max-width: 768px) {
        .specials-list > :first-child {
          display: flex;
          padding: 20px 0;
          border-top: 1px solid #dbdbdb; } }
    .specials-list > :last-child {
      padding: 20px 0 0;
      border-bottom: none; }
    .specials-list li {
      display: flex;
      justify-content: space-between;
      padding: 20px 0;
      border-bottom: 1px solid #dbdbdb; }
      .specials-list li > :first-child {
        width: 35%;
        overflow: hidden; }
        .specials-list li > :first-child img {
          -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          object-fit: cover;
          display: -webkit-flex; }
        .specials-list li > :first-child:hover img {
          transform: scale(1.05); }
        @media only screen and (max-width: 768px) {
          .specials-list li > :first-child {
            display: block; } }
      .specials-list li > :last-child {
        width: 60%; }
      .specials-list li img {
        width: 145px;
        margin-right: 20px; }
      @media only screen and (max-width: 768px) {
        .specials-list li li > :first-child {
          width: 35%; }
        .specials-list li li > :last-child {
          width: 60%; }
        .specials-list li img {
          margin-right: 10px;
          object-fit: cover;
          max-width: 100%;
          width: 100%; } }
  @media only screen and (min-width: 767px) and (max-width: 1080px) {
    .specials {
      grid-template-columns: 1fr; }
      .specials-list > :first-child {
        border-top: 1px solid #dbdbdb;
        padding: 20px 0; }
      .specials-list li {
        border-bottom: 1px solid #dbdbdb; }
        .specials-list li > :first-child {
          width: 50%; }
        .specials-list li > :last-child {
          width: 50%; }
        .specials-list li a {
          display: flex;
          margin-right: 20px; }
        .specials-list li img {
          width: 100%;
          margin-right: 0; } }
  @media only screen and (max-width: 768px) {
    .specials {
      padding: 0 15px;
      grid-template-columns: 1fr;
      grid-gap: 30px; }
      .specials-main {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 30px; } }

.sectionList {
  padding: 0;
  margin: 20px 0 0;
  list-style: none; }
  .sectionList > :last-child {
    padding: 20px 0 0; }
  .sectionList li {
    padding: 20px 0;
    border-top: 1px solid #dbdbdb;
    display: flex; }
    .sectionList li > :first-child {
      overflow: hidden;
      min-width: 145px;
      max-width: 145px;
      margin-right: 20px;
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
      .sectionList li > :first-child img {
        width: 100%;
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        display: -webkit-flex; }
      .sectionList li > :first-child:hover img {
        transform: scale(1.05); }
    .sectionList li > :last-child {
      display: block; }
  @media only screen and (max-width: 768px) {
    .sectionList p p {
      padding-left: 0; } }

.card {
  margin-bottom: 5vh; }
  .card img {
    width: 100%; }
  .card p {
    font-size: 1.2vw;
    margin: 1.1vh 0 0;
    font-family: Georgia;
    font-style: italic;
    color: #414141; }
  @media only screen and (max-width: 768px) {
    .card {
      display: flex;
      padding: 2vh 0;
      border: 1px solid #dbdbdb;
      border-right: none;
      border-left: none; }
      .card img {
        width: 50% !important;
        height: 15vh; }
      .card-details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2vh; }
      .card p {
        font-size: 2.9vw !important; } }

.strategy {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 768px) {
    .strategy {
      flex-direction: column; } }

@media only screen and (max-width: 1000px) {
  .computerImage {
    display: none; } }

.specials-wrapper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between; }
  .specials-wrapper li {
    max-width: 216px;
    flex: 1;
    min-width: 200px; }
  .specials-wrapper h2 {
    margin: 0 0 1.2vh;
    color: #d5d5d5;
    font-size: 1.7vw; }
  .specials-wrapper h3 {
    margin: 0;
    font-size: 1.1vw;
    margin: 0 0 1.2vh; }
  .specials-wrapper p {
    margin: 0;
    color: #414141;
    font-size: 1vw;
    line-height: 1.2vw;
    font-weight: 300;
    font-family: "Franklin Gothic Demi", arial !important; }
  @media only screen and (min-width: 768px) and (max-width: 1000px) {
    .specials-wrapper {
      flex-flow: row wrap;
      justify-content: flex-start; }
      .specials-wrapper li {
        padding: 1vh;
        min-width: 250px; }
      .specials-wrapper h2 {
        font-size: 2vw; }
      .specials-wrapper h3 {
        font-size: 1.4vw; }
      .specials-wrapper-details p {
        font-size: 1.4vw;
        line-height: 1.8vw; } }
  @media only screen and (min-width: 320px) and (max-width: 759px) {
    .specials-wrapper {
      flex-direction: column; }
      .specials-wrapper li {
        max-width: 100%;
        display: flex;
        margin-bottom: 4vh; }
        .specials-wrapper li h2 {
          font-size: 5.7vw;
          margin: 0 1.5vh 0 0; }
      .specials-wrapper-details h3 {
        font-size: 2.9vw;
        line-height: normal; }
      .specials-wrapper-details p {
        font-size: 3vw;
        line-height: 3.2vw; } }

.cestlavie {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(281px, 1fr)); }
  .cestlavie li {
    flex: 1; }
    .cestlavie li iframe {
      width: 100%; }
    .cestlavie li img {
      max-width: 100%; }
    .cestlavie li > :first-child {
      overflow: hidden;
      display: flex; }
      .cestlavie li > :first-child img {
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        object-fit: cover;
        display: -webkit-flex;
        max-height: 170px; }
      .cestlavie li > :first-child:hover img {
        transform: scale(1.05); }
  @media only screen and (min-width: 1001px) and (max-width: 1280px) {
    .cestlavie {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
  @media only screen and (min-width: 320px) and (max-width: 768px) {
    .cestlavie {
      grid-template-columns: 1fr;
      grid-gap: 0px; }
      .cestlavie > :first-child {
        border-top: none; }
      .cestlavie > :last-child {
        padding: 20px 0 0; }
      .cestlavie li {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        margin: 0 15px;
        border-top: 1px solid #dbdbdb; }
        .cestlavie li > :first-child {
          width: 35%; }
        .cestlavie li > :last-child {
          width: 60%; }
        .cestlavie li a {
          display: flex; }
          .cestlavie li a > p {
            margin-top: 0; } }
  @media only screen and (min-width: 320px) and (max-width: 425px) {
    .cestlavie img {
      max-height: 80px !important; } }

.women a {
  display: flex; }
  .women a img {
    width: 100%;
    max-width: 100%; }

.women img {
  max-width: 100%; }

.women > :first-child {
  overflow: hidden; }
  .women > :first-child img {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
    object-fit: cover;
    display: -webkit-flex;
    max-height: 307px; }
  .women > :first-child:hover img {
    transform: scale(1.05); }

@media only screen and (max-width: 1290px) {
  .women > :first-child {
    overflow: hidden; }
    .women > :first-child img {
      max-height: none; } }

@media only screen and (max-width: 768px) {
  .women > :first-child {
    margin: 0 15px; }
  .women h2,
  .women p {
    padding: 0 15px; }
  .women a {
    display: block; } }

.events {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px; }
  .events li img {
    max-width: 100%;
    width: 100%; }
  @media only screen and (max-width: 1000px) {
    .events {
      grid-template-columns: 1fr; } }
  @media only screen and (max-width: 768px) {
    .events li {
      display: flex;
      align-items: center;
      padding: 0 15px; }
      .events li img {
        width: 40%; }
      .events li > p {
        margin-left: 10px;
        margin-top: 0;
        width: 60%; } }

.social-media-icons-share {
  display: flex;
  flex-direction: row;
  margin-right: 40px;
  background-color: white;
  margin: 10px; }
  .social-media-icons-share a {
    margin: 10px;
    display: flex;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .social-media-icons-share a > button {
      display: flex;
      outline: none; }
    .social-media-icons-share a:hover {
      background: #000; }
      .social-media-icons-share a:hover svg path {
        fill: #fff; }
  .social-media-icons-share svg {
    width: 16px;
    height: 16px; }
  @media only screen and (max-width: 768px) {
    .social-media-icons-share {
      display: none; } }

.article {
  padding-top: 15px;
  font-family: "Franklin Gothic Demi", arial !important;
  max-width: 1280px;
  margin: 0 auto;
  position: relative; }
  @media only screen and (max-width: 1290px) {
    .article {
      padding: 0 15px; } }
  @media only screen and (max-width: 768px) {
    .article img {
      max-width: 100%;
      height: auto; } }
  .article .main-wrap {
    display: flex; }
    .article .main-wrap .social-media-icons {
      display: flex;
      flex-direction: column;
      margin-right: 40px; }
      .article .main-wrap .social-media-icons-fixed {
        position: sticky;
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky;
        top: 100px; }
      .article .main-wrap .social-media-icons a {
        display: flex;
        border: 1px solid #000;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        cursor: pointer;
        -webkit-transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -moz-transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -o-transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
        .article .main-wrap .social-media-icons a > button {
          display: flex;
          outline: none; }
        .article .main-wrap .social-media-icons a:hover {
          background: #000;
          -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.21);
          -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.21); }
          .article .main-wrap .social-media-icons a:hover svg path {
            fill: #fff; }
      .article .main-wrap .social-media-icons svg {
        width: 24px;
        height: 24px; }
      @media only screen and (max-width: 768px) {
        .article .main-wrap .social-media-icons {
          display: none; } }
    .article .main-wrap .content {
      display: grid;
      grid-gap: 215px;
      grid-template-columns: 700px 283px; }
      @media only screen and (max-width: 1290px) {
        .article .main-wrap .content {
          grid-gap: 60px;
          grid-template-columns: 650px 1fr; } }
      .article .main-wrap .content-left {
        position: relative; }
        .article .main-wrap .content-left .articleBlocker {
          height: 1100px;
          display: block;
          overflow: hidden;
          position: relative;
          margin: 0 0 30px;
          cursor: default;
          -webkit-touch-callout: none;
          -webkit-user-select: none;
          -khtml-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          .article .main-wrap .content-left .articleBlocker::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 70%;
            bottom: 0;
            left: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
            z-index: 2; }
            @media only screen and (max-width: 768px) {
              .article .main-wrap .content-left .articleBlocker::after {
                height: 52%; } }
        .article .main-wrap .content-left .articleBlockerHeight {
          height: 1350px;
          display: block;
          overflow: hidden;
          position: relative;
          margin: 0 0 30px;
          cursor: default;
          -webkit-touch-callout: none;
          -webkit-user-select: none;
          -khtml-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          .article .main-wrap .content-left .articleBlockerHeight::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 60%;
            bottom: 0;
            left: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
            z-index: 2; }
            @media only screen and (max-width: 768px) {
              .article .main-wrap .content-left .articleBlockerHeight::after {
                height: 52%; } }
      .article .main-wrap .content-right {
        padding-top: 17px; }
        .article .main-wrap .content-right-list > p {
          cursor: default; }
          .article .main-wrap .content-right-list > p:hover {
            text-decoration: none; }
        .article .main-wrap .content-right-list ul {
          list-style: none;
          padding-top: 10px; }
          .article .main-wrap .content-right-list ul > :last-child {
            border-bottom: none; }
          .article .main-wrap .content-right-list ul li {
            padding: 20px 0;
            border-bottom: 1px solid #dbdbdb; }
        .article .main-wrap .content-right-list.fixed {
          position: sticky;
          position: -webkit-sticky;
          position: -moz-sticky;
          position: -ms-sticky;
          position: -o-sticky;
          top: 100px; }
      @media only screen and (max-width: 1000px) {
        .article .main-wrap .content {
          display: block;
          width: 100%; }
          .article .main-wrap .content-right {
            display: none; } }
      .article .main-wrap .content .header-content h6 {
        font-size: 16px;
        text-transform: uppercase;
        line-height: 18px;
        margin: 0; }
      .article .main-wrap .content .header-content .header-support-content {
        font-size: 26px;
        margin-top: 15px;
        line-height: 36px;
        font-family: "franklinGothicBook";
        color: #000; }
        .article .main-wrap .content .header-content .header-support-content p {
          font-size: 20px;
          line-height: 26px;
          margin-top: 0;
          font-family: "franklinGothicBook" !important;
          color: #000; }
          .article .main-wrap .content .header-content .header-support-content p em {
            font-style: normal;
            font-size: 20px;
            line-height: 26px; }
          @media only screen and (max-width: 768px) {
            .article .main-wrap .content .header-content .header-support-content p {
              font-size: 22px;
              line-height: 24px; } }
      .article .main-wrap .content .header-content .bookmark-and-publish {
        display: flex;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 30px; }
        @media only screen and (max-width: 768px) {
          .article .main-wrap .content .header-content .bookmark-and-publish {
            margin: 20px 0;
            align-items: flex-start; } }
        .article .main-wrap .content .header-content .bookmark-and-publish .bookmark {
          display: flex;
          align-items: center;
          cursor: pointer; }
          .article .main-wrap .content .header-content .bookmark-and-publish .bookmark svg {
            width: 24px;
            height: 24px;
            padding: 5px;
            border: 1px solid #000;
            border-radius: 100%; }
          .article .main-wrap .content .header-content .bookmark-and-publish .bookmark .bookmart-content {
            display: flex;
            flex-direction: column;
            margin-left: 10px; }
            .article .main-wrap .content .header-content .bookmark-and-publish .bookmark .bookmart-content span {
              color: #898989;
              font-size: 14px; }
            .article .main-wrap .content .header-content .bookmark-and-publish .bookmark .bookmart-content span:first-child {
              color: #000; }
        .article .main-wrap .content .header-content .bookmark-and-publish > span {
          margin-left: 23px;
          margin-right: 30px;
          color: #979797; }
          @media only screen and (max-width: 768px) {
            .article .main-wrap .content .header-content .bookmark-and-publish > span {
              margin: 0 8px; } }
        .article .main-wrap .content .header-content .bookmark-and-publish .publish {
          display: flex;
          flex-direction: column; }
          .article .main-wrap .content .header-content .bookmark-and-publish .publish figure {
            margin: 0; }
            .article .main-wrap .content .header-content .bookmark-and-publish .publish figure img {
              border-radius: 100%;
              max-width: 100%;
              vertical-align: middle;
              width: 36px;
              height: 36px; }
          .article .main-wrap .content .header-content .bookmark-and-publish .publish .publish-content {
            display: flex;
            width: 100%; }
            .article .main-wrap .content .header-content .bookmark-and-publish .publish .publish-content span {
              color: #898989;
              font-size: 14px;
              font-family: "franklinGothicBook" !important; }
            .article .main-wrap .content .header-content .bookmark-and-publish .publish .publish-content span > :first-child {
              color: #2c2c2c;
              font-family: "franklinGothicBook" !important; }
            .article .main-wrap .content .header-content .bookmark-and-publish .publish .publish-content .authordetails {
              display: flex;
              flex-direction: column; }
              @media only screen and (max-width: 768px) {
                .article .main-wrap .content .header-content .bookmark-and-publish .publish .publish-content .authordetails > :last-child {
                  display: flex;
                  flex-direction: column; }
                  .article .main-wrap .content .header-content .bookmark-and-publish .publish .publish-content .authordetails > :last-child > :nth-child(1) {
                    display: none; } }
      .article .main-wrap .content .content-wrap {
        display: flex;
        justify-content: space-between; }
      .article .main-wrap .content figure {
        margin: 0 0 30px; }
        .article .main-wrap .content figure img {
          max-width: 100%; }
        .article .main-wrap .content figure figcaption {
          color: #414141;
          font-size: 14px;
          line-height: 16px; }
      .article .main-wrap .content .main-content {
        width: 64.1%;
        font-size: 17px;
        line-height: 30px;
        margin-right: 41px;
        margin-bottom: 86px; }
        @media screen and (max-width: 978px) {
          .article .main-wrap .content .main-content {
            width: 100%; } }
        .article .main-wrap .content .main-content p {
          margin: 0 0 25px;
          font-size: 18px;
          line-height: 30px;
          font-family: "Franklin Gothic Demi", arial !important; }
        .article .main-wrap .content .main-content p.pop_out {
          font-family: Georgia, Times, "Times New Roman", serif !important;
          font-style: italic;
          font-size: 20px;
          border-top: 3px solid #000;
          border-bottom: 3px solid #000;
          padding: 21px 0 30px 60px;
          font-weight: 700;
          margin: 50px 0;
          position: relative; }
          .article .main-wrap .content .main-content p.pop_out:before {
            content: '"';
            position: absolute;
            left: -12px;
            top: 35px;
            font-size: 70px;
            font-family: "Franklin Gothic Demi", arial !important;
            color: #e93f33; }
          .article .main-wrap .content .main-content p.pop_out span {
            display: block;
            font-size: 14px;
            font-family: "Franklin Gothic Demi", arial !important;
            font-style: normal;
            margin-top: 15px; }
        .article .main-wrap .content .main-content p.float_img {
          clear: both; }
        .article .main-wrap .content .main-content .see_responses {
          display: block;
          color: #fff;
          text-decoration: none;
          background: #000;
          border: 1px solid #000;
          text-transform: uppercase;
          text-align: center;
          font-size: 16px;
          padding: 20px;
          margin-top: 50px;
          height: auto; }
          .article .main-wrap .content .main-content .see_responses:hover {
            background: #fff;
            color: #000; }
        .article .main-wrap .content .main-content figure {
          margin-top: 50px; }
        .article .main-wrap .content .main-content img.mark_split {
          max-width: 100%;
          margin-right: 10px;
          margin-top: 25px;
          margin-bottom: 40px; }
        .article .main-wrap .content .main-content img.mark_split ~ img.mark_split {
          margin-right: 0; }
        .article .main-wrap .content .main-content img.mark_float {
          float: left;
          margin-right: 30px;
          margin-bottom: 25px; }
      .article .main-wrap .content .side-content {
        max-width: 300px;
        width: 100%;
        float: left;
        font-family: "Franklin Gothic Demi", arial; }
        @media screen and (max-width: 1040px) {
          .article .main-wrap .content .side-content {
            display: none; } }
        .article .main-wrap .content .side-content ul {
          margin: 0;
          padding: 30px 0 30px 20px;
          list-style-type: disc;
          border-top: 2px solid #000;
          border-bottom: 2px solid #000;
          position: sticky;
          position: -webkit-sticky;
          position: -moz-sticky;
          position: -ms-sticky;
          position: -o-sticky;
          top: 30px; }
          .article .main-wrap .content .side-content ul > :last-child {
            margin: 0; }
          .article .main-wrap .content .side-content ul li {
            margin-bottom: 20px;
            color: #000000;
            font-family: "franklin-fothic-demi-cond-regular";
            font-size: 20px;
            line-height: 22px;
            font-weight: 400; }
            .article .main-wrap .content .side-content ul li:hover {
              text-decoration: underline; }
          .article .main-wrap .content .side-content ul a {
            color: #000000;
            font-size: 20px;
            line-height: 22px; }
      @media screen and (max-width: 978px) {
        .article .main-wrap .content {
          width: 100%; } }

.responsive-social-icons {
  display: none;
  align-items: center;
  margin: 10px 0 0; }
  @media only screen and (max-width: 768px) {
    .responsive-social-icons {
      display: flex; } }
  .responsive-social-icons a {
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer; }
    .responsive-social-icons a svg {
      width: 16px;
      height: 16px; }
    .responsive-social-icons a button {
      display: flex; }
    .responsive-social-icons a:hover {
      background-color: #000000; }
      .responsive-social-icons a:hover svg path {
        fill: #ffffff; }

.article-read-time {
  height: 4px;
  width: 4px;
  background-color: #2c2c2c;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px; }

.searchQuery p {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-flow: row wrap; }
  .searchQuery p > :first-child {
    padding-left: 0; }
  .searchQuery p a {
    font-family: "franklin-fothic-demi-cond-regular";
    color: #000000;
    padding: 2px 6px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer; }
    .searchQuery p a:hover {
      color: #e93f33; }
  .searchQuery p span {
    font-family: "franklinGothicBook";
    margin: 0 6px; }

@media only screen and (max-width: 768px) {
  .publish .article-img {
    margin-right: 10px !important; } }

.article-img img {
  max-width: 100%;
  width: 100%;
  margin-right: 10px; }

.article-img iframe {
  max-width: 100%;
  width: 100%;
  min-height: 368px; }
  @media only screen and (max-width: 768px) {
    .article-img iframe {
      min-height: 300px; } }

.article-img figcaption {
  color: #2c2c2c;
  font-size: 14px;
  line-height: 16px;
  margin: 10px 0 30px;
  font-family: "franklinGothicBook" !important; }

@media only screen and (max-width: 768px) {
  .article-img figcaption {
    margin: 10px 0;
    font-size: 16px !important;
    line-height: 18px !important; }
  .article-img img {
    margin: 0; } }

@media screen and (max-width: 1000px) {
  .artical-container {
    width: 100% !important; } }

.article-btn {
  width: 70%;
  margin: 50px 0 0; }
  .article-btn a {
    text-transform: uppercase !important; }
  @media screen and (max-width: 1000px) {
    .article-btn {
      width: 100% !important; } }

.emagazine {
  width: 60rem; }

@media (max-width: 991px) {
  .emagazine {
    width: 44rem; } }

@media (max-width: 767px) {
  .emagazine {
    width: 100%; } }

.categories {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-gap: 100px;
  grid-template-columns: 1fr 283px;
  justify-content: space-between; }
  .categories-card {
    background-color: #f7f7f7;
    padding: 20px;
    width: 100%;
    margin: 0 0 40px;
    display: flex;
    align-items: center; }
    .categories-card img {
      max-width: 125.76px;
      margin-right: 12px; }
    .categories-card-details {
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .categories-card-details span {
        color: #909090;
        font-family: "franklinGothicBook";
        font-size: 16px;
        letter-spacing: 0;
        line-height: 18px; }
        .categories-card-details span.black {
          color: #000000;
          margin: 0 0 10px; }
    .categories-card-btn {
      width: 170px; }
  @media screen and (max-width: 1290px) {
    .categories {
      padding-left: 15px;
      padding-right: 15px;
      grid-template-columns: 1fr;
      grid-gap: 0px;
      display: block; } }
  @media screen and (max-width: 950px) {
    .categories {
      width: 100%; } }
  .categories .fixed-heading {
    text-decoration: none !important;
    cursor: auto !important; }
  .categories .fluid-left {
    margin-right: 0;
    max-width: 885px; }
    @media screen and (max-width: 1290px) {
      .categories .fluid-left {
        max-width: 100%; } }
    @media screen and (max-width: 950px) {
      .categories .fluid-left {
        width: 100%;
        margin-bottom: 30px; } }
    @media screen and (max-width: 768px) {
      .categories .fluid-left {
        margin-bottom: 0; } }
    .categories .fluid-left .category-banner {
      display: flex; }
      .categories .fluid-left .category-banner iframe {
        max-width: 50%;
        width: 50%;
        height: auto;
        margin-right: 30px; }
      .categories .fluid-left .category-banner img {
        max-width: 520px;
        width: 100%;
        cursor: pointer; }
      .categories .fluid-left .category-banner > :last-child {
        width: 50%; }
      .categories .fluid-left .category-banner > :first-child {
        overflow: hidden;
        margin: 0 0 10px;
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        position: relative;
        width: 50%;
        cursor: pointer; }
        .categories .fluid-left .category-banner > :first-child img {
          max-width: 100%;
          width: 100%;
          -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          display: -webkit-flex; }
        .categories .fluid-left .category-banner > :first-child:hover img {
          transform: scale(1.05); }
        .categories .fluid-left .category-banner > :first-child > span {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: flex;
          align-items: center;
          justify-content: center; }
          .categories .fluid-left .category-banner > :first-child > span svg {
            height: 40px;
            border-radius: 50%; }
            .categories .fluid-left .category-banner > :first-child > span svg path {
              fill: #ffffff; }
          .categories .fluid-left .category-banner > :first-child > span:hover svg {
            -webkit-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
            -moz-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
            box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64); }
            .categories .fluid-left .category-banner > :first-child > span:hover svg path {
              fill: #e8e8e8; }
      @media screen and (max-width: 1280px) {
        .categories .fluid-left .category-banner > :first-child {
          width: 50%; }
        .categories .fluid-left .category-banner > :last-child {
          width: 50%; } }
      @media screen and (max-width: 700px) {
        .categories .fluid-left .category-banner > :first-child {
          width: 100%; }
        .categories .fluid-left .category-banner > :last-child {
          width: 100%; } }
      @media screen and (max-width: 700px) {
        .categories .fluid-left .category-banner {
          flex-direction: column; } }
      @media screen and (max-width: 768px) {
        .categories .fluid-left .category-banner img {
          max-width: 100%;
          max-height: 100%; } }
      .categories .fluid-left .category-banner .category-banner-content {
        text-align: left;
        position: relative;
        margin-left: 20px; }
        @media screen and (max-width: 700px) {
          .categories .fluid-left .category-banner .category-banner-content {
            margin-left: 0px; } }
        .categories .fluid-left .category-banner .category-banner-content .bannerHeading {
          margin-top: 0;
          font-size: 40px;
          line-height: 40px;
          overflow: visible;
          max-width: 405px;
          display: block; }
          @media screen and (max-width: 1280px) {
            .categories .fluid-left .category-banner .category-banner-content .bannerHeading {
              max-width: 100%; } }
          @media screen and (max-width: 768px) {
            .categories .fluid-left .category-banner .category-banner-content .bannerHeading {
              font-size: 30px;
              line-height: 30px;
              margin: 0 0 0;
              max-width: 100%; } }
        .categories .fluid-left .category-banner .category-banner-content p {
          padding: 0 !important;
          max-width: 430px; }
          @media screen and (max-width: 768px) {
            .categories .fluid-left .category-banner .category-banner-content p {
              max-width: 100%; } }
    .categories .fluid-left .list ul {
      display: flex; }
      @media screen and (max-width: 768px) {
        .categories .fluid-left .list ul {
          justify-content: center;
          flex-direction: column;
          align-items: center; } }
      .categories .fluid-left .list ul li {
        list-style-type: none;
        margin-right: 40px;
        max-width: 262px; }
        @media screen and (max-width: 1280px) {
          .categories .fluid-left .list ul li {
            max-width: none;
            flex: 1; } }
        @media screen and (max-width: 768px) {
          .categories .fluid-left .list ul li {
            margin: 0 0 20px 0;
            width: 100%;
            max-width: 100%; } }
        .categories .fluid-left .list ul li:last-child {
          margin: 0; }
          .categories .fluid-left .list ul li:last-child figure {
            padding: 0; }
            @media screen and (max-width: 768px) {
              .categories .fluid-left .list ul li:last-child figure {
                border: 0; } }
        .categories .fluid-left .list ul li figure {
          display: flex;
          flex-direction: column; }
          @media screen and (max-width: 768px) {
            .categories .fluid-left .list ul li figure {
              flex-direction: row;
              border-bottom: 1px solid #dbdbdb;
              padding-bottom: 20px; } }
          @media screen and (max-width: 768px) {
            .categories .fluid-left .list ul li figure > :first-child {
              margin-right: 10px;
              width: 40%; } }
          @media screen and (max-width: 768px) {
            .categories .fluid-left .list ul li figure > :last-child {
              width: 60%; } }
          .categories .fluid-left .list ul li figure img {
            max-width: 100%;
            width: 100%;
            cursor: pointer; }
            @media screen and (max-width: 768px) {
              .categories .fluid-left .list ul li figure img {
                margin-bottom: 0;
                width: 100%;
                height: 100%; } }
          .categories .fluid-left .list ul li figure span small {
            font-family: "franklinGothicBook";
            margin-top: 10px;
            font-size: 12px;
            color: #909090;
            display: block;
            font-style: normal; }
            @media screen and (max-width: 768px) {
              .categories .fluid-left .list ul li figure span small {
                margin-top: 5px; } }
          .categories .fluid-left .list ul li figure > :first-child {
            overflow: hidden;
            -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
            -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
            -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
            transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
            .categories .fluid-left .list ul li figure > :first-child img {
              -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
              -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
              -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
              transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
              display: -webkit-flex; }
            .categories .fluid-left .list ul li figure > :first-child:hover img {
              transform: scale(1.05); }
            .categories .fluid-left .list ul li figure > :first-child > span {
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: pointer; }
              .categories .fluid-left .list ul li figure > :first-child > span svg {
                height: 40px;
                border-radius: 50%; }
                .categories .fluid-left .list ul li figure > :first-child > span svg path {
                  fill: #ffffff; }
              .categories .fluid-left .list ul li figure > :first-child > span:hover svg {
                -webkit-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
                -moz-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
                box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64); }
                .categories .fluid-left .list ul li figure > :first-child > span:hover svg path {
                  fill: #e8e8e8; }
            @media only screen and (max-width: 768px) {
              .categories .fluid-left .list ul li figure > :first-child {
                display: block; } }
      .categories .fluid-left .list ul li:last-child {
        margin-right: 0; }
    .categories .fluid-left .list-content {
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
      .categories .fluid-left .list-content ul li {
        display: flex;
        list-style-type: none;
        margin-bottom: 50px; }
        @media screen and (max-width: 575px) {
          .categories .fluid-left .list-content ul li {
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            margin: 0 0 20px 0;
            border-bottom: 1px solid #dbdbdb;
            padding-bottom: 20px; } }
        @media screen and (max-width: 768px) {
          .categories .fluid-left .list-content ul li:last-child {
            border: 0; } }
        .categories .fluid-left .list-content ul li iframe {
          max-width: 283px;
          width: 100%;
          height: auto;
          margin-right: 20px; }
        .categories .fluid-left .list-content ul li > :first-child {
          margin-right: 20px;
          max-width: 100%;
          width: 100%;
          max-width: 283px;
          min-width: 283px;
          cursor: pointer;
          overflow: hidden;
          position: relative; }
          @media screen and (max-width: 575px) {
            .categories .fluid-left .list-content ul li > :first-child {
              margin: 0 0 10px 0;
              width: 100%;
              max-width: 100%;
              min-width: 100%; } }
          .categories .fluid-left .list-content ul li > :first-child img {
            display: -webkit-flex; }
          .categories .fluid-left .list-content ul li > :first-child:hover img {
            transform: scale(1.05); }
          .categories .fluid-left .list-content ul li > :first-child > span {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center; }
            .categories .fluid-left .list-content ul li > :first-child > span svg {
              height: 40px;
              border-radius: 50%; }
              .categories .fluid-left .list-content ul li > :first-child > span svg path {
                fill: #ffffff; }
            .categories .fluid-left .list-content ul li > :first-child > span:hover svg {
              -webkit-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
              -moz-box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64);
              box-shadow: 0px 0px 43px 1px rgba(0, 0, 0, 0.64); }
              .categories .fluid-left .list-content ul li > :first-child > span:hover svg path {
                fill: #e8e8e8; }
        .categories .fluid-left .list-content ul li img {
          width: 100%;
          -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
    .categories .fluid-left .pagination {
      padding: 0; }
      @media screen and (max-width: 768px) {
        .categories .fluid-left .pagination {
          margin-top: 30px;
          margin-bottom: 10px; } }
      .categories .fluid-left .pagination ul {
        display: flex;
        justify-content: center;
        align-items: center; }
        .categories .fluid-left .pagination ul li {
          list-style-type: none; }
          .categories .fluid-left .pagination ul li a {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            height: 40px;
            width: 40px;
            color: #000;
            font-weight: 400;
            margin: 0 5px;
            background: none;
            border: none; }
            @media screen and (max-width: 768px) {
              .categories .fluid-left .pagination ul li a {
                box-sizing: border-box;
                height: 40px;
                width: 40px;
                border: 1px solid #979797;
                border-radius: 3px;
                background-color: #ffffff; } }
            .categories .fluid-left .pagination ul li a:hover, .categories .fluid-left .pagination ul li a:active {
              background-color: #e93f33;
              color: #fff;
              transition: 0.5s; }
              @media screen and (max-width: 768px) {
                .categories .fluid-left .pagination ul li a:hover, .categories .fluid-left .pagination ul li a:active {
                  border-color: #e93f33; } }
            .categories .fluid-left .pagination ul li a svg {
              width: 20px;
              height: 20px; }
          .categories .fluid-left .pagination ul li a.active {
            background-color: #e93f33;
            color: #fff; }
            @media screen and (max-width: 768px) {
              .categories .fluid-left .pagination ul li a.active {
                border-color: #e93f33; } }
  @media screen and (max-width: 1290px) {
    .categories .fixed-right {
      margin-left: 0;
      display: flex;
      justify-content: space-between; } }
  @media screen and (max-width: 768px) {
    .categories .fixed-right {
      width: 100%;
      flex-direction: column; } }
  .categories .fixed-right .editorpick,
  .categories .fixed-right .mostpopular {
    margin-bottom: 37.5px; }
    .categories .fixed-right .editorpick > p,
    .categories .fixed-right .mostpopular > p {
      margin-bottom: 10px;
      cursor: default; }
      .categories .fixed-right .editorpick > p:hover,
      .categories .fixed-right .mostpopular > p:hover {
        text-decoration: none; }
    .categories .fixed-right .editorpick ul,
    .categories .fixed-right .mostpopular ul {
      max-width: 254px; }
      @media screen and (max-width: 1290px) {
        .categories .fixed-right .editorpick ul,
        .categories .fixed-right .mostpopular ul {
          max-width: 100%; } }
      @media screen and (max-width: 950px) {
        .categories .fixed-right .editorpick ul,
        .categories .fixed-right .mostpopular ul {
          width: 100%; } }
      .categories .fixed-right .editorpick ul li,
      .categories .fixed-right .mostpopular ul li {
        list-style-type: none;
        border-bottom: 1px solid #dbdbdb;
        padding: 20px 0; }
        .categories .fixed-right .editorpick ul li a,
        .categories .fixed-right .mostpopular ul li a {
          display: flex;
          justify-content: center;
          align-items: end;
          flex-direction: column; }
          @media screen and (max-width: 950px) {
            .categories .fixed-right .editorpick ul li a,
            .categories .fixed-right .mostpopular ul li a {
              justify-content: flex-start; } }
          .categories .fixed-right .editorpick ul li a img,
          .categories .fixed-right .mostpopular ul li a img {
            max-width: 100%;
            margin-right: 20px; }
      .categories .fixed-right .editorpick ul li:last-child,
      .categories .fixed-right .mostpopular ul li:last-child {
        border-bottom: 0; }
        @media screen and (max-width: 768px) {
          .categories .fixed-right .editorpick ul li:last-child,
          .categories .fixed-right .mostpopular ul li:last-child {
            padding-bottom: 0; } }
    .categories .fixed-right .editorpick .Category__Border-vxyhz-0,
    .categories .fixed-right .mostpopular .Category__Border-vxyhz-0 {
      display: none; }
      @media screen and (max-width: 768px) {
        .categories .fixed-right .editorpick .Category__Border-vxyhz-0,
        .categories .fixed-right .mostpopular .Category__Border-vxyhz-0 {
          display: block; } }
  .categories .fixed-right .mostpopular {
    margin-top: 100px; }
    @media screen and (max-width: 1290px) {
      .categories .fixed-right .mostpopular {
        margin: 0;
        width: 48%; } }
    @media screen and (max-width: 768px) {
      .categories .fixed-right .mostpopular {
        width: 100%; } }
  @media screen and (max-width: 1290px) {
    .categories .fixed-right .editorpick {
      margin: 0 0 50px;
      width: 48%; } }
  @media screen and (max-width: 768px) {
    .categories .fixed-right .editorpick {
      width: 100%; } }
  .categories .fixed-right .app-download {
    padding: 40px 46px 140px; }
  .categories span.small small {
    font-family: "franklinGothicBook";
    margin-top: 10px;
    font-size: 12px;
    color: #909090;
    display: block; }

.sub-categories {
  padding-top: 10px;
  max-width: 1280px;
  margin: 0 auto; }
  .sub-categories .special-sub {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px; }
    .sub-categories .special-sub .right-content {
      padding: 40px;
      background: #f7f7f7;
      width: 50%; }
      .sub-categories .special-sub .right-content > h2 {
        font-size: 30px;
        line-height: 40px;
        font-weight: 300;
        font-family: "franklinGothicbook";
        margin-top: 25px; }
      .sub-categories .special-sub .right-content .sub-content {
        margin: 0; }
    .sub-categories .special-sub .left-img {
      width: 50%; }
      .sub-categories .special-sub .left-img img {
        max-width: 100%;
        width: 100%; }
  .sub-categories .table-pagination {
    padding: 0;
    margin-bottom: 80px; }
    @media screen and (max-width: 768px) {
      .sub-categories .table-pagination {
        margin-top: 30px;
        margin-bottom: 10px; } }
    .sub-categories .table-pagination ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%; }
      .sub-categories .table-pagination ul li {
        list-style-type: none; }
        .sub-categories .table-pagination ul li a {
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 30px;
          height: 40px;
          width: 40px;
          color: #000;
          font-weight: 400;
          margin: 0 5px;
          background: none;
          border: none; }
          @media screen and (max-width: 768px) {
            .sub-categories .table-pagination ul li a {
              box-sizing: border-box;
              height: 40px;
              width: 40px;
              border: 1px solid #979797;
              border-radius: 3px;
              background-color: #ffffff; } }
          .sub-categories .table-pagination ul li a:hover, .sub-categories .table-pagination ul li a:active {
            color: #e93f33;
            transition: 0.5s; }
          .sub-categories .table-pagination ul li a svg {
            width: 25px;
            height: 30px;
            opacity: 0.5; }
        .sub-categories .table-pagination ul li a.active {
          color: #e93f33; }
        .sub-categories .table-pagination ul li:first-child a, .sub-categories .table-pagination ul li:last-child a {
          border-radius: 3px;
          border: 1px solid #a4a4a4;
          width: 40px;
          height: 40px; }
  .sub-categories .table .table-headings .heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px; }
    .sub-categories .table .table-headings .heading h2 {
      font-size: 30px;
      line-height: 40px;
      font-weight: 300;
      font-family: "franklinGothicbook"; }
    .sub-categories .table .table-headings .heading .search-filter {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      max-width: 510px;
      width: 100%; }
      .sub-categories .table .table-headings .heading .search-filter .search-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        box-sizing: border-box;
        max-height: 40px;
        max-width: 393px;
        width: 100%;
        border: 1px solid #a4a4a4;
        border-radius: 3px;
        background-color: #ffffff;
        position: relative; }
        .sub-categories .table .table-headings .heading .search-filter .search-container .search-button {
          width: 18px;
          height: 18px;
          margin: 0 10px;
          z-index: 2;
          background: transparent;
          border: 0; }
        .sub-categories .table .table-headings .heading .search-filter .search-container > svg {
          width: 20px;
          position: absolute;
          left: 2.4%;
          opacity: 0.5; }
        .sub-categories .table .table-headings .heading .search-filter .search-container input {
          border: 0;
          font-size: 16px;
          height: 100%;
          width: 87%;
          outline: 0;
          -webkit-appearance: none;
          -webkit-border-radius: 0; }
      .sub-categories .table .table-headings .heading .search-filter .filter {
        position: relative; }
        .sub-categories .table .table-headings .heading .search-filter .filter .filter-btn {
          height: 40px;
          width: 94px;
          font-family: "franklinGothicbook";
          font-size: 16px;
          color: #000;
          border: 1px solid #a4a4a4;
          border-radius: 3px;
          text-transform: capitalize;
          padding: 0 20px 0 0; }
        .sub-categories .table .table-headings .heading .search-filter .filter > svg {
          position: absolute;
          width: 20px;
          right: 20%;
          top: 28%; }
  .sub-categories .table .table-content {
    font-family: "franklinGothicbook";
    margin-bottom: 50px; }
    .sub-categories .table .table-content ul {
      margin: 0;
      padding: 0; }
      .sub-categories .table .table-content ul li {
        list-style-type: none; }
    .sub-categories .table .table-content ul.d-column {
      background: #000;
      color: #fff;
      max-height: 100px;
      height: 100%;
      display: flex;
      flex-direction: row;
      overflow: hidden; }
      .sub-categories .table .table-content ul.d-column > li:first-child {
        width: 69px;
        padding-left: 20px;
        display: flex;
        align-items: center;
        border-right: 1px solid #5c5c5c; }
      .sub-categories .table .table-content ul.d-column > li:nth-child(2) {
        width: 320px;
        padding-left: 39px;
        display: flex;
        align-items: center;
        border-right: 1px solid #5c5c5c; }
      .sub-categories .table .table-content ul.d-column > li:nth-child(3) {
        width: 149px;
        padding-left: 21px;
        display: flex;
        align-items: center;
        border-right: 1px solid #5c5c5c; }
      .sub-categories .table .table-content ul.d-column > li:nth-child(4) {
        width: 461px;
        text-align: center;
        padding-top: 13px;
        border-right: 1px solid #5c5c5c; }
        .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul {
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          margin-top: 5px;
          border-top: 1px solid #5c5c5c; }
          .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul li {
            padding-top: 22px;
            padding-bottom: 22px;
            border-right: 1px solid #5c5c5c;
            width: 114px; }
          .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul > li:nth-child(2) {
            width: 120px; }
          .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul > li:nth-child(3) {
            padding-top: 3px;
            padding-bottom: 0;
            border: 0;
            width: 225px; }
            .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul > li:nth-child(3) ul {
              display: flex;
              flex-direction: row;
              justify-content: space-between;
              border-top: 1px solid #5c5c5c;
              margin-top: 6px; }
              .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul > li:nth-child(3) ul li {
                padding: 7px 0; }
              .sub-categories .table .table-content ul.d-column > li:nth-child(4) > ul > li:nth-child(3) ul li:nth-child(3) {
                border: 0; }
      .sub-categories .table .table-content ul.d-column > li:nth-child(5) {
        width: 281px;
        text-align: center;
        padding-top: 13px;
        padding-bottom: 0;
        border-right: 1px solid #5c5c5c; }
        .sub-categories .table .table-content ul.d-column > li:nth-child(5) ul {
          display: flex;
          justify-content: space-around;
          border-top: 1px solid #5c5c5c;
          margin-top: 5px; }
          .sub-categories .table .table-content ul.d-column > li:nth-child(5) ul li {
            display: flex;
            align-items: center;
            padding: 22px 0;
            border-right: 1px solid #5c5c5c;
            width: 100%;
            justify-content: center; }
          .sub-categories .table .table-content ul.d-column > li:nth-child(5) ul li:last-child {
            border: 0; }
    .sub-categories .table .table-content ul.d-row {
      display: flex;
      flex-direction: row;
      border: 1px solid #5c5c5c;
      border-top: 0;
      height: 42px; }
      .sub-categories .table .table-content ul.d-row li {
        font-size: 16px;
        color: #414141;
        display: flex;
        align-items: center;
        border-right: 1px solid #5c5c5c;
        justify-content: center; }
      .sub-categories .table .table-content ul.d-row li:first-child {
        width: 68px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(2) {
        width: 320px;
        padding-left: 39px;
        justify-content: flex-start; }
      .sub-categories .table .table-content ul.d-row li:nth-child(3) {
        width: 149px;
        padding-right: 22px;
        justify-content: flex-end; }
      .sub-categories .table .table-content ul.d-row li:nth-child(4) {
        width: 114px;
        padding-right: 12px;
        justify-content: flex-end; }
      .sub-categories .table .table-content ul.d-row li:nth-child(5) {
        width: 120px;
        padding-right: 12px;
        justify-content: flex-end; }
      .sub-categories .table .table-content ul.d-row li:nth-child(6) {
        width: 75px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(7) {
        width: 75px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(8) {
        width: 77px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(9) {
        width: 70px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(10) {
        width: 70px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(11) {
        width: 71px; }
      .sub-categories .table .table-content ul.d-row li:nth-child(12) {
        width: 66px; }
      .sub-categories .table .table-content ul.d-row li:last-child {
        border: 0; }
  .sub-categories .table-pagination-bottom {
    font-family: "franklinGothicbook"; }
    .sub-categories .table-pagination-bottom ul {
      justify-content: center; }
      .sub-categories .table-pagination-bottom ul li.lalink a {
        width: auto;
        font-size: 17px;
        border: 1px solid #a4a4a4;
        border-radius: 3px;
        padding: 0 5px 0 11px;
        margin: 0 20px 0 28px; }
      .sub-categories .table-pagination-bottom ul li:first-child {
        margin-right: 20px; }
  .sub-categories .SubCategory-pagination ul li a {
    box-sizing: border-box;
    font-size: 16px !important;
    height: 40px !important;
    width: 80px !important;
    border: 1px solid #979797 !important;
    border-radius: 3px;
    font-family: "franklinGothicbook"; }
  .sub-categories .SubCategory-pagination ul li a.active {
    border: 0 !important; }
  .sub-categories .SubCategory-pagination ul li:last-child a,
  .sub-categories .SubCategory-pagination ul li:first-child a {
    height: 40px !important;
    width: 40px !important; }

.search {
  justify-content: center;
  padding-top: 40px;
  display: flex;
  width: 100% !important;
  margin-bottom: 150px !important;
  float: none !important;
  margin: 0 auto !important; }
  @media screen and (max-width: 760px) {
    .search {
      margin-bottom: 30px; } }
  .search .fluid-left {
    max-width: 886px; }
  .search .search-container-wrap {
    font-family: "franklinGothicbook";
    margin-bottom: 100px; }
    .search .search-container-wrap .search-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box;
      max-height: 45px;
      max-width: 615px;
      width: 615px;
      height: 100%;
      border-bottom: 1px solid #a4a4a4;
      border-radius: 3px;
      background-color: #ffffff;
      position: relative;
      margin: 0 auto;
      padding-bottom: 4px; }
      @media only screen and (max-width: 768px) {
        .search .search-container-wrap .search-container {
          width: 100%; } }
      .search .search-container-wrap .search-container .search-button {
        width: 42px;
        height: 100%;
        margin: 0;
        z-index: 2;
        background: transparent;
        border: 0; }
      .search .search-container-wrap .search-container > svg {
        width: 40px;
        position: absolute;
        right: 0.4%;
        opacity: 0.5; }
      .search .search-container-wrap .search-container span {
        cursor: pointer; }
      .search .search-container-wrap .search-container input {
        border: 0;
        font-size: 36px;
        width: 100%;
        outline: 0;
        padding: 0;
        height: 100% !important;
        -webkit-appearance: none;
        -webkit-border-radius: 0; }
        .search .search-container-wrap .search-container input::placeholder {
          color: #000000;
          font-family: "franklinGothicBook";
          font-size: 28px; }
      .search .search-container-wrap .search-container input[type="search"]::-webkit-search-cancel-button,
      .search .search-container-wrap .search-container input[type="search"]::-webkit-search-results-button,
      .search .search-container-wrap .search-container input[type="search"]::-webkit-search-results-decoration {
        display: none; }

.app {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .app > :first-child {
    margin-bottom: 10px; }

.specialsContainer {
  max-width: 1280px;
  margin: 0 auto; }
  @media only screen and (max-width: 1290px) {
    .specialsContainer {
      padding-left: 15px;
      padding-right: 15px; } }
  @media screen and (max-width: 950px) {
    .specialsContainer {
      width: 100%; } }

@media only screen and (max-width: 1280px) {
  .adv {
    display: none; } }

.SplWapper {
  display: flex;
  flex-direction: column; }
  .SplWapper > :first-child {
    overflow: hidden;
    flex-direction: column; }
    .SplWapper > :first-child img {
      cursor: pointer;
      -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      transition: all 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
      object-fit: cover;
      display: -webkit-flex; }
  .SplWapper a span {
    color: #909090;
    font-family: "franklinGothicBook";
    font-size: 15px;
    letter-spacing: 0;
    line-height: 16px;
    margin: 10px 0 0; }
  @media only screen and (max-width: 1280px) {
    .SplWapper {
      width: auto; } }
  .SplWapper a {
    display: flex; }
  .SplWapper img {
    max-width: 100%;
    width: 100%; }

.newArticle {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; }
  @media only screen and (max-width: 1280px) {
    .newArticle {
      padding: 0 15px; } }
  .newArticle-subtitle {
    color: #000000;
    font-family: "franklinGothicBook";
    font-size: 20px;
    line-height: 30px; }
  .newArticle-socialinks {
    display: flex;
    flex-direction: column;
    margin-right: 40px; }
    .newArticle-socialinks-fixed {
      position: sticky;
      position: -webkit-sticky;
      top: 100px; }
    .newArticle-socialinks span {
      height: 20px;
      width: 20px;
      border: 1px solid #000000;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 8px;
      cursor: pointer; }
      .newArticle-socialinks span:hover {
        background-color: #000000; }
        .newArticle-socialinks span:hover svg path {
          fill: #ffffff; }
    @media only screen and (max-width: 1280px) {
      .newArticle-socialinks {
        display: none; } }
  .newArticle-banner {
    max-width: 100%;
    width: 100%;
    margin: 0px 0 50px; }
  .newArticle-container {
    margin: 0 0 100px;
    max-width: 839px;
    width: 100%;
    margin: 0 auto; }
    .newArticle-container p {
      color: #000000;
      font-family: "franklinGothicBook";
      font-size: 20px;
      line-height: 30px;
      margin: 0 0 40px; }
      .newArticle-container p strong {
        font-family: "franklinGothicDemi"; }
    .newArticle-container img {
      max-width: 100%;
      width: 100%;
      margin: 0 0 40px; }
  .newArticle-btn {
    height: 60px !important; }
  .newArticle-content {
    max-width: 1057px;
    width: 100%;
    margin: 0 auto; }
    .newArticle-content h2 {
      color: #000000;
      font-family: "franklin-fothic-demi-cond-regular";
      font-size: 60px;
      font-weight: 400;
      line-height: 60px;
      margin: 7px 0; }
    @media only screen and (max-width: 1280px) {
      .newArticle-content {
        width: 100%; } }
  .newArticle-bookMark {
    display: flex;
    margin: 40px 0 50px;
    align-items: center; }
    .newArticle-bookMark-item {
      display: flex; }
      .newArticle-bookMark-item img {
        height: 32px;
        width: 32px;
        border-radius: 50%;
        margin-right: 10px; }
    .newArticle-bookMark-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      width: 32px;
      border: 1px solid #000000;
      border-radius: 50%;
      margin-right: 10px; }
    .newArticle-bookMark-details {
      display: flex;
      flex-direction: column; }
      .newArticle-bookMark-details > :first-child {
        margin: 0 0 2px;
        color: #000000; }
      .newArticle-bookMark-details span {
        color: #898989;
        font-family: "franklinGothicBook";
        font-size: 14px;
        line-height: 18px; }

.athourQuote {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  padding: 30px 0;
  margin: 0 0 40px;
  display: flex; }
  .athourQuote img {
    max-width: 100%;
    width: 171px;
    margin: 0;
    margin-right: 26px; }
  .athourQuote-details h4 {
    color: #000000;
    font-family: georgia;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 20px;
    position: relative;
    padding-left: 30px; }
    .athourQuote-details h4::before {
      position: absolute;
      content: "\201C";
      font-size: 47px;
      color: #fc0000;
      margin: 0;
      padding: 0;
      float: left;
      position: absolute;
      top: 14px;
      left: 0; }
  .athourQuote-author {
    padding-left: 30px; }
    .athourQuote-author h6 {
      font-size: 18px;
      line-height: 20px;
      color: #000;
      font-family: "franklin-fothic-demi-cond-regular";
      font-weight: 400; }
    .athourQuote-author span {
      font-family: "Franklin Gothic Demi", arial;
      font-size: 14px;
      color: #000;
      line-height: 14px; }

.headerMenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: #000000;
  transition-duration: 500ms;
  transition-timing-function: ease-in;
  -webkit-transition: all 600ms cubic-bezier(0.16, 0.88, 0.14, 0.89);
  transition: all 600ms cubic-bezier(0.16, 0.88, 0.14, 0.89); }
  .headerMenu.active {
    overflow: auto;
    position: fixed;
    width: auto;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    z-index: 99;
    min-height: 100vh;
    height: 100%; }
    .headerMenu.active::-webkit-scrollbar {
      display: none; }
  .headerMenu .headerMenu-container .headerMenu-close {
    animation: delayAnimation;
    animation-delay: 500ms;
    cursor: pointer; }
  @media only screen and (max-width: 768px) {
    .headerMenu.active {
      overflow: scroll;
      overflow: -moz-scrollbars-none;
      scrollbar-width: none;
      height: 100%;
      width: 100%;
      background: #ffffff; }
      .headerMenu.active::-webkit-scrollbar {
        display: none; } }
  @media only screen and (max-width: 768px) {
    .headerMenu {
      background-color: #ffffff; } }
  .headerMenu-container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    padding: 45px 30px 0;
    display: flex;
    flex-direction: column; }
    @media only screen and (max-width: 1280px) {
      .headerMenu-container {
        padding: 20px 15px 60px;
        width: 100%; } }
  .headerMenu-close {
    display: inline-flex; }
    .headerMenu-close svg path {
      fill: #ffffff; }
    @media only screen and (max-width: 768px) {
      .headerMenu-close svg path {
        fill: #000000; } }
  .headerMenu-list {
    width: 100%;
    height: 100%;
    display: grid;
    max-width: 385px;
    background-color: #000000;
    grid-template-columns: 1fr; }
    .headerMenu-list ul {
      list-style: none; }
      .headerMenu-list ul > :last-child {
        border: none; }
      .headerMenu-list ul li {
        display: flex;
        position: relative;
        max-width: 326px;
        border-bottom: 1px solid #2b2b2b; }
        .headerMenu-list ul li a {
          font-family: "franklinGothicBook";
          color: #ffffff;
          font-size: 18px;
          letter-spacing: 0;
          line-height: 40px;
          width: 100%;
          cursor: pointer; }
          .headerMenu-list ul li a:hover {
            color: #e93f33 !important; }
    @media only screen and (max-width: 1000px) {
      .headerMenu-list {
        grid-gap: 50px; } }
    @media only screen and (max-width: 768px) {
      .headerMenu-list {
        grid-template-columns: 1fr;
        grid-gap: 0;
        display: none; }
        .headerMenu-list ul li {
          display: flex;
          border-bottom: none;
          cursor: pointer;
          padding-left: 0; }
          .headerMenu-list ul li::before {
            display: none; }
          .headerMenu-list ul li a {
            color: #000000;
            font-size: 14px;
            line-height: 16px;
            font-family: "franklinGothicDemi";
            padding: 10px 0; }
          .headerMenu-list ul li:hover a {
            color: #e93f33; } }

.responsiveCatogory {
  display: none; }
  @media only screen and (max-width: 768px) {
    .responsiveCatogory {
      display: flex;
      width: 100%; }
      .responsiveCatogory > ul {
        list-style: none;
        width: 100%;
        margin: 0 0 10px; }
        .responsiveCatogory > ul > li {
          display: flex;
          cursor: pointer; }
          .responsiveCatogory > ul > li.active {
            color: #e93f33; }
          .responsiveCatogory > ul > li > a {
            color: #000000;
            font-size: 14px;
            line-height: 16px;
            font-family: "franklinGothicDemi";
            padding: 10px 0;
            text-transform: capitalize; }
          .responsiveCatogory > ul > li:hover a {
            color: #e93f33; }
          .responsiveCatogory > ul > li:hover ul li a {
            color: #000000; } }

.dropDown {
  flex-direction: column;
  display: none; }
  .dropDown.active {
    display: block; }
  .dropDown > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center; }
    .dropDown > a > :last-child {
      display: none; }
  .dropDown > ul {
    list-style: none;
    display: none; }
    .dropDown > ul.active {
      display: block; }
    .dropDown > ul li {
      display: flex; }
      .dropDown > ul li a {
        width: 100%;
        padding: 10px 0;
        color: #000000;
        font-size: 14px;
        line-height: 16px;
        font-family: "franklinGothicDemi"; }
    .dropDown > ulli:hover a {
      color: #e93f33; }

.responsive-menu-btn {
  display: none; }
  @media only screen and (max-width: 768px) {
    .responsive-menu-btn {
      display: flex;
      width: 100%;
      margin: 0 0 10px; } }

.responsive-menu-head {
  padding: 0 0 24px;
  max-width: 385px;
  background-color: #000000; }
  .responsive-menu-head-menu svg {
    height: 24px; }
  .responsive-menu-head img {
    display: none; }
  @media only screen and (max-width: 768px) {
    .responsive-menu-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 10px;
      width: 100%;
      max-width: none; }
      .responsive-menu-head img {
        display: block;
        max-width: 100%;
        width: 50%;
        margin: 0 auto; }
      .responsive-menu-head-menu {
        height: 30px;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000000;
        transform: all 0.5s ease; }
        .responsive-menu-head-menu svg {
          height: 18px; }
          .responsive-menu-head-menu svg path {
            fill: #ffffff; } }
  @media only screen and (max-width: 425px) {
    .responsive-menu-head img {
      width: 80%; } }
  @media only screen and (max-width: 768px) {
    .responsive-menu-head {
      background: #ffffff; } }

.resposnive-menu-input {
  display: none; }
  @media only screen and (max-width: 768px) {
    .resposnive-menu-input {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 10px;
      margin: 0 0 20px; }
      .resposnive-menu-input label {
        position: relative; }
      .resposnive-menu-input input {
        border-radius: 16px;
        background-color: #f3f3f3;
        width: 100%;
        height: 32px;
        padding-left: 40px;
        outline: none;
        color: #000000;
        font-family: "franklinGothicBook";
        font-size: 14px;
        line-height: 16px;
        border: none; }
        .resposnive-menu-input input::placeholder {
          color: #000000;
          font-family: "franklinGothicBook";
          font-size: 14px;
          line-height: 16px; }
      .resposnive-menu-input svg {
        position: absolute;
        left: 10px;
        top: 6px; }
      .resposnive-menu-input img {
        max-width: 100%;
        width: 32px;
        height: 32px;
        object-fit: cover;
        border-radius: 50%; } }

.headerRight {
  position: relative; }

@media only screen and (min-width: 1024px) {
  .headerRight {
    display: none; } }

.responsiveBlank {
  display: none; }
  @media only screen and (max-width: 1000px) {
    .responsiveBlank {
      display: block; } }

.headerCircle {
  width: 600vw;
  position: absolute;
  height: 600vw;
  top: 50%;
  left: 50%;
  will-change: transform;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  margin-left: 15px;
  transform-origin: center;
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 1;
  display: none; }

.headerCircleActive {
  transform: translate(-50%, -50%) scale(1);
  background: #000;
  display: block; }
  @media only screen and (min-width: 768xpx) {
    .headerCircleActive {
      display: none; } }

.fixedDropDown {
  position: absolute;
  min-width: 176px;
  top: 36px;
  left: 0;
  z-index: 3;
  padding: 0;
  list-style: none;
  background-color: #ffffff;
  display: none; }
  .fixedDropDown.active {
    display: block; }
  .fixedDropDown li {
    display: flex; }
    .fixedDropDown li a {
      width: 100%;
      padding: 10px 0;
      color: #000000;
      font-size: 14px;
      line-height: 16px;
      font-family: "franklinGothicDemi";
      padding-left: 10px; }
      .fixedDropDown li a:hover {
        color: #ffffff;
        background-color: #000000; }

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge; }

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom; }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s; }

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms; }

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms; }

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s; }

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important; } }

.covid {
  margin: -52px auto 0; }
  @media only screen and (max-width: 768px) {
    .covid {
      margin: 0; } }
  .covid-banner {
    background-image: url("/static/images/covid/covid.png");
    background-size: cover;
    height: 726px;
    position: relative;
    margin-bottom: 130px; }
    .covid-banner.fixed {
      height: 72px;
      position: sticky;
      position: -webkit-sticky;
      position: -moz-sticky;
      position: -ms-sticky;
      position: -o-sticky;
      width: 100%;
      top: 0;
      z-index: 10; }
      .covid-banner.fixed .covid-banner-content {
        display: none; }
      .covid-banner.fixed .covid-tabs {
        height: 100%; }
      .covid-banner.fixed .covid-tabs-wrapper {
        justify-content: space-between;
        padding-left: 83px;
        padding-right: 183px; }
        @media only screen and (max-width: 768px) {
          .covid-banner.fixed .covid-tabs-wrapper {
            width: 100%; } }
      .covid-banner.fixed .covid-tabs-logo {
        display: flex; }
      @media only screen and (max-width: 768px) {
        .covid-banner.fixed .covid-banner-content {
          display: none; }
        .covid-banner.fixed .covid-banner {
          height: 50px; } }
    .covid-banner-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      max-width: 1280px;
      margin: 0 auto 0px; }
      .covid-banner-content h1 {
        color: #ffffff;
        font-family: "franklin-fothic-demi-cond-regular";
        font-size: 130px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 147px;
        text-transform: uppercase;
        text-align: center;
        max-width: 868px;
        margin: 0 auto 30px; }
      .covid-banner-content p {
        color: #ffffff;
        font-family: "franklinGothicBook";
        font-size: 22px;
        letter-spacing: 0;
        line-height: 25px;
        text-align: center;
        max-width: 713px;
        margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      .covid-banner {
        height: 550px; } }
  .covid-tabs {
    position: absolute;
    width: 100%;
    height: 52px;
    left: 0;
    bottom: 0; }
    .covid-tabs-wrapper {
      display: flex;
      height: 100%;
      width: 100%;
      justify-content: center; }
    .covid-tabs-logo {
      display: none;
      align-items: center; }
      .covid-tabs-logo h4 {
        color: #ffffff;
        font-family: "franklin-fothic-demi-cond-regular";
        font-size: 26px;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 30px;
        min-width: 240px; }
    .covid-tabs-items {
      height: 100%;
      width: 100%;
      justify-content: center;
      display: flex; }
      .covid-tabs-items span {
        color: #ffffff;
        font-family: "franklin-fothic-demi-cond-regular";
        font-size: 20px;
        letter-spacing: 0;
        font-weight: 400;
        line-height: 22px;
        width: 145px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        text-transform: uppercase;
        -webkit-transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -moz-transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        -o-transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
        transition: all 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75); }
        .covid-tabs-items span:hover {
          background-color: #ffffff;
          color: #e93f33; }
        .covid-tabs-items span.active {
          background-color: #ffffff;
          color: #e93f33; }
      @media only screen and (max-width: 768px) {
        .covid-tabs-items {
          width: 100%; } }
  .covid-container {
    max-width: 1175px;
    width: 100%;
    margin: 0 auto; }
  .covid-wrapper {
    display: flex;
    align-items: flex-start; }
  .covid-socialmedia {
    display: flex;
    flex-direction: column;
    padding-right: 14%;
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    top: 100px; }
    .covid-socialmedia a {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2px 0;
      margin-bottom: 20px;
      height: 30px;
      width: 30px;
      border-radius: 50%;
      border: 1px solid #000000; }
    .covid-socialmedia svg {
      height: 20px;
      width: 20px; }
    @media only screen and (max-width: 1180px) {
      .covid-socialmedia {
        position: relative;
        top: 0; } }
    @media only screen and (max-width: 768px) {
      .covid-socialmedia {
        position: relative;
        top: 0; }
        .covid-socialmedia a {
          margin: 0 10px !important; } }
  .covid-content {
    max-width: 836px;
    width: 100%; }
    .covid-content > :last-child {
      border-bottom: none;
      margin: 0 0 0px; }
    .covid-content-list {
      width: 100%;
      border-bottom: 1px solid #cecece;
      margin: 0 0 50px;
      display: flex;
      flex-direction: column; }
      .covid-content-list-head {
        margin: 0 0 20px; }
        .covid-content-list-head h3 {
          color: #000000;
          font-family: "franklinGothicDemi";
          font-size: 24px;
          letter-spacing: 0;
          line-height: 30px; }
        .covid-content-list-head span {
          color: #898989;
          font-family: "franklinGothicBook";
          font-size: 14px;
          letter-spacing: 0;
          line-height: 18px; }
      .covid-content-list-img {
        max-width: 100%;
        margin: 0 0 20px; }
      .covid-content-list-details {
        padding: 0 0 50px; }
        .covid-content-list-details img {
          float: left;
          margin-right: 40px;
          margin-bottom: 40px;
          max-width: 100%; }
        .covid-content-list-details p {
          color: #000000;
          font-family: "franklinGothicBook";
          font-size: 18px;
          letter-spacing: 0;
          line-height: 30px;
          margin: 0 0 30px; }
          .covid-content-list-details p strong {
            font-family: "franklinGothicDemi"; }
          .covid-content-list-details p small {
            border-bottom: 1px solid #e93f33;
            font-size: 18px;
            letter-spacing: 0;
            line-height: 30px;
            padding: 0 2px; }
          .covid-content-list-details p a {
            position: relative; }
            .covid-content-list-details p a::before {
              position: absolute;
              content: "";
              height: 1px;
              width: 100%;
              bottom: -1px;
              left: 0;
              background-color: #e93f33; }
          @media only screen and (max-width: 600px) {
            .covid-content-list-details p {
              display: flex;
              flex-direction: column; }
              .covid-content-list-details p img {
                width: 100%;
                margin: 0;
                height: auto; } }
        .covid-content-list-details > div > :last-child {
          margin: 0; }
  @media only screen and (max-width: 1180px) {
    .covid-banner {
      margin: 0 0 50px; }
      .covid-banner-content h1 {
        font-size: 90px;
        line-height: 100px; }
    .covid-wrapper {
      flex-direction: column; }
    .covid-socialmedia {
      flex-direction: row;
      padding-right: 0;
      margin: 0 0 30px; }
      .covid-socialmedia > :first-child {
        margin-left: 0; }
      .covid-socialmedia a {
        margin: 0 20px 0; } }
  @media only screen and (max-width: 1180px) {
    .covid-container {
      padding: 0 15px; }
    .covid-banner .fixed .covid-tabs-wrapper {
      padding: 0 30px; }
    .covid-tabs-wrapper {
      padding: 0 30px !important; } }
  @media only screen and (max-width: 900px) {
    .covid-tabs-logo {
      display: none !important; }
    .covid-tabs-items span {
      width: 25%;
      padding: 10px; } }
  @media only screen and (max-width: 600px) {
    .covid-banner-content h1 {
      font-size: 50px;
      line-height: 60px; }
    .covid-tabs-items span {
      font-size: 14px;
      letter-spacing: 0;
      line-height: 16px; } }

.terms-container {
  max-width: 836px;
  margin: 0 auto; }

.terms-wrapper {
  margin: 0 0 40px; }
  .terms-wrapper h3 {
    color: #000000;
    font-family: "franklinGothicDemi";
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
    margin: 0 0 10px; }
  .terms-wrapper h4 {
    color: #000000;
    font-family: "franklinGothicDemi";
    font-size: 22px;
    letter-spacing: 0;
    line-height: 28px;
    margin: 0 0 10px; }
  .terms-wrapper h6 {
    color: #000000;
    font-family: "franklinGothicDemi";
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
    margin: 0 0 6spx; }
  .terms-wrapper p {
    color: #000000;
    font-family: "franklinGothicBook";
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    margin: 0 0 20px; }
  .terms-wrapper .form {
    border: 1px solid #999999;
    padding: 20px;
    border-radius: 4px; }

@media only screen and (max-width: 850px) {
  .terms-container {
    padding: 0 15px; } }

.aboutUs-container {
  max-width: 836px;
  margin: 0 auto; }

.aboutUs-wrapper {
  margin: 0 0 80px; }
  .aboutUs-wrapper span {
    display: block;
    color: #000000;
    font-family: "franklinGothicBook";
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    margin: 0 0 10px; }
  .aboutUs-wrapper h3 {
    color: #000000;
    font-family: "franklinGothicDemi";
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
    margin: 0 0 20px; }
  .aboutUs-wrapper p {
    color: #000000;
    font-family: "franklinGothicBook";
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    margin: 0 0 30px;
    display: flex;
    align-items: center; }
    .aboutUs-wrapper p a {
      cursor: pointer;
      text-decoration: none;
      margin-left: 1px; }

@media only screen and (max-width: 900px) {
  .aboutUs {
    padding: 0 15px; }
    .aboutUs-wrapper {
      margin: 0 0 40px; } }

.ReactModal__Body--open {
  overflow: hidden; }

.toast-container {
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  opacity: 0.95; }

.Toastify__close-button--default {
  color: white;
  opacity: 0.8;
  font-size: 16px; }
  .Toastify__close-button--default:hover {
    color: red; }

.toast-progress-style {
  height: 8px; }

.tools {
  position: absolute;
  bottom: -12px;
  left: 50%;
  display: flex; }
  .tools button {
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border: none;
    outline: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .tools button img {
      max-width: 100%;
      height: auto;
      width: 20px;
      background-color: transparent; }
    .tools button:hover {
      background-color: rgba(255, 255, 255, 0.5); }

.image {
  object-fit: none; }

.slick-slider.slick-initialized {
  width: 100%;
  height: 100%; }

.TransformComponent-module_container__3NwNd {
  width: auto !important;
  height: auto !important; }

.TransformComponent-module_container__3NwNd {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; }

.slick-next:before {
  font-size: 36px !important; }

.slick-prev {
  left: -45px !important; }

.TransformComponent-module_content__TZU5O {
  transform: translate(0px, 0px) scale(1) !important; }

.slick-track {
  display: flex !important;
  align-items: center; }

.slick-prev::before {
  font-size: 36px !important; }

.slick-slider {
  touch-action: pan-y; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400; }

.truncateOne {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; }

.truncateTwo {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.truncateThree {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

@charset "UTF-8";
@font-face {
  font-family: "WebRupee";
  src: url(data:application/vnd.ms-fontobject;base64,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);
  src: local("WebRupee"), url(data:font/ttf;base64,AAEAAAAOAIAAAwBgRkZUTVkNRr0AAAvoAAAAHEdERUYAkgAkAAALwAAAAChPUy8y6cXmJQAAAWgAAABWY21hcA3pgLIAAANMAAABSmN2dCAAIQJ5AAAEmAAAAARnYXNwAAcABwAAC7QAAAAMZ2x5ZlHlTaUAAAVkAAAB7GhlYWTyULTLAAAA7AAAADZoaGVhBLQCWQAAASQAAAAkaG10eAmOAFEAAAHAAAABjGxvY2EQAhBwAAAEnAAAAMhtYXhwAKcAXAAAAUgAAAAgbmFtZban/CYAAAdQAAADcnBvc3RC7rsGAAAKxAAAAPAAAQAAAAEAAPDU2FBfDzz1AB8D6AAAAADIiziHAAAAAMiLOIcAAP/+AgcC2gAAAAgAAgAAAAAAAAABAAACFf/mAJYCDwAAAAACBwABAAAAAAAAAAAAAAAAAAAAYwABAAAAYwArAAIAAAAAAAIAAAABAAEAAABAAC4AAAAAAAEAOwGQAAUAAAKKArsALwCMAooCu/9dAd8AMQECAAACCwUEAgICAgIE5BeO/0IA/f8AAACgAAAAAFBmRWQAQAAgILkC7P8dAJYDhADZYAABv9/3AAAAAAFsACEAAAAAAU0AAADIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAe8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACDwAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAg8AGAAAAAMAAAADAAAAHAABAAAAAABEAAMAAQAAABwABAAoAAAABgAEAAEAAgB+ILn//wAAACAguf///+PfqQABAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAADBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACECeQAAACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AbgBuAG4AsgCyALIAsgCyALIAsgCyALIAsgCyALIAsgD2AAIAIQAAASoCmgADAAcALrEBAC88sgcEAO0ysQYF3DyyAwIA7TIAsQMALzyyBQQA7TKyBwYB/DyyAQIA7TIzESERJzMRIyEBCejHxwKa/WYhAlgAAAEAAAAAAe8C2gAqAAABFhcWFzMHIwYHBgcGBwYjASMBNTMyNzY3Njc2NSE3MyYnJicmKwI3IQcBSg8HCASDLlMGFRocGiwtJQERdv75QTIjIxQWBwn+9C3WCxMRGSwIOU4tAcIuApUPEhQTRSkhJBIVDw/+qwFKQAwOEhUUFxJFGQ4MCgtFRQABABj//gIHAtgAKgAAARYXFhczByMGBwYHBgcGIwEjATUzMjc2NzY3NjUhNzMmJyYnJisCNyEHAWIPBwgEgy5TBhUaHBosLSUBEXb++UEyIyMUFgcJ/vQt1gsTERksCDlOLQHCLgKTDxIUE0UpISQSFQ8P/qsBSkAMDhIVFBcSRRkODAoLRUUAAQAY//4CBwLYACoAAAEWFxYXMwcjBgcGBwYHBiMBIwE1MzI3Njc2NzY1ITczJicmJyYrAjchBwFiDwcIBIMuUwYVGhwaLC0lARF2/vlBMiMjFBYHCf70LdYLExEZLAg5Ti0Bwi4Ckw8SFBNFKSEkEhUPD/6rAUpADA4SFRQXEkUZDgwKC0VFAAAAFAD2AAEAAAAAAAAAIwBIAAEAAAAAAAEACAB+AAEAAAAAAAIABACRAAEAAAAAAAMAIwDeAAEAAAAAAAQACAEUAAEAAAAAAAUADAE3AAEAAAAAAAYACAFWAAEAAAAAAAsAEwGHAAEAAAAAAA0ARgIpAAEAAAAAABMAAwJ4AAMAAQQJAAAARgAAAAMAAQQJAAEAEABsAAMAAQQJAAIACACHAAMAAQQJAAMARgCWAAMAAQQJAAQAEAECAAMAAQQJAAUAGAEdAAMAAQQJAAYAEAFEAAMAAQQJAAsAJgFfAAMAAQQJAA0AjAGbAAMAAQQJABMABgJwAEMAbwBwAHkAcgBpAGcAaAB0ACAAKABhAHQAKQAgAGgAdAB0AHAAOgAvAC8AdwBlAGIAcgB1AHAAZQBlAC4AYwBvAG0ALwAAQ29weXJpZ2h0IChhdCkgaHR0cDovL3dlYnJ1cGVlLmNvbS8AAFcAZQBiAFIAdQBwAGUAZQAAV2ViUnVwZWUAAEIAbwBvAGsAAEJvb2sAAEYAbwBuAHQARgBvAHIAZwBlACAAMgAuADAAIAA6ACAAVwBlAGIAUgB1AHAAZQBlACAAOgAgADgALQA4AC0AMgAwADEAMAAARm9udEZvcmdlIDIuMCA6IFdlYlJ1cGVlIDogOC04LTIwMTAAAFcAZQBiAFIAdQBwAGUAZQAAV2ViUnVwZWUAAFYAZQByAHMAaQBvAG4AIAAxAC4AMAAgAABWZXJzaW9uIDEuMCAAAFcAZQBiAFIAdQBwAGUAZQAAV2ViUnVwZWUAAGgAdAB0AHAAOgAvAC8AdwBlAGIAcgB1AHAAZQBlAC4AYwBvAG0AAGh0dHA6Ly93ZWJydXBlZS5jb20AAFAAbABlAGEAcwBlACAAdgBpAHMAaQB0ACAAaAB0AHQAcAA6AC8ALwB3AGUAYgByAHUAcABlAGUALgBjAG8AbQAgAGYAbwByACAAdABoAGUAIABjAG8AbgB0AGEAYwB0ACAAZABlAHQAYQBpAGwAcwAgAG8AZgAgAHQAaABlACAAbwB3AG4AZQByAC4AAFBsZWFzZSB2aXNpdCBodHRwOi8vd2VicnVwZWUuY29tIGZvciB0aGUgY29udGFjdCBkZXRhaWxzIG9mIHRoZSBvd25lci4AAFIAIAByAABSIHIAAAAAAgAAAAAAAP+DADIAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAQACAAMABAAFAAYABwAIAAkACgALAAwADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaABsAHAAdAB4AHwAgACEAIgAjACQAJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AD8AQABBAEIAQwBEAEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAVQBWAFcAWABZAFoAWwBcAF0AXgBfAGAAYQECB3VuaTIwQjkAAAACAAgAAv//AAMAAQAAAA4AAAAYACAAAAACAAEAAQBiAAEABAAAAAIAAAABAAAAAQAAAAAAAQAAAADH/rDfAAAAAMiDX0oAAAAAyIs2kw==) format("truetype"), url(data:font/woff;base64,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) format("woff");
  font-weight: normal;
  font-style: normal; }

.WebRupee {
  font-family: "WebRupee"; }

.wrapper {
  width: 980px;
  margin: 0 auto;
  padding: 0px; }

.row {
  width: 100%;
  float: left; }

.add-banner {
  float: right;
  margin: 2px 0 0; }

.top_add {
  width: 730px;
  margin: 0 auto;
  margin-bottom: 20px; }

.foot_add {
  width: 730px;
  margin: 0 auto; }

.logo-section {
  width: 100%;
  float: left; }

.h_links_wrapper {
  width: 185px;
  float: left;
  position: absolute;
  top: 0;
  right: 0; }

.h_links_wrapper ul {
  width: 100%;
  float: left; }

.h_links_wrapper ul li,
.h_links_wrapper ul li a {
  width: auto;
  float: left;
  font-size: 14px;
  font-weight: bold;
  color: #333; }

.h_links_wrapper ul li a {
  padding: 0px 3px;
  border-right: 1px solid #666; }

.h_links_wrapper ul li:last-child a {
  border-right: 0px; }

.writter_name {
  width: auto;
  font-size: 14px;
  font-style: italic;
  margin-left: 15px; }

.top_nav {
  width: 480px;
  float: left;
  padding: 0px;
  height: 41px; }

.top_nav {
  margin: 0px;
  padding: 0px; }

.top_nav a {
  float: left;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
  padding: 14px 18px 14px 18px;
  font-weight: bold; }

.top_nav a:first-child {
  padding-left: 0px; }

.top_nav a.active {
  background: #ee1c25;
  padding: 14px 12px; }

.socl_ic_blk {
  width: 295px;
  padding: 0px;
  height: 0px;
  margin: 10px 0px 40px 0px;
  float: right; }

.socl_icons {
  width: 150px;
  padding: 0px;
  border: 0x;
  overflow: hidden; }

.socl_icons a {
  height: 20px;
  float: left;
  overflow: hidden;
  margin: 3px 5px;
  width: 20px; }

.socl_icons_left {
  float: left;
  border: none; }

.line_img {
  width: 1px;
  height: 15px;
  margin: 2px 15px 0px 15px; }

.top_login {
  width: 113px;
  color: #fff;
  font-size: 12px;
  position: relative;
  float: left; }

.user_img {
  width: 18px;
  height: 16px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
  margin-top: 3px; }

.user_text {
  width: auto;
  height: 20px;
  line-height: 20px;
  padding: 0px 5px 0px;
  color: #fff;
  cursor: pointer; }

.user_text a {
  color: #fff;
  float: left;
  overflow: hidden;
  text-decoration: none; }

.admin-drop {
  background-color: #f9f9f9;
  height: auto;
  padding: 5px;
  position: absolute;
  top: 31px;
  width: 150px;
  right: 0px;
  border-bottom: 3px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333; }

.admin-drop a {
  width: 140px;
  float: left;
  font-size: 14px;
  padding: 3px 5px 3px;
  border-bottom: 1px solid #333;
  color: #333;
  margin: 0; }

.admin-drop a:last-child {
  border-bottom: 0px; }

.admin-drop a:hover {
  color: #333; }

/*.menu-section {	width: 100%; float: left;  height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left;background-color: #fff; padding:0; margin:0; } */
ul.main-menu li {
  float: left;
  display: inline;
  list-style: none;
  padding: 0;
  /* background:url(../images/menu-seprator.jpg) no-repeat 100% 0; */
  margin: 0px 1px; }

ul.main-menu li:last-child {
  background: none; }

ul.main-menu li a {
  float: left;
  text-transform: uppercase;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  padding: 10px 7px 10px;
  margin: 0;
  font-weight: bold; }

ul.main-menu a:hover,
ul.main-menu li a.active {
  background-color: #000;
  color: #fff;
  font-size: 15px; }

.red-clr {
  border-top: 4px solid #ee1c25; }

.yello-clr {
  border-top: 4px solid #f9b100; }

.sblue-clr {
  border-top: 4px solid #00a0d2; }

.green-clr {
  border-top: 4px solid #80c342; }

.blue-clr {
  border-top: 4px solid #2e41c0; }

.org-clr {
  border-top: 4px solid #f37020; }

.pink-clr {
  border-top: 4px solid #c90583; }

ul.main-menu li.bigstory-bg {
  background-color: #ffffff !important; }

ul.main-menu li.pixtory-bg {
  background-color: #ffffff !important; }

ul.main-menu li.events-bg {
  background-color: #ffffff !important; }

ul.main-menu li.enterprise-bg {
  background-color: #ffffff !important; }

ul.main-menu li.strategy-bg {
  background-color: #ffffff !important; }

ul.main-menu li.markets-bg {
  background-color: #ffffff !important; }

ul.main-menu li.cestlavie-bg {
  background-color: #ffffff !important; }

ul.main-menu li.gray-bg {
  background-color: #ffffff !important; }

ul.main-menu li.bigstory-bg a:hover,
ul.main-menu li.bigstory-bg a.active {
  background-color: #ee1c25 !important; }

ul.main-menu li.pixtory-bg a:hover,
ul.main-menu li.pixtory-bg a.active {
  background-color: #fdb913 !important; }

ul.main-menu li.events-bg a:hover,
ul.main-menu li.events-bg a.active {
  background-color: #a8a9ad !important; }

ul.main-menu li.enterprise-bg a:hover,
ul.main-menu li.enterprise-bg a.active {
  background-color: #ff4d00 !important; }

ul.main-menu li.strategy-bg a:hover,
ul.main-menu li.strategy-bg a.active {
  background-color: #02acdf !important; }

ul.main-menu li.markets-bg a:hover,
ul.main-menu li.markets-bg a.active {
  background-color: #81c441 !important; }

ul.main-menu li.cestlavie-bg a:hover,
ul.main-menu li.cestlavie-bg a.active {
  background-color: #c90784 !important; }

ul.main-menu li.gray-bg a:hover,
ul.main-menu li.gray-bg a.active {
  background-color: #a8a9ad !important; }

.red-clr:hover,
.red-clr.active {
  border-top: 4px solid #ee1c25;
  background-color: #ee1c25; }

.yello-clr:hover,
.yello-clr.active {
  border-top: 4px solid #f9b100;
  background-color: #f9b100; }

.sblue-clr:hover,
.sblue-clr.active {
  border-top: 4px solid #089bc5;
  background-color: #089bc5; }

.green-clr:hover,
.green-clr.active {
  border-top: 4px solid #80c342;
  background-color: #80c342; }

.blue-clr:hover,
.blue-clr.active {
  border-top: 4px solid #2e41c0;
  background-color: #2e41c0; }

.pink-clr:hover,
.pink-clr.active {
  border-top: 4px solid #c90583;
  background-color: #c90583; }

.org-clr:hover,
.org-clr.active {
  border-top: 4px solid #f37020;
  background-color: #f37020; }

/*.HeaderSearchHolder { width:300px; margin:0px 0px 2px 0; position:relative; }
.HeaderSearchHolder input { padding:4px 5px!important; width:290px; background-color:#eee!important; border:1px solid #ffffff!important; height:35px; font-size:14px; color:#000!important;}
.HeaderSearchICon { position:absolute; right:10px; top:12px; cursor:pointer; height:20px; width:20px;}*/
.middle-container {
  width: 100%;
  float: left; }

#left-container {
  width: 650px;
  float: left;
  margin-right: 20px; }

.sensex {
  width: 100%;
  float: left; }

#left-container h1 a {
  color: #000; }

.zoom img {
  width: 100%;
  max-width: 100%; }

/* right section */
#right-container {
  width: 300px;
  float: left;
  margin-left: 10px; }

.subscribe-box {
  width: 268px;
  float: left;
  background: #374b92;
  padding: 13px 8px;
  border: 8px solid #152970; }

.subscribe input {
  width: 174px;
  height: 22px;
  padding: 4px 4px;
  float: left;
  border: 0 !important;
  border-radius: 0px !important;
  background: #fff;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-borromleft: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.subscribe button {
  width: 73px;
  height: 34px;
  background: #f24024;
  color: #fff;
  overflow: visible;
  position: relative;
  float: left;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-borromright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }

.subscribe-box input {
  width: 174px;
  height: 22px;
  padding: 4px 4px;
  float: left;
  border: 0 !important;
  border-radius: 0px !important;
  background: #fff;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-borromleft: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.subscribe-box .subscribe_button {
  width: 73px;
  height: 34px;
  background: #f24024;
  color: #fff;
  overflow: visible;
  position: relative;
  float: left;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-borromright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }

.subscribe-box .heading2 span {
  width: auto;
  float: left;
  background: #374b92;
  padding-right: 8px; }

#right-container .static {
  width: 300px;
  position: fixed;
  top: 20px; }

.search-wrapper {
  width: 100%;
  float: left; }

.search-wrapper .srchead {
  font-size: 26px;
  margin-bottom: 20px; }

.search {
  width: 300px;
  float: left;
  margin-left: 0px;
  margin-bottom: 0px; }

.search input {
  width: 290px;
  height: 30px;
  padding: 4px 4px;
  float: left;
  border: 1px solid #999;
  border-radius: 0px;
  background: #fff; }

.search input:focus,
.subscribe input:focus {
  outline: 0;
  background: #fff; }

.search button {
  overflow: visible;
  position: relative;
  float: right;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 34px;
  width: 31px;
  /* background:#febd1c url(../images/search-icon.png) no-repeat 50% 50%;  */ }

.search button:hover,
.search button:active,
.search button:focus {
  /* background:#febd1c url(../images/search-icon.png) no-repeat 50% 50%; */ }

.search button:before,
.subscribe button:before {
  content: "";
  position: absolute;
  top: 12px;
  left: -6px; }

.nxtpre-cnt {
  width: 100%;
  height: 30px;
  line-height: 30px;
  float: left;
  position: relative;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 5px;
  margin: 0px 0px 20px;
  padding-top: 10px; }

.nxtprewrp {
  width: 75px;
  position: absolute;
  right: 0;
  top: 10px; }

.nxtprewrp img,
.nxtprewrp a img {
  float: left;
  margin: 0px 0px; }

/* -- Magzine widget --*/
.widget_right {
  background: #f4f4f4;
  text-align: center;
  padding-top: 10px;
  width: 300px;
  float: left; }

.heading {
  margin-bottom: 10px;
  font-size: 22px;
  color: #000;
  font-weight: normal; }

#widget_magzine .imgWrapper {
  width: 260px;
  height: 180px;
  margin: 0 auto; }

#widget_magzine .imgWrapper img {
  width: 140px;
  margin: 0px auto;
  text-align: left; }

#widget_magzine .button {
  width: 120px;
  height: 35px;
  float: left;
  text-align: left;
  margin: 10px 5px 10px 5px !important;
  background-color: #0068b7;
  line-height: 35px;
  color: #fff;
  font-size: 16px;
  border-radius: 2px; }

#widget_magzine .button img {
  width: 16px !important;
  height: 16px !important;
  float: left;
  margin-top: 8px;
  margin-left: 20px;
  margin-right: 10px; }

.red {
  background-color: #fc0000 !important; }

.enter_desc,
.trend_desc {
  font-size: 19px;
  line-height: 22px;
  text-align: center; }

/*.pres_heading{ height:45px; overflow:hidden;}
.pres_desc{ height:81px; overflow:hidden; padding-bottom:0px!important;}

.enter_heading{ width:100%; height:42px; overflow:hidden; float:left; text-align:center; margin-bottom:5px!important;}
.enter_desc{ float:left; height:85px; overflow:hidden; padding-bottom:0px;  font-size: 19px; line-height: 22px; text-align: center;}

.stra_heading{ width:100%; float:left; height:45px; overflow:hidden; margin-bottom:0px!important;}
.stra_desc{width:auto; float:left; height:80px; overflow:hidden; padding-bottom:0px;}

.lead_heading{ height:45px; overflow:hidden;}
.lead_desc{ height:81px; overflow:hidden; padding-bottom:0px!important;}*/
#enter_f_widget2 .float-left {
  width: 50%;
  float: left; }

#feature_edtion .float-left {
  width: 50%;
  float: left; }

/*.trend_heading{ width:100%; height:52px; overflow:hidden; float:left; text-align:center; margin-bottom:5px!important;}
.trend_desc{ width:100%; height:81px; overflow:hidden; padding-bottom:0px!important;  font-size: 19px; line-height: 22px; text-align: center;}

.feature_heading{width:100%; height:42px; overflow:hidden; float:left;}
.feature_desc{width:100%; height:82px; overflow:hidden;}*/
.disclaimer {
  font-size: 11px;
  line-height: 14px;
  margin-left: -20px;
  float: left; }

.deal-street {
  width: 280px;
  float: left;
  padding: 10px;
  border: 1px solid #000; }

.deal-street .thumbnail {
  width: 118px;
  height: 83px;
  float: left; }

.deal-street .thumbnail img {
  width: 100%; }

.deal-street .row {
  width: 94%;
  float: left;
  padding-left: 20px; }

.deal-street ol {
  width: 92%;
  padding-top: 30px;
  float: left;
  margin: 0;
  counter-reset: numList; }

.deal-street ol li {
  width: 100%;
  float: left;
  margin: 0;
  padding-bottom: 30px;
  position: relative;
  list-style: none;
  min-height: 35px;
  text-align: center; }

.deal-street ol li:before {
  counter-increment: numList;
  content: counter(numList);
  float: left;
  position: absolute;
  left: 50%;
  font: bold 12px sans-serif;
  text-align: center;
  color: #fff;
  line-height: 26px;
  width: 25px;
  height: 25px;
  background: #ee1b22;
  -moz-border-radius: 999px;
  border-radius: 999px;
  top: -30px;
  margin-left: -14px; }

/*.deal-street ol li {width:100%; float:left; margin:0; margin-bottom:15px; position: relative; list-style:none;}
.deal-street ol li:before { counter-increment: numList; content: counter(numList); float: left; position: absolute; left: -32px; font: bold 12px sans-serif; text-align: center; color: #fff; line-height: 26px;
width: 25px; height: 25px; background: #000; -moz-border-radius: 999px; border-radius: 999px;}*/
.deal-street ol li:last-child {
  padding-bottom: 0px; }

.deal-street ol li a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  color: #333;
  font-weight: normal;
  font-style: italic; }

.deal-street .desc {
  width: 57%;
  float: left; }

.deal-street .desc .share_sec {
  margin-top: 0px; }

.deal-street .heading1 {
  width: 100%;
  float: left;
  min-height: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  background: none;
  border-bottom: 1px solid #000;
  margin-left: -10px;
  padding: 0px 10px 5px; }

.deal-street .desc .heading a {
  font-size: 15px;
  font-weight: bold;
  color: #000 !important; }

#box_widget .heading1 {
  width: 100%;
  float: left;
  min-height: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  background: none;
  border-bottom: 1px solid #000;
  margin-left: 0px;
  padding: 8px 0px 8px; }

#box_widget .heading1 a,
.deal-street .heading1 a {
  color: #000; }

.deal-street .desc-txt {
  width: 100%;
  float: left;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-top: 5px; }

.deal-street .row .box {
  width: 180px;
  float: left;
  margin: 6px 15%;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 15px; }

.deal-street .row .box:before {
  /* content:url(../images/arrow_icon.jpg);  */
  position: relative;
  top: 3px; }

.deal-street .row .box a {
  color: #a0ba59; }

.inside_box {
  width: 200px;
  float: left;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0px 7px 14px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  padding: 20px 0px; }

.inside_box .date {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: bold;
  text-decoration: underline; }

.inside_box span {
  width: auto;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  /* background:url(../images/arrow_icon.jpg) no-repeat 0 6px; */
  padding: 0px 22px; }

.inside_box a {
  color: #a0ba59; }

.left_add {
  width: 100%;
  float: left;
  text-align: center; }

.left_add table td {
  padding: 0; }

.rght_add {
  width: 300px;
  float: left; }

.left-section {
  width: 82%;
  float: left; }

.right-section {
  width: auto;
  float: right; }

.digital_edition {
  width: 300px;
  float: left; }

.digital_img {
  width: 300px;
  float: left;
  text-align: center; }

.digital_img .wrapper {
  width: 250px;
  margin: 0 auto; }

.digital_img a {
  width: auto;
  float: left;
  margin: 0px 2px; }

.archive_year {
  width: 300px;
  float: left; }

.archive_year .wrapper {
  width: 280px;
  margin: 0 auto; }

.archive_year nav a {
  width: auto;
  float: left;
  margin: 4px 8px 4px 0px;
  padding: 5px 18px;
  font-size: 17px;
  background-color: #fff;
  border: 1px solid #666;
  color: #666666; }

.archive_year nav a:hover,
.archive_year nav a.active {
  width: auto;
  float: left;
  font-size: 17px;
  padding: 5px 18px;
  background-color: #666666;
  color: #fff; }

.archive_year .wrapper .heading {
  float: left;
  font-size: 15px;
  font-weight: bold;
  color: #000 !important;
  margin-top: 20px; }

.archive_year .wrapper .desc {
  float: left;
  font-size: 15px;
  font-weight: normal;
  color: #000 !important;
  margin-top: 10px; }

.widget_arch {
  width: 315px;
  float: left;
  margin-right: 0px;
  margin-bottom: 30px; }

.widget_arch:nth-child(2n + 0) {
  margin-right: 20px; }

.widget_arch .widget_img {
  width: 310px;
  height: 217px;
  float: left;
  border: 2px solid #e8e8e8;
  padding: 4px;
  margin-bottom: 10px; }

.widget_arch .widget_img img {
  width: 100%;
  height: 100%; }

.widget_arch .desc {
  width: 100%;
  float: left; }

.widget_arch .desc p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 20px;
  font-style: italic; }

.widget_arch .desc .heading a {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: #000 !important;
  margin-bottom: 10px; }

.widget_arch .desc .content-txt {
  width: 100%;
  float: left;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 20px; }

#perspective,
#enterprise,
#strategy,
#print {
  width: 100%;
  float: left; }

#perspective .img_wrapper {
  width: 852px;
  float: left; }

/*#perspective  {width:500px; float:left;}*/
#strategy .widget_img,
#perspective .widget_img {
  width: 650px;
  height: 385px;
  float: left;
  position: relative; }

#perspective .widget_img_small {
  width: 480px;
  height: 280px;
  float: left;
  position: relative;
  left: 50%;
  margin-left: -250px;
  overflow: hidden; }

#perspective .widget_img_small img {
  width: 100%; }

#strategy .widget_img img {
  width: 100%;
  height: 100%; }

#strategy .widget_img .image {
  width: 100%;
  height: 100%;
  float: left;
  position: relative; }

#strategy .widget_img .overlay {
  width: 450px;
  height: 195px;
  float: left;
  position: absolute;
  text-align: center;
  padding: 175px 100px 0px;
  margin-top: 0px !important;
  margin-top: 0;
  /* background:url(../images/trans_bg.png) repeat;  left:0!important; */
  margin-left: -0px !important; }

#strategy .widget_img .overlay:hover {
  background: none; }

/*#strategy .widget_img .overlay:hover{ background:none; padding-top:0px; margin-top:190px;}
#strategy .widget_img .overlay .heading1{width: 100%; float: left; min-height: 20px; font-size: 17px; line-height: 22px; text-transform: uppercase; font-weight: bold; letter-spacing: -1px; color: #000; margin-bottom: 15px; text-align: center; background:none; border-bottom:0px solid #000; padding:0px 0px 5px;}
#strategy .widget_img .overlay .heading1 span { padding-left: 12px; padding-right: 12px; color: #fff; border-right:0px solid #fff; border-left:0px solid #fff;}
#strategy .widget_img .overlay .heading{ width:490px; margin:0 auto;  font-size:44px; line-height:40px; font-weight:bold; color:#fff!important;} #strategy .widget_img .overlay .heading a{ color:#fff;}*/
#strategy .widget_img .overlay-bg {
  width: 450px;
  height: 210px;
  float: left;
  position: absolute;
  text-align: center;
  margin-top: 175px;
  left: 50%;
  margin-left: -225px; }

#strategy .widget_img .overlay-bg .heading1 {
  width: 100%;
  float: left;
  min-height: 20px;
  font-size: 17px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  background: none;
  border-bottom: 0px solid #000;
  padding: 0px 0px 5px; }

#strategy .widget_img .overlay-bg .heading1 span {
  padding-left: 12px;
  padding-right: 12px;
  color: #fff;
  border-right: 0px solid #fff;
  border-left: 0px solid #fff; }

#strategy .widget_img .overlay-bg .heading {
  width: 100%;
  margin: 0 auto;
  font-size: 44px;
  line-height: 40px;
  font-weight: bold;
  color: #fff !important; }

#strategy .widget_img .overlay-bg .heading a {
  color: #fff !important; }

#strategy .widget_img .overlay-bg .heading1 a {
  color: #fff !important; }

#strategy .widget_img .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background:url(../images/trans_bg.png) repeat; z-index:100; */ }

#strategy .widget_img .carousel-caption {
  width: 490px;
  height: 195px;
  float: left;
  position: absolute;
  z-index: 100;
  text-align: center;
  margin-top: 170px;
  margin-left: 80px;
  border: 0px solid #000;
  background: none; }

#strategy .widget_img .carousel-caption .heading1 {
  width: 100%;
  float: left;
  min-height: 20px;
  font-size: 17px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  background: none;
  border-bottom: 0px solid #000;
  padding: 0px 0px 5px; }

#strategy .widget_img .carousel-caption .heading1 span {
  padding-left: 12px;
  padding-right: 12px;
  color: #fff;
  border-right: 0px solid #fff;
  border-left: 0px solid #fff; }

#strategy .widget_img .carousel-caption .heading {
  width: 490px;
  margin: 0 auto;
  font-size: 44px;
  line-height: 40px;
  font-weight: bold;
  color: #fff !important; }

#strategy .carousel-caption .heading a {
  color: #fff; }

#perspective .heading a {
  font-size: 23px;
  font-weight: bold;
  color: #000 !important; }

#perspective .row .heading {
  text-align: center; }

#perspective .row .desc {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  font-style: italic; }

#perspective .row .desc p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 22px;
  text-align: center;
  font-style: italic;
  padding-bottom: 0px; }

#perspective #right-news {
  width: 100%;
  float: left; }

#perspective #right-news .widget_main {
  width: 190px;
  float: left;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border: 0px solid #eee;
  margin-right: 40px; }

#perspective #right-news .widget_main:last-child {
  margin-right: 0px; }

#perspective #right-news .widget_main .widget_img {
  width: 100px;
  float: left; }

#perspective #right-news .widget_main .widget_img img {
  width: 100%; }

#perspective #right-news .widget_main .heading,
#perspective #right-news .widget_main .desc {
  width: 100%;
  float: left; }

#perspective #right-news .widget_main .desc {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 22px;
  text-align: center;
  padding-bottom: 15px;
  font-style: italic; }

/*#perspective #right-news .widget_main .desc .share_sec{ width:100%; float:left; margin-top:0px;}*/
#perspective #right-news .widget_main .heading a {
  width: 100%;
  float: left;
  font-size: 23px;
  font-weight: bold;
  color: #000 !important;
  text-align: center; }

#perspective-inner {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px; }

#perspective-inner .widget_img {
  width: 650px;
  height: 385px;
  float: left; }

#perspective-inner .row .heading {
  text-align: left; }

#perspective-inner .heading a {
  font-size: 23px;
  line-height: 28px;
  font-weight: bold;
  color: #000 !important; }

#perspective-inner .row .desc {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 24px;
  text-align: left; }

#perspective-inner #right-news {
  width: 100%;
  float: left; }

#perspective-inner #right-news .widget_main {
  width: 190px;
  float: left;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border: 0px solid #eee;
  margin-right: 40px; }

#perspective-inner #right-news .widget_main:last-child {
  margin-right: 0px; }

#perspective-inner #right-news .widget_main .widget_img {
  width: 100px;
  float: left; }

#perspective-inner #right-news .widget_main .widget_img img {
  width: 100%; }

#perspective-inner #right-news .widget_main .heading,
#perspective #right-news .widget_main .desc {
  width: 100%;
  float: left; }

#perspective-inner #right-news .widget_main .desc {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 21px;
  text-align: center; }

/*#perspective #right-news .widget_main .desc .share_sec{ width:100%; float:left; margin-top:0px;}*/
#perspective-inner #right-news .widget_main .heading a {
  width: 100%;
  float: left;
  font-size: 23px;
  font-weight: bold;
  color: #000 !important;
  text-align: center; }

#magzine-wrapper {
  width: 100%;
  float: left; }

#magzine-wrapper .widget_img {
  width: 400px;
  height: 250px;
  overflow: hidden;
  float: left; }

#magzine-wrapper .widget_img img {
  width: 100%; }

#magzine-wrapper .heading a {
  font-size: 18px;
  font-weight: bold;
  color: #000 !important; }

#magzine-right-news {
  width: 420px;
  float: left;
  margin-left: 15px; }

#magzine-right-news .widget_main {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee; }

#magzine-right-news .widget_main:last-child {
  border-bottom: 0px; }

#magzine-right-news .widget_main .widget_img {
  width: 100px;
  float: left; }

#magzine-right-news .widget_main .widget_img img {
  width: 100%; }

#magzine-right-news .widget_main .desc-magzine {
  width: 100%;
  float: left;
  margin-left: 10px; }

#magzine-right-news .widget_main .desc-magzine .share_sec {
  width: 100%;
  float: left;
  margin-top: 12px;
  margin-bottom: 15px; }

#magzine-right-news .widget_main .desc-magzine .heading a {
  width: 100%;
  float: left;
  font-size: 16px;
  font-weight: bold;
  color: #000 !important; }

#magzine-right-news .widget_main .desc-magzine .content {
  width: 100%;
  float: left;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  color: #000 !important; }

.magzine_archive {
  width: 150px;
  float: left; }

.magzine_archive .date a {
  float: left;
  font-size: 18px;
  font-weight: bold;
  color: #000 !important;
  margin-top: 10px; }

#perspective-inner {
  width: 100%;
  float: left;
  margin-bottom: 30px; }

#perspective-inner .widget_main {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee; }

#perspective-inner .widget_main .widget_img {
  width: 270px;
  float: left;
  border: 2px solid #e8e8e8;
  padding: 4px; }

#perspective-inner .widget_main .widget_img img {
  width: 100%; }

#perspective-inner .widget_main .desc {
  width: 65%;
  float: left;
  margin-left: 15px; }

#perspective-inner .widget_main .desc .share_sec {
  width: 100%;
  float: left;
  padding: 10px 0px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee; }

#perspective-inner .widget_main .desc .heading a {
  width: 100%;
  float: left;
  font-size: 18px;
  font-weight: bold;
  color: #000 !important; }

#perspective-inner .widget_main .desc .share_sec .writter {
  /* background: url(../images/icon_writter.png) no-repeat center left;  */
  padding-left: 18px;
  font-size: 13px;
  color: #17296f;
  font-style: italic;
  padding-right: 10px; }

#perspective-inner .widget_main .desc .share_sec .publisher {
  /* background:url(../images/icon_publisher.jpg) no-repeat center left; */
  padding-left: 18px;
  font-size: 13px;
  color: #17296f;
  font-style: italic;
  padding-right: 10px; }

#perspective-inner .widget_main .desc .share_sec .reply {
  /* background: url(../images/icon_chat.png) no-repeat center left; */
  padding-left: 18px;
  font-size: 11px;
  color: #17296f;
  font-style: italic; }

#perspective-inner .widget_main .desc .share_sec .iconfb,
#perspective-inner .widget_main .desc .share_sec .icontw {
  width: auto;
  float: left;
  margin: 2px 3px 0px; }

#perspective-inner .widget_main .desc .content-txt {
  width: 100%;
  float: left;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 22px; }

#autor-des {
  width: 100%;
  float: left;
  margin-bottom: 30px; }

#autor-des h4 {
  float: left;
  font-size: 22px;
  color: #000;
  font-weight: bold;
  padding-top: 25px; }

#autor-des .auth-img {
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  padding: 5px;
  float: left;
  margin-left: 10px; }

#autor-des .auth-img img {
  width: 100%;
  height: 100%; }

#autor-des h5 {
  float: left;
  font-size: 24px;
  color: #000000;
  font-weight: normal;
  padding-top: 20px;
  margin-left: 10px; }

#autor-des h5 a {
  font-size: 24px;
  color: #000000; }

.print_wrapper {
  width: 150px;
  float: left;
  margin-right: 15px; }

.print_wrapper:last-child {
  margin-right: 0px; }

.print_wrapper .img {
  width: 150px;
  height: 204px;
  float: left; }

.print_wrapper .img img {
  width: 100%;
  height: 100%; }

.print_wrapper .content {
  width: 100%;
  float: left;
  font-size: 13px;
  margin: 10px 0px; }

.print_wrapper .button {
  width: 150px;
  height: 30px;
  line-height: 30px;
  float: left;
  text-align: center;
  border: 1px solid #333;
  border-radius: 20px;
  color: #666; }

#story-desc {
  float: left; }

#story-desc h1 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: bold;
  color: #000 !important; }

#story-desc .heading {
  width: 100%;
  float: left;
  font-size: 18px;
  font-weight: bold;
  color: #000 !important; }

#story-desc .share_sec {
  width: 100%;
  float: left;
  padding: 10px 0px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  margin: 10px 0px; }

#story-desc .share_sec .writter {
  width: 85%;
  float: left;
  padding-left: 10px;
  font-size: 13px;
  color: #17296f;
  font-style: italic;
  background: none;
  padding-top: 5px;
  font-family: Georgia, "Times New Roman", Times, serif; }

#story-desc .share_sec .writter a {
  float: none;
  margin-bottom: 5px; }

#story-desc .share_sec .writter b {
  width: 100%;
  float: left;
  margin-bottom: 5px; }

#story-desc .share_sec .repo_img {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 10px; }

#story-desc .share_sec .publisher {
  /* background: url(../images/icon_publisher.jpg) no-repeat center left;  */
  padding-left: 18px;
  font-size: 13px;
  color: #17296f;
  font-style: italic; }

#story-desc .share_sec .reply {
  /* background: url(../images/icon_chat.png) no-repeat center left;  */
  padding-left: 18px;
  font-size: 11px;
  color: #17296f;
  font-style: italic; }

#story-desc .share_sec .iconfb,
#story-desc .share_sec .icontw {
  width: auto;
  float: left;
  margin: 2px 3px 0px; }

#story-desc .content-txt {
  width: 100%;
  float: left;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 28px; }

@media only screen and (max-width: 768px) {
  #story-desc .content-txt {
    display: flex;
    flex-direction: column; } }

#story-desc .content-txt strong {
  color: #000000;
  font-family: "franklinGothicDemi";
  font-size: 20px;
  font-weight: bold; }

#story-desc .content-txt strong span {
  color: #000000;
  font-family: "franklinGothicDemi";
  font-size: 20px;
  font-weight: bold; }

#story-desc .content-txt p {
  font-family: "franklinGothicBook";
  font-size: 18px;
  line-height: 27px;
  text-align: left; }

#story-desc .content-txt em {
  font-family: "franklinGothicBook";
  font-size: 18px;
  line-height: 27px;
  text-align: left; }

@media only screen and (max-width: 768px) {
  #story-desc .content-txt p {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 20px; } }

#story-desc .content-txt p strong {
  color: #000000;
  font-family: "franklinGothicDemi";
  font-size: 20px; }

/* #story-desc .content-txt p::selection {
  background-color: #e93f33;
  color: #ffffff;
} */
@media only screen and (max-width: 768px) {
  .imgwrapper_caption {
    width: 100% !important;
    float: inherit !important; }
  /* #story-desc .content-txt p{
      text-align: justify;
    } */ }

.imgwrapper_caption img {
  /* width: 100%;
    max-width: 100%;
    height:auto !important; */ }

.caption-inside-credit {
  color: #414141;
  font-family: "franklinGothicBook";
  font-size: 14px;
  line-height: 16px;
  margin: 5px 0 10px; }

.caption-inside-credit img {
  width: auto !important;
  height: auto !important; }

@media only screen and (max-width: 768px) {
  .caption-inside-credit {
    font-size: 12px;
    line-height: 14px; } }

#story-desc .content-txt .caption-inside-qoute .quote span {
  color: #000000;
  margin: 0;
  font-size: 18px;
  line-height: 21px;
  font-family: "georgia";
  cursor: pointer; }

@media only screen and (max-width: 768px) {
  #story-desc .content-txt .caption-inside-qoute .quote span {
    font-size: 18px;
    line-height: 24px; } }

.caption-inside-qoute {
  padding: 10px 0;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-right: 0px !important; }

/* 
#story-desc .content-txt p span::selection {
  background-color: #e93f33;
  color: #ffffff;
} */
#story-desc .content-txt .caption-story {
  width: 49%;
  float: left;
  height: auto;
  padding: 10px;
  margin-right: 15px;
  margin-bottom: 10px;
  background: #006991;
  color: #fff; }

#story-desc .content-txt .caption-story h1 {
  font-size: 20px;
  line-height: 22px;
  font-weight: normal;
  color: #fff !important;
  text-transform: uppercase;
  margin-bottom: 8px; }

#story-desc .imgwrapper {
  width: 100%;
  float: left;
  margin-bottom: 15px; }

#story-desc .ticker {
  width: 100%;
  float: left;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 0;
  text-align: left;
  font-style: italic; }

#story-desc .content-txt .mainsldr {
  width: 100%;
  float: left;
  margin-bottom: 15px; }

#story-desc .content-txt .imgwrapper_caption {
  width: auto;
  float: left;
  position: relative;
  margin-right: 10px; }

#story-desc .content-txt .imgwrapper_caption .caption-inside-credit {
  width: 100%;
  float: left;
  clear: left;
  background: #fff;
  color: #666;
  position: relative;
  bottom: 0;
  left: 0px;
  text-align: left;
  font-style: italic; }

.caption-inside-credit2 p {
  width: 650px;
  float: left;
  font-size: 14px;
  text-align: left;
  font-style: italic;
  margin-top: 20px;
  line-height: 20px;
  margin-bottom: -30px; }

#story-desc .content-txt .imgwrapper_caption .caption-inside-image {
  width: 100%;
  font-weight: normal;
  float: left;
  clear: left;
  background: #fff;
  color: #000;
  position: relative;
  bottom: 0;
  left: 0px;
  font-size: 14px;
  text-align: left; }

.story-content {
  max-width: 700px;
  float: left; }
  @media only screen and (max-width: 768px) {
    .story-content {
      margin-right: 0;
      max-width: none; } }

.story-content ul {
  list-style: outside;
  float: left;
  margin-left: 20px; }

.story-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px; }

.story-content .story-qoute {
  width: auto;
  float: left;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px; }

.story-content .story-qoute .quote {
  width: 220px;
  float: left;
  /* font-family: 'Roboto Condensed', sans-serif; */
  font-weight: normal;
  font-size: 18px;
  color: #000;
  line-height: 20px;
  quotes: "\201C" "\201D" "\2018" "\2019";
  position: relative; }

.story-content .story-qoute .quote:before {
  content: "\201C";
  font-size: 52px;
  color: #fc0000;
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 14px; }

.story-content .story-qoute-right {
  float: right;
  margin-right: 0px;
  margin-left: 10px; }

.story-content .story-qoute-left {
  float: left;
  margin-right: 10px;
  margin-left: 0px; }

#story-desc .content-txt .caption-inside-qoute {
  width: auto;
  float: left;
  position: relative;
  margin-right: 20px;
  margin-top: 20px; }

#story-desc .content-txt .caption-inside-qoute .quote {
  width: 100%;
  padding-left: 30px;
  /* font-family: 'Roboto Condensed', sans-serif !important; */
  font-weight: bold;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  line-height: 20px;
  quotes: "\201C" "\201D" "\2018" "\2019";
  position: relative; }

#story-desc .content-txt .caption-inside-qoute .quote:before {
  content: "\201C";
  font-size: 47px;
  color: #fc0000;
  font-family: "Georgia", serif;
  /*vertical-align: -13px;*/
  margin: 0;
  padding: 0;
  float: left;
  position: absolute;
  top: 14px;
  left: 0; }

#story-desc .content-txt .caption-inside-qoute .quote span.WebRupee {
  padding-left: 0px !important; }

#story-desc .content-txt .caption-inside-qoute .name {
  width: 100%;
  float: left;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  padding-left: 30px;
  font-family: "franklinGothicBook" !important; }

#story-desc .content-txt .caption-inside-qoute .designation {
  width: 100%;
  float: left;
  font-family: "franklinGothicBook" !important;
  font-size: 14px;
  color: #000;
  line-height: 14px;
  padding-left: 40px; }

#story-desc .ticker-section {
  width: 200px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center; }

#story-desc .ticker-section h3 {
  width: 100%;
  float: left;
  text-align: center; }

#story-desc .ticker-section p {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 10px;
  border-bottom: 1px dotted #333; }

#story-desc .ticker-section p span {
  width: 100%;
  float: left;
  color: #db8a4c; }

#story-desc p.heading {
  font-family: "Roboto", sans-serif !important;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  margin-top: 10px; }

#story-desc aside {
  width: 100%;
  float: left;
  background: #f9f9f9;
  border: 1px solid #efefef;
  text-align: center;
  padding: 20px 0px 10px;
  line-height: 28px;
  margin: 15px 0px 20px; }

#story-desc aside p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
  font-size: 24px !important;
  line-height: 30px !important;
  color: #848484;
  font-style: italic;
  margin-bottom: 0;
  padding-bottom: 0; }

#story-desc aside a {
  width: 100%;
  float: left;
  font-size: 14px;
  color: #000000;
  font-style: normal;
  text-decoration: underline;
  font-weight: normal;
  text-align: center;
  padding: 10px 0px;
  line-height: 28px; }

#story-desc .testi_wrapper {
  width: 300px;
  border-left: 3px solid #fc0000;
  padding-left: 15px; }

#story-desc .testi_wrapper .imgwrapper {
  width: 55px;
  float: left;
  margin-right: 10px; }

#story-desc .testi_wrapper .txt {
  width: 78%;
  float: left;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  color: #666666; }

#story-desc .testi_wrapper .writter {
  width: 100%;
  float: left;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 11px;
  color: #fc0000;
  font-style: italic; }

.caption5 {
  bottom: 0px;
  right: 0px;
  width: 100%; }

.caption5 h3 {
  color: #333;
  padding-right: 17px;
  font-size: 11px !important;
  float: right;
  font-weight: normal !important;
  font-style: italic;
  margin-top: -5px !important; }

.tags {
  width: 96%;
  float: left;
  border: 1px solid #efefef;
  background: #f9f9f9;
  padding: 10px; }

.tags a {
  display: inline;
  float: left;
  padding: 3px 5px;
  background: #b3b3b3;
  color: #fff;
  margin: 2px 2px; }

.tags a.active {
  display: inline;
  float: left;
  padding: 3px 5px;
  background: #fc0000;
  color: #fff; }

.tags2 {
  width: 96%;
  float: left;
  border: 1px solid #efefef;
  background: #ce071e;
  padding: 10px;
  font-size: 16px;
  line-height: 22px;
  font-family: "Roboto Condensed Italic", sans-serif;
  color: #fff;
  font-style: italic; }

.tags2 a {
  color: #fff !important; }

.cloud {
  width: auto;
  float: left;
  padding: 0px; }

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

.cloud ul li {
  list-style-type: none;
  margin: 5px 0;
  padding: 0;
  float: left;
  display: inline;
  border-right: 1px solid #ce071e;
  line-height: 10px; }

.cloud ul li a {
  margin: 0 10px 10px 10px;
  text-transform: uppercase;
  font-weight: bold; }

.cloud ul li a:hover {
  color: #ce071e !important; }

.cloud ul li:last-child {
  border-right: 0px; }

#breadcrum {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  padding: 8px 0px; }

#breadcrum a {
  color: #333; }

#breadcrum span {
  color: #eb6909; }

#listing-buyer {
  width: 100%;
  float: left; }

#listing-buyer h1 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: bold;
  color: #000 !important; }

#listing-buyer .search_widget {
  width: 97%;
  float: left;
  border-bottom: 1px dotted #999;
  margin-bottom: 15px;
  padding: 10px; }

#listing-buyer .search_widget .heading {
  font-size: 16px;
  line-height: 17px;
  color: #000;
  font-weight: bold;
  margin-bottom: 10px; }

#listing-buyer .search_widget p {
  font-size: 15px;
  line-height: 16px; }

#listing-buyer .search_widget span {
  color: #8a8a8a;
  font-size: 12px;
  /* background:url(../images/cal.png) 0 0 no-repeat;  */
  padding-left: 22px; }

.subscribe {
  width: 70px !important;
  background: #fc0000;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  text-align: center;
  border: 0px;
  margin: 0px; }

.readmore {
  width: auto;
  color: #000;
  text-decoration: underline;
  font-size: 13px;
  font-weight: bold;
  padding: 0px; }

.pagination {
  width: 100%;
  border-top: 0px solid #eee;
  border-bottom: 0px solid #eee;
  padding: 4px 0px;
  text-align: left; }

.pagination ul {
  margin: 0px;
  padding: 0px; }

.pagination ul li {
  display: inline-block;
  border-radius: 2px; }

.pagination .disabled {
  color: #999; }

.pagination .current {
  background: #333;
  color: #fff;
  padding: 2px 8px;
  margin: 0px 2px; }

.pagination a {
  background: #eeeeee;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  color: #000;
  margin: 0 2px;
  padding: 2px 8px; }

.pagination a:hover {
  background: #333;
  border: 1px solid #333;
  border-radius: 2px;
  color: #fff; }

#similar {
  width: 100%;
  float: left; }

#similar .widget {
  width: 205px;
  float: left;
  margin-bottom: 15px; }

#similar .widget .widget_img {
  width: auto;
  height: auto;
  float: left;
  border: 2px solid #e8e8e8;
  padding: 4px;
  margin-bottom: 10px; }

#similar .widget .heading {
  margin-bottom: 15px; }

#similar .widget .heading a {
  font-size: 16px;
  font-weight: bold;
  color: #000 !important; }

#special_edtion {
  width: 100%;
  float: left; }

#special_edtion .widget {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  border-bottom: 1px solid #cecece; }

#special_edtion .widget .widget_img {
  width: 146px;
  height: 129px;
  float: left;
  margin-right: 10px; }

#special_edtion .widget .heading a {
  font-size: 23px;
  font-weight: normal;
  color: #000 !important; }

#special_edtion .widget .desc {
  font-size: 19px;
  line-height: 21px;
  text-align: left;
  font-style: italic; }

a.showall {
  color: #000;
  font-size: 17px;
  line-height: 21px;
  text-align: left;
  float: right; }

#special_edtion .widget_new {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  border-bottom: 1px solid #cecece; }

#special_edtion .widget_new .widget_new_img {
  width: 170px;
  height: 133px;
  float: left;
  margin-right: 20px;
  margin-bottom: 15px; }

#special_edtion .widget_new .head a {
  font-size: 23px;
  font-weight: normal;
  color: #000 !important;
  font-weight: bolder;
  text-transform: uppercase;
  margin-top: 45px;
  display: block; }

#special_edtion .widget_new .descri {
  font-size: 19px;
  line-height: 23px;
  text-align: left;
  font-style: italic;
  font-weight: 500; }

a.showall {
  color: #000;
  font-size: 17px;
  line-height: 21px;
  text-align: left;
  float: right; }

#feature_edtion {
  width: 100%;
  float: left; }

#feature_edtion h1 {
  width: 100%;
  float: left;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 42px; }

#feature_edtion .widget {
  width: 60%;
  float: left;
  margin: 0 20%;
  margin-bottom: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cecece; }

#feature_edtion .widget:last-child {
  border-bottom: 0px;
  padding-top: 20px;
  padding-bottom: 0px; }

#feature_edtion .widget .widget_img {
  width: 146px;
  height: 129px;
  float: left;
  margin-right: 10px; }

#feature_edtion .heading1 {
  margin-bottom: 15px; }

#feature_edtion .widget .heading {
  text-align: center; }

#feature_edtion .widget .heading a {
  font-size: 20px;
  font-weight: bold;
  color: #000 !important;
  margin-bottom: 10px;
  text-align: center; }

#feature_edtion .widget .desc {
  font-size: 19px;
  line-height: 21px;
  text-align: left;
  text-align: center; }

a.showall {
  color: #000;
  font-size: 17px;
  line-height: 21px;
  text-align: left;
  float: right; }

#enterprise #enter_f_widget,
#perspective #enter_f_widget {
  width: 575px;
  margin: 0 auto; }

#enterprise #enter_f_widget .widget,
#perspective #enter_f_widget .widget {
  width: 150px;
  float: left;
  margin-bottom: 0px;
  border-right: 1px solid #666;
  padding-right: 20px;
  margin-right: 20px; }

#enterprise #enter_f_widget .widget:last-child,
#perspective #enter_f_widget .widget:last-child {
  border-right: 0px; }

#enterprise #enter_f_widget .widget .widget_img,
#perspective #enter_f_widget .widget .widget_img {
  width: 142px;
  height: 126px;
  float: left;
  margin: 0 5px; }

#enterprise #enter_f_widget .widget .widget_img img {
  width: 100%; }

#enterprise #enter_f_widget .widget .heading,
#perspective #enter_f_widget .widget .heading {
  margin-bottom: 15px;
  text-align: center; }

#enterprise #enter_f_widget .widget .heading a,
#perspective #enter_f_widget .widget .heading a {
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  color: #000 !important; }

#enterprise .row .widget {
  width: 295px;
  float: left;
  margin-bottom: 0px;
  border-right: 1px solid #666;
  padding-right: 25px;
  margin-right: 25px; }

#enterprise .row .widget:last-child {
  border-right: 0px;
  padding-right: 0px;
  margin-right: 0px; }

#enterprise .row .widget .widget_img {
  width: 142px;
  height: 126px;
  float: left;
  margin-bottom: 10px;
  margin-right: 10px; }

#enterprise .row .widget .content-txt {
  width: 48%;
  float: left;
  height: auto;
  overflow: hidden; }

#enterprise .row .widget .heading {
  margin-bottom: 15px;
  text-align: center; }

#enterprise .row .widget .heading a {
  font-size: 18px;
  font-weight: bold;
  color: #000 !important; }

#enterprise .row .widget p {
  text-align: center; }

#enterprise #enter_f_widget2 {
  width: 380px;
  float: left; }

#enterprise #enter_f_widget2 .widget {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  border-bottom: 1px solid #666;
  border-right: 0px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-right: 0;
  margin-right: 0; }

#enterprise #enter_f_widget2 .widget:last-child {
  border-bottom: 0px;
  border-bottom: 0px;
  padding-bottom: 0;
  margin-bottom: 0; }

#enterprise #enter_f_widget2 .widget .widget_img {
  width: 142px;
  height: 126px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px; }

#enterprise #enter_f_widget2 .widget .heading {
  margin-bottom: 15px; }

#enterprise #enter_f_widget2 .widget .heading a {
  font-size: 18px;
  font-weight: bold;
  color: #000 !important; }

.insight {
  width: 215px;
  min-height: 290px;
  float: right;
  background-color: #00adef;
  padding: 0px 20px;
  text-align: center; }

.insight .heading {
  width: 100%;
  float: left;
  font-size: 18px;
  line-height: 22px;
  padding: 0px;
  margin-top: 4px;
  text-align: center;
  margin-bottom: 5px; }

.insight .heading a {
  background-color: #000;
  text-transform: uppercase;
  color: #ffffff;
  padding: 2px 10px; }

.insight p {
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: #fff;
  text-align: center; }

.insight .heading-insight a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff !important; }

.insight .writter {
  float: left;
  font-size: 14px;
  color: #fff;
  font-style: italic; }

.insight .widget_img {
  width: 100%;
  float: left;
  margin: 15px 0px 15px;
  text-align: center; }

.insight .widget_img img {
  text-align: center;
  margin: 0 auto; }

#enterprise .widget-big {
  width: 650px;
  float: left;
  margin-bottom: 15px; }

#enterprise .widget-big .widget_img {
  width: 650px;
  height: 385px;
  overflow: hidden;
  float: left; }

#enterprise .widget-big .widget_img img {
  width: 100%; }

#enterprise .widget-big .widget_img2 {
  width: 470px;
  height: 275px;
  overflow: hidden;
  float: left;
  margin-bottom: 15px;
  margin-right: 15px; }

#enterprise .widget-big .widget_img2 img {
  width: 100%; }

#enterprise .widget-big .heading {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 15px; }

#enterprise .widget-big .heading a,
#enterprise .widget-big .heading2 a {
  font-size: 23px;
  font-weight: bold;
  color: #000 !important; }

#enterprise .widget-big .heading2 {
  width: auto;
  float: none;
  text-align: center;
  margin-bottom: 15px; }

#enterprise .widget-big p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
  line-height: 22px;
  text-align: center;
  font-style: italic; }

.share_sec {
  width: 100%;
  float: left;
  margin: 15px 0px; }

.share_sec .watch {
  width: 90px;
  float: left;
  /* background: url(../images/icon_watch.png) no-repeat left 12px;  */
  padding-left: 18px;
  font-size: 13px;
  color: #9f9f9f;
  padding-top: 12px; }

.share_sec .location {
  width: 70px;
  float: left;
  padding-top: 3px;
  /* background: url(../images/icon_location.png) no-repeat center left; */
  padding-left: 18px;
  font-size: 13px;
  color: #9f9f9f; }

.share_sec .writter {
  /* background: url(../images/icon_writter.png) no-repeat center left; */
  padding-left: 18px;
  font-size: 13px;
  color: #9f9f9f; }

.category-section {
  width: 100%;
  float: left;
  margin-top: 10px; }

.category {
  float: left;
  font-size: 14px;
  font-weight: bold;
  padding-right: 10px;
  color: #333;
  text-decoration: underline; }

.subcategory {
  float: left;
  font-size: 13px;
  font-weight: normal;
  padding-right: 10px;
  color: #999; }

/*#enterprise .widget p:before{content:'â€œ'; font-family:Georgia, "Times New Roman", Times, serif!important; font-size:72px; color:#c5c5c5!important; margin-left:-30px; margin-top:10px; vertical-align:middle;}
#enterprise .widget p:after{content: 'â€'; font-family:Georgia, "Times New Roman", Times, serif!important;font-size:40px; color:#c5c5c5!important; padding-top:10px;}*/
#enterprise .widget p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  line-height: 20px;
  padding: 0px 0px 0px 0px;
  font-style: italic; }

.b_viewall {
  border: 1px solid #152970;
  padding: 5px 12px;
  font-size: 13px;
  color: #152970;
  font-weight: bold; }

#pixtory,
#voice {
  width: 100%;
  float: left; }

#pixtory .widget,
#voice .widget {
  width: 100%;
  float: left;
  margin-bottom: 15px; }

#pixtory .widget_img {
  width: 320px;
  height: auto;
  float: left;
  margin: 0px 10px 0px 0px; }

#pixtory .widget_img .flexslider ul {
  margin-bottom: 0px; }

#voice .quote-txt {
  width: 200px;
  height: 158px;
  float: left;
  margin: 0px 10px 10px 0px;
  background-color: #000;
  color: #fff;
  padding: 60px 60px 40px;
  font-size: 22px;
  line-height: 25px;
  text-indent: -20px;
  text-align: center; }

#voice .widget_img {
  width: 49%;
  height: auto;
  float: left;
  margin: 0px 10px 0px 0px; }

#voice .widget_img:last-child {
  width: 49%;
  height: auto;
  float: left;
  margin: 0px 0px 0px 0px; }

#voice .quote-txt:before {
  content: '"';
  font-size: 40px; }

#voice .quote-txt span {
  font-size: 16px;
  font-style: italic; }

#pixtory .widget .widget_img img,
#voice .widget .widget_img img {
  width: 100%; }

#pixtory .widget .heading,
#voice .widget .heading {
  margin-bottom: 15px; }

#pixtory .widget .heading a,
#voice .widget .heading a {
  font-size: 18px;
  font-weight: bold;
  color: #000 !important; }

.flexslider,
.flex-viewport {
  width: 100%;
  float: left;
  position: relative;
  z-index: 0; }

.flex-direction-nav {
  width: 100%;
  float: left;
  position: absolute;
  z-index: 9;
  bottom: 0; }

.flex-prev {
  width: 20px;
  height: 20px;
  float: left;
  /* background:url(../images/arrow-left.png) no-repeat 0 0; */
  font-size: 0px; }

.flex-next {
  width: 20px;
  height: 20px;
  float: left;
  /* background:url(../images/arrow-right.png) no-repeat 0 0;  */
  font-size: 0px; }

/* #pixtory .widget .share_sec, #voice .widget .share_sec{ width:45%; float:left; margin:0px 0px 10px;} */
#pixtory .widget .share_sec .watch,
#voice .widget .share_sec .watch {
  /* background: url(../images/icon_watch.png) no-repeat center left;  */
  padding-left: 18px;
  font-size: 13px;
  color: #9f9f9f; }

/* footer section */
footer {
  width: 100%;
  float: left;
  background-color: #252525;
  margin-top: 30px !important; }

footer .socl_icons {
  width: auto;
  float: right;
  margin-top: 6px; }

footer .links {
  width: 100%;
  float: left;
  min-height: 30px;
  background-color: #363636;
  padding: 10px 0px;
  border-bottom: 1px solid #454545;
  border-top: 1px solid #454545; }

footer .links nav {
  width: auto;
  float: left; }

footer .links nav a {
  float: left;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px; }

footer .links nav a.active {
  background-color: #252525;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px; }

footer .copyright {
  width: 100%;
  float: left;
  background-color: #252525;
  color: #fff;
  font-size: 12px;
  padding: 8px 0px;
  line-height: 20px; }

#magzine {
  width: 960px;
  float: left;
  background: #fff;
  border: 3px solid #cfcfcf;
  padding: 0px;
  margin: 10px 0px; }

#magzine a img {
  width: 110px;
  height: 155px;
  margin: 5px 5px; }

.newsletter {
  width: 200px;
  float: right;
  margin-top: 15px; }

.newsletter .heading {
  font-size: 16px;
  font-weight: bold;
  color: #fff !important;
  margin-bottom: 10px;
  text-transform: uppercase; }

.newsletter p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: normal;
  color: #fff !important;
  text-transform: uppercase;
  padding-bottom: 0px; }

.newsletter input {
  width: 160px;
  height: 20px;
  float: left;
  padding: 5px;
  margin-bottom: 15px;
  border-radius: 0px; }

.newsletter a {
  padding: 8px 12px; }

/* Tab section */
#tab-pannel {
  width: 300px;
  float: left;
  padding: 0px;
  position: relative;
  z-index: 0; }

#tab-pannel ul.tabs {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  height: auto;
  border: 0px solid #999999;
  width: 100%;
  position: absolute;
  z-index: 1; }

#tab-pannel ul.tabs li {
  width: 150px;
  text-align: center;
  float: left;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
  padding: 5px 0px 5px;
  height: auto;
  line-height: 20px;
  overflow: hidden;
  position: relative;
  background-color: #6c6c6c;
  position: relative;
  z-index: 0;
  border-radius: 0;
  color: #fff;
  border-bottom: 1px solid #e3e3e3; }

#tab-pannel ul.tabs li:hover {
  color: #ffffff;
  background-color: #ff0000; }

#tab-pannel ul.tabs li.active {
  color: #ffffff;
  background-color: #000000; }

#tab-pannel .tab_container {
  clear: both;
  float: left;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 40px;
  padding: 0px; }

#tab-pannel .tab_content {
  float: left;
  background-color: #fafafa;
  padding: 0px 0px;
  font-size: 16px;
  display: none;
  padding: 10px 0px 0px; }

#new-links {
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
  padding: 0px; }

#new-links li {
  width: 100%;
  float: left;
  margin: 3px 0px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 6px; }

#new-links li:last-child {
  border-bottom: 0px; }

#new-links .thumbnail {
  width: 62px;
  height: 43px;
  float: left; }

#new-links .desc {
  width: 75%;
  float: left; }

#new-links .desc .heading a {
  font-size: 15px;
  font-weight: bold;
  color: #000 !important; }

#box_widget {
  width: 300px;
  float: left;
  border: 1px solid #333; }

#box_widget .main-heading {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding: 5px 0px;
  letter-spacing: -1px; }

#box_widget .content-area {
  width: 150px;
  float: none;
  margin: 0 auto;
  margin-bottom: 15px; }

#box_widget .widget_img {
  width: 142px;
  height: 126px;
  float: left;
  margin: 0 5px; }

#box_widget .content-area .heading {
  text-align: center; }

#box_widget .content-area .heading a {
  font-size: 18px;
  font-weight: bold;
  color: #000 !important;
  border-bottom: 0; }

#box_widget .content-area p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  line-height: 20px;
  padding: 0px 0px 0px 0px;
  text-align: center; }

/*  pop up section */
/*#overlay {position: fixed; top: 0;left: 0;width: 100%;height: 100%;background-color: #000;filter:alpha(opacity=70);-moz-opacity:0.7;-khtml-opacity: 0.7;opacity: 0.7; z-index: 100;display: none;}
.content a{text-decoration: none;}
.popup{width: 100%;margin: 0 auto;display:none;position: fixed;z-index: 101; min-height:250px; top:50%; margin-top:-12%;}
.content{min-width: 420px;width: 420px;min-height: 330px;max-height: 330px;margin:0px auto;background: #fff;position: relative;z-index: 103;padding: 10px;border-radius: 5px;box-shadow: 0 2px 5px #000;}
.content .x{ float: right; height: 24px; left: 10px;position: relative;top:-10px;width: 24px;}
.content .x:hover{cursor: pointer;}

#login .content {box-shadow: 0 0 0 #000; border:1px solid #999; padding-top:20px;}
#login #signin{ height:325px;}
#login #signup{ height:380px;}*/
/* -------------------------- pop up --------------------------*/
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  z-index: 100; }

.popup .content a {
  text-decoration: none; }

.popup {
  width: 100%;
  margin: 0 auto;
  display: none;
  position: fixed;
  z-index: 101;
  min-height: 300px;
  top: 50%;
  margin-top: -11%; }

.popup .content {
  width: 700px;
  height: 350px;
  margin: 0px auto;
  background: #fff;
  position: relative;
  z-index: 103;
  padding: 20px;
  border-radius: 0px; }

.popup .content .x {
  float: right;
  height: 24px;
  right: 1px;
  position: absolute;
  top: 1px;
  width: 24px; }

.popup .content .x:hover {
  cursor: pointer; }

.registration {
  width: 310px;
  float: left;
  padding-left: 10px; }

.login {
  width: 350px;
  float: left;
  padding-right: 30px; }

.registration h3,
.login h3 {
  margin-top: 0px;
  margin-bottom: 20px; }

.registration label,
.login label {
  width: 100%;
  float: left;
  font-size: 14px;
  color: #000;
  margin: 10px 0px; }

.registration input[type="text"],
.login input[type="text"] {
  width: 80%;
  float: left; }

.registration input[type="password"],
.login input[type="password"] {
  width: 80%;
  float: left; }

.registration input[type="button"] {
  width: 80%;
  float: left; }

.registration input[type="checkbox"],
.login input[type="checkbox"] {
  width: auto;
  float: left; }

.login .b_login {
  width: 86%;
  float: left;
  text-align: center;
  padding: 10px 0px;
  background: #444444;
  color: #fff;
  font-size: 15px;
  border: 0px;
  margin-top: 15px; }

.registration .b_register {
  width: 55%;
  float: left;
  text-align: center;
  padding: 10px 0px;
  background: #444444;
  color: #fff !important;
  font-size: 15px;
  border: 0px;
  margin-top: 15px; }

.loginform {
  width: 700px;
  margin: 20px auto 50px; }

/* -------------------------- pop up --------------------------*/
/* -------------------------- User Admin --------------------------*/
#useradmin,
#userprofile {
  padding-bottom: 50px; }

#useradmin h1,
#userprofile h1 {
  width: auto;
  float: left;
  margin-top: 60px;
  font-weight: normal; }

/*#useradmin .user-img, #userprofile .user-img{ border-radius:5px; padding: 5px; width:80px; float:left; height: 80px; margin-right: 20px; margin-bottom: 5px; background-color:#666;}
#useradmin .user-img img, #userprofile .user-img img{ width:100%;}
#useradmin aside{ float:left; width:100px;}*/
/*#useradmin .photo-upload{ font-size:12px; color:#666;}
#useradmin #feature, #useradmin #status{ width:100%; float:left;}
#useradmin #feature h3, #useradmin #status h3{ font-weight:normal;}*/
#useradmin #feature,
#userprofile #feature {
  width: 80%;
  float: left;
  padding-left: 50px; }

#useradmin dl {
  width: 100%;
  float: left;
  margin: 5px 0px; }

#useradmin dl dt {
  width: 30%;
  float: left; }

#useradmin dl dd {
  width: 70%;
  float: left; }

#useradmin dl dd input {
  width: 250px;
  float: left;
  font-size: 14px;
  margin-bottom: 3px; }

#useradmin dl dd textarea {
  width: 275px;
  height: 70px;
  float: left;
  border: 1px solid #ccc; }

#userprofile dl {
  width: 100%;
  float: left;
  margin: 5px 0px; }

#userprofile dl dt {
  width: 30%;
  float: left; }

#userprofile dl dd {
  width: 70%;
  float: left; }

#userprofile dl dd input {
  width: 250px;
  float: left;
  font-size: 14px;
  margin-bottom: 3px; }

#userprofile dl dd textarea {
  width: 275px;
  height: 70px;
  float: left;
  border: 1px solid #ccc; }

#userprofile dl dt label {
  width: 100%;
  float: left;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin: 10px 0px; }

.b_edit {
  width: auto;
  float: left;
  background-color: #eee;
  color: #333;
  padding: 6px 10px;
  text-align: right;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px; }

.note {
  width: 80%;
  float: left;
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(2, 139, 255, 0.2);
  background: rgba(2, 139, 255, 0.15);
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.sucessful-msg {
  width: 82%;
  float: left;
  font-size: 12px;
  color: #19bb03;
  padding: 10px;
  border: 1px solid #19bb03;
  margin-bottom: 20px; }

.sucessful {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #19bb03;
  padding: 2px 0px; }

.error-msg {
  width: 82%;
  float: left;
  font-size: 12px;
  color: #ff0000;
  padding: 10px;
  border: 1px solid #ff0000;
  margin-bottom: 20px; }

.error {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #ff0000;
  padding: 2px 0px; }

/*#userprofile h1 { width:89%; border-bottom:1px solid #333; padding-bottom:10px; margin-top:30px; position:relative;}
#userprofile h1 span{ background-color:#000; color:#fff; float:right; padding:3px 10px; position:absolute; font-size:13px; top:32px; right:0px;}
#userprofile section{ width:90%; float:left; margin-left:100px;}
#userprofile section h1, #userprofile section p { width:100%; float:left;}
#userprofile section .admin-left, #userprofile section .admin-right{ width:49%; float:left; padding:0px;}
#userprofile section .admin-left { border-right:1px solid #999;}
#useradmin .required label:after {color:#e32; content:' *'; display: inline;}*/
/*-----------------------------------pagination---------------------------------------------------*/
.simplePagerContainer {
  width: 100%;
  float: left; }

.simplePagerContainer .simplePagerNav {
  width: 100%;
  float: left; }

.simplePagerContainer .simplePagerNav li {
  width: auto;
  float: left;
  border: 1px solid #ccc;
  color: #333;
  padding: 3px 4px;
  margin: 0px 2px; }

.simplePagerContainer .simplePagerNav li a {
  color: #333; }

.simplePagerContainer .simplePagerNav .currentPage a {
  font-weight: bold; }

/*-----------------------------------pagination---------------------------------------------------*/
#submit {
  width: 100%;
  float: left;
  padding-top: 20px;
  margin-top: 20px; }

#submit .submit-button {
  width: 100px;
  height: 30px;
  line-height: 30px;
  float: left;
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  background-color: #3a3a3a;
  margin-left: 0; }

.custom-dropdown_select {
  font-size: inherit;
  padding: 0;
  margin: 0;
  width: 180px;
  height: 28px;
  border: 1px solid #eee;
  font-size: 12px; }

.custom-dropdown_select-white {
  background-color: #fff;
  color: #444; }

.custom-dropdown {
  width: 180px !important;
  position: relative;
  margin-bottom: 0px !important;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #ccc; }

.custom-dropdown_select {
  padding-right: 2.5em;
  border: 0;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none; }

.custom-dropdown::after {
  content: "\25BC";
  height: 1em;
  font-size: 0.625em;
  line-height: 1;
  right: 0.8em;
  top: 50%;
  margin-top: -0.5em; }

.custom-dropdown::before {
  width: 1.5em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0; }

.custom-dropdown_select[disabled] {
  color: rgba(0, 0, 0, 0.3); }

.custom-dropdown.custom-dropdown-disabled::after {
  color: rgba(0, 0, 0, 0.1); }

.custom-dropdown-white::before {
  top: 0;
  bottom: 0;
  background-color: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.1); }

.custom-dropdown-white::after {
  color: rgba(0, 0, 0, 0.9); }

/*.form-section{ width:99%; float:left; border:1px solid #e5e5e5; padding:20px 0px 20px;}
.form-section .title{ width:95%; float:left; text-align:left; font-size:14px; color:#444444; text-transform:uppercase; font-weight:bold; padding-left:15px; margin-bottom:10px;}
.form-section dl{ width:100%; float:left; margin:5px 0px;}
.form-section dl dt{ width:230px; float:left; text-align:right; margin-right:10px; line-height:30px; min-height:30px;}
.form-section dl dt.txt-section{ width:250px;}
.form-section dl dt span{ width:100%; float:left; font-size:11px; line-height:17px;}
.form-section dl dd{ width:350px; float:left;text-align:left;}
.form-section dl dd.input-section{ width:650px;}
.form-section input{ width:300px;}
.form-section input.small{ width:80px; margin-right:5px;}
.form-section input.small2{ width:191px; margin-right:5px;}
.form-section textarea{ width:315px; height:70px; border:1px solid #ccc;}
.form-section input[type="checkbox"]{ width:15px; float:right;}
.form-section input[type="button"]{ width:90px; height:30px; float:left; margin-top:10px; background:#3372b9; color:#fff; border:0px; cursor:pointer; border-radius:4px;}
.b_reset{ background:#333!important;}*/
/* -------------------------- User Admin --------------------------*/
.ajax-loader1 {
  width: 32px;
  height: 32px;
  margin: 0 auto; }

/* -------------------------- Voice Inside --------------------------*/
.ajax-loader {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 9;
  left: 50%;
  margin-left: -210px;
  top: 50%; }

.image_section {
  width: 620px;
  float: left;
  margin-bottom: 40px;
  position: relative;
  z-index: 1; }

.big_image {
  width: 100%;
  float: left; }

.thumb_img {
  width: 100%;
  float: left;
  position: relative; }

.thumb_img ul {
  width: 78%;
  float: none;
  margin: 0 auto;
  margin-top: 10px; }

.thumb_img ul li {
  float: left;
  margin: 0px 5px;
  width: 150px;
  height: 80px; }

.thumb_img ul li:first-child {
  margin-left: 0; }

.thumb_img ul li img {
  width: 100%; }

.thumb_img .next {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: 0px; }

.thumb_img .previous {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0px; }

.big_image img {
  width: 100%;
  height: 100%; }

/* -------------------------- Main Slider  --------------------------*/
.photo {
  width: 100%;
  height: auto;
  float: left;
  position: relative; }

.gallery-loader {
  height: 343px;
  overflow: hidden; }

.flexslider-gallery {
  width: 100%;
  overflow: hidden; }

.gal_point {
  position: absolute;
  z-index: 100;
  top: 7px;
  height: 22px;
  right: 0px;
  float: right; }

.gal_point ul {
  margin: 0px; }

.gal_point ul li {
  width: 13px;
  float: left;
  color: #000;
  font-size: 32px;
  cursor: pointer;
  list-style: disc inside;
  /* background: none; */
  padding-left: 4px;
  height: 19px;
  padding-top: 3px;
  margin: 0px 2px; }

/*.gal_point ul li.flex-active{color: #ee1b22;}*/
.flex-viewport {
  width: 100%;
  overflow: hidden; }

.gal_point .insight-bg {
  color: #00adef !important;
  background: none !important; }

.gal_point .voice-bg {
  color: #fdb913 !important;
  background: none !important; }

.gal_point .perspective-bg {
  color: #fdb913 !important;
  background: none !important; }

.gal_point .bigstory-bg {
  color: #ee1c25 !important;
  background: none !important; }

.gal_point .pixtory-bg {
  color: #fdb913 !important;
  background: none !important; }

.gal_point .events-bg {
  color: #a8a9ad !important;
  background: none !important; }

.gal_point .enterprise-bg {
  color: #f37020 !important;
  background: none !important; }

.gal_point .strategy-bg {
  color: #02acdf !important;
  background: none !important; }

.gal_point .markets-bg {
  color: #81c441 !important;
  background: none !important; }

.gal_point .cestlavie-bg {
  color: #c90784 !important;
  background: none !important; }

.gal_point .gray-bg {
  color: #a8a9ad !important;
  background: none !important; }

.comment {
  margin: auto;
  margin-bottom: 20px;
  float: left;
  width: 95%; }

.nlp-main-nav {
  padding: 5px 0px; }

.nlp-main-nav {
  margin-bottom: 4px; }

.share-story {
  width: 100%;
  float: left;
  margin-bottom: 20px; }

.fb-share-button,
.fb-like {
  margin-right: 8px; }

@media (min-width: 769px) and (max-width: 959px) {
  .wrapper {
    width: 728px;
    border: 0px solid #fc0000; }
  .top_nav {
    width: auto;
    float: left;
    padding: 0px;
    height: 41px; }
  .top_nav a {
    float: left;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #fff;
    padding: 12px 11px 12px 11px;
    font-weight: bold; }
  .top_nav a.active {
    background: #ee1c25;
    padding: 13px 11px; }
  .socl_ic_blk {
    width: 285px; }
  .line_img {
    margin: 2px 10px 0px 10px; }
  /*.logo { width:500px; float: left;}*/
  .add-banner {
    width: 728px;
    float: none;
    margin: 2px auto 0; }
  .logo-section {
    width: 100%;
    float: left; }
  /*.logo-rt-section{ width:210px; float:right;}
.story_day{ width:200px; float:right;}
*/
  /*.h_links_wrapper{bottom: 0; float: left; position: absolute;  right: 0; width: 270px;}
.h_links_wrapper ul{ width:auto; float:left;}
.search{ width:200px;}

*/
  /*.menu-section {	width: 100%; float: left; background-color: #ffffff; height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left; padding:0; margin:10px 0px 0px; }
ul.main-menu li { float:left; display:inline; list-style:none; padding:0;}
ul.main-menu li a { float:left; font-family: 'Open Sans', sans-serif; text-transform:uppercase;  font-size:12px; padding:5px 4px 6px; color:#000; text-decoration:none; margin:0; font-weight:bold; }
ul.main-menu a:hover, ul.main-menu li a.active { background-color:#000; color:#ffffff; font-size:12px; }
*/
  /*.HeaderSearchHolder { width:210px; margin:4px 0px 2px 0; position:relative; }
.HeaderSearchHolder input { padding:4px 5px!important; width:200px; border:1px solid #ffffff!important; height:22px; font-size:14px; color:#000!important;}
.HeaderSearchICon { position:absolute; right:6px; top:7px; cursor:pointer; height:20px; width:20px;}*/
  #left-container {
    width: 728px;
    margin: 0; }
  #right-container {
    width: 728px;
    margin: 0; }
  #strategy .widget_img {
    width: 100%;
    height: 430px;
    float: left; }
  #strategy .widget_img .overlay {
    width: 528px;
    height: 195px;
    float: left;
    position: absolute;
    text-align: center;
    padding-top: 235px;
    /* background:url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay-bg {
    width: 728px;
    height: 195px;
    float: left;
    position: absolute;
    text-align: center;
    padding: 235px 0px 0px;
    /* background:url(../images/trans_bg.png) repeat;  */
    margin-top: 0px;
    left: 0%;
    margin-left: 0px; }
  /*#perspective  {width:400px; float:left;}
#perspective  .widget_img { width:400px; height:auto; float:left;}
#perspective #right-news {width:320px; float:left; margin-left:15px; margin-top:0px;}
#perspective #right-news .widget_main:last-child{ border-bottom:0px;}
#perspective #right-news .widget_main .desc{ width:60%; float:left; margin-left:10px;}
#perspective-inner .widget_main .desc{ width:59%; float:left; margin-left:15px;}
*/
  #feature_edtion .widget {
    border-bottom: 1px solid #cecece;
    float: left;
    margin: 0;
    padding-bottom: 20px;
    width: 50%; }
  #feature_edtion .widget:last-child {
    border-bottom: 1px solid #cecece;
    float: left;
    margin: 0;
    padding-bottom: 20px;
    width: 50%;
    padding-top: 0px; }
  #perspective .widget_img {
    width: 100%;
    height: 430px;
    float: left; }
  #perspective .widget_img img {
    width: 100%;
    height: 100%; }
  #perspective #right-news .widget_main {
    width: 210px;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border: 0px solid #eee;
    margin-right: 40px; }
  #perspective #right-news .widget_main .widget_img {
    width: 100px;
    float: left; }
  #perspective #right-news .widget_main .widget_img img {
    width: 100%; }
  .print_wrapper {
    width: 150px;
    float: left;
    margin-right: 25px; }
  .print_wrapper:last-child {
    margin-right: 0px; }
  .print_wrapper .img {
    width: 150px;
    height: 195px;
    float: left; }
  .print_wrapper .img img {
    width: 100%;
    height: 100%; }
  .print_wrapper .content {
    width: 100%;
    float: left;
    font-size: 13px;
    margin: 10px 0px;
    text-align: center; }
  .print_wrapper .button {
    width: 150px;
    height: 30px;
    line-height: 30px;
    float: left;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
    color: #666; }
  #enterprise {
    width: 100%;
    float: left; }
  #enter_f_widget {
    width: 485px;
    margin: 0 auto; }
  #enterprise .widget {
    width: 200px;
    float: left;
    margin-bottom: 15px;
    border-right: 1px solid #666;
    padding-right: 20px;
    margin-right: 20px; }
  #enterprise .widget:last-child {
    border-right: 0px; }
  #enterprise .widget .widget_img {
    width: 200px;
    height: auto;
    float: left; }
  #enterprise .widget .heading {
    margin-bottom: 15px; }
  #enterprise .widget .heading a {
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #enterprise .widget-big {
    width: 100%;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img {
    width: 100%;
    height: 430px;
    overflow: hidden;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img img {
    width: 100%; }
  #enterprise .widget-big .heading {
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 15px; }
  #enterprise .widget-big .heading a {
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #enterprise .widget-big p {
    text-align: center; }
  #enterprise #enter_f_widget2 {
    width: 470px;
    float: left; }
  #enterprise #enter_f_widget2 .widget .widget_img {
    width: 142px;
    height: 126px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px; }
  #enterprise #enter_f_widget2 .widget:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px; }
  #pixtory .widget_img,
  #voice .widget_img #voice .widget_img:last-child {
    width: 350px;
    float: left; }
  #pixtory .widget_img img,
  #voice .widget_img img {
    width: 100%;
    float: left; }
  #pixtory,
  #voice {
    width: 100%;
    float: left; }
  #pixtory .widget,
  #voice .widget {
    width: 360px;
    float: left;
    margin-bottom: 15px; }
  #pixtory .widget .widget_img,
  #voice .widget .widget_img {
    width: 175px;
    height: 122px;
    float: left;
    margin: 0px 10px 10px 0px; }
  #pixtory .widget .widget_img img,
  #voice .widget .widget_img img {
    width: 100%; }
  #pixtory .widget .heading,
  #voice .widget .heading {
    margin-bottom: 15px; }
  #pixtory .widget .heading a,
  #voice .widget .heading a {
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #pixtory .widget .share_sec,
  #voice .widget .share_sec {
    width: 40%;
    float: left;
    margin: 0px 0px 10px; }
  #pixtory .widget .share_sec .watch,
  #voice .widget .share_sec .watch {
    /* background: url(../images/icon_watch.png) no-repeat center left;  */
    padding-left: 18px;
    font-size: 13px;
    color: #9f9f9f; }
  .widget_arch {
    width: 354px;
    float: left;
    margin-right: 0px;
    margin-bottom: 30px; }
  .widget_arch:nth-child(2n + 0) {
    margin-right: 20px; }
  .widget_arch .widget_img {
    width: 344px;
    height: 205px;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px;
    margin-bottom: 10px; }
  #magzine {
    width: 99%;
    float: left;
    background: #fff;
    border: 3px solid #cfcfcf;
    padding: 0px;
    margin: 10px 0px 10px; }
  #magzine a img {
    width: 80px;
    height: 113px;
    margin: 5px 5px 5px; }
  .newsletter {
    width: 100%;
    float: left;
    margin-top: 15px;
    margin-bottom: 30px; }
  .newsletter .heading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .newsletter p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #fff !important;
    text-transform: uppercase;
    padding-bottom: 0px; }
  .newsletter input {
    width: 160px;
    height: 20px;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
    margin-left: 0px; }
  .newsletter a {
    padding: 8px 12px;
    margin-top: 10px !important;
    margin-left: 15px !important; }
  /* footer .links nav a{ padding:8px 4px;color:#fff !important} */
  .subscribe-box {
    display: none; }
  .digital_edition {
    width: 420px;
    min-height: 300px;
    float: left;
    margin-left: 20px; }
  .digital_img {
    width: 420px;
    float: left;
    text-align: center; }
  #tab-pannel {
    width: 300px; }
  .deal-street {
    width: 320px;
    min-height: 405px;
    float: left;
    margin-left: 0px;
    margin-right: 20px; }
  .deal-street .desc {
    width: 69%;
    float: left; }
  .rght_add {
    display: none; }
  .rght_add:last-child {
    display: block; }
  #widget_magzine {
    width: 340px;
    margin-right: 20px;
    display: none; }
  #box_widget {
    width: 340px;
    min-height: 425px;
    margin-right: 20px; }
  /* -------------------------- User Admin --------------------------*/
  #useradmin #feature {
    width: 80%;
    float: left;
    padding-left: 50px; }
  #useradmin dl {
    width: 100%;
    float: left;
    margin: 5px 0px; }
  #useradmin dl dt {
    width: 40%;
    float: left; }
  #useradmin dl dd {
    width: 60%;
    float: left; }
  #useradmin dl dd input {
    width: 250px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #useradmin dl dd textarea {
    width: 275px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  .note {
    width: 94%;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2, 139, 255, 0.2);
    background: rgba(2, 139, 255, 0.15);
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .sucessful-msg {
    width: 96%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 10px;
    border: 1px solid #19bb03;
    margin-bottom: 20px; }
  .sucessful {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 2px 0px; }
  .error {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 0px; }
  /* -------------------------- User Admin --------------------------*/ }

/***** Phone (landscape 420px) *****/
@media (max-width: 768px) {
  .wrapper {
    width: 720px;
    border: 0px solid #fc0000; }
  .top_nav {
    width: auto;
    float: left;
    padding: 0px;
    height: 41px; }
  .top_nav a {
    float: left;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: #fff;
    padding: 12px 6px 12px 6px;
    font-weight: bold; }
  .top_nav a.active {
    background: #ee1c25;
    padding: 13px 3px; }
  .socl_ic_blk {
    width: 265px; }
  .socl_icons {
    width: 130px;
    padding: 0px;
    border: 0x;
    overflow: hidden; }
  .socl_icons a {
    height: 20px;
    float: left;
    overflow: hidden;
    margin: 3px 3px;
    width: 20px; }
  .line_img {
    margin: 2px 10px 0px 10px; }
  /*.logo { width:418px; float: left; margin: 10px auto;}*/
  .add-banner {
    width: 100%;
    float: none;
    margin: 2px auto 0; }
  /*.menu-section {	width: 100%; float: left; background-color: #ffffff; height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left; padding:0; margin:0; }
ul.main-menu li { float:left; display:inline; list-style:none; padding:0;}
ul.main-menu li a {   float: left; font-family: 'Open Sans', sans-serif; text-transform: uppercase; font-size: 12px; padding:10px 4px 6px; color: #000; text-decoration: none; margin: 0; font-weight: bold; }
ul.main-menu a:hover, ul.main-menu li a.active { background-color:#1d2578; color:#ffffff; font-size:12px; }
*/
  .h_links_wrapper {
    bottom: 0;
    float: left;
    position: absolute;
    right: 0;
    width: 270px; }
  .h_links_wrapper ul {
    width: auto;
    float: left; }
  /*.HeaderSearchHolder { width:180px; margin: 4px 0px 2px 0; position: relative;}
.HeaderSearchHolder input { padding:4px 5px!important; width:100%; border:1px solid #000!important; height:24px; color:#333!important;`}
.HeaderSearchICon { position:absolute; right:6px; top:7px; cursor:pointer; height:20px; width:20px;}*/
  #left-container {
    width: 100%; }
  #right-container {
    width: 60%;
    margin: 0 auto;
    float: none; }
  #perspective .img_wrapper {
    width: 100%; }
  #feature_edtion .widget {
    border-bottom: 1px solid #cecece;
    float: left;
    margin: 0;
    padding-bottom: 20px;
    width: 50%; }
  #feature_edtion .widget:last-child {
    border-bottom: 1px solid #cecece;
    float: left;
    margin: 0;
    padding-bottom: 20px;
    width: 50%;
    padding-top: 0px; }
  #enter_f_widget {
    width: 485px;
    margin: 0 auto; }
  #enterprise .row .widget {
    width: 240px;
    float: left;
    margin-bottom: 15px;
    border-right: 1px solid #666;
    padding-right: 25px;
    margin-right: 25px; }
  #enterprise .row .widget .widget_img {
    margin-left: 30%; }
  #enterprise .row .widget .content-txt {
    width: 100%; }
  #enterprise .widget .widget_img {
    width: 200px;
    height: auto;
    float: left; }
  #enterprise .widget-big {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    margin-right: 0px; }
  #enterprise .widget-big .widget_img {
    width: 100%;
    height: auto;
    overflow: hidden;
    float: left;
    margin-bottom: 15px; }
  #enterprise #enter_f_widget2 {
    width: 60%;
    float: left; }
  #enter_f_widget2 .float-left {
    width: 50%;
    float: left; }
  #enterprise .widget-big .widget_img2 {
    width: 100%; }
  #enterprise #enter_f_widget2 .widget .widget_img {
    width: 142px;
    height: 126px;
    float: left;
    margin-right: 20px;
    margin-left: 50px;
    margin-bottom: 20px; }
  #pixtory,
  #voice {
    width: 100%;
    float: left; }
  /*#pixtory .widget, #voice .widget{ width:100%; float:left; margin-bottom:15px;}*/
  #pixtory .widget_img,
  #voice .widget_img {
    width: 49%;
    height: auto;
    float: left;
    margin: 0px 10px 10px 0px; }
  #voice .widget_img:last-child {
    width: 49%;
    height: auto;
    float: left;
    margin: 0px 0px 0px 0px; }
  #pixtory .widget_img img,
  #voice .widget_img img {
    width: 100%;
    height: auto;
    float: left; }
  #strategy .widget_img {
    width: 100%;
    height: 350px;
    float: left; }
  #strategy .widget_img .overlay {
    width: 340px;
    height: 145px;
    float: left;
    position: absolute;
    text-align: center;
    padding-top: 175px;
    /* background:url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay-bg {
    width: 86%;
    height: 250px;
    float: left;
    position: absolute;
    text-align: center;
    /* background:url(../images/trans_bg.png) repeat;  */
    padding: 100px 50px 0px;
    margin-top: 0;
    margin-left: 0;
    left: 0; }
  #strategy .widget_img .overlay .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .carousel-caption {
    width: 490px;
    height: 180px;
    float: left;
    position: absolute;
    text-align: center;
    margin-top: 160px;
    margin-left: -245px;
    border: 0px solid #000;
    background: none;
    left: 50%; }
  #strategy .widget_img .carousel-caption .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .carousel-caption .heading1 span {
    padding-left: 12px;
    padding-right: 12px;
    color: #fff;
    border-right: 0px solid #fff;
    border-left: 0px solid #fff; }
  #strategy .widget_img .carousel-caption .heading {
    width: 490px;
    margin: 0 auto;
    font-size: 44px;
    line-height: 40px;
    font-weight: bold;
    color: #fff !important; }
  #strategy .carousel-caption .heading a {
    color: #000; }
  .widget_arch {
    width: 210px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px; }
  .widget_arch:nth-child(2n + 0) {
    margin-right: 30px; }
  .widget_arch .widget_img {
    width: 210px;
    height: 120px;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px;
    margin-bottom: 10px; }
  #perspective .widget_img {
    width: 100%;
    height: 385px;
    float: left; }
  #perspective .widget_img img {
    width: 100%;
    height: 100%; }
  #perspective #right-news .widget_main {
    width: 210px;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border: 0px solid #eee;
    margin-right: 40px; }
  #perspective #right-news .widget_main .widget_img {
    width: 100px;
    float: left; }
  #perspective #right-news .widget_main .widget_img img {
    width: 100%; }
  #perspective-inner .widget_main .widget_img {
    width: 240px;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px; }
  #perspective-inner .widget_main .desc {
    width: 56%;
    float: left;
    margin-left: 15px; }
  #magzine {
    width: 99%;
    float: left;
    background: #fff;
    border: 3px solid #cfcfcf;
    padding: 0px;
    margin: 10px 0px 10px; }
  #magzine a img {
    width: 65px;
    height: 92px;
    margin: 5px 5px 5px; }
  .newsletter {
    width: 100%;
    float: left;
    margin-top: 15px;
    margin-bottom: 30px; }
  .newsletter .heading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .newsletter p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #fff !important;
    text-transform: uppercase;
    padding-bottom: 0px; }
  .newsletter input {
    width: 160px;
    height: 20px;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
    margin-left: 0px; }
  .newsletter a {
    padding: 8px 12px;
    margin-top: 10px !important;
    margin-left: 15px !important; }
  footer .links nav a {
    padding: 8px 4px; }
  .subscribe-box {
    display: none; }
  .digital_edition {
    width: 290px;
    min-height: 300px;
    float: left;
    margin-left: 20px; }
  .digital_img {
    width: 290px;
    float: left;
    text-align: center; }
  #tab-pannel {
    width: 300px;
    margin-right: 20px; }
  .deal-street {
    width: 280px;
    min-height: 265px;
    float: left;
    margin-left: 0px;
    margin-right: 20px; }
  .deal-street .desc {
    width: 55%;
    float: left; }
  #box_widget {
    width: 300px;
    min-height: 430px;
    float: left;
    border: 1px solid #333;
    margin-right: 20px; }
  #widget_magzine {
    margin-right: 20px;
    display: none; }
  .rght_add {
    width: 300px;
    float: left;
    margin-right: 20px;
    display: none; }
  .rght_add:last-child {
    width: 300px;
    float: left;
    margin-right: 20px;
    display: block; }
  .registration {
    width: 280px;
    float: left;
    padding-right: 20px; }
  .login {
    width: 300px;
    float: left;
    padding-left: 10px; }
  .registration h3,
  .login h3 {
    margin-top: 0px;
    margin-bottom: 20px; }
  .registration label,
  .login label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #000;
    margin: 10px 0px; }
  .registration input[type="text"],
  .login input[type="text"] {
    width: 80%;
    float: left; }
  .registration input[type="checkbox"],
  .login input[type="checkbox"] {
    width: auto;
    float: left; }
  .login .b_login {
    width: 86%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .registration .b_register {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff !important;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .loginform {
    width: 610px;
    margin: 20px auto 50px; }
  /* -------------------------- User Admin --------------------------*/
  #useradmin #feature,
  #userprofile #feature {
    width: 80%;
    float: left;
    padding-left: 20px; }
  #useradmin dl {
    width: 100%;
    float: left;
    margin: 5px 0px; }
  #useradmin dl dt {
    width: 40%;
    float: left; }
  #useradmin dl dd {
    width: 60%;
    float: left; }
  #useradmin dl dd input {
    width: 250px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #useradmin dl dd textarea {
    width: 275px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl {
    width: 100%;
    float: left;
    margin: 15px 0px; }
  #userprofile dl dt {
    width: 40%;
    float: left; }
  #userprofile dl dd {
    width: 60%;
    float: left; }
  #userprofile dl dd input {
    width: 250px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #userprofile dl dd textarea {
    width: 275px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl dt label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0px 0px; }
  .b_edit {
    width: auto;
    float: left;
    background-color: #eee;
    color: #333;
    padding: 6px 10px;
    text-align: right;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px; }
  .note {
    width: 94%;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2, 139, 255, 0.2);
    background: rgba(2, 139, 255, 0.15);
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .sucessful-msg {
    width: 96%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 10px;
    border: 1px solid #19bb03;
    margin-bottom: 20px; }
  .sucessful {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 2px 0px; }
  .error {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 0px; }
  /* -------------------------- User Admin --------------------------*/ }

/***** Phone (landscape 420px) *****/
@media (max-width: 640px) {
  .wrapper {
    width: 540px;
    border: 0px solid #fc0000; }
  .top_add {
    width: 730px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: none; }
  .top_nav {
    width: auto;
    float: left;
    padding: 0px;
    height: 41px; }
  .top_nav a {
    float: left;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    color: #fff;
    padding: 15px 2px 15px 2px;
    font-weight: bold; }
  .top_nav a.active {
    background: #ee1c25;
    padding: 15px 3px; }
  .socl_ic_blk {
    width: 265px; }
  .socl_icons {
    width: 130px;
    padding: 0px;
    border: 0x;
    overflow: hidden; }
  .socl_icons a {
    height: 20px;
    float: left;
    overflow: hidden;
    margin: 3px 3px;
    width: 20px; }
  .line_img {
    margin: 2px 5px 0px 5px; }
  /*.logo { width:540px; float: none; margin: 10px auto;}
.logo-rt-section {width:100%;float: right;}
.story_day{width:100%;float: left; margin-top:20px;}*/
  .add-banner {
    width: 100%;
    float: none;
    margin: 2px auto 0; }
  /*.menu-section {	width: 100%; float: left; background-color: #ffffff; height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left; padding:0; margin:0; }
ul.main-menu li { float:left; display:inline; list-style:none; padding:0;}
ul.main-menu li a { float:left; font-family: 'Open Sans', sans-serif; text-transform:uppercase; font-size:16px; color:#FFFFFF; text-decoration:none; padding:11px 15px; margin:0; font-weight:normal; }
ul.main-menu a:hover, ul.main-menu li a.active { background-color:#000; color:#ffffff; font-size:16px; }
*/
  ul.main-menu li a.bigstory-bg {
    background-color: transparent !important; }
  ul.main-menu li a.pixtory-bg {
    background-color: transparent !important; }
  ul.main-menu li a.events-bg {
    background-color: transparent !important; }
  ul.main-menu li a.enterprise-bg {
    background-color: transparent !important; }
  ul.main-menu li a.strategy-bg {
    background-color: transparent !important; }
  ul.main-menu li a.markets-bg {
    background-color: transparent !important; }
  ul.main-menu li a.cestlavie-bg {
    background-color: transparent !important; }
  /*ul.main-menu li a { font-size:14px; padding:10px 8px 11px;}
.HeaderSearchHolder { width:490px; margin:0px 0px 2px 0; position:relative; float:left!important;
.HeaderSearchHolder input { padding:4px 5px!important; width:480px; border:1px solid #000!important; height:24px; color:#333!important;`}
.HeaderSearchICon { position:absolute; right:6px; top:7px; cursor:pointer; height:20px; width:20px;}*/
  #left-container {
    width: 100%;
    margin: 0; }
  #right-container {
    width: 100%;
    margin: 0; }
  #perspective .img_wrapper {
    width: 100%; }
  /*#enter_f_widget{ width:485px; margin:0 auto;}
#enterprise .widget{ width:200px; float:left; margin-bottom:15px; border-right:1px solid #666; padding-right:20px; margin-right:20px;}
#enterprise .widget .widget_img { width:200px; height:auto; float:left;}
#enterprise .widget-big{ width:540px; float:left; margin-bottom:15px;}
#enterprise .widget-big .widget_img { width:540px; height:auto; overflow:hidden; float:left; margin-bottom:15px;}
#enterprise #enter_f_widget2 {width: 300px; float: left;}*/
  #strategy .widget_img,
  #perspective .widget_img {
    width: 540px;
    height: 340px; }
  #strategy .widget_img .overlay {
    width: 340px;
    height: 175px;
    float: left;
    position: absolute;
    text-align: center;
    padding-top: 165px;
    /* background:url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .overlay-bg {
    width: 400px;
    height: 175px;
    float: left;
    position: absolute;
    text-align: center;
    padding: 166px 70px 0px;
    margin-top: 0;
    margin-left: -270px;
    left: 50%; }
  #strategy .widget_img .overlay-bg .heading {
    width: 400px;
    margin: 0;
    float: left;
    text-align: center;
    font-size: 35px;
    line-height: 30px;
    font-weight: bold;
    color: #fff !important; }
  #strategy .widget_img .carousel-caption .heading {
    width: 400px;
    margin: 0;
    float: left;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 44px;
    line-height: 40px;
    font-weight: bold;
    color: #fff !important; }
  #strategy .widget_img .carousel-caption {
    width: 400px;
    height: 175px;
    float: left;
    position: absolute;
    text-align: center;
    margin-top: 160px;
    margin-left: -200px;
    left: 50%;
    border: 0px solid #000;
    background: none; }
  #strategy .widget_img .carousel-caption .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .carousel-caption .heading1 span {
    padding-left: 12px;
    padding-right: 12px;
    color: #fff;
    border-right: 0px solid #fff;
    border-left: 0px solid #fff; }
  #strategy .carousel-caption .heading a {
    color: #000; }
  #enterprise #enter_f_widget {
    width: 100%;
    margin: 0;
    float: left; }
  #enterprise #enter_f_widget .widget {
    width: 150px;
    float: left;
    margin-bottom: 15px;
    border-right: 1px solid #666;
    padding-right: 14px;
    margin-right: 14px; }
  #enterprise #enter_f_widget .widget:last-child {
    border-right: 0px; }
  #enterprise #enter_f_widget .widget .widget_img {
    width: 142px;
    height: 126px;
    float: left;
    margin: 0 5px; }
  #enterprise #enter_f_widget .widget .heading {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    margin-top: 10px;
    text-align: center; }
  #enterprise #enter_f_widget .widget .heading a {
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #enterprise .row .widget {
    width: 245px;
    float: left;
    margin-bottom: 15px;
    border-right: 1px solid #666;
    padding-right: 20px;
    margin-right: 20px; }
  #enterprise .row .widget:last-child {
    border-right: 0px;
    padding-right: 0px;
    margin-right: 0px; }
  #enterprise .row .widget .widget_img {
    width: 100px;
    height: 90px;
    float: none;
    margin: 0px auto 10px; }
  #enterprise .row .widget .heading {
    margin-bottom: 15px;
    text-align: center; }
  #enterprise .row .widget .heading a {
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #enterprise .row .widget .content-txt {
    width: 90%;
    float: left;
    height: 130px;
    overflow: hidden; }
  #enterprise .row .widget p {
    text-align: center; }
  #enterprise #enter_f_widget2 {
    width: 295px;
    float: left; }
  #enterprise #enter_f_widget2 .widget {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    border-bottom: 1px solid #666;
    border-right: 0px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-right: 0;
    margin-right: 0; }
  #enterprise #enter_f_widget2 .widget:last-child {
    border-bottom: 0px;
    padding-bottom: 0;
    margin-bottom: 0; }
  #enterprise #enter_f_widget2 .widget .widget_img {
    width: 142px;
    height: 126px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px; }
  #enter_f_widget2 .float-left {
    width: 100%;
    float: left; }
  #enterprise #enter_f_widget2 .widget .heading {
    margin-bottom: 15px; }
  #enterprise #enter_f_widget2 .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #feature_edtion .widget {
    width: 85%;
    float: left;
    margin: 0 10%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece; }
  .insight {
    width: 140px;
    min-height: 290px;
    float: right;
    background-color: #00adef;
    padding: 0px 40px; }
  .insight .heading {
    width: 100%;
    float: left;
    font-size: 18px;
    line-height: 22px;
    padding: 0px;
    margin-top: 4px;
    text-align: center;
    margin-bottom: 15px; }
  .insight .heading a {
    background-color: #000;
    text-transform: uppercase;
    color: #ffffff;
    padding: 2px 10px; }
  .insight p {
    font-size: 16px;
    font-weight: bold;
    color: #fff; }
  .insight .writter {
    float: left;
    font-size: 14px;
    color: #fff;
    font-style: italic; }
  .print_wrapper {
    width: 130px;
    float: left;
    margin-right: 6px; }
  .print_wrapper:last-child {
    margin-right: 0px; }
  .print_wrapper .img {
    width: 130px;
    height: 170px;
    float: left; }
  .print_wrapper .img img {
    width: 100%;
    height: 100%; }
  .print_wrapper .content {
    width: 100%;
    float: left;
    font-size: 13px;
    margin: 10px 0px;
    text-align: center; }
  .print_wrapper .button {
    width: 130px;
    height: 30px;
    line-height: 30px;
    float: left;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
    color: #666; }
  #enterprise .widget-big {
    width: 540px;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img {
    width: 540px;
    height: 385px;
    overflow: hidden;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img img {
    width: 100%; }
  #enterprise .widget-big .widget_img2 {
    width: 345px;
    height: 200px;
    overflow: hidden;
    float: left;
    margin-bottom: 15px;
    margin-right: 15px; }
  #enterprise .widget-big .widget_img2 img {
    width: 100%; }
  #enterprise .widget-big .heading {
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 15px; }
  #enterprise .widget-big .heading a,
  #enterprise .widget-big .heading2 a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #enterprise .widget-big .heading2 {
    width: auto;
    float: none;
    text-align: left;
    margin-bottom: 15px; }
  #enterprise .widget-big p {
    text-align: center; }
  #pixtory,
  #voice {
    width: 100%;
    float: left; }
  #pixtory .widget,
  #voice .widget {
    width: 295px;
    float: left;
    margin-bottom: 15px; }
  #pixtory .widget .widget_img,
  #voice .widget .widget_img {
    width: 160px;
    height: 112px;
    float: left;
    margin: 0px 10px 10px 0px; }
  #pixtory .widget_img,
  #voice .widget_img,
  #voice .widget_img:last-child {
    width: 100%;
    height: auto;
    float: left;
    margin: 0px 10px 10px 0px; }
  #pixtory .widget .widget_img img,
  #voice .widget .widget_img img {
    width: 100%; }
  #pixtory .widget .heading,
  #voice .widget .heading {
    margin-bottom: 15px; }
  #pixtory .widget .heading a,
  #voice .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #pixtory .widget .share_sec,
  #voice .widget .share_sec {
    width: 40%;
    float: left;
    margin: 0px 0px 10px; }
  #pixtory .widget .share_sec .watch,
  #voice .widget .share_sec .watch {
    /* background: url(../images/icon_watch.png) no-repeat center left;  */
    padding-left: 18px;
    font-size: 13px;
    color: #9f9f9f; }
  #voice .quote-txt {
    width: 200px;
    height: 140px;
    float: left;
    margin: 0px 10px 10px 0px;
    background-color: #000;
    color: #fff;
    padding: 40px 30px 30px;
    font-size: 20px;
    line-height: 25px;
    text-indent: -20px;
    text-align: center; }
  #perspective {
    /*width:610px;*/
    width: 540px;
    float: left; }
  #perspective .widget_img {
    width: 100%;
    height: auto;
    float: left; }
  #perspective #right-news {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 25px; }
  #perspective #right-news .widget_main {
    width: 165px;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 0px solid #eee;
    margin-right: 20px; }
  #perspective #right-news .widget_main:last-child {
    border-bottom: 0px solid #eee; }
  #perspective #right-news .widget_main .desc {
    width: 100%;
    float: left;
    margin-left: 10px; }
  #perspective-inner .widget_main .widget_img {
    width: 240px;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px; }
  #perspective-inner .widget_main .desc {
    width: 56%;
    float: left;
    margin-left: 15px; }
  #magzine {
    width: 99%;
    float: left;
    background: #fff;
    border: 3px solid #cfcfcf;
    padding: 0px;
    margin: 10px 0px 10px; }
  #magzine a img {
    width: 123px;
    height: 174px;
    margin: 5px 5px 5px; }
  .newsletter {
    width: 100%;
    float: left;
    margin-top: 15px;
    margin-bottom: 30px; }
  .newsletter .heading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .newsletter p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #fff !important;
    text-transform: uppercase;
    padding-bottom: 0px; }
  .newsletter input {
    width: 160px;
    height: 20px;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
    margin-left: 0px; }
  .newsletter a {
    padding: 8px 12px;
    margin-top: 10px !important;
    margin-left: 15px !important; }
  footer .links nav a {
    padding: 8px 7px; }
  .subscribe-box {
    display: none; }
  .digital_edition {
    width: 290px;
    min-height: 300px;
    float: left;
    margin-left: 20px; }
  .digital_img {
    width: 290px;
    float: left;
    text-align: center; }
  #tab-pannel {
    width: 300px; }
  #box_widget {
    width: 250px;
    min-height: 450px;
    float: left;
    border: 1px solid #333;
    margin-right: 15px; }
  .rght_add {
    width: 260px;
    float: left;
    margin-right: 20px;
    display: none; }
  .widget_right {
    background: #f4f4f4;
    text-align: center;
    padding-top: 10px;
    width: 260px;
    float: left; }
  #widget_magzine {
    width: 250px;
    margin-right: 15px; }
  #widget_magzine .button {
    width: 110px; }
  .deal-street {
    width: 230px;
    min-height: 390px;
    float: left;
    margin-left: 0;
    margin-right: 15px; }
  .deal-street .desc {
    width: 55%;
    float: left; }
  .deal-street .row .box {
    width: 180px;
    float: left;
    margin: 6px 5%;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 15px; }
  #tab-pannel {
    width: 260px; }
  #tab-pannel ul.tabs li {
    width: 130px; }
  #new-links .desc {
    width: 70%;
    float: left; }
  .registration {
    width: 230px;
    float: left;
    padding-right: 20px; }
  .login {
    width: 280px;
    float: left;
    padding-left: 10px; }
  .registration h3,
  .login h3 {
    margin-top: 0px;
    margin-bottom: 20px; }
  .registration label,
  .login label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #000;
    margin: 10px 0px; }
  .registration input[type="text"],
  .login input[type="text"] {
    width: 80%;
    float: left; }
  .registration input[type="checkbox"],
  .login input[type="checkbox"] {
    width: auto;
    float: left; }
  .login .b_login {
    width: 86%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .registration .b_register {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .loginform {
    width: 540px;
    margin: 20px auto 50px; }
  /* -------------------------- User Admin --------------------------*/
  #useradmin #feature {
    width: 80%;
    float: left;
    padding-left: 50px; }
  #useradmin dl {
    width: 100%;
    float: left;
    margin: 5px 0px; }
  #useradmin dl dt {
    width: 40%;
    float: left; }
  #useradmin dl dd {
    width: 60%;
    float: left; }
  #useradmin dl dd input {
    width: 250px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #useradmin dl dd textarea {
    width: 275px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl {
    width: 100%;
    float: left;
    margin: 15px 0px; }
  #userprofile dl dt {
    width: 40%;
    float: left; }
  #userprofile dl dd {
    width: 60%;
    float: left; }
  #userprofile dl dd input {
    width: 250px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #userprofile dl dd textarea {
    width: 275px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl dt label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0px 0px; }
  .b_edit {
    width: auto;
    float: left;
    background-color: #eee;
    color: #333;
    padding: 6px 10px;
    text-align: right;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px; }
  .note {
    width: 93%;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2, 139, 255, 0.2);
    background: rgba(2, 139, 255, 0.15);
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .sucessful-msg {
    width: 96%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 10px;
    border: 1px solid #19bb03;
    margin-bottom: 20px; }
  .sucessful {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 2px 0px; }
  .error {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 0px; }
  /* -------------------------- User Admin --------------------------*/ }

/***** Phone (landscape 480px) *****/
@media (max-width: 480px) {
  .wrapper {
    width: 400px;
    border: 0px solid #fc0000; }
  /*.logo-area { width: 100%; min-height: 91px; float: left; margin-top: 90px; padding-top: 20px; padding-bottom: 20px;}*/
  /*.logo { width:100%; float: none; margin:0px auto 0px;}
.logo a{ width:100%; float:left;}
*/
  .add-banner {
    float: right;
    margin: 2px 0 0; }
  /*.logo-rt-section{ width:100%; float:right;}
.story_day{ width:100%; float:right;}
.story_day .main_heading{ width:100%; float:left; min-height:20px; font-size:14px; line-height:22px; text-transform:uppercase; font-weight:bold; letter-spacing:-1px; color:#fc0000; margin-bottom:10px;
text-align:center;}
.story_day .main_heading span { padding-left:10px; padding-right:10px; background-color:#ee1b22; color:#fff; border-right:10px solid #fff; border-left:10px solid #fff; }
.story_day .heading a{width:100%; float: left; font-family: 'Roboto', sans-serif; font-size:20px; font-weight: bold; color: #000!important; text-align: center;} */
  .h_links_wrapper {
    width: 100%;
    float: left;
    margin-top: 0px;
    margin-bottom: 20px;
    position: relative; }
  .h_links_wrapper ul {
    width: 270px;
    float: none;
    margin: 0 auto; }
  .h_links_wrapper ul li,
  .h_links_wrapper ul li a {
    width: auto;
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #333; }
  .h_links_wrapper ul li a {
    padding: 0px 3px;
    border-right: 1px solid #666; }
  .h_links_wrapper ul li:last-child a {
    border-right: 0px; }
  /*.top-header { width: 100%; float: left; height: 90px; background-color: #000; position: fixed; z-index: 1;}*/
  .top_nav {
    width: 100%;
    float: left;
    padding: 0px;
    height: 41px; }
  .top_nav a {
    float: left;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    color: #fff;
    padding: 12px 8px 12px 8px;
    font-weight: bold; }
  .top_nav a.active {
    background: #ee1c25;
    padding: 13px 7px; }
  .socl_ic_blk {
    width: 280px;
    margin: 10px 0px 0px 70px;
    float: left; }
  .socl_icons {
    width: 135px;
    padding: 0px;
    border: 0x;
    overflow: hidden; }
  .socl_icons a {
    height: 20px;
    float: left;
    overflow: hidden;
    margin: 3px 3px;
    width: 20px; }
  .line_img {
    margin: 2px 10px 0px 10px; }
  .add-banner {
    width: 100%;
    float: none;
    margin: 2px auto 0; }
  /*.menu-section {	width: 100%; float: left; background-color: #ffffff; height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left; padding:0; margin:0; }
ul.main-menu li { float:left; display:inline; list-style:none; padding:0;}
ul.main-menu li a { float:left; font-family: 'Open Sans', sans-serif; text-transform:uppercase; font-size:16px; color:#FFFFFF; text-decoration:none; padding:11px 15px; margin:0; font-weight:normal; }
ul.main-menu a:hover, ul.main-menu li a.active { background-color:#000000; color:#ffffff; font-size:16px; }
	*/
  /*ul.main-menu li a { font-size:14px; padding:10px 8px 11px;}
.HeaderSearchHolder { width:350px; margin:0px 0px 2px 0; position:relative; float:left!important; }
.HeaderSearchHolder input { padding:4px 5px!important; width:340px; border:1px solid #000!important; height:24px; color:#333!important;`}
.HeaderSearchICon { position:absolute; right:6px; top:7px; cursor:pointer; height:20px; width:20px;}*/
  #left-container {
    width: 100%;
    margin: 0; }
  #right-container {
    width: 300px;
    margin: 0 auto;
    float: none; }
  .rght_add {
    width: 100%;
    float: left;
    text-align: center; }
  #perspective .img_wrapper {
    width: 100%; }
  #enter_f_widget2 .float-left {
    width: 100%;
    float: left; }
  #perspective,
  #enterprise,
  #strategy {
    margin-bottom: 20px !important; }
  #feature_edtion .widget {
    width: 85%;
    float: left;
    margin: 0 8%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece; }
  #feature_edtion .widget:last-child {
    width: 85%;
    float: left;
    margin: 0 8%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece; }
  #enter_f_widget {
    width: 400px;
    margin: 0 auto; }
  #enterprise .widget {
    width: 110px;
    float: left;
    margin-bottom: 15px;
    border-right: 1px solid #666;
    padding-right: 20px;
    margin-right: 20px; }
  #enterprise #enter_f_widget .widget {
    width: 110px;
    overflow: hidden; }
  #enterprise #enter_f_widget .widget .widget_img {
    width: 110px;
    height: 100px;
    float: left;
    margin: 0 5px; }
  #enterprise #enter_f_widget .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    color: #000 !important; }
  #enterprise #enter_f_widget .widget:last-child {
    border-right: 0px;
    padding-right: 0px;
    margin-right: 0px; }
  #enterprise .widget .widget_img {
    width: 159px;
    height: auto;
    float: left; }
  #enterprise .widget-big {
    width: 400px;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img {
    width: 400px;
    height: auto;
    overflow: hidden;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img2 {
    width: 400px;
    height: 200px;
    overflow: hidden;
    float: left;
    margin-bottom: 15px;
    margin-right: 0px; }
  #enterprise #enter_f_widget,
  #perspective #enter_f_widget {
    width: 400px;
    margin: 0 auto; }
  #enterprise #enter_f_widget .widget,
  #perspective #enter_f_widget .widget {
    width: 100%;
    border-right: 0px;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin-bottom: 10px; }
  #enterprise #enter_f_widget .widget .widget_img,
  #perspective #enter_f_widget .widget .widget_img {
    margin-right: 20px;
    float: none;
    margin: 0 auto; }
  #enterprise #enter_f_widget2 {
    width: 225px;
    float: left; }
  #enterprise #enter_f_widget2 .widget {
    width: 100%; }
  #enterprise #enter_f_widget2 .widget .widget_img {
    width: 90px;
    height: 80px; }
  #enterprise .row .widget {
    width: 170px; }
  #enterprise .row .widget .widget_img {
    width: 179px;
    height: 159px;
    margin-left: 15px; }
  .gallery-loader {
    height: 236px;
    overflow: hidden; }
  .insight {
    width: 140px;
    min-height: 290px;
    float: right;
    background-color: #00adef;
    padding: 0px 10px; }
  #strategy .widget_img .carousel-caption {
    width: 400px;
    height: 195px;
    float: left;
    position: absolute;
    text-align: center;
    margin-top: 90px;
    margin-left: -200px;
    left: 50%;
    border: 0px solid #000;
    background: none; }
  #strategy .widget_img .carousel-caption .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .carousel-caption .heading1 span {
    padding-left: 12px;
    padding-right: 12px;
    color: #fff;
    border-right: 0px solid #fff;
    border-left: 0px solid #fff; }
  #strategy .widget_img .carousel-caption .heading {
    width: 400px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    color: #fff !important; }
  #strategy .carousel-caption .heading a {
    color: #000; }
  .share_sec {
    width: 55%;
    float: left;
    margin: 0px 0px 15px; }
  .rtmrgn2 {
    margin-right: 0px !important; }
  #pixtory,
  #voice {
    width: 100%;
    float: left; }
  #pixtory .widget,
  #voice .widget {
    width: 100%;
    float: left;
    margin-bottom: 15px; }
  #pixtory .widget_img,
  #voice .widget_img {
    float: left;
    height: auto;
    margin: 0 0px 10px 0;
    width: 100%; }
  #pixtory .widget_img,
  #voice .widget_img:last-child {
    float: left;
    height: auto;
    margin: 0 0px 10px 0;
    width: 100%; }
  /*#pixtory .widget .widget_img, #voice .widget .widget_img { width:160px; height:112px; float:left;  margin:0px 10px 10px 0px;}*/
  #pixtory .widget .widget_img img,
  #voice .widget .widget_img img {
    width: 100%; }
  #pixtory .widget .heading,
  #voice .widget .heading {
    margin-bottom: 15px; }
  #pixtory .widget .heading a,
  #voice .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #pixtory .widget .share_sec,
  #voice .widget .share_sec {
    width: 60%;
    float: left;
    margin: 0px 0px 10px; }
  #pixtory .widget .share_sec .watch,
  #voice .widget .share_sec .watch {
    /* background: url(../images/icon_watch.png) no-repeat center left; */
    padding-left: 18px;
    font-size: 13px;
    color: #9f9f9f; }
  #voice .quote-txt {
    width: 70%; }
  #perspective {
    width: 400px;
    float: left; }
  #perspective #right-news {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 10px; }
  #perspective #right-news .widget_main {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; }
  #perspective #right-news .widget_main .desc {
    width: 100%;
    float: left;
    margin-left: 10px; }
  #perspective #right-news .widget_main .widget_img {
    width: 60px; }
  #perspective #right-news .widget_main .desc .heading a {
    font-size: 14px; }
  #perspective .widget_img {
    width: 100%;
    height: 237px;
    float: left; }
  #perspective-inner .widget_main .widget_img {
    width: 98%;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px; }
  #perspective-inner .widget_main .widget_img img {
    width: 100%; }
  #perspective-inner .widget_main .desc {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 15px; }
  #perspective-inner .widget_main .desc .share_sec {
    width: 100%;
    float: left;
    padding: 10px 0px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin-top: 10px; }
  .print_wrapper {
    width: 180px;
    float: left;
    margin-right: 15px; }
  .print_wrapper:last-child {
    margin-right: 0px; }
  .print_wrapper .img {
    width: 180px;
    height: 245px;
    float: left; }
  .print_wrapper .img img {
    width: 100%;
    height: 100%; }
  .print_wrapper .content {
    width: 100%;
    float: left;
    font-size: 13px;
    margin: 10px 0px;
    text-align: center; }
  .print_wrapper .button {
    width: 180px;
    height: 30px;
    line-height: 30px;
    float: left;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
    color: #666; }
  #magzine {
    width: 400px;
    float: left;
    background: #fff;
    border: 3px solid #cfcfcf;
    padding: 0px;
    margin: 10px 0px 10px; }
  #magzine a img {
    width: 80px;
    height: 115px;
    margin: 5px 5px 5px; }
  .newsletter {
    width: 100%;
    float: left;
    margin-top: 15px;
    margin-bottom: 30px; }
  .newsletter .heading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .newsletter p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #fff !important;
    text-transform: uppercase;
    padding-bottom: 0px; }
  .newsletter input {
    width: 160px;
    height: 20px;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
    margin-left: 0px; }
  .newsletter a {
    padding: 8px 12px;
    margin-top: 10px !important;
    margin-left: 15px !important; }
  #widget_magzine {
    width: 320px;
    margin-right: 15px; }
  #strategy .widget_img {
    width: 100%;
    height: 270px;
    float: left; }
  #perspective .widget_img_small {
    width: 100%;
    height: 100%;
    float: left;
    left: 0;
    margin-left: 0; }
  #strategy .widget_img img {
    width: 100%;
    height: auto; }
  #strategy .widget_img .overlay {
    width: 260px;
    height: 125px;
    float: left;
    position: absolute;
    text-align: center;
    padding-top: 111px;
    /* background: url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay-bg {
    width: 260px;
    height: 125px;
    float: left;
    position: absolute;
    text-align: center;
    padding-top: 111px;
    /* background: url(../images/trans_bg.png) repeat;  */
    margin-left: 0px; }
  #strategy .widget_img .overlay .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .overlay .heading,
  #strategy .widget_img .overlay-bg .heading {
    width: 320px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 18px;
    font-weight: bold;
    color: #fff !important; }
  .subscribe-box {
    display: none; }
  .digital_edition {
    width: 100%;
    min-height: 300px;
    float: left;
    margin-left: 0; }
  .digital_img {
    width: 100%;
    float: left;
    text-align: center; }
  #tab-pannel {
    width: 100%; }
  #tab-pannel ul.tabs li {
    width: 150px; }
  #box_widget {
    width: 300px;
    float: left;
    border: 1px solid #333;
    margin-right: 0px; }
  .deal-street {
    width: 280px;
    float: left;
    margin-left: 0;
    padding: 10px; }
  .deal-street .desc .share_sec {
    width: 100%;
    margin-top: 0px; }
  .deal-street .desc {
    width: 70%;
    float: left; }
  .widget_right {
    background: #f4f4f4;
    text-align: center;
    padding-top: 10px;
    width: 300px;
    float: left; }
  .registration {
    width: 400px;
    float: left;
    padding-right: 0px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc; }
  .login {
    /*width:400px;*/
    float: left;
    padding-left: 10px; }
  .registration h3,
  .login h3 {
    margin-top: 0px;
    margin-bottom: 20px; }
  .registration label,
  .login label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #000;
    margin: 10px 0px; }
  .registration input[type="text"],
  .login input[type="text"] {
    width: 80%;
    float: left; }
  .registration input[type="checkbox"],
  .login input[type="checkbox"] {
    width: auto;
    float: left; }
  .login .b_login {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .registration .b_register {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .loginform {
    width: 400px;
    margin: 0px auto 50px; }
  /* -------------------------- User Admin --------------------------*/
  #useradmin #feature,
  #userprofile #feature {
    width: 80%;
    float: left;
    padding-left: 10px; }
  #useradmin dl {
    width: 100%;
    float: left;
    margin: 5px 0px; }
  #useradmin dl dt {
    width: 40%;
    float: left; }
  #useradmin dl dd {
    width: 60%;
    float: left; }
  #useradmin dl dd input {
    width: 220px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #useradmin dl dd textarea {
    width: 235px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl {
    width: 100%;
    float: left;
    margin: 15px 0px; }
  #userprofile dl dt {
    width: 45%;
    float: left; }
  #userprofile dl dd {
    width: 55%;
    float: left; }
  #userprofile dl dd input {
    width: 250px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #userprofile dl dd textarea {
    width: 275px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl dt label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0px 0px; }
  .b_edit {
    width: auto;
    float: left;
    background-color: #eee;
    color: #333;
    padding: 6px 10px;
    text-align: right;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px; }
  .note {
    width: 91%;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2, 139, 255, 0.2);
    background: rgba(2, 139, 255, 0.15);
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .sucessful-msg {
    width: 94%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 10px;
    border: 1px solid #19bb03;
    margin-bottom: 20px; }
  .sucessful {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 2px 0px; }
  .error {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 0px; }
  /* -------------------------- User Admin --------------------------*/
  .foot_add {
    display: none; }
  #similar .widget {
    float: left;
    margin-bottom: 15px;
    width: 195px;
    margin-right: 5px; }
  #similar .widget:nth-child(2n + 2) {
    margin-right: 0px; }
  #similar .widget .widget_img {
    border: 2px solid #e8e8e8;
    float: left;
    height: auto;
    margin-bottom: 10px;
    padding: 4px;
    width: 180px; }
  #similar .widget .widget_img img {
    width: 100%; }
  .widget_arch {
    width: 190px;
    float: left;
    margin-right: 0px;
    margin-bottom: 30px; }
  .widget_arch .widget_img {
    border: 2px solid #e8e8e8;
    float: left;
    height: 120px;
    margin-bottom: 10px;
    padding: 4px;
    width: 94%; } }

/***** Phone ( 320px) *****/
@media (max-width: 400px) {
  .wrapper {
    width: 350px;
    border: 0px solid #fc0000; }
  /*.logo-area { width: 100%; min-height:40px; float: left; margin-top:40px; padding-top:10px; padding-bottom:10px;}
*/
  /*.logo-rt-section{ width:100%; float:right;}
.story_day{ width:100%; float:right;}
.story_day .main_heading{ width:100%; float:left; min-height:20px; font-size:14px; line-height:22px; text-transform:uppercase; font-weight:bold; letter-spacing:-1px; color:#fc0000; margin-bottom:10px;
text-align:center;}
.story_day .main_heading span { padding-left:10px; padding-right:10px; background-color:#ee1b22; color:#fff; border-right:10px solid #fff; border-left:10px solid #fff; }
.story_day .heading a{width:100%; float: left; font-family: 'Roboto', sans-serif; font-size:20px; font-weight: bold; color: #000!important; text-align: center;}
*/
  .h_links_wrapper {
    width: 100%;
    float: left;
    margin-top: 0px;
    margin-bottom: 20px; }
  .h_links_wrapper ul {
    width: auto;
    float: left;
    margin: 10px 0px 0px; }
  .h_links_wrapper ul li,
  .h_links_wrapper ul li a {
    width: auto;
    float: left;
    font-size: 14px;
    font-weight: bold;
    color: #333; }
  .h_links_wrapper ul li a {
    padding: 0px 3px;
    border-right: 1px solid #666; }
  .h_links_wrapper ul li:last-child a {
    border-right: 0px; }
  /*.top-header { width: 100%; float: left; height:37px; background-color: #000; position: fixed; z-index: 1;}*/
  .top_nav {
    width: 100%;
    float: left;
    padding: 0px;
    height: 41px; }
  .top_nav a {
    float: left;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    color: #fff;
    padding: 12px 6px 12px 6px; }
  .top_nav a.active {
    background: #ee1c25;
    padding: 13px 3px; }
  .socl_ic_blk {
    width: 350px;
    margin: 10px 0px 0px 0px;
    float: left; }
  .socl_icons {
    width: 130px;
    padding: 0px;
    border: 0x;
    overflow: hidden; }
  .socl_icons a {
    height: 20px;
    float: left;
    overflow: hidden;
    margin: 3px 3px;
    width: 20px; }
  .line_img {
    margin: 2px 5px 0px 5px; }
  /*.logo { width:90%; float: none; margin: 10px auto;}*/
  .add-banner {
    width: 100%;
    float: none;
    margin: 2px auto 0; }
  .search {
    width: 220px;
    float: left;
    margin-left: 0px;
    margin-bottom: 0px; }
  /*.menu-section {	width: 100%; float: left; background-color: #ffffff; height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left; padding:0; margin:0; }
ul.main-menu li { float:left; display:inline; list-style:none; padding:0;}
ul.main-menu li a { float:left; font-family: 'Open Sans', sans-serif; text-transform:uppercase; font-size:16px; color:#FFFFFF; text-decoration:none; padding:11px 15px; margin:0; font-weight:normal; }
ul.main-menu a:hover, ul.main-menu li a.active { background-color:#000000; color:#ffffff; font-size:16px; }*/
  ul.main-menu li a.bigstory-bg {
    background-color: transparent !important; }
  ul.main-menu li a.pixtory-bg {
    background-color: transparent !important; }
  ul.main-menu li a.events-bg {
    background-color: transparent !important; }
  ul.main-menu li a.enterprise-bg {
    background-color: transparent !important; }
  ul.main-menu li a.strategy-bg {
    background-color: transparent !important; }
  ul.main-menu li a.markets-bg {
    background-color: transparent !important; }
  ul.main-menu li a.cestlavie-bg {
    background-color: transparent !important; }
  /*ul.main-menu li a { font-size:14px; padding:10px 8px 11px;}
.HeaderSearchHolder { width:285px; margin:0px 0px 2px 0; position:relative; float:left!important; }
.HeaderSearchHolder input { padding:4px 5px!important; width:280px; border:1px solid #000!important; height:24px; color:#333!important;`}
.HeaderSearchICon { position:absolute; right:6px; top:7px; cursor:pointer; height:20px; width:20px;}*/
  #left-container {
    width: 100%; }
  #right-container {
    margin: 0 auto;
    width: 300px; }
  .rght_add {
    width: 100%;
    float: left;
    text-align: center; }
  #perspective.img_wrapper {
    width: 100%; }
  #enter_f_widget {
    width: 350px;
    margin: 0 auto; }
  #enterprise .widget {
    width: 350px;
    float: left;
    margin-bottom: 15px;
    border-right: 0px solid #666;
    padding-right: 0px;
    margin-right: 0px;
    margin-bottom: 15px; }
  #enterprise .widget .widget_img {
    width: 350px;
    height: auto;
    float: left; }
  #enterprise .widget-big {
    width: 350px;
    float: left;
    margin-bottom: 15px; }
  #enterprise #enter_f_widget2 .widget .widget_img {
    height: 80px;
    margin: 0 auto;
    width: 90px;
    float: none; }
  #enterprise .widget-big .widget_img {
    width: 350px;
    height: auto;
    overflow: hidden;
    float: left;
    margin-bottom: 15px; }
  #enterprise #enter_f_widget {
    width: 350px; }
  #enterprise #enter_f_widget .widget .heading {
    width: 100%;
    float: left;
    text-align: center; }
  #enterprise #enter_f_widget .widget {
    width: 100%;
    min-height: 200px;
    margin: 0;
    padding: 0;
    border: 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #666;
    padding-bottom: 20px; }
  #enterprise #enter_f_widget .widget:last-child {
    margin-bottom: 10px;
    border-bottom: 0px; }
  #enterprise #enter_f_widget .widget .widget_img {
    width: 142px;
    height: 126px;
    float: none;
    margin: 0 auto; }
  #enterprise #enter_f_widget .widget p {
    width: 100%;
    float: left; }
  #enterprise .widget-big .widget_img2 {
    width: 100%; }
  #enterprise #enter_f_widget2 {
    width: 100%; }
  #enterprise .row .widget {
    width: 100%;
    border: 0;
    padding-right: 0;
    margin-right: 0; }
  #enterprise .row .widget .widget_img {
    width: 100px;
    height: 90px;
    float: none;
    margin: 0 auto; }
  #enterprise #enter_f_widget,
  #perspective #enter_f_widget {
    width: 350px;
    margin: 0 auto; }
  #enterprise #enter_f_widget .widget,
  #perspective #enter_f_widget .widget {
    width: 100%;
    border-right: 0px;
    border-bottom: 1px solid #999; }
  #enterprise #enter_f_widget .widget .widget_img,
  #perspective #enter_f_widget .widget .widget_img {
    margin-right: 20px;
    float: none;
    margin: 0 auto; }
  #enter_f_widget2 .float-left {
    float: left;
    width: 100%; }
  .gallery-loader {
    height: auto;
    overflow: hidden; }
  .widget_arch {
    float: left;
    margin-bottom: 30px;
    margin-right: 0;
    width: 100%; }
  .print_wrapper {
    width: 100px;
    float: left;
    margin-right: 15px;
    margin-left: 35px;
    margin-bottom: 20px; }
  .print_wrapper:last-child {
    margin-right: 0px; }
  .print_wrapper .img {
    width: 110px;
    height: 150px;
    float: left; }
  .print_wrapper .img img {
    width: 100%;
    height: 100%; }
  .print_wrapper .content {
    width: 100%;
    float: left;
    font-size: 13px;
    margin: 10px 0px;
    text-align: center; }
  .print_wrapper .button {
    width: 110px;
    height: 30px;
    line-height: 30px;
    float: left;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
    color: #666; }
  #strategy .widget_img .carousel-caption {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 solid #000;
    float: left;
    height: auto;
    left: 50%;
    margin-left: -125px;
    margin-top: 75px;
    position: absolute;
    text-align: center;
    width: 250px; }
  #strategy .widget_img .carousel-caption .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .carousel-caption .heading1 span {
    padding-left: 12px;
    padding-right: 12px;
    color: #fff;
    border-right: 0px solid #fff;
    border-left: 0px solid #fff; }
  #strategy .widget_img .carousel-caption .heading1 span a {
    font-size: 12px; }
  #strategy .widget_img .carousel-caption .heading {
    width: 260px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    color: #fff !important; }
  #strategy .carousel-caption .heading a {
    color: #000; }
  .insight {
    width: 180px;
    min-height: 290px;
    float: left;
    background-color: #00adef;
    padding: 0px 40px;
    margin: 20px 50px; }
  #strategy .widget_img .image {
    width: 100%;
    height: 100%;
    float: left; }
  #strategy .widget_img {
    width: 350px;
    height: 180px;
    float: left; }
  #strategy .widget_img img {
    width: 100%;
    height: 100%; }
  #strategy .widget_img .overlay {
    width: 350px;
    height: 135px;
    float: left;
    position: absolute;
    text-align: center;
    padding: 45px 0px 0px;
    /* background: url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay-bg {
    width: 350px;
    height: 135px;
    float: left;
    position: absolute;
    text-align: center;
    padding: 45px 0px 0px;
    /* background: url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay .heading1,
  #strategy .widget_img .overlay-bg .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .overlay .heading,
  #strategy .widget_img .overlay-bg .heading {
    width: 350px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 18px;
    font-weight: bold;
    color: #fff !important; }
  #special_edtion {
    width: 100%;
    float: left; }
  #special_edtion .widget_new .widget_new_img {
    float: left;
    height: 133px;
    margin-bottom: 15px;
    margin-right: 20px;
    width: 100px; }
  #special_edtion .widget {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    border-bottom: 1px solid #cecece;
    padding-bottom: 10px; }
  #special_edtion .widget .widget_img {
    width: 146px;
    height: 129px;
    float: none;
    margin: 0 auto; }
  #special_edtion .widget .heading {
    text-align: center; }
  #special_edtion .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important;
    text-align: center; }
  #special_edtion .widget .desc {
    font-size: 19px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px; }
  a.showall {
    color: #000;
    font-size: 17px;
    line-height: 21px;
    text-align: left;
    float: right; }
  #feature_edtion {
    width: 100%;
    float: left; }
  #feature_edtion h1 {
    width: 100%;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 30px; }
  #feature_edtion .widget {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece; }
  #feature_edtion .widget:last-child {
    width: 100%;
    border-bottom: 0px; }
  #feature_edtion .widget .widget_img {
    width: 146px;
    height: 129px;
    float: left;
    margin-right: 10px; }
  #feature_edtion .heading1 {
    margin-bottom: 30px; }
  #feature_edtion .widget .heading {
    text-align: center; }
  #feature_edtion .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000 !important;
    margin-bottom: 10px;
    text-align: center; }
  #feature_edtion .widget .desc {
    font-size: 19px;
    line-height: 21px;
    text-align: left;
    text-align: center; }
  .foot_add {
    display: none; }
  .share_sec {
    width: 100%;
    float: left;
    margin: 0px 0px 15px; }
  #pixtory,
  #voice {
    width: 100%;
    float: left; }
  #pixtory .widget,
  #voice .widget {
    width: 100%;
    float: left;
    margin-bottom: 15px; }
  #pixtory .widget_img,
  #voice .widget_img {
    float: left;
    height: auto;
    margin: 0 0px 10px 0;
    width: 100%; }
  #pixtory .widget_img,
  #voice .widget_img:last-child {
    float: left;
    height: auto;
    margin: 0 0px 10px 0;
    width: 100%; }
  #pixtory .widget .widget_img,
  #voice .widget .widget_img {
    width: 350px;
    height: 203px;
    float: left;
    margin: 0px 0px 10px 0px; }
  #pixtory .widget .widget_img img,
  #voice .widget .widget_img img {
    width: 100%; }
  #pixtory .widget .heading,
  #voice .widget .heading {
    margin-bottom: 15px; }
  #pixtory .widget .heading a,
  #voice .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #pixtory .widget .share_sec,
  #voice .widget .share_sec {
    width: 100%;
    float: left;
    margin: 0px 0px 10px; }
  #pixtory .widget .share_sec .watch,
  #voice .widget .share_sec .watch {
    /* background: url(../images/icon_watch.png) no-repeat center left; */
    padding-left: 18px;
    font-size: 13px;
    color: #9f9f9f; }
  #perspective {
    width: 350px;
    float: left; }
  #perspective .widget_img {
    width: 100%;
    height: auto;
    float: left; }
  #perspective .share_sec {
    width: 100%;
    float: left;
    margin: 15px 0px; }
  #perspective #right-news {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 25px; }
  #perspective #right-news .widget_main {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; }
  #perspective #right-news .widget_main:last-child {
    border-bottom: 1px solid #eee; }
  #perspective #right-news .widget_main .desc {
    width: 90%;
    float: left;
    margin-left: 10px; }
  #perspective #right-news .widget_main .desc .share_sec {
    margin-bottom: 5px;
    font-size: 12px; }
  #perspective #right-news .widget_main .widget_img {
    width: 60px; }
  #perspective #right-news .widget_main .desc .heading a {
    font-size: 14px; }
  #perspective .row .desc {
    font-size: 16px; }
  #perspective-inner .widget_main .widget_img {
    width: 98%;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px; }
  #perspective-inner .widget_main .widget_img img {
    width: 100%; }
  #perspective-inner .widget_main .desc {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 15px; }
  #perspective-inner .widget_main .desc .share_sec {
    width: 100%;
    float: left;
    padding: 10px 0px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin-top: 10px; }
  #perspective-inner .widget_main .desc .share_sec .float-right {
    width: 100%;
    float: left;
    margin-top: 7px; }
  #voice .quote-txt {
    width: 180px;
    height: 140px;
    float: left;
    margin: 0px 10px 10px 0px;
    background-color: #000;
    color: #fff;
    padding: 50px 40px 40px;
    font-size: 18px;
    line-height: 20px;
    text-indent: -20px;
    text-align: center; }
  #voice .quote-txt:before {
    content: '"';
    font-size: 40px; }
  #voice .quote-txt span {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: italic; }
  #magzine {
    width: 99%;
    float: left;
    background: #fff;
    border: 3px solid #cfcfcf;
    padding: 0px;
    margin: 10px 0px 10px; }
  #magzine a img {
    width: 75px;
    height: 105px;
    margin: 5px 5px 5px; }
  .newsletter {
    width: 89%;
    float: left;
    margin-top: 15px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px; }
  .newsletter .heading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .newsletter p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #fff !important;
    text-transform: uppercase;
    padding-bottom: 0px; }
  .newsletter input {
    width: 210px;
    height: 20px;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
    margin-left: 0px; }
  .newsletter a {
    padding: 8px 12px;
    margin-top: 10px !important;
    margin-left: 15px !important; }
  .subscribe-box {
    display: none; }
  .digital_edition {
    width: 100%;
    min-height: 300px;
    float: left;
    margin-left: 0; }
  .digital_img {
    width: 100%;
    float: left;
    text-align: center; }
  #tab-pannel {
    width: 100%;
    margin: 0; }
  #tab-pannel ul.tabs li {
    width: 130px; }
  #box_widget {
    width: 300px;
    float: left;
    border: 1px solid #333;
    margin-right: 0px; }
  .deal-street {
    width: 280px;
    float: left;
    margin-left: 0; }
  .deal-street .desc .share_sec {
    width: 100%;
    margin-top: 0px; }
  .deal-street .desc {
    width: 55%;
    float: left; }
  #widget_magzine {
    width: 300px;
    margin-right: 15px; }
  .registration {
    width: 350px;
    float: left;
    padding-right: 0px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc; }
  .login {
    /*width:350px; */
    float: left;
    padding-left: 10px; }
  .registration h3,
  .login h3 {
    margin-top: 0px;
    margin-bottom: 20px; }
  .registration label,
  .login label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #000;
    margin: 10px 0px; }
  .registration input[type="text"],
  .login input[type="text"] {
    width: 80%;
    float: left; }
  .registration input[type="checkbox"],
  .login input[type="checkbox"] {
    width: auto;
    float: left; }
  .login .b_login {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .registration .b_register {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .loginform {
    width: 350px;
    margin: 0px auto 50px; }
  /* -------------------------- User Admin --------------------------*/
  #useradmin #feature,
  #userprofile #feature {
    width: 80%;
    float: left;
    padding-left: 5px; }
  #useradmin dl {
    width: 100%;
    float: left;
    margin: 5px 0px 10px; }
  #useradmin dl dt {
    width: 100%;
    float: left;
    margin-bottom: 5px; }
  #useradmin dl dd {
    width: 100%;
    float: left; }
  #useradmin dl dd input {
    width: 220px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #useradmin dl dd textarea {
    width: 235px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl {
    width: 100%;
    float: left;
    margin: 10px 0px; }
  #userprofile dl dt {
    width: 100%;
    float: left;
    margin-bottom: 6px; }
  #userprofile dl dd {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333; }
  #userprofile dl dt label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0px 0px; }
  .b_edit {
    width: auto;
    float: left;
    background-color: #eee;
    color: #333;
    padding: 6px 10px;
    text-align: right;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px; }
  .note {
    width: 88%;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 15px;
    margin-bottom: 18px;
    border: 1px solid rgba(2, 139, 255, 0.2);
    background: rgba(2, 139, 255, 0.15);
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .sucessful-msg {
    width: 91%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 10px;
    border: 1px solid #19bb03;
    margin-bottom: 20px; }
  .sucessful {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 2px 0px; }
  .error {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 0px; }
  /* -------------------------- User Admin --------------------------*/
  #similar .widget {
    float: left;
    margin-bottom: 15px;
    width: 170px;
    margin-right: 5px; }
  #similar .widget:nth-child(2n + 2) {
    margin-right: 0px; }
  #similar .widget .widget_img {
    border: 2px solid #e8e8e8;
    float: left;
    height: auto;
    margin-bottom: 10px;
    padding: 4px;
    width: 150px; }
  #similar .widget .widget_img img {
    width: 100%; }
  .widget_arch .widget_img {
    border: 2px solid #e8e8e8;
    float: left;
    height: 250px;
    margin-bottom: 10px;
    padding: 4px;
    width: 94%; }
  .left-section {
    float: left;
    width: 66%; }
  #story-desc .share_sec .writter {
    width: 65%; } }

/***** Phone ( 320px) *****/
@media (max-width: 320px) {
  .wrapper {
    width: 280px;
    border: 0px solid #fc0000; }
  .logo-area {
    width: 100%;
    min-height: 91px;
    float: left;
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 10px; }
  /*
.logo-rt-section{ width:100%; float:right;}
.story_day{ width:100%; float:right;}
.story_day .main_heading{ width:100%; float:left; min-height:20px; font-size:14px; line-height:22px; text-transform:uppercase; font-weight:bold; letter-spacing:-1px; color:#fc0000; margin-bottom:10px;
text-align:center;}
.story_day .main_heading span { padding-left:10px; padding-right:10px; background-color:#ee1b22; color:#fff; border-right:10px solid #fff; border-left:10px solid #fff; }
.story_day .heading a{width:100%; float: left; font-family: 'Roboto', sans-serif; font-size:20px; font-weight: bold; color: #000!important; text-align: center;}
*/
  .h_links_wrapper {
    width: 100%;
    float: left;
    margin-top: 0px;
    margin-bottom: 20px; }
  .h_links_wrapper ul {
    width: auto;
    float: left;
    margin: 0;
    margin-top: 10px; }
  .h_links_wrapper ul li,
  .h_links_wrapper ul li a {
    width: auto;
    float: left;
    font-size: 13px;
    font-weight: bold;
    color: #333; }
  .h_links_wrapper ul li a {
    padding: 0px 3px;
    border-right: 1px solid #666; }
  .h_links_wrapper ul li:last-child a {
    border-right: 0px; }
  /*.top-header { width: 100%; float: left; height:37px; background-color: #000; position: fixed; z-index: 1;}*/
  .top_nav {
    width: 100%;
    float: left;
    padding: 0px;
    height: 41px; }
  .top_nav a {
    float: left;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    color: #fff;
    padding: 12px 4px 12px 4px; }
  .top_nav a.active {
    background: #ee1c25;
    padding: 13px 3px; }
  .socl_ic_blk {
    width: 260px;
    margin: 10px 0px 0px 0px;
    float: left; }
  .socl_icons {
    width: 130px;
    padding: 0px;
    border: 0x;
    overflow: hidden; }
  .socl_icons a {
    height: 20px;
    float: left;
    overflow: hidden;
    margin: 3px 3px;
    width: 20px; }
  .line_img {
    margin: 2px 5px 0px 5px; }
  /*.logo { width:100%; float: none; margin: 10px auto;}*/
  .add-banner {
    width: 100%;
    float: none;
    margin: 2px auto 0; }
  .search {
    width: 220px;
    float: left;
    margin-left: 0px;
    margin-bottom: 0px; }
  /*.menu-section {	width: 100%; float: left; background-color: #ffffff; height: 40px; padding: 0px 0px; margin:0px; }
ul.main-menu { width:auto; float:left; padding:0; margin:0; }
ul.main-menu li { float:left; display:inline; list-style:none; padding:0;}
ul.main-menu li a { float:left; font-family: 'Open Sans', sans-serif; text-transform:uppercase; font-size:16px; color:#FFFFFF; text-decoration:none; padding:11px 15px; margin:0; font-weight:normal; }
ul.main-menu a:hover, ul.main-menu li a.active { background-color:#000000; color:#ffffff; font-size:16px; }*/
  /*ul.main-menu li a { font-size:14px; padding:10px 8px 11px;}
.HeaderSearchHolder { width:220px; margin:0px 0px 2px 0; position:relative; float:left!important; }
.HeaderSearchHolder input { padding:4px 5px!important; width:210px; border:1px solid #000!important; height:24px; color:#333!important;`}
.HeaderSearchICon { position:absolute; right:6px; top:7px; cursor:pointer; height:20px; width:20px;}*/
  #left-container {
    width: 100%; }
  #right-container {
    width: 100%;
    margin-left: 0px !important; }
  .rght_add {
    width: 100%;
    float: left;
    text-align: center; }
  #perspective.img_wrapper {
    width: 100%; }
  .deal-street .row .box {
    float: left;
    font-size: 16px;
    line-height: 24px;
    margin: 6px 6% 15px;
    text-align: center;
    width: 180px; }
  #enter_f_widget {
    width: 260px;
    margin: 0 auto; }
  #enterprise .widget {
    width: 260px;
    float: left;
    margin-bottom: 15px;
    border-right: 0px solid #666;
    padding-right: 0px;
    margin-right: 0px;
    margin-bottom: 15px; }
  #enterprise .widget .widget_img {
    width: 260px;
    height: auto;
    float: left; }
  #enterprise .widget-big {
    width: 260px;
    float: left;
    margin-bottom: 15px; }
  #enterprise .widget-big .widget_img {
    width: 260px;
    height: auto;
    overflow: hidden;
    float: left;
    margin-bottom: 15px; }
  #enterprise #enter_f_widget {
    width: 260px; }
  #enterprise #enter_f_widget .widget .heading {
    width: 100%;
    float: left;
    text-align: center; }
  #enterprise #enter_f_widget .widget {
    width: 100%;
    min-height: 200px;
    margin: 0;
    padding: 0;
    border: 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #666;
    padding-bottom: 20px; }
  #enterprise #enter_f_widget .widget:last-child {
    margin-bottom: 10px;
    border-bottom: 0px; }
  #enterprise #enter_f_widget .widget .widget_img {
    width: 142px;
    height: 126px;
    float: none;
    margin: 0 auto; }
  #enterprise #enter_f_widget .widget p {
    width: 100%;
    float: left; }
  #enterprise .widget-big .widget_img2 {
    width: 100%; }
  #enterprise #enter_f_widget2 {
    width: 100%; }
  #enterprise .row .widget {
    width: 100%;
    border: 0;
    padding-right: 0;
    margin-right: 0; }
  #enterprise .row .widget .widget_img {
    width: 100px;
    height: 90px;
    float: none;
    margin: 5px auto 10px; }
  #enterprise #enter_f_widget,
  #perspective #enter_f_widget {
    width: 260px;
    margin: 0 auto; }
  #enterprise #enter_f_widget .widget,
  #perspective #enter_f_widget .widget {
    width: 100%;
    border-right: 0px;
    border-bottom: 1px solid #999; }
  #enterprise #enter_f_widget .widget .widget_img,
  #perspective #enter_f_widget .widget .widget_img {
    margin-right: 20px;
    float: none;
    margin: 0 auto; }
  #enter_f_widget2 .float-left {
    float: left;
    width: 100%; }
  .gallery-loader {
    height: auto;
    overflow: hidden; }
  #strategy .widget_img .carousel-caption {
    width: 100%;
    height: auto;
    float: left;
    position: absolute;
    text-align: center;
    margin-top: 75px;
    margin-left: 0px;
    border: 0px solid #000;
    background: none;
    left: 0; }
  #strategy .widget_img .carousel-caption .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .carousel-caption .heading1 span {
    padding-left: 12px;
    padding-right: 12px;
    color: #fff;
    border-right: 0px solid #fff;
    border-left: 0px solid #fff; }
  #strategy
.widget_img
.carousel-caption
.heading1
span
#strategy
.widget_img
.carousel-caption
.heading {
    width: 260px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    color: #fff !important; }
  #strategy .carousel-caption .heading a {
    color: #000; }
  .insight {
    width: 69%;
    min-height: 290px;
    float: right;
    background-color: #00adef;
    padding: 0px 40px;
    margin: 20px 0px; }
  #strategy .widget_img .image {
    width: 100%;
    height: 100%;
    float: left; }
  #strategy .widget_img {
    width: 280px;
    height: 154px;
    float: left; }
  #strategy .widget_img img {
    width: 100%;
    height: 100%; }
  #strategy .widget_img .overlay {
    width: 260px;
    height: 110px;
    float: left;
    position: absolute;
    text-align: center;
    padding-top: 40px 10px 5px;
    /* background: url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay-bg {
    width: 260px;
    height: 110px;
    float: left;
    position: absolute;
    text-align: center;
    padding: 40px 10px 5px;
    /* background: url(../images/trans_bg.png) repeat; */ }
  #strategy .widget_img .overlay .heading1,
  #strategy .widget_img .overlay-bg .heading1 {
    width: 100%;
    float: left;
    min-height: 20px;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
    background: none;
    border-bottom: 0px solid #000;
    padding: 0px 0px 5px; }
  #strategy .widget_img .overlay .heading,
  #strategy .widget_img .overlay-bg .heading {
    width: 260px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 18px;
    font-weight: bold;
    color: #fff !important; }
  #special_edtion {
    width: 100%;
    float: left; }
  #special_edtion .widget_new .widget_new_img {
    float: left;
    height: 133px;
    margin-bottom: 15px;
    margin-right: 20px;
    width: 100px; }
  #special_edtion .widget {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    border-bottom: 1px solid #cecece;
    padding-bottom: 10px; }
  #special_edtion .widget .widget_img {
    width: 146px;
    height: 129px;
    float: none;
    margin: 0 auto; }
  #special_edtion .widget .heading {
    text-align: center; }
  #special_edtion .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important;
    text-align: center; }
  #special_edtion .widget .desc {
    font-size: 19px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 15px; }
  a.showall {
    color: #000;
    font-size: 17px;
    line-height: 21px;
    text-align: left;
    float: right; }
  #feature_edtion {
    width: 100%;
    float: left; }
  #feature_edtion h1 {
    width: 100%;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 30px; }
  #feature_edtion .float-left {
    float: left;
    width: 100%; }
  #feature_edtion .widget {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cecece; }
  #feature_edtion .widget:last-child {
    width: 100%;
    border-bottom: 0px; }
  #feature_edtion .widget .widget_img {
    width: 146px;
    height: 129px;
    float: none;
    margin: 0px auto; }
  #feature_edtion .heading1 {
    margin-bottom: 30px; }
  #feature_edtion .widget .heading {
    text-align: center; }
  #feature_edtion .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000 !important;
    margin-bottom: 10px;
    text-align: center; }
  #feature_edtion .widget .desc {
    font-size: 19px;
    line-height: 21px;
    text-align: left;
    text-align: center; }
  .foot_add {
    display: none; }
  .share_sec {
    width: 100%;
    float: left;
    margin: 0px 0px 15px; }
  #pixtory,
  #voice {
    width: 100%;
    float: left; }
  #pixtory .widget,
  #voice .widget {
    width: 100%;
    float: left;
    margin-bottom: 15px; }
  #pixtory .widget_img,
  #voice .widget_img {
    float: left;
    height: auto;
    margin: 0 0px 10px 0;
    width: 100%; }
  #pixtory .widget_img,
  #voice .widget_img:last-child {
    float: left;
    height: auto;
    margin: 0 0px 10px 0;
    width: 100%; }
  #pixtory .widget .widget_img,
  #voice .widget .widget_img {
    width: 260px;
    height: 203px;
    float: left;
    margin: 0px 0px 10px 0px; }
  #pixtory .widget .widget_img img,
  #voice .widget .widget_img img {
    width: 100%; }
  #pixtory .widget .heading,
  #voice .widget .heading {
    margin-bottom: 15px; }
  #pixtory .widget .heading a,
  #voice .widget .heading a {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important; }
  #pixtory .widget .share_sec,
  #voice .widget .share_sec {
    width: 100%;
    float: left;
    margin: 0px 0px 10px; }
  #pixtory .widget .share_sec .watch,
  #voice .widget .share_sec .watch {
    /* background: url(../images/icon_watch.png) no-repeat center left;  */
    padding-left: 18px;
    font-size: 13px;
    color: #9f9f9f; }
  #perspective {
    width: 260px;
    float: left; }
  #perspective .widget_img {
    width: 100%;
    height: auto;
    float: left; }
  #perspective .share_sec {
    width: 100%;
    float: left;
    margin: 15px 0px; }
  #perspective #right-news {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 25px; }
  #perspective #right-news .widget_main {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; }
  #perspective #right-news .widget_main:last-child {
    border-bottom: 1px solid #eee; }
  #perspective #right-news .widget_main .desc {
    width: 98%;
    float: left;
    margin-left: 10px; }
  #perspective #right-news .widget_main .desc .share_sec {
    margin-bottom: 5px;
    font-size: 12px; }
  #perspective #right-news .widget_main .widget_img {
    width: 60px; }
  #perspective #right-news .widget_main .desc .heading a {
    font-size: 14px; }
  #perspective .row .desc {
    font-size: 16px; }
  #perspective-inner .widget_main .widget_img {
    width: 98%;
    float: left;
    border: 2px solid #e8e8e8;
    padding: 4px; }
  #perspective-inner .widget_main .widget_img img {
    width: 100%; }
  #perspective-inner .widget_main .desc {
    width: 100%;
    float: left;
    margin-left: 0px;
    margin-top: 15px; }
  #perspective-inner .widget_main .desc .share_sec {
    width: 100%;
    float: left;
    padding: 10px 0px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin-top: 10px; }
  #perspective-inner .widget_main .desc .share_sec .float-right {
    width: 100%;
    float: left;
    margin-top: 7px; }
  #voice .quote-txt {
    width: 180px;
    height: 140px;
    float: left;
    margin: 0px 10px 10px 0px;
    background-color: #000;
    color: #fff;
    padding: 50px 40px 40px;
    font-size: 18px;
    line-height: 20px;
    text-indent: -20px;
    text-align: center; }
  #voice .quote-txt:before {
    content: '"';
    font-size: 40px; }
  #voice .quote-txt span {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: italic; }
  #magzine {
    width: 99%;
    float: left;
    background: #fff;
    border: 3px solid #cfcfcf;
    padding: 0px;
    margin: 10px 0px 10px; }
  #magzine a img {
    width: 75px;
    height: 105px;
    margin: 5px 5px 5px; }
  .newsletter {
    width: 89%;
    float: left;
    margin-top: 15px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px; }
  .newsletter .heading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .newsletter p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #fff !important;
    text-transform: uppercase;
    padding-bottom: 0px; }
  .newsletter input {
    width: 210px;
    height: 20px;
    float: left;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 0px;
    margin-left: 0px; }
  .newsletter a {
    padding: 8px 12px;
    margin-top: 10px !important;
    margin-left: 15px !important; }
  .subscribe-box {
    display: none; }
  .digital_edition {
    width: 100%;
    min-height: 300px;
    float: left;
    margin-left: 0; }
  .digital_img {
    width: 100%;
    float: left;
    text-align: center; }
  #tab-pannel {
    width: 100%;
    margin: 0; }
  #tab-pannel ul.tabs li {
    width: 130px; }
  #box_widget {
    width: 275px;
    float: left;
    border: 1px solid #333;
    margin-right: 0px; }
  .deal-street {
    width: 255px;
    float: left;
    margin-left: 0; }
  .deal-street .desc .share_sec {
    width: 100%;
    margin-top: 0px; }
  .deal-street .desc {
    width: 55%;
    float: left; }
  #widget_magzine {
    width: 255px;
    margin-right: 15px; }
  .registration {
    width: 250px;
    float: left;
    padding-right: 0px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc; }
  .login {
    width: 250px;
    float: left;
    padding-left: 10px; }
  .registration h3,
  .login h3 {
    margin-top: 0px;
    margin-bottom: 20px; }
  .registration label,
  .login label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #000;
    margin: 10px 0px; }
  .registration input[type="text"],
  .login input[type="text"] {
    width: 80%;
    float: left; }
  .registration input[type="checkbox"],
  .login input[type="checkbox"] {
    width: auto;
    float: left; }
  .login .b_login {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .registration .b_register {
    width: 50%;
    float: left;
    text-align: center;
    padding: 10px 0px;
    background: #444444;
    color: #fff;
    font-size: 15px;
    border: 0px;
    margin-top: 15px; }
  .loginform {
    width: 260px;
    margin: 0px auto 50px; }
  /* -------------------------- User Admin --------------------------*/
  #useradmin #feature,
  #userprofile #feature {
    width: 80%;
    float: left;
    padding-left: 5px; }
  #useradmin dl {
    width: 100%;
    float: left;
    margin: 5px 0px 10px; }
  #useradmin dl dt {
    width: 100%;
    float: left;
    margin-bottom: 5px; }
  #useradmin dl dd {
    width: 100%;
    float: left; }
  #useradmin dl dd input {
    width: 220px;
    float: left;
    font-size: 14px;
    margin-bottom: 3px; }
  #useradmin dl dd textarea {
    width: 235px;
    height: 70px;
    float: left;
    border: 1px solid #ccc; }
  #userprofile dl {
    width: 100%;
    float: left;
    margin: 10px 0px; }
  #userprofile dl dt {
    width: 100%;
    float: left;
    margin-bottom: 6px; }
  #userprofile dl dd {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333; }
  #userprofile dl dt label {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0px 0px; }
  .b_edit {
    width: auto;
    float: left;
    background-color: #eee;
    color: #333;
    padding: 6px 10px;
    text-align: right;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px; }
  .note {
    width: 88%;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 15px;
    margin-bottom: 18px;
    border: 1px solid rgba(2, 139, 255, 0.2);
    background: rgba(2, 139, 255, 0.15);
    -webkit-border-radius: 3px;
    border-radius: 3px; }
  .sucessful-msg {
    width: 91%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 10px;
    border: 1px solid #19bb03;
    margin-bottom: 20px; }
  .sucessful {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #19bb03;
    padding: 2px 0px; }
  .error {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 0px; }
  /* -------------------------- User Admin --------------------------*/
  #similar .widget {
    float: left;
    margin-bottom: 15px;
    width: 130px;
    margin-right: 5px; }
  #similar .widget:nth-child(2n + 2) {
    margin-right: 0px; }
  #similar .widget .widget_img {
    border: 2px solid #e8e8e8;
    float: left;
    height: auto;
    margin-bottom: 10px;
    padding: 4px;
    width: 120px; }
  .widget_arch .widget_img {
    border: 2px solid #e8e8e8;
    float: left;
    height: 180px;
    margin-bottom: 10px;
    padding: 4px;
    width: 94%; }
  /*.left-section { float: left; width:100%;}*/
  #story-desc .share_sec .writter {
    width: 76%;
    float: left; }
  .right-section {
    float: left;
    width: 100%; }
  .left-section {
    float: left;
    width: 100% !important; }
  .trend-col-1 {
    width: 100% !important;
    padding: 0 !important;
    border-right: 0; }
  .trend-col-2 {
    width: 100% !important;
    padding: 0 !important;
    border-right: 0; }
  ul.trend-messg-box li {
    width: 100% !important; }
  .div_strategy .right-section {
    margin-left: 0 !important; }
  .big-idea-box {
    width: 100%; }
  .fav-box {
    width: 100%;
    padding: 0 !important;
    border-right: 0; }
  .div_most_popular {
    width: 100%; }
  .good-life-box {
    width: 100%;
    padding: 0 !important; }
  ul.thum-messg-box li {
    width: 100% !important; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
  background: #fff url(data:image/gif;base64,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) center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url(data:application/vnd.ms-fontobject;base64,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);
  src: url(data:application/vnd.ms-fontobject;base64,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?#iefix) format("embedded-opentype"), url(data:font/woff;base64,d09GRk9UVE8AAAVkAAsAAAAAB1wAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAi4AAAKbH/pWDkZGVE0AAAM4AAAAGgAAABxt0civR0RFRgAAA1QAAAAcAAAAIAAyAARPUy8yAAADcAAAAFIAAABgUBj/rmNtYXAAAAPEAAAAUAAAAWIiC0SwaGVhZAAABBQAAAAuAAAANgABMftoaGVhAAAERAAAABwAAAAkA+UCA2htdHgAAARgAAAADgAAAA4ESgBKbWF4cAAABHAAAAAGAAAABgAFUABuYW1lAAAEeAAAANwAAAFuBSeBwnBvc3QAAAVUAAAAEAAAACAAAwABeJw9ks9vEkEUx2cpWyeUoFYgNkHi2Wt7N3rVm3cTs3UVLC4LxIWEQvi1P3i7O1tYLJDAmlgKGEhQrsajf0j7J3jYTXrQWUrMJG+++b55n5e8NwwKBhHDMLv5kxT3ATEBxKBn3qOAl9zxHgb1MAPhHQgHkyF08Gr/L8B/Eb6zWnmCJ7AJVLubQOheArXvJ1A4EXi6j4I+Zg9F0QFKvsnlBCmXeve+sFEnb/nCptdtQ4QYhVFRAT1HrF8UQK/RL/SbmUbclsvGVFXRZKDHUE38cc4qpkbAAsuwiImvro+ufcfaOIQ6szlrmjRJDaKZKnbjN3GWKIbiIzRFUfCffuxxKOL+3LDlDVvx2TdxN84qZEsnhNBa6pgm2dAsnzbLsETdsmRFxUeHV4e+I2/ptN8TyqV8T3Dt29t7EYOuajVIw2y1Wy3M86w0zg/Fz2IvawmQAUHOVrPVfLkoScVynsqsTG0MGUs4z55nh3mnOJa+li+rl9WpPIcFfDubDeaDC+fLBdYN3QADzLauGfj4B6sZmq6CCpqmtSvF0qlUl2qf5AJIUCSlTqlb7lUG+LRfGzZGzZEyBgccMu6MuqPecNDvD4Y9Kjtj4gD+DsvKVMTcMdtqtZtmkzQstQvYje7Syep0PDSAhSOeHYXYWThEF//A/0YvYV1fSQtpKU5STtrhbQ444OtpKSWJIg3pOg8cBs7maTY1EZf07aq+hjWs7IWzdCYTGhb2CtZ47x+Uhx28AAB4nGNgYGBkAIJz765vANHnCyvqYTQAWnkHswAAeJxjYGRgYOADYgkGEGBiYARCFjAG8RgABHYAN3icY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwcjKAQQMDAyOQUmCAgoA01xQGB4ZExUmMD/4/YNBjvP3/NgNEDQPjbbBKBQZGADfLDgsAAHicY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQzMCQqKClOUJz0/z9YHRLv/+L7D+8V3cuHmgAHjGwM6ELUByxUMIOZCmbgAAA5LQ8XeJxjYGRgYABiO68w73h+m68M3EwMIHC+sKIeTqsyqDLeZrwN5HIwgKUB/aYJUgAAeJxjYGRgYLzNwMCgx8QAAkA2IwMqYAIAMGIB7QIAAAACAAAlACUAJQAlAAAAAFAAAAUAAHicbY49asNAEIU/2ZJDfkiRIvXapUFCEqpcptABUrg3ZhEiQoKVfY9UqVLlGDlADpAT5e16IUWysMz3hjfzBrjjjQT/EjKpCy+4YhN5yZoxcirPe+SMWz4jr6S+5UzSa3VuwpTnBfc8RF7yxDZyKs9r5IxHPiKv1P9iZqDnyAvMQ39UecbScVb/gJO03Xk4CFom3XYK1clhMdQUlKo7/d9NF13RkIdfy+MV7TSe2sl11tRFaXYmJKpWTd7kdVnJ8veevZKc+n3I93t9Jnvr5n4aTVWU/0z9AI2qMkV4nGNgZkAGjAxoAAAAjgAF) format("woff"), url(data:font/ttf;base64,AAEAAAANAIAAAwBQRkZUTW3RyK8AAAdIAAAAHEdERUYANAAGAAAHKAAAACBPUy8yT/b9sgAAAVgAAABWY21hcCIPRb0AAAHIAAABYmdhc3D//wADAAAHIAAAAAhnbHlmP5u2YAAAAzwAAAIsaGVhZAABMfsAAADcAAAANmhoZWED5QIFAAABFAAAACRobXR4BkoASgAAAbAAAAAWbG9jYQD2AaIAAAMsAAAAEG1heHAASwBHAAABOAAAACBuYW1lBSeBwgAABWgAAAFucG9zdC+zMgMAAAbYAAAARQABAAAAAQAA8MQQT18PPPUACwIAAAAAAM9xeH8AAAAAz3F4fwAlACUB2wHbAAAACAACAAAAAAAAAAEAAAHbAAAALgIAAAAAAAHbAAEAAAAAAAAAAAAAAAAAAAAEAAEAAAAHAEQAAgAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQkAAAAAAACAAAABAAAAIAAAAAAAAAAAUGZFZABAAGEhkgHg/+AALgHb/9sAAAABAAAAAAAAAgAAAAAAAAACAAAAAgAAJQAlACUAJQAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAEAAAAYSAiIZAhkv//AAAAAABhICIhkCGS//8AAP+l3+PedN5xAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGAIwAsAEWAAIAJQAlAdsB2wAYACwAAD8BNjQvASYjIg8BBhUUHwEHBhUUHwEWMzI2FAcGBwYiJyYnJjQ3Njc2MhcWF/GCBgaCBQcIBR0GBldXBgYdBQgH7x0eMjB8MDIeHR0eMjB8MDIecYIGDgaCBQUeBQcJBFhYBAkHBR4F0nwwMh4dHR4yMHwwMh4dHR4yAAAAAgAlACUB2wHbABgALAAAJTc2NTQvATc2NTQvASYjIg8BBhQfARYzMjYUBwYHBiInJicmNDc2NzYyFxYXASgdBgZXVwYGHQUIBwWCBgaCBQcIuB0eMjB8MDIeHR0eMjB8MDIecR4FBwkEWFgECQcFHgUFggYOBoIF0nwwMh4dHR4yMHwwMh4dHR4yAAABACUAJQHbAdsAEwAAABQHBgcGIicmJyY0NzY3NjIXFhcB2x0eMjB8MDIeHR0eMjB8MDIeAT58MDIeHR0eMjB8MDIeHR0eMgABACUAJQHbAdsAQwAAARUUBisBIicmPwEmIyIHBgcGBwYUFxYXFhcWMzI3Njc2MzIfARYVFAcGBwYjIicmJyYnJjQ3Njc2NzYzMhcWFzc2FxYB2woIgAsGBQkoKjodHBwSFAwLCwwUEhwcHSIeIBMGAQQDJwMCISspNC8mLBobFBERFBsaLCYvKicpHSUIDAsBt4AICgsLCScnCwwUEhwcOhwcEhQMCw8OHAMDJwMDAgQnFBQRFBsaLCZeJiwaGxQRDxEcJQgEBgAAAAAAAAwAlgABAAAAAAABAAUADAABAAAAAAACAAcAIgABAAAAAAADACEAbgABAAAAAAAEAAUAnAABAAAAAAAFAAsAugABAAAAAAAGAAUA0gADAAEECQABAAoAAAADAAEECQACAA4AEgADAAEECQADAEIAKgADAAEECQAEAAoAkAADAAEECQAFABYAogADAAEECQAGAAoAxgBzAGwAaQBjAGsAAHNsaWNrAABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAHMAbABpAGMAawAgADoAIAAxADQALQA0AC0AMgAwADEANAAARm9udEZvcmdlIDIuMCA6IHNsaWNrIDogMTQtNC0yMDE0AABzAGwAaQBjAGsAAHNsaWNrAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABzAGwAaQBjAGsAAHNsaWNrAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAEAAgECAQMAhwBECmFycm93cmlnaHQJYXJyb3dsZWZ0AAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAGAAEABAAAAAIAAAAAAAEAAAAAzu7XsAAAAADPcXh/AAAAAM9xeH8=) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSAiZGF0YTppbWFnZS9zdmcreG1sO2Jhc2U2NCxQRDk0Yld3Z2RtVnljMmx2YmowaU1TNHdJaUJ6ZEdGdVpHRnNiMjVsUFNKdWJ5SS9QZ284SVVSUFExUlpVRVVnYzNabklGQlZRa3hKUXlBaUxTOHZWek5ETHk5RVZFUWdVMVpISURFdU1TOHZSVTRpSUNKb2RIUndPaTh2ZDNkM0xuY3pMbTl5Wnk5SGNtRndhR2xqY3k5VFZrY3ZNUzR4TDBSVVJDOXpkbWN4TVM1a2RHUWlQZ284YzNabklIaHRiRzV6UFNKb2RIUndPaTh2ZDNkM0xuY3pMbTl5Wnk4eU1EQXdMM04yWnlJK0NqeHRaWFJoWkdGMFlUNUhaVzVsY21GMFpXUWdZbmtnUm05dWRHRnpkR2xqTG0xbFBDOXRaWFJoWkdGMFlUNEtQR1JsWm5NK0NqeG1iMjUwSUdsa1BTSnpiR2xqYXlJZ2FHOXlhWG90WVdSMkxYZzlJalV4TWlJK0NqeG1iMjUwTFdaaFkyVWdabTl1ZEMxbVlXMXBiSGs5SW5Oc2FXTnJJaUIxYm1sMGN5MXdaWEl0WlcwOUlqVXhNaUlnWVhOalpXNTBQU0kwT0RBaUlHUmxjMk5sYm5ROUlpMHpNaUl2UGdvOGJXbHpjMmx1WnkxbmJIbHdhQ0JvYjNKcGVpMWhaSFl0ZUQwaU5URXlJaUF2UGdvS1BHZHNlWEJvSUhWdWFXTnZaR1U5SWlZak9EVTVORHNpSUdROUlrMHlOREVnTVRFemJERXpNQ0F4TXpCak5DQTBJRFlnT0NBMklERXpJREFnTlMweUlEa3ROaUF4TTJ3dE1UTXdJREV6TUdNdE15QXpMVGNnTlMweE1pQTFMVFVnTUMweE1DMHlMVEV6TFRWc0xUSTVMVE13WXkwMExUTXROaTAzTFRZdE1USWdNQzAxSURJdE1UQWdOaTB4TTJ3NE55MDRPQzA0TnkwNE9HTXROQzB6TFRZdE9DMDJMVEV6SURBdE5TQXlMVGtnTmkweE1td3lPUzB6TUdNekxUTWdPQzAxSURFekxUVWdOU0F3SURrZ01pQXhNaUExZWlCdE1qTTBJREUwTTJNd0xUUXdMVGt0TnpjdE1qa3RNVEV3TFRJd0xUTTBMVFEyTFRZd0xUZ3dMVGd3TFRNekxUSXdMVGN3TFRJNUxURXhNQzB5T1MwME1DQXdMVGMzSURrdE1URXdJREk1TFRNMElESXdMVFl3SURRMkxUZ3dJRGd3TFRJd0lETXpMVEk1SURjd0xUSTVJREV4TUNBd0lEUXdJRGtnTnpjZ01qa2dNVEV3SURJd0lETTBJRFEySURZd0lEZ3dJRGd3SURNeklESXdJRGN3SURJNUlERXhNQ0F5T1NBME1DQXdJRGMzTFRrZ01URXdMVEk1SURNMExUSXdJRFl3TFRRMklEZ3dMVGd3SURJd0xUTXpJREk1TFRjd0lESTVMVEV4TUhvaUx6NEtQR2RzZVhCb0lIVnVhV052WkdVOUlpWWpPRFU1TWpzaUlHUTlJazB5T1RZZ01URXpiREk1SURNd1l6UWdNeUEySURjZ05pQXhNaUF3SURVdE1pQXhNQzAySURFemJDMDROeUE0T0NBNE55QTRPR00wSURNZ05pQTRJRFlnTVRNZ01DQTFMVElnT1MwMklERXliQzB5T1NBek1HTXRNeUF6TFRnZ05TMHhNeUExTFRVZ01DMDVMVEl0TVRJdE5Xd3RNVE13TFRFek1HTXROQzAwTFRZdE9DMDJMVEV6SURBdE5TQXlMVGtnTmkweE0yd3hNekF0TVRNd1l6TXRNeUEzTFRVZ01USXROU0ExSURBZ01UQWdNaUF4TXlBMWVpQnRNVGM1SURFME0yTXdMVFF3TFRrdE56Y3RNamt0TVRFd0xUSXdMVE0wTFRRMkxUWXdMVGd3TFRnd0xUTXpMVEl3TFRjd0xUSTVMVEV4TUMweU9TMDBNQ0F3TFRjM0lEa3RNVEV3SURJNUxUTTBJREl3TFRZd0lEUTJMVGd3SURnd0xUSXdJRE16TFRJNUlEY3dMVEk1SURFeE1DQXdJRFF3SURrZ056Y2dNamtnTVRFd0lESXdJRE0wSURRMklEWXdJRGd3SURnd0lETXpJREl3SURjd0lESTVJREV4TUNBeU9TQTBNQ0F3SURjM0xUa2dNVEV3TFRJNUlETTBMVEl3SURZd0xUUTJJRGd3TFRnd0lESXdMVE16SURJNUxUY3dJREk1TFRFeE1Ib2lMejRLUEdkc2VYQm9JSFZ1YVdOdlpHVTlJaVlqT0RJeU5qc2lJR1E5SWswME56VWdNalUyWXpBdE5EQXRPUzAzTnkweU9TMHhNVEF0TWpBdE16UXRORFl0TmpBdE9EQXRPREF0TXpNdE1qQXROekF0TWprdE1URXdMVEk1TFRRd0lEQXROemNnT1MweE1UQWdNamt0TXpRZ01qQXROakFnTkRZdE9EQWdPREF0TWpBZ016TXRNamtnTnpBdE1qa2dNVEV3SURBZ05EQWdPU0EzTnlBeU9TQXhNVEFnTWpBZ016UWdORFlnTmpBZ09EQWdPREFnTXpNZ01qQWdOekFnTWprZ01URXdJREk1SURRd0lEQWdOemN0T1NBeE1UQXRNamtnTXpRdE1qQWdOakF0TkRZZ09EQXRPREFnTWpBdE16TWdNamt0TnpBZ01qa3RNVEV3ZWlJdlBnbzhaMng1Y0dnZ2RXNXBZMjlrWlQwaUppTTVOenNpSUdROUlrMDBOelVnTkRNNWJEQXRNVEk0WXpBdE5TMHhMVGt0TlMweE15MDBMVFF0T0MwMUxURXpMVFZzTFRFeU9DQXdZeTA0SURBdE1UTWdNeTB4TnlBeE1TMHpJRGN0TWlBeE5DQTBJREl3YkRRd0lETTVZeTB5T0NBeU5pMDJNaUF6T1MweE1EQWdNemt0TWpBZ01DMHpPUzAwTFRVM0xURXhMVEU0TFRndE16TXRNVGd0TkRZdE16SXRNVFF0TVRNdE1qUXRNamd0TXpJdE5EWXROeTB4T0MweE1TMHpOeTB4TVMwMU55QXdMVEl3SURRdE16a2dNVEV0TlRjZ09DMHhPQ0F4T0Mwek15QXpNaTAwTmlBeE15MHhOQ0F5T0MweU5DQTBOaTB6TWlBeE9DMDNJRE0zTFRFeElEVTNMVEV4SURJeklEQWdORFFnTlNBMk5DQXhOU0F5TUNBNUlETTRJREl6SURVeElEUXlJRElnTVNBMElETWdOeUF6SURNZ01DQTFMVEVnTnkwemJETTVMVE01WXpJdE1pQXpMVE1nTXkwMklEQXRNaTB4TFRRdE1pMDJMVEl4TFRJMUxUUTJMVFExTFRjMkxUVTVMVEk1TFRFMExUWXdMVEl3TFRrekxUSXdMVE13SURBdE5UZ2dOUzA0TlNBeE55MHlOeUF4TWkwMU1TQXlOeTAzTUNBME55MHlNQ0F4T1Mwek5TQTBNeTAwTnlBM01DMHhNaUF5TnkweE55QTFOUzB4TnlBNE5TQXdJRE13SURVZ05UZ2dNVGNnT0RVZ01USWdNamNnTWpjZ05URWdORGNnTnpBZ01Ua2dNakFnTkRNZ016VWdOekFnTkRjZ01qY2dNVElnTlRVZ01UY2dPRFVnTVRjZ01qZ2dNQ0ExTlMwMUlEZ3hMVEUxSURJMkxURXhJRFV3TFRJMklEY3dMVFExYkRNM0lETTNZellnTmlBeE1pQTNJREl3SURRZ09DMDBJREV4TFRrZ01URXRNVGQ2SWk4K0Nqd3ZabTl1ZEQ0OEwyUmxabk0rUEM5emRtYytDZz09Ig==#slick) format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

