header .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 12px;
  flex-wrap: wrap;
  row-gap: 18px;
}
header .logo img {
  width: 185px;
}
header ul {
  list-style: none;
  display: flex;
  column-gap: 20px;
  margin-bottom: 0;
  padding-left: 0;
  flex-wrap: wrap;
}
header ul a {
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
header .burger-btn {
  border: none;
}
header .burger-btn img {
  width: 50px;
}
header .right {
  display: flex;
  column-gap: 20px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  header .right {
    width: auto;
  }
  header .logo img {
    width: 200px;
  }
  header .burger-btn img {
    width: 65px;
  }
}
@media screen and (min-width: 992px) {
  header .logo img {
    width: 355px;
  }
  header .burger-btn img {
    width: 65px;
  }
  header ul {
    column-gap: 30px;
  }
  header ul a {
    font-size: 20px;
  }
  header .right {
    column-gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  header ul, header .right {
    column-gap: 45px;
  }
}
@media screen and (min-width: 1400px) {
  header ul, header .right {
    column-gap: 55px;
  }
}
.intro {
  background-image: url("../img/gradient up.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0px;
}
.intro h1 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 30px;
  text-wrap: balance;
}

.banner {
  padding: 0;
}
.banner img {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .intro {
    padding: 110px 0px 140px;
  }
}
.grid-section h2 {
  margin-bottom: 0;
}
.grid-section .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 50px;
  align-items: flex-end;
}
.grid-section .gallery-item {
  flex: 1 0 31%;
}
.grid-section .gallery-item img {
  width: 100%;
}
.grid-section .gallery-label {
  text-align: center;
  font-size: 20px;
  margin-bottom: 18px;
}

@media screen and (min-width: 992px) {
  .grid-section {
    padding: 80px 0;
  }
}
.txt-img img {
  width: 100%;
}
.txt-img .txt {
  padding: 40px 0;
}

@media screen and (min-width: 992px) {
  .txt-img {
    padding: 80px 0 150px;
  }
  .txt-img .txt {
    padding: 45px 0 0 28px;
  }
}
footer {
  background-image: url("../img/gradient header.png");
  background-repeat: no-repeat;
  background-position: center;
  font-size: 12px;
  font-weight: 700;
  padding: 80px 0;
  background-size: cover;
}
footer .row {
  row-gap: 3rem;
}
footer .col-lg-4:first-of-type {
  display: flex;
  column-gap: 20px;
  justify-content: center;
}
footer .col-lg-4:nth-of-type(2) {
  display: flex;
  column-gap: 20px;
  align-items: baseline;
  justify-content: center;
}
footer .col-lg-4:last-of-type {
  align-self: self-start;
}
footer a {
  color: black;
  text-decoration: none;
}
footer p {
  margin-bottom: 0;
}
footer img {
  width: 100%;
  mix-blend-mode: darken;
}

@media screen and (min-width: 992px) {
  footer {
    background-position: top;
    padding: 150px 0 40px;
  }
  footer .row {
    justify-content: space-between;
    align-items: flex-end;
  }
  footer .col-lg-4:last-of-type img {
    margin-top: -6px;
  }
}
@media screen and (min-width: 1400px) {
  footer .col-lg-4:last-of-type img {
    margin-top: -12px;
  }
}
.modal-content {
  background: white;
  height: 100%;
  border-radius: 0;
  width: 100vw;
}

.modal-header {
  border: none;
  padding-top: 2rem;
}
.modal-header .logo {
  width: 80px;
}

.modal-dialog {
  height: 100vh;
  margin: 0;
}
.modal-dialog .nav-link {
  font-weight: 400;
  font-size: 18px;
  color: black;
  padding: 12px 16px;
  position: relative;
}
.modal-dialog .nav-link::before {
  content: "";
  width: calc(100% - 32px);
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 5px;
  visibility: hidden;
}
.modal-dialog .nav-link:focus::before, .modal-dialog .nav-link:hover::before, .modal-dialog .nav-link.active::before {
  visibility: visible;
}
.modal-dialog .nav-link:focus:focus span, .modal-dialog .nav-link:focus:hover span, .modal-dialog .nav-link:hover:focus span, .modal-dialog .nav-link:hover:hover span, .modal-dialog .nav-link.active:focus span, .modal-dialog .nav-link.active:hover span {
  font-weight: 700;
}
.modal-dialog .btn-close {
  background-image: url("../img/close-btn.svg");
  background-size: contain;
  opacity: 1;
  width: 8px;
  margin-right: 8px;
}

.modal-body {
  padding-top: 2rem;
}
.modal-body .nav {
  align-items: center;
}

.modal-footer {
  border: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
  padding-bottom: 2rem;
}
.modal-footer h5 {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  max-width: 255px;
}
.modal-footer .modal-logo img {
  width: 150px;
}

.modal-backdrop.show {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog .nav-link {
    font-size: 22px;
    padding: 16px;
  }
  .modal-dialog .btn-close {
    width: 15px;
  }
  .modal-footer .modal-logo img {
    width: 250px;
  }
}
.search {
  padding: 70px 0;
}
.search h1 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 30px;
}
.search input {
  padding-left: 45px;
  border: none;
  border-bottom: 1px solid #b2b2b2;
  border-radius: 0;
  background-color: transparent;
}
.search input::placeholder {
  color: black;
}

