@font-face {
  font-family: PalatinoLinotype;
  src: url('fonts/Palatino Linotype.ttf');
}





input, textarea {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
input::-ms-clear, textarea::-ms-clear {
  display: none;
}
/* h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
     font-family: PalatinoLinotype!important;
}
 */
/* -------------------------------- 

Main components 

-------------------------------- */
/*
.quick-link {
  position: relative;
  height: 50px;
  background: #343642;
}
*/
.quick-link #cd-logo {
  float: left;
  margin: 4px 0 0 5%;
  /* reduce logo size on mobile and make sure it is left aligned with the transform-origin property */
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.quick-link #cd-logo img {
  display: block;
}
.quick-link::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
@media only screen and (min-width: 768px) {
/*
  .quick-link {
    height: 80px;
  }
*/
  .quick-link #cd-logo {
    margin: 20px 0 0 5%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.main-nav {
  float: right;
  width: 44px;
  height: 100%;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-menu.svg") no-repeat center center;
  cursor: pointer;
}
.main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #292a34;
  border-top: 1px solid #3b3d4b;
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  .main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 45px;
  }
  .main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .main-nav li {
    display: inline-block;
  }
  .main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
  }
  .main-nav a.cd-signin, .main-nav a.cd-signup {
  padding: 5px 16px;
  background: #f0c219;
  border: 1px solid rgb(240, 194, 25);
/*  border-radius: 50px;*/
  }
  .main-nav a.cd-signup {
    background: #000f80;
  border: 1px solid #000f80;
  }
}

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

xsigin/signup popup 

-------------------------------- */
.cd-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 54, 66, 0.9);
  z-index: 999;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
  -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
  transition: opacity 0.3s 0, visibility 0 0.3s;
}
.cd-user-modal.is-visible {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0, visibility 0 0;
  -moz-transition: opacity 0.3s 0, visibility 0 0;
  transition: opacity 0.3s 0, visibility 0 0;
}
.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}

.cd-user-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #FFF;
  margin: 3em auto 4em;
  cursor: auto;
  border-radius: 0.25em;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-user-modal-container .cd-switcher::after {
  clear: both;
  content: "";
  display: table;
}
.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
}
.cd-user-modal-container .cd-switcher li:first-child a {
  border-radius: .25em 0 0 0;
}
.cd-user-modal-container .cd-switcher li:last-child a {
  border-radius: 0 .25em 0 0;
}
.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #d2d8d8;
  color: #809191;
}
.cd-user-modal-container .cd-switcher a.selected {
  background: #FFF;
  color: #505260;
}
@media only screen and (min-width: 600px) {
  .cd-user-modal-container {
    margin: 4em auto;
  }
  .cd-user-modal-container .cd-switcher a {
    height: 70px;
    line-height: 70px;
  }
}

.cd-form {
  padding: 1.4em;
}
.cd-form .fieldset {
  position: relative;
  margin: 1.4em 0;
}
.cd-form .fieldset:first-child {
  margin-top: 0;
}
.cd-form .fieldset:last-child {
  margin-bottom: 0;
}
.cd-form label {
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.cd-form label.cd-username {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-username.svg");
}
.cd-form label.cd-email {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-email.svg");
}
.cd-form label.cd-password {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-password.svg");
}
.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}
.cd-form input.full-width {
  width: 100%;
}
.cd-form input.has-padding {
  padding: 12px 20px 12px 50px;
}
.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}
.cd-form input.has-error {
  border: 1px solid #d76666;
}
.cd-form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}
.cd-form input[type=submit] {
  padding: 16px 0;
  cursor: pointer;
  background: #2f889a;
  color: #FFF;
  font-weight: bold;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type=submit]:hover, .no-touch .cd-form input[type=submit]:focus {
  background: #3599ae;
  outline: none;
}
.cd-form .hide-password {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  color: #343642;
}
.cd-form .cd-error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: .8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
  -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}
.cd-form .cd-error-message::after {
  /* triangle */
  content: '';
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.cd-form .cd-error-message.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}
@media only screen and (min-width: 600px) {
  .cd-form {
    padding: 2em;
  }
  .cd-form .fieldset {
    margin: 2em 0;
  }
  .cd-form .fieldset:first-child {
    margin-top: 0;
  }
  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }
  .cd-form input.has-padding {
    padding: 16px 20px 16px 50px;
  }
  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .cd-form-message {
    padding: 2em 2em 0;
  }
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  text-decoration: none;
/*  bottom: -30px;*/
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form-bottom-message a {
  color: #FFF;
  text-decoration: underline;
}

