/* scrollUp */
.scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 20px;
    border-radius: 6px;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: #A17D24;
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
    background: #335F46;
}


.landing-page{
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.landing-page .section {
      width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .section-content {
  width: 100%;
 max-width: 1200px;
}

.header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0;
  border-bottom: 1px solid rgba(255,255,255, 0.14);
  z-index: 11;
}

.header .section-content {
  display: flex;
  align-items: center;
}
.header .section-content .logo-header{
  position: relative;
  display: block;
}
.header .section-content .logo-header a img{
  width: 100%;
  height: auto;
}
.header .section-content .header-content {
  border-left: 1px solid #DEE5ED;
  width: 100%;
}

.header .section-content .header-content .content-top {
  border-bottom: 1px solid #DEE5ED;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .section-content .header-content .content-top .info-tel {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}
.header .section-content .header-content .content-top .info-tel img {
  width: 25px;
  height: 25px;
}
.header .section-content .header-content .content-top .info-tel span {
  font-size: 0.9rem;
  color: #222222;
  font-weight: 500;
}
.header .section-content .header-content .content-top .action-user {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.header .section-content .header-content .content-top .action-user .login-link {
  color: #222222;
  font-weight: 500;
  size: 1rem;
  text-decoration: none;
}
.header .section-content .header-content .content-bottom {
  position: relative;
  display: block;
   padding: 12px 24px 2px;
}
.header .section-content .header-content .content-bottom .menu-area__inner{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header .section-content .header-content .content-bottom .social-links {
  display: flex;
  align-items: start;
  column-gap: 1rem;
}
.header .section-content .header-content .content-bottom .menu-area__inner .list-nav-links {
  display: flex;
  align-items: baseline;
  column-gap: 1rem;
  list-style: none;
}
.header .section-content .header-content .content-bottom .menu-area__inner .list-nav-links .link-item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 100%;
  padding: 0.45rem 0.55rem;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: #222222;
}
.header .section-content .header-content .content-bottom .menu-area__inner .list-nav-links .link-item:hover, 
.header .section-content .header-content .content-bottom .menu-area__inner .list-nav-links .link-item.active {
  background-color: #A17D24;
  color: #FFFFFF;
  border-color: #335F46;
}

/* === MENU MOBILE === ***/
.header .section-content .header-content .content-bottom .menu-area__inner .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  color: #212529;
  display: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

/*=============================
	Mobile Menu
===============================*/

.nav-logo img {
    width: 150px;
    height: 70px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .list-nav-links li.current>a:before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .list-nav-links {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .list-nav-links ul {
    padding: 0;
    margin: 0;
}

.mobile-menu .list-nav-links li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .list-nav-links:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .list-nav-links li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .list-nav-links li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--thm-black);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.mobile-menu .list-nav-links li>a:hover {
    color: #A17D24;
}

.mobile-menu .list-nav-links li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .list-nav-links li ul li ul li a {
    margin-left: 40px;
}

.mobile-menu .list-nav-links li ul li ul li ul li a {
    margin-left: 60px;
}

.mobile-menu .list-nav-links li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .list-nav-links li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    background: #A17D24;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .list-nav-links li.menu-item-has-children .dropdown-btn i {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .list-nav-links li.menu-item-has-children .dropdown-btn.open i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #A17D24;
}

.mobile-menu .list-nav-links li>ul,
.mobile-menu .list-nav-links li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}

.mobile-menu .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #212529;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.mobile-menu .social-links li a:hover {
    border-color: #A17D24;
    background: #A17D24;
    color: #fff;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #fff;
    display: none;
    padding: 34px 0 35px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.menu-area .mobile-nav-toggler:hover {
    color: #A17D24;
}

.mobile-menu .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 25px 0px;
}

.mobile-menu .contact-info .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #A17D24;
    border-radius: 50%;
}

.mobile-menu .contact-info .icon-box span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
}

.mobile-menu .contact-info p {
    margin: 0;
    margin-left: 15px;
    font-weight: 600;
}

.mobile-menu .contact-info p a {
    color: #212529;
}

.mobile-menu .contact-info p a:hover {
    color: #A17D24;
}


/* === PAGE TITLE === */

#pagetitle {
  background-color: #f5f5f5;
  padding: 15px 0px;
  position: relative;
  overflow: hidden;
  /*text-align: center;*/
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #pagetitle {
    padding: 20px 0;
  }
}
#pagetitle:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#pagetitle.hide-overlay:before {
  background-image: none;
}
#pagetitle .page-title {
  color: #222222;
  font-size: 22px;
  line-height: 1.33333;
  margin-bottom: 0;
  margin-left: auto;
  font-weight: 600;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  #pagetitle .page-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  #pagetitle .page-title {
    font-size: 18px;
  }
}

