* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

@font-face {
  font-family: 'Archivo';
  src: url(../font/Archivo.woff2) format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --theme-color: #fd8e44;
  --body-color: #fff6f0;
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: .65;
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: 'lora';
  font-weight: normal;
  font-size: 18px;
  position: relative;
  color: #6e797b;
  line-height: 1.5;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media(min-width: 576px) {

  .container {
    max-width: 540px
  }
}

@media(min-width: 768px) {

  .container {
    max-width: 720px
  }
}

@media(min-width: 992px) {

  .container {
    max-width: 960px;
    padding-right: 0;
    padding-left: 0;
  }
}

@media(min-width: 1200px) {

  .container {
    max-width: 1170px
  }
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5)
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease .4s;
}

a,
i,
cite,
em,
var,
address,
dfn,
ol,
li,
ul {
  font-style: normal;
  font-weight: 400;
  list-style: none;
  padding: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  color: var(--title-color);
}

[role=button] {
  cursor: pointer;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    width: 50%;
  }

}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

button {
  border-radius: 0
}

button:focus:not(:focus-visible) {
  outline: 0
}

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

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #104b59;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}


























.main-header {
  background-color: #104b59;
  position: sticky;
  top: 0;
  z-index: 99;
  padding-left: 65px;
  padding-right: 65px;
}

.main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

.main-header__logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.main-header__nav {
  margin-left: 8%;
}

.main-menu .main-menu__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
}

@media (min-width: 992px) {

  .main-menu .main-menu__list {
    display: flex;
  }
}

.main-menu .main-menu__list>li {
  padding: 0 18px;
  position: relative;
}

.main-menu .main-menu__list>li>a {
  font-weight: normal;
  font-size: 20px;
  line-height: initial;
  color: #fff;
  position: relative;
  transition: all .2s ease-in-out 0s;
}

.main-menu .main-menu__list>li>a:hover {
  color: var(--theme-color);
}

.main-header__right {
  display: flex;
  align-items: center;
  padding: 9.5px 0;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 992px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mobile-nav__btn.active span:nth-child(1) {
  transform: rotate(45deg);
  transition: 0.3s;
  position: relative;
  top: 2.4px;
}

.mobile-nav__btn.active span:nth-child(2) {
  display: none;
}

.mobile-nav__btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.blog-one {
  padding: 60px 0 120px;
  position: relative;
}

.blog-card {
  margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
}

.blog-card__content {
  background-color: var(--body-color);
  padding: 30px 40px 10px 40px;
  border-radius: 20px 20px 0 0;
  transition: all .5s ease;
}

.author-name {
  position: relative;
  margin: 0 -8px;
  background: #fff;
  padding: 0 15px 6px 0;
  position: relative;
  border-radius: 0 30px 30px 0;
  display: inline-flex;
}

.author-name:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 100%;
  left: -40px;
  top: 0;
  background: #fff;
}

.author-name a,
.author-name time {
  margin: 6px 8px 0;
  display: flex;
  align-items: center;
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0);
  transition: all .3s ease-in-out 0s;
}

.author-name i {
  font-size: 15px;
  margin-right: 5px;
}

.blog-card__title {
  font-size: 30px;
  line-height: 1.26666em;
  font-weight: 600;
  margin: 10px 0 20px;
}

.blog-card__title a {
  color: inherit;
  display: inline-block;
}

.blog-card__title:hover a {
  text-decoration: underline;
}

.blog-text {
  font-size: 16px;
  line-height: 30px;
}

.blog-card .post-info {
  background: #ede2da;
  position: relative;
  padding-left: 45px;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #104b59;
}

.post-info:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  left: -5px;
  top: 0;
  background: #ede2da;
}

.post-info:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: #8f9fa2;
  left: -2px;
  top: -6px;
  z-index: -1;
}

.post-info .tags {
  line-height: 37px;
  position: relative;
  z-index: 1;
}

.post-info a:hover {
  color: var(--theme-color);
}

