* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

@font-face {
  font-family: 'lora';
  src: url(../font/Lora-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-tap-highlight-color: transparent
}

body {
  font-family: 'lora', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #798696;
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width: 768px) {
  .container {
    max-width: 750px
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #374050;
}


h1 {
  font-size: 38px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

a {
  font-family: 'lora', sans-serif;
  color: #374050;
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #374050;
  opacity: 0.9;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

img {
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

/* --- Section --- */
.section {
  position: relative;
  padding-top: 20px;
  padding-bottom: 80px;
}

/* --  Input  -- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="url"],
input[type="tel"],
textarea {
  height: 40px;
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 4px;
  background: transparent;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: 0.2s border-color;
  transition: 0.2s border-color;
}

textarea {
  padding: 10px 15px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #c8adc4;
}

/*------------------------------------*\
	Logo
\*------------------------------------*/
.navbar-brand {
  padding: 0;
}

.navbar-brand .logo {
  margin-top: 15px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .navbar-brand {
    margin-left: 15px;
  }
}

#header {
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(235, 235, 235, 0.25);
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  height: 50px;
  font-size: 18px;
  line-height: 20px;
}

.navbar-right {
  display: flex;
}

.main-menu li a {
  text-transform: uppercase;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  line-height: 20px;
  position: relative;
  display: block;
  padding: 10px 15px;
}

.main-menu li a:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #c8adc4;
  width: 100%;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-menu li a:hover:after,
.main-menu li a:focus:after {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

/* -- Mobile Toggle Btn -- */
.navbar-toggle {
  position: fixed;
  right: 0;
  padding: 0;
  height: 40px;
  width: 40px;
  margin-top: 5px;
  z-index: 99;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.2s background;
  transition: 0.2s background;
}

.navbar-toggle>span:before,
.navbar-toggle>span:after {
  content: '';
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s -webkit-transform;
  transition: 0.2s -webkit-transform;
  transition: 0.2s transform;
  transition: 0.2s transform, 0.2s -webkit-transform;
}

.navbar-toggle>span,
.navbar-toggle>span:before,
.navbar-toggle>span:after {
  height: 2px;
  width: 25px;
  background-color: #374050;
}

.navbar-toggle>span:before {
  top: -10px;
}

.navbar-toggle>span:after {
  top: 10px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.single-blog {
  margin-bottom: 40px;
}

.single-blog .blog-img>a {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.single-blog .blog-img>a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #c8adc4;
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.single-blog .blog-img>a:hover:after {
  opacity: 0.7;
}

.single-blog .blog-img img {
  width: 100%;
}

.single-blog .blog-meta {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #EBEBEB;
}

.single-blog .blog-meta .blog-meta-author>a {
  color: #c8adc4;
}

.blog-meta .pull-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.single-blog .blog-meta .blog-meta-comments {
  margin-left: 10px;
}

.single-blog .blog-meta .blog-meta-comments>a {
  color: #798696;
}

.col-md-6,
.col-md-3,
.col-md-9,
.col-md-12,
.col-md-4,
.col-md-8,
.col-md-10 {
  padding: 0 15px;
}

@media (min-width: 992px) {
  .col-md-9 {
    width: 75%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
}

.post-pagination {
  margin-top: 40px;
  text-align: center;
  display: flex;
}

.pagination-back,
.pagination-next {
  display: block;
  text-align: center;
  border-radius: 40px;
  background-color: #EBEBEB;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  height: 40px;
  padding: 0px 30px;
  line-height: 40px;
  margin: 0;
}

.post-pagination .pages {
  display: flex;
}

.post-pagination .pages li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #EBEBEB;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.post-pagination .pages li:hover,
.post-pagination .pages li.active {
  background-color: #c8adc4;
  color: #FFF;
}

.post-pagination .pages li a {
  display: block;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

.post-pagination .pages li+li {
  margin-left: 10px;
}

.widget.search-widget {
  position: relative;
}

.widget.search-widget .input {
  padding-right: 60px;
}

.widget.search-widget button {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: none;
}

.widget.search-widget .input:focus+button {
  color: #c8adc4;
}

.category-widget .category {
  display: block;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.category-widget .category:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #c8adc4;
  position: absolute;
  top: 19px;
  left: 0;
}

.category-widget .category+.category {
  border-top: 1px solid #EBEBEB;
}

.widget+.widget {
  margin-top: 40px;
}

.single-post+.single-post {
  margin-top: 20px;
}

#bottom-footer {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.footer-social li {
  margin-left: 10px;
}

.footer-social li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #FFF;
  background-color: #EBEBEB;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.footer-social li a.facebook {
  background-color: #3b5998;
}

.footer-social li a.twitter {
  background-color: #55acee;
}

.footer-social li a.google-plus {
  background-color: #dd4b39;
}

.footer-social li a.instagram {
  background-color: #e95950;
}

.footer-social li a.youtube {
  background-color: #ff0000;
}

.footer-social li a.linkedin {
  background-color: #007bb5;
}

.footer-copyright {
  line-height: 40px;
}

.footmenu a {
  margin: 10px 5px 15px 20px;
}

#bottom-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #EBEBEB;
}

.hero-area {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #c8adc4;
}

.hero-area-tree li {
  display: inline-block;
  font-family: 'lora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-area-tree li>a {
  color: rgba(255, 255, 255, 0.8);
}

.white-text {
  color: #FFF;
}

.hero-area-tree li+li:before {
  content: "/";
  display: inline-block;
  margin: 0px 5px;
  color: rgba(235, 235, 235, 0.25);
}

.text-center {
  text-align: center;
}

.blog-share {
  border-top: 1px solid #EBEBEB;
  padding-top: 10px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.blog-share a {
  display: inline-block;
  margin-left: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  background-color: #EBEBEB;
  border-radius: 50%;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.blog-share a.facebook {
  background-color: #3b5998;
}

.blog-share a.twitter {
  background-color: #55acee;
}

.blog-share a.pinqu {
  background-color: #dd4b39;
}

.blog-comments {
  margin-top: 40px;
}

.blog-reply-form {
  margin-top: 40px;
}

.blog-reply-form .input {
  margin-bottom: 20px;
}

.blog-reply-form .input.name-input,
.blog-reply-form .input.email-input {
  width: calc(50% - 10px);
  float: left;
}

.blog-reply-form .input.email-input {
  margin-left: 20px;
}

.blog-reply-form textarea {
  height: 150px;
}

.main-button {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  background-color: #c8adc4;
  border: 2px solid transparent;
  border-radius: 40px;
  color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-button.icon-button:after {
  content: ">>";
  position: absolute;
  width: 30px;
  right: 15px;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  color: #c8adc4;
}

.main-button:hover,
.main-button:focus {
  background-color: #fff;
  border: 2px solid #c8adc4;
  color: #c8adc4;
}

.main-button.icon-button:hover,
.main-button.icon-button:focus {
  padding-right: 45px;
}

.main-button.icon-button:hover:after,
.main-button.icon-button:focus:after {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  #nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    max-width: 250px;
    height: 100vh;
    background: #FFF;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    padding-bottom: 40px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.4s all cubic-bezier(.77, 0, .18, 1);
    transition: 0.4s all cubic-bezier(.77, 0, .18, 1);
    z-index: 9;
  }

  #header.nav-collapse #nav {
    width: 100%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  .main-menu {
    margin: 0;
    display: block !important;
  }

  .main-menu li a {
    color: #374050 !important;
    display: inline-block;
    margin-left: 40px;
  }

  .navbar-header {
    display: flex;
    width: 100%;
  }

  .navbar-brand {
    margin-left: 0;
  }

  .navbar-toggle {
    position: relative;
    background: none;
    margin-left: auto;
  }

  .post-pagination .pages {
    display: none;
  }

  #main {
    margin-bottom: 80px;
  }

  .post-pagination {
    width: 100%;
  }

  .col-md-12 {
    width: 100%;
  }

  #bottom-footer {
    flex-direction: column;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
    line-height: 25px;
    margin-top: 20px;
  }

  #header.nav-collapse .navbar-toggle>span {
    background: transparent;
  }

  #header.nav-collapse .navbar-toggle>span:before {
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }

  #header.nav-collapse .navbar-toggle>span:after {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
}

@media only screen and (max-width: 480px) {

  .blog-reply-form .input.name-input,
  .blog-reply-form .input.email-input {
    width: 100%;
    float: none;
  }

  .blog-reply-form .input.email-input {
    margin-left: 0px;
  }
}



















.positionFixed {
  bottom: 0px;
  left: 50%;
  position: fixed;
  transform: translate(-50%, 0%);
  z-index: 999;
  width: 100%;
  background-color: #e4e4e4;
  display: flex;
  justify-content: center;
}

.ad-div {
  margin-bottom: 50px;
  width: 100%
}

.t_de {
  height: 0.2rem;
  max-width: 100%;
  line-height: 0.3rem;
  font-size: 0.6rem;
  padding: 0.5rem 0 1rem 0;
  box-sizing: border-box;
  color: #707070;
  text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}
/* pagenation */
.post-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.post-pagination li {
    position: relative;
    display: inline-block;
}

.post-pagination li a,
.post-pagination li span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #ffffff;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    z-index: 1;
    transition: all 500ms ease;
}

.post-pagination li a.current {
    background: #c8adc4;
    color: #fff;
}

.post-pagination li:hover a {
    background: #c8adc4;
    color: #fff;
}
nav[aria-label="breadcrumb"] {
    margin-bottom: 20px;
}

nav ol.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ol.breadcrumb li {
    display: inline;
    word-break: break-all;
}
.blog-post img{
  display: block;
  margin: 10px auto;
}