/*==========================================================
    Koyel theme Main Style
============================================================*/

/*========================================================== 
=> CSS Indexing
=> Default CSS
=> Breadcrumb CSS
=> Preloader CSS
=> Header CSS & Mainmenu CSS
=> Footer CSS
=> Page CSS
=> Comments CSS
=> Paginition CSS
=> Contact Form CSS
=> Responsive CSS
============================================================*/
/*========================================================== 
    Default CSS 
============================================================*/ 
html,body {
  height: 100%;
  margin: 0;
}
body {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #252525;
    background: #fff;
    position:relative;
    font-family: 'Lora', serif;
    font-weight: 400;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
h1,h2,h3,h4,h5,h6 {
    text-transform: capitalize;
    margin:0 0 10px;
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
p {
    margin:0 0 5px;
    color:#555;
}
a {
    text-decoration: none;
    transition: all 0.5s ease;
    color: #000;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
img{
    max-width: 100%;
    display:block;
    height: auto;
}
a:hover,
a:focus  {
    color: #EA552B;
    outline: none;
    text-decoration: none;
    background:none;
    transition: all 0.5s ease;
}
ul,
ul li {
    margin: 0;
    padding: 0;
    list-style:none;
} 
.nav li a:focus{
    background:none;
    outline:none;
}

.section.home-section {
    padding: 0px;
}
.error-padding {
    padding-top: 75px;
    margin-top: 25px;
    padding-bottom: 100px;
    border-top: 1px solid #01010110;
}
.no-margin{
    margin:0;
}
#scrollUp {
    bottom: 60px;
    right: 20px;
    background: #000;
    color: #fff;
    font-size: 30px;
    padding: 4px 10px;
    transition: 0.5s;
}
#scrollUp:hover {
    background: #EA552B;
    transition: 0.5s;
}
.section-padding {
    padding: 100px 0;
}
.section-single {
    padding-bottom: 50px;
}
/*========================================================== 
    Breadcrumb CSS
============================================================*/  
#breadcrumbs {
    text-align: left;
    padding: 55px 0;
    position:relative;
    color: #6c757d;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
}
#breadcrumbs span{
    display: inline-block;
    color:#6c757d;
    font-size:18px;
    text-transform:capitalize;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
}
/*========================================================== 
    Preloader CSS
============================================================*/  
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: #ffffff;
}

.preloader .th-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 0 auto;
}

.loader {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #080809;
  display: inline-block;
}

.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -webkit-transform: rotateX(70deg);
          transform: rotateX(70deg);
  -webkit-animation: 1s spinloader linear infinite;
          animation: 1s spinloader linear infinite;
}