.post-pagination {
  position: relative;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.post-pagination a {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 18px;
  border: 1px dashed #fff;
  background: #ede2da;
  color: #104b59;
  transition: all .2s ease-in-out 0s;
}

.post-pagination a.current,
.post-pagination a:hover {
  color: #fff;
  background-color: var(--theme-color);
}

.sidebar {
  position: relative;
}

.sidebar .sidebar__single {
  background: var(--body-color);
  border-radius: 5px;
  padding: 30px;
}

.sidebar .sidebar__single:not(:last-child) {
  margin-bottom: 30px;
}

.sidebar__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}

.sidebar__title img {
  margin-right: .25rem;
}

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

input,
textarea {
  outline: 0;
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.sidebar__search {
  position: relative;
  display: block;
  height: 55px;
}

.sidebar__search input {
  width: 100%;
  height: 100%;
  border: 1px solid #c8c8ca;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 55px 0 30px;
}

button {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  padding: 0;
  background: transparent;
}

.sidebar__search button {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  right: 0;
  top: 0;
  font-size: 20px;
  background: var(--theme-color);
  color: #fff;
  transition: all .3s ease-in-out 0s;
}

.sidebar__search button:hover {
  background: #104b59;
}

.sidebar__categories li {
  margin-bottom: 10px;
}

.sidebar__categories li a {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #104b59;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  padding: 0 20px;
  line-height: 45px;
  position: relative;
  z-index: 1;
  transition: all .3s ease-in-out 0s;
}

.sidebar__categories li a:hover {
  background: var(--theme-color);
  color: #fff;
  padding-left: 55px;
}

.sidebar__categories li a:before {
  content: url(../images/shape_49.png);
  position: absolute;
  left: 15px;
  top: 10px;
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.sidebar__categories li a:hover:before {
  opacity: 1;
}

.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item:not(:last-of-type) {
  border-bottom: 1px solid #dedecf;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.sidebar__posts__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.444em;
  margin: 0 0 10px;
}

.sidebar__posts__title a {
  color: inherit;
  font-weight: inherit;
}

.sidebar__posts__title a:hover {
  text-decoration: underline;
}

.sidebar__posts__content span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #868787;
}

.main-footer {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  line-height: 1.875em;
  background-color: #000;
}

.main-footer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 170px;
  bottom: 0;
  left: 0;
  background: url(../images/bg_05.png) no-repeat center bottom;
  z-index: 0;
}

.main-footer__bottom__inner {
  position: relative;
  z-index: 1;
  padding: 66px 0;
  margin-top: 60px;
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
}

.main-footer__copyright {
  margin: 0;
  font-weight: 500;
}

.main-footer__copyright a {
  color: #fff;
  transition: all .5s ease;
}

.blog-container {
  position: relative;
  background: var(--body-color);
  padding: 30px 40px 10px 40px;
}

@media (max-width:1000px) {
  .blog-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .blog-card__title {
    font-size: 20px;
  }
}

.blog-details__top-meta {
  display: inline-flex;
  margin: 0 -8px;
  background: #fff;
  padding: 0 15px 6px 0;
  position: relative;
  border-radius: 0 30px 30px 0;
}

.blog-details__top-meta:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 100%;
  left: -40px;
  top: 0;
  background: #fff;
}

.blog-details__top-meta li {
  margin: 6px 8px 0;
  display: flex;
  align-items: center;
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0);
  transition: all .3s ease-in-out 0s;
}

.blog-details__top-meta li span {
  font-size: 15px;
  margin-right: 5px;
}

.blog-details__title {
  font-size: 30px;
  line-height: 1.26666em;
  font-weight: 600;
  margin: 20px 0;
}

.blog-details__text p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}

.blog-details__text img {
  display: block;
  margin: 0 auto;
}

.blog-details-card {
  margin-bottom: 50px;
}

.leave-comment .section-title h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 50px 0 40px;
}

.leave-comment [class*="col-"] {
  margin-bottom: 25px;
}

textarea {
  display: block;
  width: 100%;
}

.leave-comment textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
}