.cd-close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*
@media only screen and (min-width: 1170px) {
  .cd-close-form {
    display: none;
  }
}
*/

#cd-login, #cd-signup, #cd-reset-password {
  display: none;
}

#cd-login.is-selected, #cd-signup.is-selected, #cd-reset-password.is-selected {
  display: block;
}
.header-strip{
  background-color: rgb(249, 249, 249);
}

.header-area .top-header-area, .header-area .top-header-area .top-header-content {    background-color: #FFF !important;}
        
        div.logo a img
    
    {max-height: 80px !important; }
        
        div.section-heading {margin-bottom: 30px;}
        
        div.post-thumb a img {
            max-width: 100%;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            -webkit-transform: perspective(500px);
                    transform: perspective(500px);
        }
        
        .single-blog-post:after{
            content: "";
            width: 1px;
            height: 100%;
            background: #f1f1f1;
            position: absolute;
            right: -15px;
            top: 0;
                      /* -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
          -webkit-transform: perspective(900px);
                  transform: perspective(900px); */
        }
        /* .single-blog-post.style-3:hover {
    ms-transform: scale(1.04);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
} */
        
        
        
        .footer-area {
 
    background-color: #232323;font-family: 'Montserrat', sans-serif !important;
}
header.header-area .newspaper-main-menu .classy-navbar .classynav > ul > li > a:hover, .header-area .newspaper-main-menu .classy-navbar .classynav > ul > li > a:focus{
  color: #f0c219;
}
body{
     background: #fff;
    font-family: 'Montserrat', sans-serif !important;

}
.hero-area .breaking-news-area .news-title, .section-heading h6{
    background-color: #022CA3 !important;
}
.popular-news-area{
      padding-bottom: 100px;     background: #fff;
}
.newspaper-btn, {
    width: auto!important;
    border-radius: 50px;
    padding: 10px 20px;
    line-height: 20px;
    height: auto;
}
.newspaper-btn.active, .newspaper-btn:hover, .newspaper-btn:focus {
    font-size: 14px;
}
.header-area .sticky-wrapper.is-sticky .newspaper-main-menu .classy-navbar .classynav > ul > li.active > a::before{
    background-color: #f0c219;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: -20%;
    top: auto;
}
div.newsletter-widget{
    padding: 25px 25px 30px;
    background-color: #164990;
}
div.newsletter-widget h4 {
    color: #ffffff;
    font-size: 20px;
    text-align: left;
    margin-bottom: 25px;
}
div.newsletter-widget form input{
    background: #FFF;
    color: #545454;
    padding: 10px;
    font-size: 16px;
    border-radius: 0;
}
.breakpoint-off .classynav ul li .megamenu{
    background-color: #f9f9f9;
}
.popular-news-widget .single-popular-post h6 span {
    margin-right: 15px;
    color: #114b90;
}
.input-group-addon {
    padding: 15px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    min-width: 40px;
    color: #164990;
    text-align: center;
    background-color: #eee;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
div.popular-news-widget .single-popular-post h6{
    font-weight: 600;
    line-height: 20px;
}
.single-blog-post:hover, .single-blog-post:active, .single-blog-post:focus{
    background: rgb(255, 255, 255);
    margin: -10px;
    z-index: 9;
    padding: 10px;
}
.single-blog-post:hover .post-thumb, .single-blog-post:hover .post-data a, .single-blog-post:focus .post-thumb, .single-blog-post:hover .post-data a, .single-blog-post:active .post-thumb, .single-blog-post:hover .post-data a{
    display: block;

  /* box-shadow: 0 20px 70px -10px rgba(0, 0, 0, 0.7), 0 50px 100px 0 rgba(0, 0, 0, 0.2); */
}



.c-logo {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
          -webkit-transform: perspective(900px);
                  transform: perspective(900px);
                }
.single-blog-post:hover .post-thumb, .single-blog-post:focus .post-thumb, .single-blog-post:active .post-thumb{
  -webkit-transform: translateZ(50px) scale(1);
          transform: translateZ(50px) scale(1);
}
.single-blog-post:hover .post-data, .single-blog-post:focus .post-data, .single-blog-post:active .post-data{
  -webkit-transform: translateZ(50px) scale(1);
          transform: translateZ(50px) scale(1);
}
.single-blog-post:hover .post-data a, .single-blog-post:focus .post-thumb, .single-blog-post:hover .post-data a, .single-blog-post:hover .post-data a {
  -webkit-transform: translateZ(-100px);
          transform: translateZ(-100px);
}
.single-blog-post:hover:after{
  display: none;
}
.single-popular-post:after{
    content: "";
    width: 90%;
    height: 2px;
    background-color: #d8d8d8;
    position: absolute;
    left: 20%;
    transform: translateX(-20%);
    bottom: -15px;
}
.single-popular-post:last-child:after{
  display: none;
}
.single-blog-post .post-meta{
    background: #676767;
    padding: 10px;
    color: #FFF;
}


.single-blog-post .post-data .post-meta a.post-like{
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    
}

f
.single-blog-post .post-meta a{
  color: #FFF;
}
.single-blog-post .post-meta a img{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.blog-sidebar-area .post-thumb a img{
  width: auto;
  height: auto;
}
.blog-sidebar-area .single-blog-post .post-meta{
  background: none;
  padding: 0;
}
.latest-posts-widget .single-blog-post{
  padding: 10px;
}
.latest-posts-widget .single-blog-post:after{
  display: none;
  }
.latest-posts-widget .single-blog-post:hover, .latest-posts-widget .single-blog-post:active, .latest-posts-widget .single-blog-post:focus{
    border-bottom: 1px solid #d0d5d8;
    margin: auto;
    padding: 20px 0;
  }
.latest-posts-widget .single-blog-post.small-featured-post:last-child, .latest-posts-widget .single-blog-post.small-featured-post:first-child  {
    padding: 10px;
    border-bottom: 1px solid #d0d5d8;
}
.newspaper-post-like{
    background: #164990;
    color: #FFF;
    padding: 10px;
}
.newspaper-post-like .newspaper-tags{
    padding: 0;
}
.newspaper-post-like .newspaper-tags a, .newspaper-post-like .newspaper-tags span{
  color: #FFF;
}
.single-blog-post.featured-post{
  background: transparent;
}
/* .hero-area .breaking-news-area .ticker ul li a{
    opacity: 1;
    transform: rotateX(0deg);
    animation: cd-rotate-1-in 1.2s;
} */

.cd-intro {
  width: 90%;
  max-width: 768px;
  text-align: left;
  padding: 0 15px;
}

.cd-intro {
  margin: 4em auto;
}
@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 5em auto;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
}

.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 4.5rem;
    line-height: 19px;
    margin: 0;
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: -10px;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

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

xrotate-1 

-------------------------------- */
.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
    width: 100%!important;
    height: 100%!important;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}
/* --------------------------------*/
.cd-intro .cd-headline b a{
  color: #FFF;
  letter-spacing: 1px;
} 
.ppp-logo{
  float: right;
}
.header-area .top-header-area .login-search-area .search-form form input.form-control {
    border: 1px solid #164990;
}
.header-area .top-header-area .login-search-area .search-form form button i{
    color: #164990;
}
.post-content .widget-title{
    padding: 5px 0;
    color: #ffffff;
    padding: 5px 10px;
    position: relative;
    font-weight: 500;
    font-size: 19px;
    border-bottom: 1px solid #ececec;
}
.post-content .widget-title:before{
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  background: #164990;
  left: 0;
  top: 0;
  z-index: -1;
}
.post-content .widget-title:after {
    content: '';
    width: 0;
    height: 0;
    right: 96px;
    z-index: -2;
    top: 0px;
    position: absolute;
    border-style: solid;
    border-width: 34px 0 0 50px;
    border-color: transparent transparent transparent #164990;
}
.post-content .siteorigin-widget-tinymce ul{
  margin: 15px 0;
}
.post-content .siteorigin-widget-tinymce ul li:before {
    content: " ";
    position: absolute;
    top: 2px;
    left: 8px;
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 1em;
    width: 0.5em;
    border-bottom: 0.2em solid #f0c219;
    border-right: 0.2em solid #f0c219;
}
.post-content .siteorigin-widget-tinymce ul li{
    position: relative;
    font-size: 13px;
    padding-left: 40px;
    color: #7d7b7b;
    line-height: normal;
    margin-bottom: 5px
}
.post-content .siteorigin-widget-tinymce ul li a{
    color: #164990;
}
.post-like--comments a:first-child{
    margin-right: 15px;
    line-height: 20px;
}
.post-like--comments a{
    color: #FFF;
}
.post-like--comments a img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
header.header-area .top-header-area, header.header-area .top-header-area .top-header-content{
  background-color: #FFF !important;
}
.footer-top-panel{
    display: inline-block;
    width: 100%;
    background: #f0c219;
    padding: 3rem 0;
    color: #FFF;
    margin-top: 40px;
}
.post-title h3{
    font-weight: 300;
    text-transform: uppercase;
}
div.single-blog-post.style-3:hover .post-data, div.single-blog-post.style-3:focus .post-data, div.single-blog-post.style-3:active .post-data
{
  -webkit-transform: translateZ(50px) scale(1);
  transform: translateZ(50px) scale(1);
}
.footer-top-panel .media-content{
  list-style: none;
}
.footer-top-panel .media-content i{
    font-size: 35px;
    margin-right: 15px;
}
.footer-top-panel .media-content .media-body{
  text-align: center;
}
.footer-top-panel .media-content .media-body a{
  color: #152535;
  font-weight: 600;
  font-size: 17px;
}
.blog-area{
  padding-top: 30px
}
.footer-top-panel .media-content .icon-panel{
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.quick-social{
      display: inline-block;
    float: left;
}
.quick-social ul li{
    padding: 4px 10px;
    background: #f0c219;
    color: #FFF;
    min-width: 34px;
    text-align: center;
    margin: 6px 0;
    margin-right: 0px!important;

}
.quick-social ul li a{
    color: #FFF;
    font-size: 16px;
    vertical-align: bottom;
    line-height: 25px;
  }
  .post-content #pl-12 .so-panel{
        margin-bottom: 0 !important;
  }
  .post-content .panel-widget-style{
    padding-top: 50px!important;
  }
  .blog-posts-area .single-blog-post .post-meta{
    background: transparent;
    padding: 0;
  }
  .blog-posts-area .single-blog-post .post-meta a img {
    -webkit-filter: none;
    filter: none;
  }
  .blog-posts-area .single-blog-post .post-meta a {
    color: #164990;
  }
  .blog-posts-area .single-blog-post.featured-post .post-data .post-excerp{
      margin-bottom: 20px;
  }
  .mobile-logo{
    display: none;
  }
  div.ipgs-theme-default div.ipgs-stage {
    background-color: #ffffff!important;
    z-index: 1;
    box-shadow: none;
    position: relative;
  }
  body.page-template-flip-book.page-template-flip-book-php{
    background-color: #f0c219!important;
  }
  div.ipgs-theme-default div.ipgs-stage::before, body.page-template-flip-book::before{
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url('https://www.machfinance.com/projects/icc-economique/wp-content/uploads/2019/09/pdf-back.png');
    opacity: 0.19;
    z-index: -1;
  }
  .page-template-flip-book .page-title h2{
    color: #f0c219;
  }
  #flipbook.ipgs-theme-default.ipgs-ready .ipgs-toolbar{
      left: 0;
      top: 50%;
      width: auto;
      display: inline-block;
      background: #022CA3 !important;
      height: 50%;
      -webkit-transform: translateX(0) translateY(-50%);
      -0-transform: translateX(0) translateY(-50%);
      -ms-transform: translateX(0) translateY(-50%);
      -moz-transform: translateX(0) translateY(-50%);
      transform: translateX(0) translateY(-50%);
  }
  #flipbook.ipgs-theme-default .ipgs-control-share{
    text-align: center;
    width: 100%;
  }
  #flipbook.ipgs-theme-default .ipgs-control i{
      width: 100%;
      height: 20px;
      margin: 12px 0;
      -webkit-filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(100deg) brightness(200%) contrast(100%);
    -moz-filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(100deg) brightness(200%) contrast(100%);
    -o-filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(100deg) brightness(200%) contrast(100%);
    -ms-filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(100deg) brightness(200%) contrast(100%);
    filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(100deg) brightness(200%) contrast(100%);
  }
  #flipbook.ipgs-theme-default .ipgs-prev-page{
      left: 80px;
  }
  #flipbook.ipgs-theme-default .ipgs-control-pagenumber .ipgs-pagenumber-label{
      color: #FFF;
  }
  #flipbook.ipgs-theme-default .ipgs-share-control-share i{

  }





  @media only screen and (max-width: 1199px){
    header.header-area .newspaper-main-menu .classy-navbar .classynav > ul > li > a {
      padding: 12px 8px 11px;
    }
    .footer-area .footer-widget-area .widget-title{
      font-size: 18px;
      margin-bottom: 20px;
    }
  }
  @media only screen and (max-width: 1169px){
    .cd-intro {
        margin: 0 auto;
        width: 100%;
    }
    .cd-headline {
        font-size: 25px;
        font-weight: 300;
        line-height: 35px;
        margin: 0;
      }
    .cd-words-wrapper b{
      top: 0;
    }
  }
  @media only screen and (max-width: 991px){
    div.single-blog-post.style-3 .post-data .post-title h6 {
       font-size: 15px
    }
    .newspaper-btn{
      margin-bottom: 30px;
    }
    div.hero-area .breaking-news-area .news-title{
      padding: 0 10px;
      min-width: 120px;
    }
    .cd-intro .cd-headline b a{
      font-size: 11px;
    }
    header.header-area .top-header-area .top-header-content .logo a{
      display: block;
    }
    .logo a img:first-child{
      display: none;
    }
    .logo a img:last-child{
      display: block;
    }
    header.header-area .top-header-area {
        height: auto;
        padding: 15px 0;
    }
    .header-area .newspaper-main-menu .classy-navbar .classynav > ul > li > a{
        color: #232323;
    }
    /* .ipgs-toolbar .ipgs-control-sound, .ipgs-toolbar .ipgs-control-thumbnails, .ipgs-toolbar .ipgs-control-gotofirst, .ipgs-toolbar .ipgs-control-gotofirst, .ipgs-toolbar .ipgs-control-prev, .ipgs-toolbar .ipgs-control-prev, .ipgs-toolbar .ipgs-control-pagenumber, .ipgs-toolbar .ipgs-control-next, .ipgs-toolbar .ipgs-control-gotolast, .ipgs-toolbar .ipgs-control-zoom-in, .ipgs-toolbar .ipgs-control-zoom-out, .ipgs-toolbar .ipgs-control-optional, .ipgs-toolbar .ipgs-control-download, .ipgs-toolbar .ipgs-control-fullscreen{
        display: none;
    } */
    .ipgs-toolbar .ipgs-control{
      display: none;
    }
    .ipgs-toolbar .ipgs-control:first-child{
      display: block;
    }
    .ipgs-toolbar .ipgs-control:nth-child(3){
      display: block;
    }
    #flipbook.ipgs-theme-default.ipgs-ready .ipgs-toolbar{
      height: 15%;
      width: 7%;
      left: auto;
      top: 10%;
      right: 0;
      -webkit-transform: translateX(0) translateY(-10%);
      -0-transform: translateX(0) translateY(-10%);
      -ms-transform: translateX(0) translateY(-10%);
      -moz-transform: translateX(0) translateY(-10%);
      transform: translateX(0) translateY(-10%);
    }
    #flipbook.ipgs-theme-default .ipgs-prev-page {
        left: 10px;
    }
  }

.popular-news-widget li a {font-weight: 500 !important; font-size: 15px;}

.popular-news-widget li a:hover, .popular-news-widget li:hover {text-decoration: overline;font-weight: 600 !important;}



.sideb-img img {max-height: 50px;}




.ipgs-theme-default .ipgs-outline .ipgs-bookmark:before {    
    font-family: 'FontAwesome';
    content: '\f0a9';   
    margin:0 5px 0 -15px;
    position: relative;
top: 20px;
    
    
}
.ipgs-theme-default .ipgs-outline .ipgs-bookmark {font-size: 0.8rem !important;padding-left: 5px;}

.ipgs-theme-default .ipgs-outline { background: rgba(0,0,0,0.8) !important;}