/* general css*/
@import url('https://fonts.googleapis.com/css?family=Domine:400,700&subset=latin-ext');
@import url("hover.css");
*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
    color: #333333;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
   font-family: 'Domine', serif;
}

blockquote {
  border-left: 0.3rem solid #153143;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}

blockquote *:last-child {
  margin-bottom: 0;
}
a {
   color: #153143;
  text-decoration: none;
}

a:focus, a:hover {
  
  
   color: #cccccc;
}

dl,
ol,
ul {
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol{
  margin: 1.5rem 0 1.5rem 3.0rem;
}

ol {
  list-style: decimal inside;
}

ul {
  padding-left: 1px;
  list-style-type: initial;
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1.0rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

table {
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #cccccc;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}
address{
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: -.1rem;
  margin-bottom: 2.0rem;
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.clearfix:after {
  clear: both;
  content: ' ';
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}
code {
  background: #f4f5f6;
  border-radius: .4rem;
  font-size: 86%;
  margin: 0 .2rem;
  padding: .2rem .5rem;
  white-space: nowrap;
}

pre {
    background: #f4f5f6;
    border-left: 0.3rem solid #153143;
    overflow-y: hidden;
    border-top:1px solid #153143;
    border-right:1px solid #153143;
    border-bottom:1px solid #153143;
    color: #333333;
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;

}

hr {
  border: 0;
  border-top: 0.1rem solid #333337;
  margin: 3.0rem 0;
}


.button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background-color:#153143;
    border: 0.1rem solid #153143;
    border-radius: .4rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    height: 4.3rem;
    letter-spacing: .1rem;
    line-height: 3.8rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition:0.3s all ease-in-out;
    border-radius: 3px;
}

.button:focus, .button:hover,
button:focus,
button:hover,
input[type='button']:focus,
input[type='button']:hover,
input[type='reset']:focus,
input[type='reset']:hover,
input[type='submit']:focus,
input[type='submit']:hover {
  background-color: transparent;
  border-color: #153143;
  color:#153143;
  outline: 0;
}

.button[disabled],
button[disabled],
input[type='button'][disabled],
input[type='reset'][disabled],
input[type='submit'][disabled] {
  cursor: not-allowed;
  opacity: .5;
}

.button[disabled]:focus, .button[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type='button'][disabled]:focus,
input[type='button'][disabled]:hover,
input[type='reset'][disabled]:focus,
input[type='reset'][disabled]:hover,
input[type='submit'][disabled]:focus,
input[type='submit'][disabled]:hover {
  background-color:#153143;
  border-color: #153143;
  cursor: not-allowed;
}

.button.button-outline,
button.button-outline,
input[type='button'].button-outline,
input[type='reset'].button-outline,
input[type='submit'].button-outline {
  background-color: #153143;
  color: #E8E8E8;
  outline: 3px double #333333;
}

.button.button-outline:focus, .button.button-outline:hover,
button.button-outline:focus,
button.button-outline:hover,
input[type='button'].button-outline:focus,
input[type='button'].button-outline:hover,
input[type='reset'].button-outline:focus,
input[type='reset'].button-outline:hover,
input[type='submit'].button-outline:focus,
input[type='submit'].button-outline:hover {
  background-color: transparent;
  border-color: #333333;
  color: #153143;
}
.button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
button.button-outline[disabled]:focus,
button.button-outline[disabled]:hover,
input[type='button'].button-outline[disabled]:focus,
input[type='button'].button-outline[disabled]:hover,
input[type='reset'].button-outline[disabled]:focus,
input[type='reset'].button-outline[disabled]:hover,
input[type='submit'].button-outline[disabled]:focus,
input[type='submit'].button-outline[disabled]:hover {
  border-color: #333333;
  color: #E8E8E8;
  cursor: not-allowed;
  opacity: .5;
}

.button.button-clear,
button.button-clear,
input[type='button'].button-clear,
input[type='reset'].button-clear,
input[type='submit'].button-clear {
  background-color:#153143;
  border-color: #153143;
  color:#E8E8E8;
}

.button.button-clear:focus, .button.button-clear:hover,
button.button-clear:focus,
button.button-clear:hover,
input[type='button'].button-clear:focus,
input[type='button'].button-clear:hover,
input[type='reset'].button-clear:focus,
input[type='reset'].button-clear:hover,
input[type='submit'].button-clear:focus,
input[type='submit'].button-clear:hover {
 background-color: transparent;
  border-color: #153143;
  color: #E8E8E8;
  outline: 0;
}

.button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
button.button-clear[disabled]:focus,
button.button-clear[disabled]:hover,
input[type='button'].button-clear[disabled]:focus,
input[type='button'].button-clear[disabled]:hover,
input[type='reset'].button-clear[disabled]:focus,
input[type='reset'].button-clear[disabled]:hover,
input[type='submit'].button-clear[disabled]:focus,
input[type='submit'].button-clear[disabled]:hover {
  background-color: #153143;
  border-color: #153143;
  cursor: not-allowed;
  color: #E8E8E8;
}

input[type='email'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0.1rem solid #153143;
  border-radius: 3px;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.6rem;
  padding: .6rem 1.0rem;
  width: 100%;
}

input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
  border-color: #333333;
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 3.0rem;
}

select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#9b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
}

textarea {
    margin: 15px 0px;
    min-height: 10.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  margin-bottom: .5rem;
  color: #153143;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type='checkbox'],
input[type='radio'] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: .5rem;
}
.gallery-item{
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin: 0 0 1.5em;
    padding: 0 1em 0 0;
    width: 50%;
}
.gallery-columns-1 .gallery-item{
    max-width: 100%;
    display: block;
}
.gallery-columns-2 .gallery-item{
   max-width: 50%;
}
.gallery-columns-3 .gallery-item{
    max-width: 33.33333%;
}
.gallery-columns-4 .gallery-item{
    max-width: 25%;
}
.gallery-columns-5 .gallery-item{
    max-width: 20%;
}
.gallery-columns-6 .gallery-item{
    max-width: 16.66666%;
}
.gallery-columns-7 .gallery-item{
    max-width: 14.28571%;
}
.gallery-columns-8 .gallery-item{
   max-width: 12.5%;
}
.gallery-columns-9 .gallery-item{
    max-width: 11.1111%;
}
.gallery-item{
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin: 0 0 1.5em;
    padding: 0 1em 0 0;
    width: 50%;
}
.gallery-item a img{
    display: block;
    -webkit-transition: -webkit-filter 0.2s ease-in;
    transition: -webkit-filter 0.2s ease-in;
    transition: filter 0.2s ease-in;
    transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-item a:hover img, .gallery-item a:focus img{
    -webkit-filter: opacity(60%);
    filter: opacity(60%);   
}
.wp-caption-text{
  margin:10px auto;
}

/*end general css*/
.main {
     width: 100%; 
}
/*Menu*/
.opacity-top{
    position: absolute;
    top: 0px;
    z-index: 1;
    width: 100%;
    height: 50px;
    background: -moz-linear-gradient(to bottom, rgba(0,0,0,0.54) 0%,rgba(0,0,0,0.0) 100%); 
    background: -webkit-linear-gradient(to bottom, rgba(0,0,0,0.54) 0%,rgba(0,0,0,0.0) 100%); 
    background: linear-gradient(to bottom, rgba(0,0,0,0.54) 0%,rgba(0,0,0,0.0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#91000000',GradientType=0 );
}
/*Side-menu-start*/
.image-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11,46,70,0.8);
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    background-color:#333333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 40px;
}
#mySidenav::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1);
    background-color: #153143;
}
#mySidenav::-webkit-scrollbar
{
    width: 6px;
    background-color: #153143;
}
#mySidenav::-webkit-scrollbar-thumb
{
    background-color: #E8E8E8;
}
.mainmenu a {
    display: block;
    text-decoration: none;
    padding: 10px 10px 0px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #e8e8e8;
    display: inline-block;
    transition: 0.3s;
    letter-spacing: 1px
}
.mainmenu ul ul{padding-left: 10px;}
.mainmenu li{
    position: relative;
    width: 100%;
}
.mainmenu li > i{
    font-size: 20px;
    padding-left: 3px;
    display: inline-block;
    color: #818181;
    cursor: pointer;
    position: absolute;
    padding: 10px 5px;
    top: 0;
    right: 0;
}
.mainmenu ul.sub-menu{
    padding-left: 10px;
    display: none;
}
.submenu a {
    background-color: #C5C5C5;
    color:#fff;
}
.submenu a:hover {
    color: #fff;
}
.submenu, .sub-submenu {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.5s ease-out;
}
.submenu a {
    padding: 8px 8px 8px 15px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover, .offcanvas a:focus{
    color: #cccccc;
}
.sidenav .closebtn {
    position: absolute;
    top: -50px;
    right: 15px;
    font-size: 36px;
    padding: 10px 15px;
    width: 20%;
    z-index: 99;
}
.nav li a{
    padding: 10px 0 10px 60px;
}
.nav li li a{
    padding: 10px 0 10px 75px;
}
.nav li li li a{
    padding: 10px 0 10px 90px;
}
.nav>li>a:focus, .nav>li>a:hover {
    background: #111;
    color: #31af87;
}
#main {
    transition: margin-left .5s;
    padding: 16px;
}
.top-bar .opacity-top{
  padding: 0 15px;
}
.full-icon-bar{
    font-size: 30px;
    cursor: pointer;
    z-index:1;
    padding: 5px;
    margin-top: 8px;
    color: #E8E8E8;
    position: absolute;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.icon-bar{
    font-size: 30px;
    cursor: pointer;
    z-index:1;
    padding: 5px;
    margin-left: 20px;
    margin-top: 15px;
    color: #E8E8E8;
    position: absolute;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
/*Side-menu End*/
.header-image{
  height: 100vh;
  width: 100%;
}
.sidebar {
    height: 100%;
    position: fixed;
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 450ms;
    overflow: hidden;
    left: 0;
    padding: 0;
}
.fadeout-text {
    display: block;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 677px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.fadeout-text img{
    width: 100%;
    height: 100%;
}
.post-preview, .sidebar, .post-favorite, .favorites {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.sidebar .logo a{
    margin-left: 70px;
    margin-bottom: 0px;
    font-size: 30px;
    text-transform:uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
    top: 0;
    width: auto;
    height: 45px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.sidebar .logo a img{
    width: auto;
    height: 35px;
    margin-top: 45px;
}
.sidebar .sidebar-info {
    position: absolute;
    z-index: 0;
    text-align: center;
    top: 0;
    padding: 20rem 0px;
}
.sidebar .sidebar-info h1 {
    letter-spacing: 1px;
    margin-bottom: 3rem;
    margin-left: 0;
    font-size: 34px;
    font-size: 3.4rem;
    text-transform: capitalize;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #E8E8E8;
}
.sidebar .sidebar-info p {
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 24px;
    line-height: 2.4rem;
    font-size: 16px;
    font-size: 1.6rem;
    color: #E8E8E8;
    letter-spacing: 1px;
    padding:0 5rem;
}
.info-button{
  margin:3rem 0;
}
.contact-button:hover{
  background: transparent;
  border-color: #E8E8E8;
  color: #E8E8E8;
  margin:;
}
.social-links ul li a{
  color: #E8E8E8;
}
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, transparent 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
/*sidebar single blog*/
.single-blog-sidebar .logo a img{
      width: auto;
    height: 35px;
    margin-top: 45px;
}
.single-blog-sidebar .logo a{
     margin-left: 70px;
    margin-bottom: 0px;
    font-size: 30px;
    text-transform:uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    position: absolute;
    text-decoration: none;
    top: 0;
    width: auto;
    height: 45px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.single-blog-sidebar{
 height: 100%;
  position: fixed;
    transition: all 450ms;
    overflow: hidden;
    padding: 0;
}
.single-blog-bg{
  height: 100vh;
  width: 100%;
}
.single-blog-bg img{
  height: 100vh;
  width: 100%;
}
.profile-section{
  position: absolute;
  top: 0;
  padding: 29rem 2rem;
}
.profile-image{
  width: 150px;
  height: 150px;
  border-radius: 150px;
  margin: 0 auto;
  position: absolute;
  top: 11rem;
  left: 0;
  right: 0;
}
.profile-description{
      text-align: center;
    font-size: 20px;
    color: #E8E8E8;
}
.single-blog-image-overlay{
      position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(21, 49, 67,0.8);
}
.profile-overlay{
   position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51,0.8);
}
.latest-project{
  text-align: center;
  margin:3rem 0;
}
.latest-project button:hover, .latest-project button:active, .latest-project button:focus{
  color: #E8E8E8;
  border-color: #E8E8E8;
}
.social-links{
  text-align: center;
}
.regular-text{
  max-width: 258px;
  overflow: hidden;
}

/*//--Contain-Start--//*/
.content-area-post{
    padding: 0;
}
.main-content{
    padding: 30px 45px 45px 45px;
    position: relative;
    height: 100%;
}
.sub-nav {
    border-bottom: solid 1px #f5f5f5;
    line-height: 30px;
}
.sub-nav a:hover, .sub-nav a:active, .sub-nav a.active {
    border-bottom: solid 2px #cccccc;
    color: #333333;
}
.sub-nav a {
    display: inline-block;
    margin-right: 10px;
    line-height: 30px;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    letter-spacing: 2pt;
    text-decoration: none;
    color: #b6b6b6;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    font-size: 1.2rem;
}
.post {
    padding: 30px 0;
    border-bottom: solid 1px #f5f5f5;
    display: block;
    overflow: hidden;
}
.post:after {
    clear: both;
}
.no-post {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}
.user-post{
 height: 100px;
}
.post .post-preview h2 {
    font-size: 32px;
    margin-top: 0;
    padding-right: 10px;
    letter-spacing: 1px;
    line-height: 40px;
    padding-bottom: 5px;
}
.hvr-underline-from-left:before{
  content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #333333;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-underline-from-left{
  display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
.post .post-preview h2 a {
    text-decoration: none;
    color: #0B2E46;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease 0s;
}
.post .post-preview p {
    font-size: 16px;
    padding-right: 10px;
    letter-spacing: 1px;
    color: #333333;
}
.meta{
    font-size: 16px;
    padding-right: 10px;
    letter-spacing: 1px;
}
.meta a{
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
}
.meta a:hover, .meta a:active {
    text-decoration: none;
    border-bottom: 1px solid #153143;
}
.meta i{
    font-size: normal;
}
.link-spacer{
    margin: 0 2px 4px 2px;
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #333333;
    border-radius: 100%;
}
.user-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    float: right;
    border-radius: 50%;
}
.user-post .avatar{  width: auto;  height: auto;  border-radius: 50%;}
.no-post-single{

}
.user-blog-image img{
  width: 100px;
  height: 100px;
  border-radius: 100px;
}
.no-post-list img{
   width: 100px;
  height: 100px;
}
.footer {
    padding-top: 20px;
    clear: both;
    overflow: hidden;
}
.footer-area{
    background: #333333;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 10px 0;
}
.footer-area .social-icon ul{
    margin: 0 auto;
    padding: 0;
}
.footer-area .social-icon ul li{
    display:inline-block;
    margin: 10px 10px;
    cursor: pointer;
    vertical-align: -webkit-baseline-middle;
}
.footer-area .social-icon ul li a{ color: #E8E8E8; margin: 0 auto;}
.footer-area .social-icon ul li a:hover{ color: #cccccc;}
.footer-area .copy-right-area{text-align: center; margin: 0;padding:15px 0px;}
.footer-area .copy-right-area h4, .footer-area .copy-right-area h4 a{ margin:0; padding:0 0 15px; margin:0 auto;color: #E8E8E8;font-size: 12px;letter-spacing: 0.2rem;padding-bottom: 0px;}
.footer-area .copy-right-area h4 a:hover{ color: #ccc;}
/*Menu Section End*/
/*///-:[Single-blog-Page-Start]:-///*/
.meta a.post-date{ color: #333; text-decoration: none;}
/*ADD Comments*/
.comment-area{ padding: 30px 0;}
.comment-area .commenter-author img { float: left; margin: 3px 10px 0 0; height: auto; width: 60px;}
.comment-area .commenter-author b { text-transform: uppercase; font-weight: 600; letter-spacing: 1px;}
.comment-area .commenter-date a{ font-size: 12px; text-decoration: none; letter-spacing: 1px;}
.comment-area .commenter-date a:hover{ color: #414141;}
.comment-area .commenter-content{ padding-left: 70px;}
.comment-area .commenter-content p{ color: #818181; font-size: 14px; letter-spacing: 1px;}
.comment-area .reply { text-align: right; padding: 0 15px 0 0; margin: 0 0 20px 70px; border-bottom: 1px solid #f5f5f5;}
.comment-area .reply a{  font-size: 14px; line-height: 14px; font-weight: 500; text-transform: uppercase;letter-spacing: 1px;}
.comment-area .reply a{text-decoration: none;}
.comment-area .reply a:hover, .comment-area .reply a:focus{ color: #414141;}
.post-comment-form{ clear: both; border-bottom: solid 1px #f5f5f5;}
.post-comment-form h3{ margin: 0 0 10px; letter-spacing: 1px;}
.post-comment-form a{ font-size: 14px;text-transform: uppercase;text-decoration: none;letter-spacing: 1px;}
.post-comment-form a:hover{  color:#31AF87;}
.comment-form textarea {margin:0 auto;}
/*ADD-Comment-End*/
/*///-:[Single-blog-Page-End]:-///*/
/*///-:[About-Page-Start]:-///*/
.top-bar{
  position: fixed;
  width: 100%;
  height: 70px;
  background: rgba(51, 51, 51, 0.83);
}
.top-bar .logo {
  width: auto;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar .logo .full-brand-text a{
  margin-left: 0px;
  color: ;
  margin-top: 0px;
}
.top-bar .logo a{
  margin-top: 11px;
  margin-left: 82px;
  margin-bottom: 0px;
  font-size: 30px;
  text-transform:uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: auto;
  height: 45px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.top-bar .logo a img{
    width: auto;
    height: 35px;
}
.top-bar .top-social{
  height: 80px;
  width:auto;
  float: right;
  display: flex;
  align-items: center;
}
.top-bar .top-social ul{
  margin: 0;
  padding: 0;
  text-align: center;
}
.top-bar .top-social ul li{
  display: inline-block;
  margin: 5px 5px;
  cursor: pointer;
  vertical-align: -webkit-baseline-middle;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  transition:0.3s all ease-in-out;
  background: #e8e8e8;
}
.top-bar .top-social ul li a{
  font-size: 14px;
  text-align: center;
  vertical-align:text-top;
  color: #0B2E46;
}
.top-bg-part{
  width: 100%;
  height: auto;
}
.contain-part{
  background: #ccc;
  width: 100%;
  height: 300px;
}
/*///-:[About-Page-End]:-///*/
.nav-next,
.nav-previous {
  display: inline
}
.navigation .nav-links {
    margin-bottom: 40px
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
/*Media Query*/
.main .comments-area .comment-form-author input.form-control,
.main .comments-area .comment-form-comment .form-control {
    border-radius: 0;
}
.comment .comment-author img {
    float: left;
    margin: 3px 10px 0 0;
    height: auto;
    width: 60px;
}
.comment span {
  display: none;
}
.comment b {
  font-weight: 600;
}
.comment .comment-content {
  padding-left: 70px;
}
.comment .reply {
  text-align: right;
  padding: 8px 15px 8px 0;
  margin: 0 0 15px 70px;
  border-bottom: 1px solid #333333;
}
.comment .comment-reply-link {
  font-weight: 900;
  text-transform: uppercase;
  border-left: 1px solid;
  padding-left: 15px;
  text-decoration: none;
}
.comment-respond a:hover,.comment-metadata a:hover,.read-more > a:hover,.post-preview a:hover {
    text-decoration: none;
    color: #333333;
    border-bottom: 1px solid #b6b6b6;
}
.comment-form .comment-notes,
.comment-form .logged-in-as a {
    padding: 7px 0 0;
    display: inline-block;
}
.comment-form input {
    margin: 0;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url { width: 30.28%; margin:1.8% 3.7% 9% 0; display: inline-block;}
.comment-form .comment-form-author { margin-left: 0;}
.comment-form .comment-form-url { margin-right: 0;}
.main .page-numbers {
    position: relative;
    float: left;
    padding: 6px 15px;
    margin-left: -1px;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #333337;
    margin-right: 15px;
    transition: .3s all ease-in-out;
    cursor: pointer;
    border-radius: 3px;
    margin-bottom: 10px;
}
.main a.page-numbers {  color: #333337;}
.main .page-numbers.current,
.main a.page-numbers:hover { background-color: #153143; color: #E8E8E8; border: 1px solid #153143;}
.read-more { margin-bottom: 7px;}
.nav-next {  float: right;}
/* css by purva*/
input[type='search']{
    width: 100%;
  margin: 15px 0 15px;
  border: 1px solid #878787;
  padding: 9px 15px 9px 15px;
  outline: 0;
  resize: none;
  max-height: 120px;

}
input[type='search'].form-control:focus{
    outline: 0;
     -webkit-box-shadow:none;
     box-shadow: none;
     border-color: black; 

}
.page-not-found p{
    font-size: 16px;
    padding-right: 10px;
    letter-spacing: 1px;
    color: #333333;
}
.page-not-found{
    padding: 30px 0px 0px 0px;
}
.search-label{
    width: 100%;
}
.search-label input.form-control{
    border-radius: 3px;
    height: 38px;
    color: #808080;
}
.search-title h3{
    margin-top: 30px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #808080;
}
.search-result p{
    font-size: 16px;
    padding-right: 10px;
    letter-spacing: 1px;
    color: #808080;
}
.full-brand-text h3{
    position: absolute;
    top: 10px;
    color: #E8E8E8;
    letter-spacing: 0.1rem;
    font-size: 2.0rem
}
.brand-text h3{
    position: absolute;
    top: 20px;
    color: #E8E8E8;
    letter-spacing: 0.1rem;
    
}
.full-brand-text h6{
  position: absolute;
  top: 43px;
  color: #E8E8E8;
  font-size:1.2rem;
}
.brand-text h6{
    left: 70px;
    position: relative;
    margin-top: 15px;
    color: #E8E8E8;

}
.full-width{
  padding-top: 50px;
}
.top-bg-part img{width: 100%;
     max-width: 100%; 
    height: 100%;
    max-height: 600px; }
.top-social button { background-color: #e8e8e8; color: #153143;}
@media (min-width: 992px) and (max-width: 1133px){
  .comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .comment-form-url{
    width: 100%;
    margin: 1.8% 3.7% 9% 0;
    display: inline-block;
  }
}

@media (min-width: 991px) and (max-width:1125px){
 .user-post{height:70px;}
}
@media (max-width: 991px){
    .sidebar {
        height: 490px;
        position: relative;
    }
    .main-content {
        padding: 25px 25px 0;
    }
    .user-post {
      height: 100px;
      width: 100px;
     }
    .no-post img{ width: 100%;height: 100%; }
    .single-blog-sidebar{
      position: static;
    }
}
@media (max-width: 767px){
  .meta{
    margin-bottom: 15px;
  }
  .comment-form .comment-form-author, .comment-form .comment-form-email, .comment-form .comment-form-url{
    width: 100%;
    margin: 0% 0% 2.5rem 0%;
  }
  .single-blog-sidebar{
 max-height: 600px;
}
.single-blog-bg{
 max-height: 600px;
  width: 100%;
}
.single-blog-bg img{
 max-height: 600px;
  width: 100%;
}
.single-blog-image-overlay{
      position: absolute;
    width: 100%;
    max-height: 600px;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(21, 49, 67,0.8);
}
.profile-image{
  width: 150px;
  height: 150px;
  border-radius: 150px;
  top:3rem;
}
.profile-section{
  padding: 20rem 2rem;
}
}
@media (max-width:685px){
    .top-bar .top-social{
        display: none;
    }
    .top-bar .logo a{
        margin-left: 30px;
    }
}
@media (max-width: 450px) {
    .sidenav {
      padding-top: 15px;
    }
    .sidenav a {
      font-size: 18px;
    }
    .main-content {
        padding: 15px 15px 0;
    }
    .no-post h2{
      line-height: 30px;
    }
    .no-post-single h2{
      line-height: 45px;
    }
    .post .post-preview h2 a {
        font-size: 18px;
    }
    .post .post-preview p {
        font-size: 14px;
    }
    .footer-area .copy-right-area{
      padding: 15px 15px  15px 15px;
    }
}    