.form-controller {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  background: #fff;
  color: #6e797b;
  font-size: 15px;
  height: 60px;
  padding: 0 20px;
}

.leave-comment .form-controller:focus {
  outline: 0;
  box-shadow: none;
  transition: all .3s ease-in-out;
}

.form-submit .btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 55px;
  padding: 0 40px;
  min-width: 170px;
  text-align: center;
  background: #104b59;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all .3s ease-in-out 0s;
  border-radius: .375rem;
}

.form-submit .btn-primary:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 150%;
  top: 0;
  right: calc(150% - 15px);
  background: #000;
  transform: skew(-15deg);
  z-index: -1;
  transition: all .4s ease-in-out 0s;
}

.form-submit .btn-primary:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
}

.form-submit .btn-primary:hover:before {
  right: -20px;
}

.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  margin-right: 10px;
}

@media (max-width:992px) {
  .main-header__inner {
    padding: 0;
    height: 50px;
  }

  .link_btn {
    display: none;
  }

  .main-header__logo a {
    white-space: nowrap;
    font-size: 20px;
  }

  .main-header__nav {
    margin: 0;
  }

  .main-header__right {
    margin-left: auto;
  }

  .main-header__logo {
    padding: 0;
  }

  .blog-one {
    padding: 20px 0 60px;
  }

  .post-pagination {
    margin-bottom: 30px;
  }

  .main-menu .main-menu__list {
    display: block;
    position: fixed;
    left: -70vw;
    width: 70vw;
    height: 100vh;
    top: 0;
    background: #104b59;
    transition: 0.5s all;
    overflow: auto;
    z-index: 100;
  }

  .main-menu .main-menu__list.active {
    left: 0;
  }

  .main-menu .main-menu__list>li {
    padding: 0;
    margin: 10px;
  }

  .main-menu .main-menu__list>li>a {
    padding: 6px 18px;
    display: block;
    border: none;
    border-radius: 0;
  }

  .contact-info-content {
    display: block;
  }

  .contact-info-content .contact-info-area {
    padding: 50px 20px;
    max-width: 100%;
  }

  .contact-info-content .contact-form-area {
    max-width: 100%;
    padding: 50px 20px;
  }

  .main-header {
    position: static;
    padding-left: 15px;
    padding-right: 15px;
  }

  nav[aria-label="breadcrumb"],.blog-details__top-meta {
    display: none;
  }

  .blog-one.detail_page {
    padding-top: 10px;
  }

  .blog-details__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
    padding: 0 15px;
    text-align: center;
  }

  .detail_page .blog-container {
    padding: 0;
    background: transparent;
  }

  .detail_page .blog-container .leave-comment {
    padding: 0 15px;
    background: var(--body-color);
  }

  .detail_page .col-lg-8,
  .detail_page .col-lg-4,
  .detail_page .container {
    padding: 0 12px;
  }

  .detail_page .row {
    margin-right: -12px;
    margin-left: -12px;
  }

  .main-header:has(+.detail_page) {
    position: static;
  }

  .recommended-article .section-title {
    padding: 0 15px;
  }

  /* .article_part_article {
    padding: 0 15px;
  } */
}

.img-before {
  padding: 5px 0;
  font-size: 14px;
  line-height: 26px;
}

.img-before .data-num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  color: #333333;
}

.img-before .data-num .like {
  display: flex;
  align-items: center;
  gap: 5px;
}

.img-before .data-num svg {
  display: block;
}

.img-before .data-num .comments_share {
  display: flex;
  gap: 8px;
}

.img-before .some-operation {
  display: flex;
  justify-content: space-around;
  color: #111;
}

.img-before + img {
  border-top: 2px solid #C8CBD0;
}

br:has(+.img-before),
.img-before + img + br {
  display: none;
}

.post_tag_name {
  font-size: 25px;
  line-height: 2;
  margin: 0;
  font-weight: 700;
}

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;
}


.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: 5px;
  width: 100%
}

.t_de {
  height: 0.2rem;
  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;
}