#search-addon {
  background-color: transparent;
  position: absolute;
  top: -3%;
  z-index: 6;
  padding-left: 0;
}
#search-addon img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.btns {
  padding: 30px 0;
}
.btns .btns-wrap, .btns .first-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 18px;
}

.filters2 {
  padding: 40px 0 60px;
}
.filters2 .col-lg-6 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 10px;
}
.filters2 label {
  font-size: 14px;
}
.filters2 .select-wrapper {
  position: relative;
  display: inline-block;
}
.filters2 .select-wrapper::after {
  position: absolute;
  content: "";
  right: 4px;
  top: 1px;
  background-image: url("../img/down-arrow.svg");
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  z-index: 1;
  background-size: cover;
  pointer-events: none;
}
.filters2 select {
  padding: 8px 15px;
  border-radius: 25px;
  -webkit-appearance: none; /* Remove default arrow on WebKit browsers */
  -moz-appearance: none; /* Remove default arrow on Mozilla browsers */
  appearance: none;
  min-width: 150px;
  cursor: pointer;
  border-color: black;
  background-color: transparent;
}
.filters2 .dropdown {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.cards-container-2 .card {
  border-radius: 0;
  border: none;
  background-color: transparent;
  text-decoration: none;
}
.cards-container-2 .card-body {
  text-align: center;
}
.cards-container-2 .card-title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 0;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

@media screen and (max-width: 767px) {
  .cards-container-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (min-width: 430px) {
  .cards-container-2 .card {
    flex: 1 0 auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .cards-container-2 .card {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .search {
    padding: 100px 0;
  }
  .cards-container-2 .card {
    width: 200px;
    min-width: 23%;
    width: 100%;
    max-width: 23%;
    margin-bottom: 40px;
  }
  .btns-wrap .first-btns {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .search h1 {
    font-size: 26px;
  }
  .filters2 {
    padding: 40px 0 30px;
  }
  .filters2 .row {
    justify-content: flex-end;
  }
}
.article .back-btn {
  margin: 35px 0 75px;
}
.article .back-btn .button {
  max-width: 130px;
  width: 100%;
  position: relative;
  display: inline-block;
  text-align: center;
  position: relative;
}
.article .back-btn .button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 27px;
  height: 27px;
  background-image: url(../img/arrow\ left.svg);
  background-repeat: no-repeat;
  transform: rotate(45deg);
}
.article .back-btn .button:focus::before, .article .back-btn .button:hover::before, .article .back-btn .button:active::before {
  background-image: url(../img/arrow\ left-white.svg);
}
.article .title-btn h1,
.article .title-btn .date {
  font-weight: 400;
  font-size: 40px;
}
.article .row {
  row-gap: 3rem;
}
.article table {
  width: 100%;
}
.article table tr:not(:last-of-type) {
  border-bottom: 1.5px solid #656462;
}
.article table th {
  vertical-align: baseline;
}
.article table th,
.article table td {
  padding: 10px 0;
  font-weight: 400;
}
.article table td {
  display: flex;
  flex-direction: column;
}
.article .prev-next {
  padding: 70px 0 40px;
}
.article .prev-next .btns-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.article .prev-next .btns-wrap .button {
  transition: background-color 0.3s ease;
  position: relative;
  max-width: 185px;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.article .prev-next .btns-wrap .next::after,
.article .prev-next .btns-wrap .prev::before {
  content: "";
  width: 30px;
  height: 25px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
.article .prev-next .btns-wrap .next {
  padding: 10px 45px 10px 15px;
}
.article .prev-next .btns-wrap .next::after {
  background-image: url("../img/arrow right.svg");
  right: 15%;
}
.article .prev-next .btns-wrap .next:hover::after, .article .prev-next .btns-wrap .next:focus::after, .article .prev-next .btns-wrap .next:active::after {
  animation: arrowHover 0.5s ease forwards;
  background-image: url("../img/arrow right-white.svg");
}
.article .prev-next .btns-wrap .prev {
  padding: 10px 15px 10px 45px;
}
.article .prev-next .btns-wrap .prev::before {
  left: 7%;
  background-image: url("../img/arrow left.svg");
}
.article .prev-next .btns-wrap .prev:focus::before, .article .prev-next .btns-wrap .prev:active::before, .article .prev-next .btns-wrap .prev:hover::before {
  animation: arrowHoverPrev 0.5s ease forwards;
  background-image: url("../img/arrow left-white.svg");
}

.swiper img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}
.swiper figcaption {
  font-size: 14px;
  margin-top: 18px;
  max-width: 60%;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  bottom: 3px;
  top: unset;
  width: 50px;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
}
.swiper .swiper-button-prev {
  left: unset;
  right: 114px;
}
.swiper .swiper-button-prev::after {
  background-image: url("../img/arrow left.svg");
}
.swiper .swiper-button-next {
  right: 70px;
  left: unset;
}
.swiper .swiper-button-next::after {
  background-image: url("../img/arrow right.svg");
}
.swiper-wrapper {
  padding-bottom: 50px;
}
.swiper-counter {
  position: absolute;
  bottom: 15px;
  right: 0;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (min-width: 500px) {
  .swiper-counter {
    right: 0;
    bottom: 42px;
  }
  .swiper .swiper-button-next {
    right: 40px;
  }
  .swiper .swiper-button-prev {
    right: 85px;
  }
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .swiper img {
    max-height: 600px;
  }
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    bottom: 20px;
  }
  .swiper .swiper-button-next {
    right: 60px;
  }
  .swiper .swiper-button-prev {
    right: 110px;
  }
  .swiper-wrapper {
    padding-bottom: 75px;
  }
  .swiper-counter {
    bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    bottom: 20px;
    width: 60px;
  }
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    width: 45px;
    height: 45px;
  }
  .swiper .swiper-button-prev {
    right: 100px;
  }
  .swiper .swiper-button-next {
    right: 45px;
  }
  .swiper-wrapper {
    padding-bottom: 65px;
  }
  .article table {
    width: auto;
  }
  .article .prev-next {
    padding: 120px 0 60px;
  }
  .article .prev-next .btns-wrap {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    bottom: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .swiper .swiper-button-prev {
    right: 120px;
  }
  .swiper .swiper-button-next {
    right: 65px;
  }
}
html, body {
  overflow-x: hidden;
}

body {
  background-color: #f3efeb;
}

.button {
  text-decoration: none;
  color: black;
  padding: 10px 30px;
  border: 1px solid black;
  border-radius: 30px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.button:active, .button:focus, .button:hover {
  color: white;
  background-color: black;
}

.black-bg {
  background-color: black;
  color: white;
}

.black {
  background-color: black;
  color: white;
  border: 1px solid black;
}
.black:active, .black:focus, .black:hover {
  color: black;
  background-color: transparent;
}

.orange {
  background-color: #ff4800;
  color: white;
  border: 1px solid #ff4800;
}
.orange:active, .orange:focus, .orange:hover {
  color: black;
  background-color: transparent;
}

.peach-whisper {
  background-color: #f4d8ca;
  border: 1px solid #f4d8ca;
}
.peach-whisper:active, .peach-whisper:focus, .peach-whisper:hover {
  background-color: transparent;
  color: black;
  border: 1px solid #ff4800;
}

.title-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.white-border {
  border: 2px solid white;
}

@keyframes arrowHover {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(8px);
  }
}
@keyframes arrowHoverPrev {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-8px);
  }
}
.btns-carousels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 12px;
  column-gap: 25px;
  margin: 1rem 0;
}
.btns-carousels img {
  display: none;
}
.btns-carousels a {
  transition: background-color 0.3s ease;
  position: relative;
  max-width: 185px;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  border: 1px solid black;
  border-radius: 30px;
  background: black;
  color: white;
  min-width: 215px;
}
.btns-carousels a::after {
  content: "";
  width: 30px;
  height: 25px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow right-white.svg");
  right: 15%;
}

@media screen and (min-width: 1220px) {
  .btns-carousels {
    margin: 2rem 0;
  }
  .btns-carousels a {
    min-width: 230px;
  }
}
/*# sourceMappingURL=style.css.map */
/*
#ajax-load-more button{
  text-decoration: none!important;
  color: black!important;
  padding: 10px 30px!important;
  border: 1px solid black!important;
  border-radius: 30px!important;
  transition: color 0.3s ease, background-color 0.3s ease!important;
}
#ajax-load-more .alm-load-more-btn.loading:before{
  display: none!important;
}
.alm-load-more-btn.more.done{
  display: none!important;
}*/
.thumbnails {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 40px;
}
.thumbnails .thumbnail {
  flex-basis: calc(50% - 15px);
}
.thumbnails .thumbnail img {
  width: 100%;
  min-height: 160px;
  max-height: 255px;
}
.thumbnails .thumbnail p {
  font-weight: 500;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .thumbnails .thumbnail {
    flex-basis: calc(25% - 23px);
  }
  .thumbnails .thumbnail img {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .thumbnails .thumbnail img {
    min-height: 100px;
    min-width: 100px;
  }
}

.wp-pagenavi{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.wp-pagenavi a{
  border: 1px solid black;
  text-decoration: none;
  color: black;
}

.breadcrumb a, .breadcrumb li {
  line-height: 1.8;
}
.breadcrumb a {
  color: black;
  text-decoration: none;
}
.breadcrumb img {
  vertical-align: text-top;
}