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

body {
  font-family: "Manrope", sans-serif;
}

/* header */

.header {
  transition: all ease-out 0.2s;
}

.header.is-active {
  background-color: white;
  padding: 5px 0;
}

@media only screen and (max-width: 1024px) {
  .header.is-active {
    padding: 10px 0;
  }
}

/* sidebar */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 171px;

  transition: all ease 0.3s;
  z-index: 100;
}

.sidebar-overlay {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.is-active {
    transform: translateX(0);
  }

  .sidebar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;

    z-index: 99;
    transition: all ease 0.3s;
  }

  .sidebar-overlay.is-active {
    opacity: 0.5;
    pointer-events: all;
  }
}

.c-hamburger__line {
  height: 2px;
  width: 20px;
  background-color: #f49f1c;
  margin: 4px 0;
}

/* layout */

.fadeUp-onScroll {
  position: relative;
  transition: all ease 0.7s;
  opacity: 0;
  transform: translateY(50px);
}

.container-1092 {
  max-width: 1132px;
  margin: 0 auto;
  padding: 0 40px;
}

@media only screen and (max-width: 1024px) {
  .container-1092 {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .container-1092 {
    padding: 0 20px;
  }
}

/* heading-1 */
@media only screen and (max-width: 1024px) {
  .text-heading-1 {
    font-size: 30px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-heading-1 {
    font-size: 28px !important;
  }
}

/* heading-2 */
@media only screen and (max-width: 1024px) {
  .text-heading-2 {
    font-size: 28px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-heading-2 {
    font-size: 26px !important;
  }
}

/* heading-3 */
@media only screen and (max-width: 1024px) {
  .text-heading-3 {
    font-size: 22px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-heading-2 {
    font-size: 20px !important;
  }
}

/* heading-4 */
@media only screen and (max-width: 1024px) {
  .text-heading-4 {
    font-size: 20px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-heading-4 {
    font-size: 18px !important;
  }
}

/* heading-5 */
@media only screen and (max-width: 1024px) {
  .text-heading-5 {
    font-size: 19px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-heading-5 {
    font-size: 18px !important;
  }
}

/* heading-6 */
@media only screen and (max-width: 1024px) {
  .text-heading-6 {
    font-size: 17px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-heading-6 {
    font-size: 16px !important;
  }
}

/* title-page */
@media only screen and (max-width: 1024px) {
  .text-title-page {
    font-size: 30px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-title-page {
    font-size: 25px !important;
  }
}

/* title */
@media only screen and (max-width: 1024px) {
  .text-title {
    font-size: 14px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-title {
    font-size: 12px !important;
  }
}

/* title */
@media only screen and (max-width: 1024px) {
  .text-title-2 {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-title-2 {
    font-size: 12px !important;
  }
}

/* body-text */
@media only screen and (max-width: 1024px) {
  .text-body-text-1 {
    font-size: 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-body-text-1 {
    font-size: 14px !important;
  }
}

/* body-text-2 */
@media only screen and (max-width: 1024px) {
  .text-body-text-2 {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-body-text-2 {
    font-size: 12px !important;
  }
}

/* body-text-3 */
@media only screen and (max-width: 1024px) {
  .text-body-text-3 {
    font-size: 11px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-body-text-3 {
    font-size: 10px !important;
  }
}

/* text-label-1 */
@media only screen and (max-width: 1024px) {
  .text-label-1 {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-label-1 {
    font-size: 12px !important;
  }
}

/* text-label-2 */
@media only screen and (max-width: 1024px) {
  .text-label-2 {
    font-size: 11px !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-label-2 {
    font-size: 10px !important;
  }
}

/* hover item with image */
.c-item-hover {
  cursor: pointer;
}

.c-item-hover .c-item-hover__imgWrap {
  overflow: hidden;
}

.c-item-hover .c-item-hover__img {
  transition: all ease 0.3s;
}

.c-item-hover:hover .c-item-hover__img {
  transform: scale(1.05);
  color: rgb(163, 101, 0);
}

.top-service {
  background-image: url("../image/top/service-bg2.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.top-volunteer {
  position: relative;
  z-index: 1;
}

.top-volunteer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.1;

  background-image: url("../image/top/volunteer-bg.png");
  background-position: center center;

  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

/* slide  */

/* form */

.input-box {
  position: relative;
}

.wpcf7-not-valid-tip {
  position: absolute;
  bottom: 5px;
  font-size: 12px;
  font-style: italic;
}

.wpcf7-form-control-wrap {
  position: static;
}

.input-box .select,
.input-box .input {
  width: 100%;
  padding: 10px 0;
  font-size: 14px;

  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #f49f1c;
  outline: none;
  background: transparent;
}

.input-box:last-child .input {
  margin-bottom: 0;
}

.input-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 14px;
  color: #f49f1c;
  pointer-events: none;
  transition: all ease 0.3s;
}

/* .input-box .input:focus ~ label,
.input-box .input:valid ~ label {
  top: -18px;
  left: 0;
  color: #982d2f;
  font-size: 12px;
} */

.input-box label.focused {
  top: -18px;
  left: 0;
  color: #982d2f;
  font-size: 12px;
}

/* Side bar */
.sidebar {
  background-color: #272524;
}

.main-menu li {
  text-align: center;
  line-height: 1.5;
  display: block;
  padding: 10px 0;
}

.main-menu li a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #f9f3ea;
  display: block;
}

.main-menu li.current_page_item a,
.main-menu li.current-menu-item a {
  color: #f49f1c;
}

.main-menu li a:hover {
  color: #f49f1c;
}

/* breadcrumb */

.aioseo-breadcrumb {
  color: #982d2f;
  font-weight: 500;
}

.aioseo-breadcrumb-separator {
  color: #982d2f;
}

.aioseo-breadcrumb a {
  opacity: 0.7;
  position: relative;
}

.aioseo-breadcrumb a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #982d2f;
  transition: all 0.3s ease;
}

.aioseo-breadcrumb a:hover::before {
  width: 100%;
}

/* single post */
.c-single__banner-content {
  background: linear-gradient(
    180deg,
    rgba(153, 153, 153, 0) 0%,
    rgba(0, 0, 0, 0.5) 75.32%
  );
}

.c-single__content {
  color: #982d2f;

  font-size: 16px;
}

.c-single__content p {
  margin: 24px 0;
}

.c-single__content img {
  width: 100%;
  height: auto;
}

/* pagination */

.c-pag {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  gap: 10px;
}

.page-numbers {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  color: #45484a;

  transition: all 0.3s ease;
}

.page-numbers.current,
.page-numbers:hover {
  background-color: #f2dfc1;
  color: #f49f1c;
}

.page-numbers:hover path {
  fill: #f49f1c;
}

.text-with-dot::before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #f49f1c;
  display: block;
  position: absolute;
  border-radius: 5px;
  left: -12px;
  top: 50%;
}

.aioseo-breadcrumbs span {
  color: #982d2f;
}

@media only screen and (max-width: 1024px) {
  .btn-slide {
    display: none;
  }
}

/* hover underline */

.hover-underline {
  position: relative;
}

.hover-underline::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 1px;
  bottom: -2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.hover-underline:hover::before {
  width: 100%;
}

.vscomp-wrapper.has-clear-button .vscomp-toggle-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

/* switch language */

.pll-switcher-select {
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #f49f1c;

  color: #f49f1c;
  padding: 6px 12px;
  width: 100%;
}

.pll-switcher-select option {
  font-size: 15px;
}

/* popup lang */

.popup-lang {
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.3s;
}

.popup-lang.is-active {
  opacity: 1;
  pointer-events: all;
}

/* popup submit form success */
.form-success,
.form-error {
  opacity: 0;
  pointer-events: none;
}

.form-success.is-active,
.form-error.is-active {
  opacity: 1;
  pointer-events: all;
}

.wpcf7-response-output {
  display: none !important;
}

.bg-gradient::before {
  background: linear-gradient(
    180deg,
    rgba(153, 153, 153, 0) 0%,
    rgba(0, 0, 0, 0.8) 75.32%
  );
}


.card-shadow {
  box-shadow: 0px 4px 10px 0px #00000040;

}
