@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
label,
body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #fff;
}

body {
  background-color: #0b0a10;
  background-image: -webkit-linear-gradient(45deg, #0b0a10, #1e1e22);
  background-image: linear-gradient(45deg, #0b0a10, #1e1e22);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #F5D99A;
}

p,
ul {
  font-weight: 400;
}

.btn-link {
  color: #F5D99A;
}

.page-inner {
  background: #27292d;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.admin-bar .fixed {
  top: 32px;
}

.left-side .sub-menu {
	left: 0;
	right: unset !important;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.custom-logo-link img {
  max-width: 150px;
  height: auto;
}

.top {
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn-main-outline {
  position: relative;
  padding: 9px 25px;
  border-radius: 25px;
  color: #F5D99A;
  border: 1px solid #F5D99A;
  text-transform: uppercase;
  line-height: normal;
  transition: 0.3s;
}
.btn-main-outline:hover {
  background: #F5D99A;
  color: #262627;
}

.btn-main {
  position: relative;
  padding: 9px 25px;
  border-radius: 25px;
  background: #F5D99A;
  color: #262627;
  border: 1px solid #F5D99A;
  text-transform: uppercase;
  line-height: normal;
  transition: 0.3s;
}
.btn-main:hover {
  background: transparent;
  color: #F5D99A;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-toggler {
  display: none;
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.mobile-menu-toggler.show span {
  top: 12px;
  transform: rotate(45deg);
}
.mobile-menu-toggler.show span:nth-child(2) {
  transform: unset;
  opacity: 0;
}
.mobile-menu-toggler.show span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}
.mobile-menu-toggler span {
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.5s;
}
.mobile-menu-toggler span:nth-child(2) {
  top: 12px;
}
.mobile-menu-toggler span:nth-child(3) {
  top: 21px;
}

.main-menu {
  display: flex;
  align-items: center;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.main-menu > .menu-item {
  position: relative;
}
.main-menu > .menu-item > a {
  padding: 1rem;
  color: #fff;
  background-color: transparent;
  transition: 0.3s;
}
.main-menu > .menu-item > a:hover {
  background-color: #F5D99A;
  color: #000000;
}
.main-menu > .menu-item.current-menu-item > a {
  background-color: #F5D99A;
  color: #000000;
}
.main-menu > .menu-item:hover .sub-menu {
  display: block;
}
.main-menu .sub-menu {
  display: none;
  padding: 0;
  list-style: none;
	position: absolute;
  right: 0;
  top: 35px;
  z-index: 1;
  background: #1f2024;
  color: #fff;
  border-top: 2px solid #F5D99A;
  padding: 1rem;
}
.main-menu .sub-menu a {
  color: #fff;
  display: block;
  padding: 0.3rem;
}
.main-menu .sub-menu a:hover {
  color: #F5D99A;
}

.main-menu-wrapper {
  padding: 1rem;
  background: rgba(31, 32, 36, 0.95);
}

.main-content button {
  position: relative;
  padding: 9px 25px;
  border-radius: 25px;
  background: #F5D99A;
  color: #262627;
  border: 1px solid #F5D99A;
  text-transform: uppercase;
  line-height: normal;
  transition: 0.3s;
}
.main-content button:hover {
  background: transparent;
  color: #F5D99A;
}

.author {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 3rem 0;
}
.author .avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comment {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}
.comment .avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.comment .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comments-title {
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.comments-title::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-left: 0;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}
.comments-title::after {
  content: "";
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.comment-respond {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.comment-respond .comment-form-url {
  display: none;
}
.comment-respond .comment-form-cookies-consent {
  display: none;
}
.comment-respond .required {
  color: red;
}
.comment-respond .comment-form-comment label {
  display: none;
}
.comment-respond .comment-form-comment textarea {
  background: transparent;
  color: #fff;
  width: 100%;
}
.comment-respond .comment-form-author {
  display: inline-block;
  width: 49%;
  margin-right: auto;
}
.comment-respond .comment-form-author label {
  display: block;
}
.comment-respond .comment-form-author input {
  background: transparent;
  color: #fff;
  width: 100%;
  border: 1px solid #696969;
}
.comment-respond .comment-form-email {
  display: inline-block;
  width: 49%;
  margin-left: auto;
}
.comment-respond .comment-form-email label {
  display: block;
}
.comment-respond .comment-form-email input {
  background: transparent;
  color: #fff;
  width: 100%;
  border: 1px solid #696969;
}
.comment-respond .form-submit input {
  background-color: #ebcc8d;
  color: #000000;
  border: 1px;
  padding: 0.5rem 1rem;
}
.comment-respond .form-submit input:hover {
  background-color: #b99a5b;
}

.comment-reply-title {
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.comment-reply-title::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-left: 0;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}
.comment-reply-title::after {
  content: "";
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.title {
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.title::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-left: 0;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}
.title::after {
  content: "";
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.blog img {
  width: 100%;
  height: auto;
}
.blog:hover h5 {
  color: #F5D99A;
}

.text-up {
  text-transform: uppercase;
}

.sticky {
  position: sticky;
  top: 50px;
}

.articles {
  margin-top: 2rem;
}
.articles ul {
  position: relative;
  padding-left: 15px;
}
.articles ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.articles ul a:hover h6 {
  color: #ebcc8d;
}
.articles ul a:hover span::before {
  background-color: #ebcc8d;
  color: #000000;
}
.articles ul span {
  font-size: 10px;
  display: block;
  position: relative;
  color: #ccc;
  line-height: 12px;
  margin-bottom: 5px;
}
.articles ul span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  background: #27292d;
  position: absolute;
  left: -20px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
}

footer {
  background: #161619;
  padding: 2rem 0;
  text-align: center;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}
.footer-menu li {
  display: inline-block;
  margin: 0 5px;
}
.footer-menu li a {
  color: #fff;
}
.footer-menu li a:hover {
  color: #F5D99A;
}

.language-menu-wrap {
  background: rgb(27, 27, 27);
  background: linear-gradient(0deg, rgb(27, 27, 27) 0%, rgb(84, 84, 84) 100%);
  position: fixed;
  bottom: 0;
  right: 4rem;
  border-radius: 3px;
}
.language-menu-wrap:hover .lang-menu .sub-menu {
  display: block;
}
.language-menu-wrap .lang-menu {
  list-style: none;
  margin-bottom: 0;
  padding: 5px;
}
.language-menu-wrap .lang-menu.show .sub-menu {
  display: block;
}
.language-menu-wrap .lang-menu a {
  padding: 1rem;
}
.language-menu-wrap .lang-menu .sub-menu {
  list-style: none;
  padding: 0;
  display: none;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  display: block;
  margin: auto;
  max-width: 100%;
}

iframe {
  max-width: 100%;
  height: auto;
}

.site-button {
  display: block;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .alignleft, .alignright {
    float: none;
    margin-left: 0;
    display: block;
    margin: auto;
    max-width: 100%;
  }
  .language-menu-wrap {
    right: 0;
  }
  .author {
    flex-direction: column;
  }
  .comment {
    flex-direction: column;
  }
  .mobile-menu-toggler {
    display: block;
  }
  .admin-bar .logo-wrap {
    top: 46px;
  }
  .admin-bar .top {
    padding-top: calc(46px + 2rem);
  }
  .admin-bar .nav-wrap {
    padding-top: calc(103px + 1rem);
  }
  .logo-wrap {
    width: 100%;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #1f2024;
    padding: 1rem;
  }
  .top {
    flex-direction: column;
    padding: 1rem;
    padding-top: 2rem;
  }
  .nav-wrap {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: #1f2024;
    z-index: 998;
    padding-top: calc(57px + 1rem);
    transform: translateX(-100%);
    transition: 0.5s;
  }
  .nav-wrap.show {
    transform: translateX(0);
  }
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-menu a {
    color: #fff !important;
    padding: 0.3rem !important;
    display: block;
    background-color: transparent !important;
  }
  .main-menu a:hover {
    color: #F5D99A !important;
  }
  .main-menu > .menu-item:hover .sub-menu {
    background: transparent;
    border-top: unset;
    padding: 0;
    padding-left: 5px;
  }
  .main-menu .sub-menu {
    display: block !important;
    position: relative !important;
    top: unset !important;
    left: unset !important;
    padding-left: 5px;
  }
  .main-menu-wrapper {
    padding: 0;
  }
}

/*# sourceMappingURL=style.css.map */