.loader:after {
  color: #EA552B;
  -webkit-transform: rotateY(70deg);
          transform: rotateY(70deg);
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@-webkit-keyframes rotateccw {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes rotateccw {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@-webkit-keyframes spinloader {
  0%,
  100% {
    box-shadow: .5em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .5em .5em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .5em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.5em .5em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.5em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.5em -.5em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.5em 0 0 currentcolor;
  }
  87% {
    box-shadow: .5em -.5em 0 0 currentcolor;
  }
}

@keyframes spinloader {
  0%,
  100% {
    box-shadow: .5em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .5em .5em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .5em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.5em .5em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.5em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.5em -.5em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.5em 0 0 currentcolor;
  }
  87% {
    box-shadow: .5em -.5em 0 0 currentcolor;
  }
}
/*========================================================== 
    Header CSS & Mainmenu CSS
============================================================*/ 
.header-area {
    background-image: url(../img/header-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.header-top {
    background: #000;
    padding: 10px 0;
}
.header-top {
    padding: 10px 0;
}
.header-top ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-top ul li {
    display: inline-block;
}
.header-top ul li a {
    color: #fff;
    margin: 0px 10px;
    opacity: .7;
}
.header-top ul li a:first-child {
    margin-left: 0px;
}
.header-top ul li a:hover {
    opacity: 1;
}
.post-date {
    color: #fff;
}
.post-date i {
    margin-right: 5px;
}
.header-middle {
    padding: 25px 0;
}
.site-title a{
    color:#397715;
    text-transform:uppercase;
    font-size:35px;
    font-weight:700;
}
.page-title.screen-reader-text {
    display: none;
}
header.newsstory-header-img {
    position: relative;
    padding-top: 0;
}
header.newsstory-header-img .container {
    position: absolute;
    top: 0;
    left:  0;
    width: 100%;
    height: 100%;
    margin: auto;
    right:  auto;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    padding-top: 110px;
}
.container.logo-bg-container{
    background-color: #333;
}
.header-img img {
    max-width: 100%;
    height: 250px;
}
.navbar-logo{
    position: relative;
}
.navbar-logo:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:#333333;
}
.logo-bg.navbar-logo-bg{
    background: transparent;
    padding-top: 30px;
}
.mainmenu-area {
    border-top: 1px solid #B7B7B7;
    border-bottom: 1px solid #B7B7B7;
}
.mainmenu ul {
    text-align: center;
}
.mainmenu ul li{
    position: relative;
    display: inline-block;
    margin-left: 5px;
}
.mainmenu li a {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 25px;
    position: relative;
    display: block;
    transition: all linear 0.3s;
}
.logo-bg-sec .mainmenu li a{
    color: #000000;
}
.mainmenu li:last-child {
    border: 0px;
}
.mainmenu li:hover a,
.mainmenu li.menu-item-has-children:hover::after,
.mainmenu li.active a {
    color: #EA552B;
    transition: 0.3s;
}
.logo-bg-sec .mainmenu li a:hover{
    opacity: 0.9;
    transition: 0.3s;
}
.mainmenu .menu-item-has-children::after {
    font-family: FontAwesome;
    content: "\f107";
    font-size: 18px;
    text-shadow: none;
    opacity: .9;
    position: absolute;
    top: 20px;
    right: -20px;
    font-weight: 700;
}
.mainmenu ul li ul {
    text-align: left;
}
.mainmenu ul li ul {
    position: absolute;
    left: 0;
    z-index: 8;
    width: 250px;
    top: 100%;
    opacity: 0;
    background: #fff;
    visibility: hidden;
    -webkit-transform: scaleY(0);
	transform: scaleY(0);
	background-color: #fff;
	background-clip: inherit;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-transform-origin: center top 0;
	transform-origin: center top 0;
	box-shadow: 0 5px 10px 0 rgb(0 0 0 / 5%);
	border-radius: 5px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 15px 0;
}
.mainmenu ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.mainmenu ul li ul li {
    border-right: none;
    display: block;
}
.mainmenu ul li ul.sub-menu li a {
    padding: 8px 20px;
    text-align: left;
    border-radius: 0px;
    background: transparent;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
}
.mainmenu ul li ul.sub-menu li a:hover {
    color: #EA552B;
}
.mainmenu ul li ul li:last-child {
    border-bottom: 0px solid;
}
.top-nav-collapse {
    background: #ffffff;
    box-shadow: 0 40px 100px rgba(0,0,0,.2);
    transition: 0.5s;
}
.newsstory-responsive-menu {
    display: none;
}
.slicknav_btn {
  left: 45%;
  float: left;
  top: 0px;
}
.slicknav_menu .slicknav_menutxt {
  display: none;
}
.slicknav_btn {
  background: transparent;
  padding: 0px;
  margin: 0px;
}
.slicknav_menu {
  padding: 0;
  background: none;
}
.slicknav_menu .slicknav_icon-bar {
  background-color: #000;
  box-shadow: 0 0 0;
}
.slicknav_nav {
  background: transparent;
  width: 250px;
  position: relative;
  top: 2px;
  left: 20px;
  padding-bottom: 15px;
}
.slicknav_nav a {
  font-weight: 400;
  font-size: 16px;
  transition: 0.5s;
  color: #000;
}
.slicknav_nav a:focus{
  color: #F54923;
}
.slicknav_nav .slicknav_row:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
}
.slicknav_nav a:hover,
.slicknav_nav li.active a{
  color: #F54923;
  background: transparent;
}
.slicknav_nav .slicknav_row:hover a {
  color: #fff;
}
.slicknav_nav .slicknav_row, 
.slicknav_nav a {
  margin: 0;
}
.slicknav_nav li {
  padding: 0px;
  text-align: left;
  font-size: inherit;
  line-height: inherit;
  border: none;
}
.slicknav_menu .slicknav_icon {
  width: 35px;
  height: 35px;
  margin: 0px;
}
.slicknav_btn {
  padding: 5px 0;
  line-height: 5px;
    cursor: pointer;
  -webkit-transition: all ease-in-out 500ms;
       -moz-transition: all ease-in-out 500ms;
        -ms-transition: all ease-in-out 500ms;
       -o-transition: all ease-in-out 500ms;
          transition: all ease-in-out 500ms;
}
.slicknav_icon span.slicknav_icon-bar {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #000;
  -webkit-transition: all ease-in-out 500ms;
       -moz-transition: all ease-in-out 500ms;
        -ms-transition: all ease-in-out 500ms;
       -o-transition: all ease-in-out 500ms;
          transition: all ease-in-out 500ms;
}
.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child{
  -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
        transform: rotate(45deg);
  -webkit-transform-origin: 11px 50%;
    -moz-transform-origin: 11px 50%;
      -ms-transform-origin: 11px 50%;
       -o-transform-origin: 11px 50%;
        transform-origin: 11px 50%; 
}
.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(2) {
    display: none;
}
.slicknav_btn.slicknav_open span.slicknav_icon-bar:last-child{
  -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
  -webkit-transform-origin: 12px 50%;
    -moz-transform-origin: 12px 50%;
      -ms-transform-origin: 12px 50%;
       -o-transform-origin: 12px 50%;
        transform-origin: 12px 50%; 
}
/*========================================================== 
    Footer CSS
============================================================*/ 
#footer {
    background: #000;
    padding: 10px 0;
}
#footer .copyright{
    padding:5px 0;
    float:left;
}
#footer .copyright.right{
    float:right;
}
#footer .copyright p {
    color:#fff;
    margin:0;
}
#footer .copyright span{
    margin:0px 5px;
}
#footer .social {
    float: right;
    margin-top: 5px;
}
#footer .social.left {
    float: left;
}
.social li {
    display: inline-block;
    margin-right: 10px;
    color:#fff;
    font-weight:500;
}
.social li:last-child{
    margin-right:0;
}
.social a {
    display: block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
}
.header-middle .social li a {
    color: #000;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #847E7E;
    transition: 0.5s;
}
.header-middle .social li:hover a {
    background-color: #F54923;
    border: 1px solid #F54923;
    color: #fff;
    transition: 0.5s;
}
.social li:hover a i{
    opacity: 0;
    -webkit-animation-name: hvr-icon-drop;
    animation-name: hvr-icon-drop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/*========================================================== 
   Page CSS
============================================================*/  
article.sticky{
    background-color: #f2f2f2;
    display: block;
}
.section-page,
.section-archive {
    padding-bottom: 50px;
}
.section-search {
    padding-bottom: 20px;
}
.search article.page,
article.post,
article.project {
    margin-bottom: 30px;
    background-color: #fff;
}
article.post:last-child{
    margin-bottom: 0px;
}
.masonry-post article.post{
    margin-bottom: 30px;
}
article.post img,
article.project img {
    margin-bottom: 20px;
}
.newsstory-btn a {
    border: 1px solid #EA552B;
    padding: 5px 15px;
    border-radius: 20px 0;
    display: inline-block;
    margin-bottom: 15px;
}
.newsstory-btn a:hover {
    background-color: #EA552B;
    color: #fff;
}
.entry-title a {
    background: -webkit-gradient(linear,left top,right top,from(#EA552B),to(#EA552B));
    background: -webkit-linear-gradient(left, #EA552B 0%,#EA552B 100%);
    background: linear-gradient(to right,#EA552B 0%,#EA552B 100%);
    background-size: 0 7%;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.8s;
    display: inline;
}
.list-post{
    box-shadow: 0px 4px 40px rgba(212, 212, 220, 0.32);
    padding: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.list-post-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
    max-width: 360px;
    margin-left: 24px;
}
.entry-title a:hover {
    background-size: 100% 7%;
    color: #EA552B;
}
ul.post-meta {
    margin-top: 15px;
}
.list-post ul.post-meta {
    margin-bottom: 15px;
}
ul.post-meta li {
    display: inline-block;
    margin: 0px 10px;
    position: relative;
}
ul.post-meta li:first-child {
    margin-left: 0px;
}
ul.post-meta li:last-child {
    margin-right: 0px;
} 
ul.post-meta li .byline,
ul.post-meta li a {
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Karla', sans-serif;
}
ul.post-meta li:not(:last-child)::after {
    position: absolute;
    content: "-";
    right: -15px;
}
.section-single ul.post-meta li:not(:last-child)::after {
    content: none;
}
.view i {
    margin-right: 5px;
}
.section-single ul.post-meta {
    margin-bottom: 15px;
}
.single-span {
    border-bottom: 2px dashed #D9D9D9;
    border-top: 2px dashed #D9D9D9;
    display: block;
    margin-top: 15px;
    padding: 2px 0;
}
.section-single .entry-footer {
    margin-top: 15px;
}
.blog-details-share {
    margin-top: 15px;
}
.social-share li {
    display: inline-block;
}
.social-share li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #EA552B;
    border-radius: 50%;
    color: #fff;
    margin-left: 5px;
    margin-right: 10px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.social-share li a:hover {
    background: #000;
}
.list-btn {
    margin-top: 10px;
    display: inline-block;
}
a.button.error-button {
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 15px;
    display: inline-block;
    border: 1px solid #01010110;
    color: #000;
    transition: 0.3s;
}
a.button.error-button:hover{
    border-color: #EA552B;
    background-color: #EA552B;
    color: #fff;
    transition: 0.3s;
}
p.comment-notes {
    margin-bottom: 30px;
}
.nav-links{
    overflow: hidden;
}
.nav-previous{
    float: left;
    width: 50%;
    text-align: left;
}
.nav-next{
    text-align: right;
    width: 50%;
    float: right;
}
.nav-links a {
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    border: 1px solid #01010110;
    padding: 10px 15px;
    border-radius: 5px;
}
.page-links{
    margin-top: 10px;
}
.page-links a{
    display: inline-block;
    border: 1px solid #01010110;
    color: #000;
    padding: 10px 15px;
    transition: 0.5s;
    margin: 0px 5px;
}
.nav-links a:hover,
.page-links a:hover{
    border-color: #EA552B;
    background-color: #EA552B;
    color: #fff;
    transition: 0.3s;
}
.search-results article.page .entry-summary {
    display: none;
}
.entry-content h2{
    margin-top: 15px;
}
.entry-content table {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}
.entry-content table th,
.entry-content table td {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 10px;
}
.entry-content table th {
    background-color: #f9f9f9;
}
.entry-content dd {
    margin-bottom: 15px;
}
.entry-content ul,
.entry-content ol {
    padding-left: 15px;
    margin: 0px;
}
.entry-content address {
    border: 1px solid #ddd;
    padding: 20px;
}
a.tag-cloud-link {
	font-size:15px ! important;
}
.single-cat a {
    background: #EA552B;
    color: #fff;
    padding: 6px 20px 8px 20px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    margin-top: 45px;
}
.single-title {
    font-size: 50px;
    text-transform: uppercase;
    margin-top: 25px;
}
/*========================================================== 
   Comments CSS
============================================================*/
.comments-area {
    margin-top: 40px;
}
.comments-area h2.comments-title {
    font-size: 25px;
    margin-bottom: 25px;
}
.comment-content h2{
    margin-top: 15px;
}
.comment-content p{
    margin-bottom: 5px;
}
.comment-list {
    margin: 0px;
    padding: 0;
    list-style: none;
}
.comment-meta {
    margin-bottom: 20px;
}
.comment-meta a {
    color: #333;
}
.bypostauthor {
    display: block;
}
.comment-author.vcard {
    position: relative;
    padding-left: 50px;
}
.comment-author.vcard img {
    position: absolute;
    left: 0;
    top: 7px;
}
.comment-metadata {
    margin-left: 50px;
}
.comments-area table {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}
.comments-area table th,
.comments-area table td {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 10px;
}
.comments-area table th {
    background-color: #f9f9f9;
}
.comments-area dd {
    margin-bottom: 15px;
}
.comments-area .comment-content ul,
.comments-area .comment-content ol {
    padding-left: 15px;
    margin: 0;
}
.comments-area address {
    border: 1px solid #ddd;
    padding: 20px;
}
.comment-reply-link {
    display: inline-block;
    color: #000;
    margin-top: 10px;
    transition: 0.5s;
    text-transform: uppercase;
}
.comment-reply-link:hover{
    color: #EA552B;
}
.comment-list li.comment {
    margin-bottom: 30px;
    border-bottom: 1px solid #01010110;
    padding-bottom: 30px;
}
.comment-list li.comment:last-child {
    border-bottom: 0px solid #01010110;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.comment-metadata {
    font-size: 80%;
}
.comment-list li.comment ol.children {
    padding-left: 50px;
    margin: 0;
    list-style: none;
    margin-top: 25px;
}
.comment-list li.comment ol.children ol.children {
    padding-left: 20px;
}
.comment-respond {
    margin-top: 50px;
} 
.comment-form label{
    margin-bottom: 5px;
}
.comment-form input,
.comment-form textarea{
    margin-bottom: 15px
}
.comment-form textarea{
    resize: vertical;
}
.comment-reply-title{
    margin-top: 30px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"]{
    width: 100%;
    height: 44px;
    border:  1px solid #01010110;
    padding-left: 10px;
    transition: 0.5s;
}
.comment-form input[type="checkbox"]{
    width: 2%;
    border:  1px solid #01010110;
    margin-top: 0px;
    margin-right: 5px;
}
.comment-form textarea{
    width: 100%;
    border:1px solid #E2E9F3;
    padding:10px;
    transition: 0.5s;
}
.comment-form input[type="text"]:hover,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:hover,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:hover,
.comment-form input[type="url"]:focus,
.comment-form textarea:hover,
.comment-form textarea:focus{
    border:  1px solid #01010110;
}
.comment-form input[type="submit"]{
    height: 44px;
    width: 100%;
    border: 0px solid;
    color: #fff;
    transition: 0.5s;
    background: #000;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 0px;
}
.comment-form input[type="submit"]:hover{
    background:#EA552B;
    color: #fff;
    transition: 0.5s;
}
.post-password-form {
    margin-top: 15px;
}
.post-password-form input[type="password"]{
    border:  1px solid #01010110;
    padding: 10px 25px;
}
.post-password-form input[type="submit"]{
    border:  1px solid #01010110;
    padding: 10px 25px;
    background: #333;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s;
    margin-left: -6px;
}
.post-password-form input[type="submit"]:hover{
    background: #EA552B;
    border:  1px solid #01010110;
    transition: 0.5s;
}

.page-content .search-form input[type="search"]{
    width: 100%;
    display: inline-block;
}
.page-content .search-form input[type="submit"] {
    width: 15%;
    display: inline-block;
    margin-left: -6px;
}
.screen-reader-text {
    visibility: hidden;
    display: none;
}
.search-form .screen-reader-text {
    display: inherit;
}
.search-form input[type="search"] {
    width: 100%;
    border:  1px solid #01010110;
    padding: 10px 25px;
    margin: 10px 0px;
    transition: 0.5s;
    color: #333;
}
.search-form input[type="submit"] {
    width: 100%;
    border:  1px solid #01010110;
    padding: 10px 25px;
    background: #333;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s;
}
.search-form input[type="search"]:hover,
.search-form input[type="search"]:focus{
    border:  1px solid #01010110;
}
.search-form input[type="submit"]:hover{
    background: #EA552B;
    border:  1px solid #01010110;
    transition: 0.5s;
}
/* ==========================================================================
   Pagination css
========================================================================== */
.pagination {
    text-align: center;
    display: block;
}
.pagination ul {
    display: inline-block;
    list-style: none;
    margin-left: 0;
    position: relative;
    padding: 0 6rem;
    margin-bottom: 0px;
}
.pagination ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.pagination_prev,
.pagination_next,
.pagination_num.current,
a.pagination_num {
    border: 0;
    font-size: 13px;
    box-shadow: none;
    outline: 0;
    color: #889097;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0;
    margin-right: 10px;
    box-shadow: 0 2px 4px hsla(0, 0%, 42.4%, 0.2), 0 0 0 transparent;
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
    margin-bottom: 5px;
    margin-top: 5px;
    display: inline-block;
}
a.pagination_num {
    background-color: transparent;
    text-decoration: none;

}
a.pagination_num:hover {
    background: #EA552B;
    color: #fff;
}
.pagination_num.current,
.pagination_num.current:hover {
    background-color: #EA552B;
    color: #fff;
    font-weight: 700;
}
.pagination.inactive,
.pagination.inactive:hover {
    color: #ddd;
    cursor: default;
}
.pagination_prev,
.pagination_next {
    display: block;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center;
    font: 0/0 a;
    color: transparent;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-decoration: none;
}
.pagination_prev {
    margin:0px;
}
.pagination_next {
    margin: 0px;
}
.nav-links .pagination_prev,
.nav-links .pagination_next {
    border: 0px solid #000;
    padding: 0px;
    border-radius: 50%;
}
.pagination_prev:hover,
.pagination_next:hover {
    background-color: #0D6EFD;
    color: #fff;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}
a.pagination_prev {
    background-image: url("../img/icon-arrow-left.svg");
    left: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}
.pagination_prev:hover {
    background-image: url("../img/icon-arrow-left-w.svg");
}
a.pagination_next {
    background-image: url("../img/icon-arrow-right.svg");
    right: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}
.pagination_next:hover {
    background-image: url("../img/icon-arrow-right-w.svg");
}
.pagination_prev.inactive,
.pagination_next.inactive {
    background-color: #ffffff;
    opacity: 0.5;
    cursor: default;
}
.pagination_prev.inactive:hover {
    background-image: url("../img/icon-arrow-left.svg");
}
.pagination_next.inactive:hover {
    background-image: url("../img/icon-arrow-right.svg");
}
/*========================================================== 
    Contact Form CSS
============================================================*/
.contact-form-area input[type="text"], 
.contact-form-area input[type="email"], 
.contact-form-area input[type="tel"], 
.contact-form-area textarea {
    border: 1px solid #EA552B;
	width: 100%;
	margin-bottom: 30px;
	padding: 10px;
}
.contact-form-area textarea, 
.comment-form textarea {
    height: 120px;
}
span.wpcf7-not-valid-tip {
    margin-bottom: 30px;
}
div.wpcf7-validation-errors {
    border: 2px solid #f00;
    clear: both;
}
div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
    clear: both;
}
.contact-form-area input[type="submit"] {
    border: 1px solid #EA552B;
    background-color: transparent;
    color: #EA552B;
    padding: 10px 25px;
    transition: 0.5s;
    border-radius: 5px;
}
.contact-form-area input[type="submit"]:hover{
    border-color: #EA552B;
    background-color: #EA552B;
    color: #fff;
    transition: 0.5s;
}
/*========================================================== 
    Responsive
============================================================*/
/*========================================================== 
    Desktop Layout: 1200px
============================================================*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.mainmenu ul li {
    margin-left: 0px;
}
.mainmenu li a {
    padding-left: 11px;
}
.mainmenu .menu-item-has-children::after {
    font-size: 14px;
    top: 20px;
    right: -12px;
}
}
/*========================================================== 
    Tablet Layout: 768px
============================================================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
body{
    font-size:14px;
}
.admin-bar .header-area.navbar-fixed-top {
    padding-top: 45px;
}
.header-area {
    background-image: none;
}
.header-top ul {
    text-align: center;
}
.social.text-right,
.post-date.text-right {
    text-align: center !important;
    margin-top: 5px;
}
.site-title h2 {
    text-align: center;
}
.mainmenu{
    display: none;
}
.newsstory-responsive-menu{
    display: block;
}
.list-post{
    display: block !important;
}
.list-post-img {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0;
    margin-top: 0px;
    margin-top: 15px;
}
.widget:first-child{
	margin-top: 30px;
}
.slicknav_nav ul {
    margin: 0px; 
}
.error-padding {
    padding-top: 0px;
    padding-bottom: 50px;
}
.blog-details-share {
    margin-top: 10px;
}
.single-cat a {
    margin-top: 20px;
}
.single-header {
    padding-top: 30px;
}
.single-title {
    font-size: 22px;
}
.social-share {
    margin-top: 15px;
}
.social-share li a {
    width: 31px;
    height: 31px;
    line-height: 30px;
    margin-left: 5px;
    margin-right: 5px;
}
#footer .copyright {
    float: none;
    text-align: center;
}
#footer .social {
    text-align: center;
    float: none;
}
#footer .copyright {
    float: none;
    text-align: center;
    display: block;
}
}
/*========================================================== 
   Wide Mobile Layout
============================================================*/
@media (min-width: 481px) and (max-width: 767px) {
body{
    font-size: 14px;
}
.admin-bar .header-area.navbar-fixed-top {
    padding-top: 45px;
}
.header-area {
    background-image: none;
}
.header-top ul {
    text-align: center;
}
.social.text-right,
.post-date.text-right {
    text-align: center !important;
    margin-top: 5px;
}
.site-title h2 {
    text-align: center;
}
.mainmenu{
    display: none;
}
.newsstory-responsive-menu{
    display: block;
}
.list-post{
    display: block !important;
}
.list-post-img {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0;
    margin-top: 0px;
    margin-top: 15px;
}
.widget:first-child{
    margin-top: 30px;
}
.slicknav_nav ul {
    margin: 0px; 
}
.section {
    padding-top: 0px;
    padding-bottom: 50px;
}
.error-padding {
    padding-top: 0px;
    padding-bottom: 50px;
}
.blog-details-share {
    margin-top: 10px;
}
.single-cat a {
    margin-top: 20px;
}
.single-header {
    padding-top: 30px;
}
.single-title {
    font-size: 22px;
}
.social-share {
    margin-top: 15px;
}
.social-share li a {
    width: 31px;
    height: 31px;
    line-height: 30px;
    margin-left: 5px;
    margin-right: 5px;
}
#footer .copyright {
    float: none;
    text-align: center;
}
#footer .social {
    text-align: center;
    float: none;
}
#footer .copyright {
    float: none;
    text-align: center;
    display: block;
}
}
/*========================================================== 
    Mobile Layout
============================================================*/
@media (min-width: 320px) and (max-width: 480px) {
.admin-bar .header-area.navbar-fixed-top {
    padding-top: 90px;
}
.header-area {
    background-image: none;
}
.header-top ul {
    text-align: center;
}
.social.text-right,
.post-date.text-right {
    text-align: center !important;
    margin-top: 5px;
}
.site-title h2 {
    text-align: center;
}
.mainmenu{
    display: none;
}
.newsstory-responsive-menu{
    display: block;
}
.list-post{
    display: block !important;
}
.list-post-img {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0;
    margin-top: 0px;
    margin-top: 15px;
}
#footer .copyright {
    float: none;
    text-align: center;
    display: block;
}
.widget:first-child{
    margin-top: 30px;
}
.slicknav_nav ul {
    margin: 0px; 
}
.section {
    padding-top: 0px;
    padding-bottom: 50px;
}
.error-padding {
    padding-top: 0px;
    padding-bottom: 50px;
}
.blog-details-share {
    margin-top: 10px;
}
.single-cat a {
    margin-top: 20px;
}
.single-header {
    padding-top: 30px;
}
.single-title {
    font-size: 22px;
}
.social-share {
    margin-top: 15px;
}
.social-share li a {
    width: 31px;
    height: 31px;
    line-height: 30px;
    margin-left: 5px;
    margin-right: 5px;
}
#footer .social {
    float: inherit;
    text-align: center;
}
}