#pagetitle .page-title-inner {
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  margin: 0 auto;
}
#pagetitle .ptitle-particle {
  position: absolute;
  z-index: -1;
}
.breadcumb{
  background: #ccc;
  padding: 20px 15px;
}
.ct-breadcrumb {
  margin: 0;
  list-style: none;
  color: #834d0e;
}
.ct-breadcrumb li {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .ct-breadcrumb li {
    font-size: 14px;
  }
}
.ct-breadcrumb li:after {
  content: "\f054";
  margin: 0 12px;
  color: inherit;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
}
.ct-breadcrumb li span {
  color: #A17D24;
}
.ct-breadcrumb li a {
  color: inherit;
}
.ct-breadcrumb li:last-child:after {
  display: none;
}
.form-actions .btn-action{
  border: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: #A17D24;
  color: #FFFFFF;
  float: inline-end;
}
.single-hentry.product .entry-meta, .single-hentry.product .entry-holder {
  display: none;
}
.single-hentry .entry-featured {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.single-hentry .entry-featured:after {
  content: "";
  background: #fff;
  -webkit-transition: all 2s;
  -khtml-transition: all 2s;
  -moz-transition: all 2s;
  -ms-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
  position: absolute;
  height: 120%;
  width: 135px;
  opacity: 0.2;
  left: -155%;
  top: -10%;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.single-hentry .entry-featured img {
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  width: 100%;
}
.single-hentry .entry-title {
  font-size: 28px;
  margin-bottom: 22px;
  word-break: break-all;
  display: flex;
}
@media screen and (max-width: 767px) {
  .single-hentry .entry-title {
    font-size: 24px;
  }
}
.single-hentry .entry-title i {
  margin-right: 8px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-size: 16px;
  color: var(--primary-color);
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border: 1px solid rgba(var(--third-color-rgb), 0.15);
}
.single-hentry .entry-title a {
  color: inherit;
}
.single-hentry .entry-title a:hover {
  color: var(--primary-color);
}
.single-hentry .entry-meta .item-category a + a {
  margin-left: 3px;
}
.single-hentry .entry-meta .item-comment i {
  margin-right: 0;
}
.single-hentry .entry-excerpt {
  margin-bottom: 33px;
}
.single-hentry .btn {
  top: -30px;
  right: 40px;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 62px;
  padding: 0;
  -webkit-border-radius: 60px;
  -khtml-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  background-color: #fff;
  color: var(--secondary-color);
  overflow: hidden;
  z-index: 2;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
}
.single-hentry .btn i {
  font-size: 18px;
  animation-delay: 1.3s;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.single-hentry .entry-body {
  position: relative;
  padding-top: 36px;
  width: 100%;
}
.single-hentry:hover .entry-featured:after {
  left: 130%;
}
.single-hentry:hover .entry-title i {
  background-color: var(--primary-color);
  color: #fff;
}
.single-hentry:hover .btn {
  background-color: var(--primary-color);
  color: #fff;
}
.single-hentry:hover .btn i {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -khtml-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  -ms-animation: toRightFromLeft 0.3s forwards;
  -o-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}
.single-hentry.archive {
  margin: 0 0 60px 0;
  -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
}
.single-hentry.archive .item-author {
  margin-bottom: 22px;
}
.single-hentry.archive .item-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .single-hentry.archive .item-author img {
    width: 25px;
    height: 25px;
  }
}
.single-hentry.archive .item-author a {
  color: var(--third-color);
  line-height: 40px;
}
.single-hentry.archive .item-author a:hover {
  color: var(--primary-color);
}
.single-hentry.archive .entry-body {
  padding: 40px 40px 18px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single-hentry.archive .entry-body {
    padding: 30px 15px 18px;
  }
}
.single-hentry.archive .entry-body .ct-item-meta {
  padding-top: 15px;
  border-top: 1px solid rgba(var(--third-color-rgb), 0.15);
  margin-bottom: 0;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social {
  flex-grow: 1;
  justify-content: flex-end;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .icon-label {
  font-size: 13px;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .icon-label i {
  position: relative;
  top: 1px;
  font-size: 15px;
  margin-right: 3px;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social i {
  margin-right: 0;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social a {
  line-height: 1;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social a + a {
  margin-left: 5px;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social {
  position: relative;
  padding-right: 0px;
  display: flex;
  align-items: center;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a {
  right: 0;
  position: absolute;
  opacity: 0;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a:nth-child(2) {
  right: 0px;
  transition-duration: 0.4s;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a:nth-child(3) {
  right: 5px;
  transition-duration: 0.3s;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a:nth-child(4) {
  right: 0;
  transition-duration: 0.2s;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social {
  padding-right: 70px;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a {
  opacity: 1;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:before {
  opacity: 0;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:nth-child(2) {
  right: 50px;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:nth-child(3) {
  right: 25px;
}
.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:nth-child(4) {
  right: 0;
}
.search-results .site-main .single-hentry.archive + .archive {
  margin-top: 75px;
}
.single-post .entry-meta {
  margin-bottom: 22px;
}
.single-post .entry-meta li {
  font-weight: 400;
}
.single-post .entry-meta li.item-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .single-post .entry-meta li.item-author img {
    width: 25px;
    height: 25px;
  }
}
.single-post .entry-meta li.item-category a + a {
  margin-left: 4px;
}
.single-post .entry-content p {
  margin-bottom: 26px;
}
.single-post .entry-content p:last-child {
  margin-bottom: 0;
}
.single-post .entry-content blockquote p {
  margin-bottom: 13px;
}
.single-post .single-heading {
  font-size: 26px;
  margin-bottom: 18px;
  padding-top: 5px;
}
.single-post .entry-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-grow: 1;
  margin-right: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.single-post .entry-tags a {
  margin-top: 5px;
  margin-bottom: 5px;
}
.single-post .entry-social {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
  align-items: center;
}
.single-post .entry-social a {
  width: 32px;
  height: 32px;
  -webkit-border-radius: 32px;
  -khtml-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  font-size: 15px;
  background-color: transparent;
  display: inline-block;
  line-height: 32px;
  color: var(--third-color);
  text-align: center;
}
.single-post .entry-social a + a {
  margin-left: 3px;
}
.single-post .entry-social a:hover {
  -webkit-transform: translateY(-4px);
  -khtml-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
  color: var(--primary-color);
}
.single-post .entry-author-info {
  background-color: #fff;
  border: 1px solid rgba(var(--third-color-rgb), 0.2);
  padding: 40px 50px;
  margin-bottom: 60px;
  margin: 0 0 60px;
}
@media screen and (min-width: 768px) {
  .single-post .entry-author-info {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 1199px) {
  .single-post .entry-author-info {
    margin-bottom: 40px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .single-post .entry-author-info {
    margin-bottom: 30px;
    padding: 20px 15px;
  }
}
.single-post .entry-author-info .entry-author-avatar {
  min-width: 160px;
  width: 160px;
}
@media screen and (min-width: 768px) {
  .single-post .entry-author-info .entry-author-avatar {
    margin-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  .single-post .entry-author-info .entry-author-avatar {
    margin-bottom: 35px;
  }
}
.single-post .entry-author-info .entry-author-avatar img {
  width: 100%;
  -webkit-border-radius: 160px;
  -khtml-border-radius: 160px;
  -moz-border-radius: 160px;
  -ms-border-radius: 160px;
  -o-border-radius: 160px;
  border-radius: 160px;
}
.single-post .entry-author-info .author-name {
  margin-top: -4px;
  margin-bottom: 12px;
  font-size: 22px;
}
.single-post .entry-author-info .author-name a {
  color: inherit;
}
.single-post .entry-author-info .author-name a:hover {
  color: var(--primary-color);
}
.single-post .entry-author-info .author-description {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}
.single-post .entry-author-info .user-social {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.single-post .entry-author-info .user-social a {
  color: #415674;
  margin-right: 20px;
}
.single-post .entry-author-info .user-social a i:before {
  font-weight: bold;
}
.single-post .entry-author-info .user-social a:hover {
  color: var(--primary-color);
}
.single-post .entry-blog {
  overflow: hidden;
  margin-bottom: 60px;
  -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.09);
  padding-bottom: 40px;
}
.single-post .entry-blog .entry-body {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 991px) {
  .single-post .entry-blog .entry-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .single-post .entry-blog .entry-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.hero {
  background-image: url("../../../../public/images/hero-back.png");
  width: 100%;
  height: calc(80vh + 2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}

.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5rem;
}
.hero .hero-content .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .hero-content .section-content .text-hero h1 {
  color: #222222;
  font-weight: 900;
  line-height: 150%;
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
.hero .hero-content .section-content .text-hero h1 span {
  color: #A17D24;
}
.hero .hero-content .section-content .text-hero p {
  width: 90%;
  margin-bottom: 3rem;
}
.hero .hero-content .section-content .text-hero .hero-btns {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.hero .hero-content .section-content .text-hero .hero-btns button {
  background-color: transparent;
  border: none;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
}
.hero .hero-content .section-content .text-hero .hero-btns .btn-hero-one {
  background-color: #A17D24;
}
.hero .hero-content .section-content .text-hero .hero-btns .btn-hero-two {
  background-color: #335F46;
}
.hero .hero-content .section-content .text-hero .hero-btns .except {
  color: #222222;
}
.hero .hero-content .section-content .img-hero {
  display: block;
}
.hero .hero-content .section-content .img-hero img {
  width: 440px;
  height: 440px;
  object-fit: cover;
}
.entry-content{
  padding: 4rem 1rem;
}
.highlights {
  background: #ffffff;
  padding: 3rem 3.5rem;
}
.highlights .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.highlights .section-content .highlight-item {
  width: 30%;
  padding: 20px;
  background-image: url("../../../../public/images/card-back.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 75%;
}
.highlights .section-content .highlight-item .content-card {
  text-align: start;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.highlights .section-content .highlight-item .content-card .icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 0.75rem;
}
.highlights .section-content .highlight-item .content-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.highlights .section-content .highlight-item .content-card p {
  font-size: 0.9rem;
  color: #222222;
  line-height: 1.6;
}

.circular-upload .wpcf7 input[type="file"]{
  width: 100px;
  height: 100px;
  background-color: #EBEBEF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.news-events .section-content{
  padding: 4rem 1rem;
}

.news-events .news-events-content {
  display: flex;
  gap: 20px;
}
.news-events .news-events-content .news-list .news-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.news-events .news-events-content .news-list .news-item .news-image {
  width: 300px;
  height: 200px;
}
.news-events .news-events-content .news-list .news-item .news-image img {
  width: 100%;
  height: 100%;
}
.news-events .news-events-content .news-list .news-item .news-details {
  width: 70%;
}
.news-events .news-events-content .news-list .news-item .news-details article {
  display: flex;
  align-items: baseline;
  column-gap: .5rem;
  margin-bottom: 1rem;
}
.news-events .news-events-content .news-list .news-item .news-details article .news-tag {
  padding: 5px 10px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: bold;
  background-color: #A17D24;
}
.news-events .news-events-content .news-list .news-item .news-details article .news-tag a{
  color: #ffffff !important;
}
.news-events .news-events-content .news-list .news-item .news-details article .news-date {
  display: flex;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
  align-items: center;
  column-gap: .35rem;
}
.news-events .news-events-content .news-list .news-details h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news-events .news-events-content .news-list .news-details h3 a{
  color: #222222;
}
.news-events .news-events-content .news-list .news-details p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: .5rem;
}

/*
.featured-women {
  background-image: url("../../../../public/images/destak-back.png");
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.featured-women .section-content {
  padding: 4rem 1rem;
}
.featured-women .section-content .section-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}
.featured-women .section-content .section-header article {
  width: 65%;
}
.featured-women .section-content .section-header article h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.featured-women .section-content .section-header article p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ccc;
}
.featured-women .section-content .section-header .btn-view-more {
  color: #fff;
}
.featured-women .section-content .featured-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.featured-women .section-content .featured-grid .featured-card {
  background: #fff;
  color: #333;
  overflow: hidden;
  width: calc(25% - 20px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.featured-women .section-content .featured-grid .featured-card .card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.featured-women .section-content .featured-grid .featured-card .card-content {
  padding: 20px 15px;
}
.featured-women .section-content .featured-grid .featured-card .card-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.featured-women .section-content .featured-grid .featured-card .card-content .position {
  font-size: 14px;
  color: #ff0099;
  margin-bottom: 10px;
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
.featured-women .section-content .featured-grid .featured-card .card-content .company {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.featured-women .section-content .featured-grid .featured-card .card-content .company img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.featured-women .section-content .featured-grid .featured-card .card-content .achievements {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.featured-women .section-content .featured-grid .featured-card .card-content .achievements li {
  font-size: 14px;
  margin-bottom: 5px;
}
.featured-women .section-content .featured-grid .featured-card .card-content .achievements li i {
  margin-right: 5px;
  color: #ff0099;
}
.featured-women .section-content .featured-grid .featured-card .card-content .profile-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-women .section-content .featured-grid .featured-card .card-content .profile-link a {
  font-size: 14px;
  color: #222222;
  text-decoration: none;
  display: flex;
  align-items: end;
  column-gap: 0.5rem;
}
.featured-women .section-content .featured-grid .featured-card .card-content .profile-link a i {
  font-size: 0.8rem;
  transition: 0.4s ease;
}
.featured-women .section-content .featured-grid .featured-card .card-content .profile-link a:hover i {
  transform: translateX(3px);
}
*/
/*
.gallery {
  background-image: url("../../../../public/images/destak-back.png");
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gallery .section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 1rem;
}
.gallery .section-content .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}
.gallery .section-content .section-header article {
  text-align: center;
}
.gallery .section-content .section-header article h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.gallery .section-content .section-header article p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ccc;
}
.gallery .section-content .btn-view-more {
  color: #fff;
  margin: 2rem 0;
}
.gallery .section-content .type-content {
  background-color: #212225;
  padding: 4px;
  display: flex;
  column-gap: 0.5rem;
  width: 50%;
  margin-bottom: 2rem;
}
.gallery .section-content .type-content .item-type {
  padding: 0.45rem 0;
  color: #CECECE;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}
.gallery .section-content .type-content .item-type.active, .gallery .section-content .type-content .item-type:hover {
  background-color: #335F46;
}
.gallery .section-content .gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.gallery .section-content .gallery-grid img {
  width: 100%;
  height: 100%;
}
.gallery .section-content .parceiro {
  width: 55%;
  margin: 2rem 0;
}
.gallery .section-content .img-parceiros {
  display: flex;
  align-items: center;
  column-gap: 1.75rem;
}
.gallery .section-content .img-parceiros .par-item {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .section-content .img-parceiros .par-item img {
  width: 104px;
  height: 104px;
}
.gallery .section-content .img-parceiros .mirempet {
  background-color: #FFFFFF;
}
.gallery .section-content .img-parceiros .sonangol {
  background-color: #FCE302;
}
.gallery .section-content .img-parceiros .total {
  background-color: #FFFFFF;
}
.gallery .section-content .img-parceiros .bp {
  background-color: #FFFFFF;
}
.gallery .section-content .img-parceiros .eni {
  background-color: #F5E54D;
}*/


.footer {
  background-color: rgba(128, 75, 18, 1);
  font-family: 'Inter', sans-serif;
  padding: 2rem 3.5rem;
}
.footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: auto;
}
.footer .footer-container .footer-about {
  flex: 1 1 200px;
}
.footer .footer-container .footer-about .footer-logo {
  width: 200px;
}
.footer .footer-container .footer-about p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
.footer .footer-container .footer-about a {
  margin-right: 10px;
}
.footer .footer-container .footer-about a img {
  width: 22px;
  height: 22px;
}
.footer .footer-container .footer-links, .footer .footer-container .footer-contact {
  flex: 1 1 200px;
}
.footer .footer-container .footer-links h4, .footer .footer-container .footer-contact h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}
.footer .footer-container .footer-links p, .footer .footer-container .footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #ffffff;
}
.footer .footer-container .footer-links p i, .footer .footer-container .footer-contact p i {
  margin-right: 8px;
  color: #FFFFFF;
}
.footer .footer-container .footer-links ul, .footer .footer-container .footer-contact ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: start;
  flex-direction: column;
  row-gap: 0.5rem;
}
.footer .footer-container .footer-links ul li a, .footer .footer-container .footer-contact ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.footer .footer-container .footer-links ul li a:hover, .footer .footer-container .footer-contact ul li a:hover {
  color: #212225;
}
.footer .footer-bottom {
  border-top: 1px solid #FFFFFF;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}
.footer .footer-bottom p {
  color: #ffffff;
}
.footer .footer-bottom .footer-policies a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}
.btn-view-more {
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  background-color: transparent;
  border: none;
  color: #222222;
}
.btn-view-more i {
  font-size: 0.8rem;
  transition: 0.4s ease;
}
.btn-view-more:hover i {
  transform: translateX(6px);
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-group textarea, .form-group select {
  width: 100%;
  margin-bottom: 0.5rem;
}
.form-group .error {
  color: red;
  font-size: 0.85rem;
}
.form-group .btn-search {
  background-color: #335F46;
  color: #FFFFFF;
  border: none;
  padding: 0.5rem 0.75rem;
}
.form-actions {
  display: inline-block;
  float: right;
}
.form-actions button {
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.form-actions button:nth-child(1) {
  background-color: #ccc;
  color: #212225;
}
.form-actions button:nth-child(2) {
  background-color: #A17D24;
  color: #FFFFFF;
}

.single-post-section{
  position: relative;
  display: block;
  padding: 60px 0px 60px;
  z-index: 1;
}
.news-events-details{
    position: relative;
    display: block;
}
.news-events-details-img{
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 1;
}
.news-events-details-img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.03);
}
.news-events-details-content{
  padding: 0px 30px;
}
.news-events-details-content .news-events-details-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news-events-details-content .post-meta{
  margin-bottom: 15px;
}
.news-events-details-content .post-meta span {
    display: inline-block;
    font-size: 12px;
    color: #666;
    margin: 5px;
}
.news-events-details-content .post-meta .post-date, .post-author{
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
  align-items: center;
  column-gap: .35rem;
}
.news-events-details-content .post-meta .post-category{
  padding: 5px 10px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: bold;
  background-color: #A17D24;
  
}
.news-events-details-content .post-meta .post-category a{
  color: #ffffff;
}
.comment-reply-title{
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 35px;
  padding-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}
.comments-area .submit{
    background: #A17D24;
    cursor: pointer;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: .75rem 1.75rem !important;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: none;
    position: relative;
    z-index: 9999;
    display: inline-block;
    white-space: nowrap;
    border: none;
}

.widget_recent_comments ul {
  list-style: none;
}
.widget_recent_comments ul li {
  border-bottom: 1px solid #ececf0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.widget_recent_comments .recentcomments > a {
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  color: #222;
  display: block;
}
.widget_recent_comments .recentcomments > a:hover {
  color: var(--primary-color);
}
.widget_recent_comments .recentcomments > a:before {
  content: '\A';
  white-space: pre;
}
.comments-area {
  margin-top: 50px;
}
.comments-area .comment-list-wrap {
  margin-top: 55px;
}
.comments-area .comment-respond {
  padding-bottom: 50px;
}
.comments-area .comment-respond .logged-in-as {
  margin-bottom: 25px;
  font-size: 15px;
}
.comments-area .comment-respond .logged-in-as a {
  color: inherit;
}
.comments-area .comment-respond .logged-in-as a:hover {
  color: var(--primary-color);
}
.comments-area .no-comments {
  display: none;
}
.comment-title {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--secondary-color);
}
.comment-title a {
  color: inherit;
}
.comment-title a:hover {
  color: var(--primary-color);
}
.comment-list {
  padding: 0;
  padding-bottom: 55px;
  margin-bottom: 55px;
  border-bottom: 1px solid rgba(var(--third-color-rgb), 0.15);
  list-style: none;
}
.comment-list li .children {
  padding-left: 60px;
}
@media screen and (max-width: 575px) {
  .comment-list li .children {
    padding-left: 0;
  }
}
.comment-list li .children li {
  list-style: none;
  margin-top: 54px;
}
@media screen and (max-width: 575px) {
  .comment-list li .children li {
    margin-top: 40px;
  }
}
.comment-list li .comment-respond {
  margin-top: 45px;
  margin-bottom: 50px;
  margin-left: 120px;
}
.comment-list li .comment-respond .row > div {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (max-width: 575px) {
  .comment-list li .comment-respond {
    margin-left: 0;
  }
}
.comment-list > li {
  margin-bottom: 54px;
}
@media screen and (max-width: 575px) {
  .comment-list > li {
    margin-bottom: 60px;
  }
}
.comment-list > li:last-child {
  margin-bottom: 0;
}
.comment-list > li > .children > li > .children > li > .children > li > .children {
  padding-left: 0;
}
.comment-list > li > .children > li > .children > li > .children > li > .children .children {
  padding-left: 0;
}
.comment-list .comment-reply-title {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.comment-inner {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 575px) {
  .comment-inner {
    display: block;
  }
}
.comment-inner img.avatar {
  width: 90px;
  height: 90px;
  min-width: 90px;
  margin-right: 30px;
  float: left;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .comment-inner img.avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 18px;
  }
}
@media screen and (max-width: 575px) {
  .comment-inner img.avatar {
    float: none;
    margin: 0 auto 0 auto;
    width: 92px;
    height: 92px;
    min-width: 92px;
  }
}
.comment-inner .comment-meta {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment-date {
  font-size: 15px;
  font-weight: 600;
  color: var(--third-color);
  line-height: normal;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.comment-content {
  background-color: #fff;
  position: relative;
  flex-grow: 1;
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}
@media screen and (max-width: 767px) {
  .comment-content {
    padding-top: 26px;
  }
}
.comment-content a {
  word-wrap: break-word;
}
.comment-content .comment-text {
  color: inherit;
  font-size: 15px;
  line-height: 27px;
}
.comment-content .comment-text p:last-child {
  margin-bottom: 0;
}
.comment-content .comment-text ol, .comment-content .comment-text ul {
  margin-bottom: 32px;
}
.comment-content .comment-text ol ul, .comment-content .comment-text ul ul, .comment-content .comment-text ol ol, .comment-content .comment-text ul ol {
  margin-bottom: 0;
}
.comment-content .comment-text ul li {
  list-style: outside;
}
.comment-content .comment-text img {
  margin: 6px 0;
}
@media screen and (max-width: 575px) {
  .comment-reply {
    position: static;
    margin-top: 22px;
  }
}
.comment-reply a {
  line-height: 35px;
  display: inline-block;
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
}
.comment-reply a i {
  position: relative;
  top: 2px;
  margin-left: 4px;
  font-size: 14px;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}
.comment-reply a:hover {
  color: var(--primary-color);
}
.comment-reply a:hover i {
  -webkit-animation: toRightFromLeft 0.3s linear 1;
  -khtml-animation: toRightFromLeft 0.3s linear 1;
  -moz-animation: toRightFromLeft 0.3s linear 1;
  -ms-animation: toRightFromLeft 0.3s linear 1;
  -o-animation: toRightFromLeft 0.3s linear 1;
  animation: toRightFromLeft 0.3s linear 1;
}
.comment-reply-title small {
  display: inline-block;
  vertical-align: top;
  margin: 10px 0 10px 10px;
}
.comment-reply-title small a {
  line-height: 35px;
  display: inline-block;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-color: var(--primary-color);
  text-transform: uppercase;
}
.comment-reply-title small a i {
  margin-left: 4px;
}
.comment-reply-title small a:hover {
  color: #fff;
  background-color: var(--secondary-color);
}
.comment-holder {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 5px;
}
.comment-holder .comment-meta {
  flex-grow: 1;
  margin-right: 30px;
}
@media screen and (max-width: 575px) {
  .comment-holder {
    display: block;
    margin-top: 0;
    margin-bottom: 14px;
  }
  .comment-holder .comment-meta {
    margin-right: 0;
  }
}
.comment-form .row > div {
  margin-top: 30px;
}
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"] {
  padding-left: 30px;
  padding-right: 30px;
}
.comment-form input[type="text"], .comment-form input[type="email"] {
  height: 65px;
}
.comment-form textarea {
  padding-top: 20px;
}
.comment-form .form-submit {
  margin-top: 33px;
  margin-bottom: 0;
}
.comment-form .form-submit .submit {
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
.comment-form .comment-form-comment {
  display: flex;
  flex-wrap: wrap;
}
.comment-form-cookies-consent {
  font-size: 15px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
  margin-top: 20px;
}
.comment-form-cookies-consent input, .comment-form-cookies-consent label:before, .comment-form-cookies-consent label:after {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 0;
  top: 5px;
  cursor: pointer;
}
.comment-form-cookies-consent label {
  cursor: pointer;
}
.comment-form-cookies-consent label:before {
  content: '';
  z-index: 1;
  border: 2px solid var(--primary-color);
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
.comment-form-cookies-consent label:after {
  content: '\f10c';
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  z-index: 2;
  font-size: 8px;
  color: var(--primary-color);
  opacity: 0;
  line-height: 12px;
  text-align: center;
  top: 6px;
}
.comment-form-cookies-consent input {
  z-index: 99;
  opacity: 0;
}
.comment-form-cookies-consent input:checked + label:after {
  opacity: 1;
}
.page-template-default .comments-area .comment-respond {
  border-top: 1px solid #d0e7fa !important;
  padding-top: 50px;
  margin-top: 50px;
}
.page-template-default .comments-area .comment-respond:before {
  display: none;
}
.comments-title, .comment-reply-title {
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .comments-title, .comment-reply-title {
    font-size: 20px;
  }
}
.comments-title {
  margin-bottom: 37px;
}
.page-template-default #commentform {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
}




.form-pre-cadastro {
    background-color: #FFFFFF;
    border-radius: 0px;
    padding: 24px;
    max-width: 653px;
    margin: 0 auto;
   /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 16px;
    border-bottom: 2px solid #EAECF0;
}

.form-header h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.form-header .close-btn {
    cursor: pointer;
    background-color: #F1F1F1;
    border-radius: 50%;
    padding: 4px;
    text-align: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
    color: #505151;
}

.form-header .close-btn:hover {
    color: #000;
}

.form-header .close-btn span {
    display: inline-block;
    line-height: 1;
}

.form-header .close-btn:active span {
    transform: scale(0.9);
}
.form-content .simpatizante .options{
    margin: 16px 0px;
}
.form-content .simpatizante .options label{
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: #161412;
    font-family: 'Inter', sans-serif;
    margin-right: 16px;
}
.form-content .simpatizante .options input[type="radio"] {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: rgba(161, 125, 36, 1);
}
.form-content .simpatizante .options input[type="radio"]:checked {
    background: rgba(161, 125, 36, 1);
    border-color: rgba(161, 125, 36, 1);
}
/* Botão de pesquisa */
.nif-search {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nif-search .btn {
    margin-bottom: 8px;
    padding: 0 12px;
    border-radius: 0; /* borda direita arredondada */
    border-left: none; /* remove a borda esquerda para unir com input */
    background-color: rgba(51, 95, 70, 1);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}

/* Ícone centralizado */
#nif-search-group .btn svg {
    width: 1rem;
    height: 1rem;
}

/* Garantir altura do botão igual ao input */
#nif-search-group input,
#nif-search-group button {
    height: 38px; /* ajuste conforme seu tema CF7 */
}

.nif-search .btn:hover {
    background-color: rgba(40, 74, 54, 1);
}

.foto-upload-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.foto-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #F2F2F5; /* fundo cinza claro da imagem */
    border: 2px solid #C8A24D; /* cor dourada */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.foto-circle span {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    color: #2F4A74; /* azul semelhante ao exemplo */
    cursor: pointer;
}

.camera-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    cursor: pointer;
}

.camera-icon img {
    width: 18px;
    opacity: 0.7;
}

/* Preview dentro do círculo */
.foto-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Botão remover */
.remove-foto-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: none;
}


.form-content label{
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: #161412;
    font-family: 'Inter', sans-serif;
}
.form-content input[type="text"],
.form-content input[type="email"],
.form-content input[type="tel"] {
    width: 100%;
    padding: 10px 14px;
    /*margin-top: 8px;*/
    margin-bottom: 16px;
    border: 1px solid #EBEBEF;
    border-radius: 0px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 20px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.form-content input[type="text"]:focus,
.form-content input[type="email"]:focus,
.form-content input[type="tel"]:focus {
    border-color: rgba(235, 235, 239, 1) !important;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}
.form-content input::placeholder {
    color: rgba(148, 148, 155, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.form-content input[type="file"] {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.form-content input[type="file"]::file-selector-button {
    display: none;
}
.form-content input[type="file"]:focus {
    outline: none;
}
.form-content input[type="date"] {
    width: 100%;
    padding: 10px 14px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #EBEBEF;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(148, 148, 155, 1);
    font-family: 'Inter', sans-serif;
    line-height: 20px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.form-content input[type="date"]:focus {
    border-color: rgba(235, 235, 239, 1) !important;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}
.form-content input[type="date"]::placeholder {
    color: rgba(148, 148, 155, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.form-content textarea::placeholder {
    color: rgba(148, 148, 155, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.form-content textarea {
    width: 100%;
    padding: 8px 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #EBEBEF;
    border-radius: 0px;
    font-size: 14px;
    line-height: 20px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    resize: vertical;
    min-height: 60px;
}
.form-content textarea:focus {
    border-color: rgba(235, 235, 239, 1) !important;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}
.form-content select {
    width: 100%;
    padding: 10px 14px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #EBEBEF;
    border-radius: 0px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 20px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    background-color: #FFFFFF;
}
.form-content select:focus {
    border-color: rgba(235, 235, 239, 1) !important;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}
.form-content select option {
    color: rgba(84, 84, 84, 1);
    background: #FFFFFF;
    border: 1px solid rgba(234, 236, 240, 1);
    box-shadow: 0 64px 32px 12 rgba(16, 24, 40, 0.14);
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.form-content select {
    color: rgba(148, 148, 155, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.form-content .upload-section {
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.form-content .upload-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.form-content .upload-box {
    display: block;
    border: 1px dashed rgba(152, 162, 179, 1);
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}

.form-content .upload-box:hover {
    border-color: #999;
}

.form-content .upload-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-content .upload-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(234, 236, 240, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #444;
}

.form-content .upload-info strong {
    font-size: 14px;
    display: block;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
}

.form-content .upload-info span {
    font-size: 13px;
    color: rgba(102, 102, 102, 1);
    display: block;
}

.form-content .upload-info small {
    font-size: 12px;
    color: #888;
}
.form-content .upload-error {
    color: #c62828; /* vermelho */
    font-weight: 600;
}

.form-content .remove-file-btn {
    border: none;
    background: #e74c3c;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.form-content .remove-file-btn svg {
    width: 16px;
    height: 16px;
}
.form-content .remove-file-btn:hover {
    background: #c0392b;
}

.form-content .footer-btn-submit-form {
    display: flex;
    /*justify-content: space-between;*/
    gap: 8px;
    margin-top: 16px;
}
.form-content .footer-btn-submit-form .btn-reset-form{
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
}
.form-content .footer-btn-submit-form .btn-submit-form{
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    background-color: rgba(161, 125, 36, 1);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
}