@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  background-color: #ffffff;
  color: #1c2427;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}
@media (min-width: 1280px) {
  body {
    font-size: 16px;
  }
}

ul, li, ol, dl, dt, dd, form, p, img, video a, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
  border: none;
  box-shadow: none;
}

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

button:focus, video:focus, input:focus, textarea:focus, select:focus, select:focus-visible {
  outline: none !important;
  outline-width: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

::selection {
  background-color: #d35400;
  color: #ffffff;
}

:focus {
  outline: 0 !important;
}

a, label, span, ul, input, textarea, button, div, li, ol, p {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

button {
  cursor: pointer;
  padding: 0;
  outline: none;
  border: none;
}

input, select, textarea, button {
  font-family: "Poppins", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

input, textarea {
  font-size: 16px;
}

textarea {
  resize: none;
}

svg, picture, img {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.grecaptcha-badge {
  right: -260px !important;
}

.hidden {
  display: none;
}

.sideNav__pic__img, .innerIntro__pic__img, .announcements__pic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page404__container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.innerIntro {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .innerIntro {
    margin-bottom: 80px;
  }
}
@media (min-width: 1280px) {
  .innerIntro {
    margin-bottom: 100px;
  }
}

.announcements__btn__link {
  position: relative;
  background-color: #1c2427;
  color: #ffffff;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .announcements__btn__link {
    font-size: 15px;
    height: 52px;
    padding: 0 28px;
  }
}
.announcements__btn__link .shade {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #d35400;
  transition: width 0.5s, left 0.5s, right 0.5s;
}
.announcements__btn__link .text {
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .announcements__btn__link:hover .shade {
    left: 0;
    right: auto;
    width: 100%;
  }
}

.stickyCookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 8px;
  width: calc(100% - 40px);
  max-width: 400px;
  padding: 20px;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s;
}
@media (min-width: 400px) {
  .stickyCookies {
    padding: 24px;
  }
}
.stickyCookies.visible {
  opacity: 1;
  pointer-events: all;
}
.stickyCookies p {
  font-size: 13px;
  line-height: 1.6;
}
.stickyCookies__btns {
  display: flex;
  gap: 10px;
  padding-top: 15px;
}
.stickyCookies__btns__link {
  border-radius: 6px;
  padding: 7px 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
.stickyCookies__btns__link:nth-child(1) {
  color: #ffffff;
  background-color: #2e2e2e;
}
@media (min-width: 1280px) {
  .stickyCookies__btns__link:nth-child(1):hover {
    background-color: #d35400;
  }
}
.stickyCookies__btns__link:nth-child(2) {
  border: 1px solid #1c2427;
  color: #1c2427;
}
@media (min-width: 1280px) {
  .stickyCookies__btns__link:nth-child(2):hover {
    border-color: #d35400;
    color: #d35400;
  }
}

.announcements {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 40px 20px;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.5s;
}
@media (min-width: 400px) {
  .announcements {
    padding: 40px 30px;
  }
}
@media (min-width: 768px) {
  .announcements {
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .announcements {
    padding: 60px;
  }
}
.announcements.visible {
  opacity: 1;
  pointer-events: all;
}
.announcements__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.announcements__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 5px;
}
@media (min-width: 1280px) {
  .announcements__container {
    padding: 20px 20px 25px;
  }
}
.announcements__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d35400;
  cursor: pointer;
  transition: background-color 0.5s;
}
.announcements__close .icon {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  transition: transform 0.5s;
}
@media (min-width: 1280px) {
  .announcements__close:hover {
    background-color: #2e2e2e;
  }
}
@media (min-width: 1280px) {
  .announcements__close:hover .icon {
    transform: rotate(90deg);
  }
}
.announcements__pic {
  height: 280px;
  margin-bottom: 25px;
}
@media (min-width: 400px) {
  .announcements__pic {
    height: 300px;
  }
}
@media (min-width: 540px) {
  .announcements__pic {
    height: 340px;
  }
}
@media (min-width: 768px) {
  .announcements__pic {
    height: 400px;
  }
}
@media (min-width: 1280px) {
  .announcements__pic {
    height: 450px;
    margin-bottom: 30px;
  }
}
.announcements__title {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  color: #d35400;
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .announcements__title {
    font-size: 28px;
  }
}
@media (min-width: 1280px) {
  .announcements__title {
    font-size: 32px;
  }
}
.announcements__text {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .announcements__text {
    margin-top: 12px;
  }
}
@media (min-width: 1280px) {
  .announcements__text {
    margin-top: 15px;
    line-height: 1.7;
    font-size: 15px;
  }
}
.announcements__btn {
  display: flex;
  justify-content: center;
  padding: 20px 0 5px;
}
.innerIntro {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.innerIntro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.innerIntro__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.innerIntro__wrapper {
  position: relative;
  z-index: 1;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .innerIntro__wrapper {
    height: 260px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__wrapper {
    height: 300px;
  }
}
.innerIntro__title {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  padding: 0 20px 30px;
}
@media (min-width: 768px) {
  .innerIntro__title {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__title {
    font-size: 64px;
  }
}
.innerIntro__breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 13px;
  padding-top: 24px;
  background-color: #1c2427;
  padding: 10px 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .innerIntro__breadcrumb {
    padding: 12px 20px;
  }
}
@media (min-width: 1280px) {
  .innerIntro__breadcrumb {
    font-size: 14px;
    padding: 14px 20px;
  }
}
.innerIntro__breadcrumb__link {
  color: #c9ae40;
  font-weight: 500;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .innerIntro__breadcrumb__link:hover {
    color: #d35400;
  }
}

.whatsApp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}
.whatsApp__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #128c7e;
  transition: background-color 0.5s;
}
.whatsApp__icon .icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
@media (min-width: 1280px) {
  .whatsApp__icon:hover {
    background-color: #25d366;
  }
}

.quickLinksIcon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  background-color: #d35400;
}
.quickLinksIcon__line {
  width: 22px;
  height: 3px;
  border-radius: 5px;
  background-color: #ffffff;
  transition: width 0.5s;
}
.quickLinksIcon__line.line-2 {
  margin: 4px 0;
  width: 12px;
}
.quickLinksIcon.active .quickLinksIcon__line.line-2 {
  width: 22px;
}
@media (min-width: 1280px) {
  .quickLinksIcon:hover .quickLinksIcon__line.line-2 {
    width: 22px;
  }
}

.quickLinkOptions {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 78px;
  z-index: 5;
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: 5px;
  border: 1px solid #F7F7F7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 400px) {
  .quickLinkOptions {
    padding: 24px;
  }
}
@media (min-width: 1280px) {
  .quickLinkOptions {
    padding: 30px;
  }
}
.quickLinkOptions__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  padding-bottom: 16px;
}
.quickLinkOptions__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}
.quickLinkOptions__contact__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.quickLinkOptions__contact__item .icon {
  width: 16px;
  height: 16px;
  fill: #1c2427;
}
.quickLinkOptions__contact__item span {
  font-size: 14px;
  font-weight: 500;
}
.quickLinkOptions__contact__item span a {
  color: #1c2427;
  text-decoration: none;
}
.quickLinkOptions__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quickLinkOptions__social__item {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background-color: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
.quickLinkOptions__social__item .icon {
  width: 18px;
  height: 18px;
  fill: #1c2427;
  transition: fill 0.5s;
}
@media (min-width: 1280px) {
  .quickLinkOptions__social__item:hover {
    background-color: #d35400;
  }
}
@media (min-width: 1280px) {
  .quickLinkOptions__social__item:hover .icon {
    fill: #ffffff;
  }
}

.animate {
  opacity: 0;
}
.animate__leftToRight {
  transform: translateX(-150px);
}
.animate__leftToRight.animated {
  transform: translateX(0);
}
.animate__rightToLeft {
  transform: translateX(150px);
}
.animate__rightToLeft.animated {
  transform: translateX(0);
}
.animate__slideInDown {
  transform: translateY(-80px);
}
.animate__slideInDown.animated {
  transform: translateY(0);
}
.animate__slideInUp {
  transform: translateY(80px);
}
.animate__slideInUp.animated {
  transform: translateY(0);
}
.animate.animated {
  opacity: 1;
  transition: opacity 0.75s, transform 0.75s;
}

.page404 {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .page404 {
    padding: 80px 0;
  }
}
@media (min-width: 1280px) {
  .page404 {
    padding: 100px 0;
  }
}
.page404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page404__title {
  font-size: 40vw;
  color: #c9ae40;
}
@media (min-width: 768px) {
  .page404__title {
    font-size: 30vw;
  }
}
@media (min-width: 1280px) {
  .page404__title {
    font-size: 20vw;
  }
}
@media (min-width: 1440px) {
  .page404__title {
    font-size: 15vw;
  }
}
.page404__title span {
  color: #d35400;
}
.page404__text {
  font-size: 5vw;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page404__text {
    font-size: 4vw;
  }
}
@media (min-width: 1280px) {
  .page404__text {
    font-size: 3vw;
  }
}
@media (min-width: 1440px) {
  .page404__text {
    font-size: 2.5vw;
  }
}
.page404__btn {
  display: flex;
}
.page404__btn__link {
  background-color: #1c2427;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .page404__btn__link:hover {
    background-color: #d35400;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #1c2427;
  padding: 20px 0;
  margin-bottom: 1px;
}
.marquee__container {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #c9ae40;
  text-transform: uppercase;
  font-weight: 500;
  animation: scroll 10s linear infinite; /* Increased duration for slower speed */
}
@media (min-width: 768px) {
  .marquee__container {
    animation-duration: 20s;
  }
}
@media (min-width: 1280px) {
  .marquee__container {
    animation-duration: 30s;
  }
}
.marquee__container .icon {
  width: 20px;
  height: 20px;
  fill: #c9ae40;
}
.marquee:hover .marquee__container {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move only half the width for seamless loop */
  }
}
.page-id-30 .marquee {
  margin-bottom: 0;
}

.pagination {
  padding-top: 30px;
}
@media (min-width: 1280px) {
  .pagination {
    padding-top: 40px;
  }
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
}
.pagination .nav-links .page-numbers {
  padding: 8px 15px;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  background-color: #1c2427;
  transition: background-color 0.5s;
}
.pagination .nav-links .page-numbers.prev, .pagination .nav-links .page-numbers.next {
  background-color: #475b62;
}
@media (min-width: 1280px) {
  .pagination .nav-links .page-numbers:hover {
    background-color: #c9ae40;
  }
}
.pagination .nav-links .page-numbers.current {
  background-color: #d35400;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #1c2427;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.header__logo {
  position: absolute;
  top: -110px;
  left: calc(50% - 55px);
  opacity: 0;
  animation-delay: 0.25s;
  animation-name: headerLogo;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.header__logo img {
  width: 110px;
}
.header__block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation-delay: 0.75s;
  animation-name: fadeIn;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@media (min-width: 768px) {
  .header__block {
    gap: 15px;
  }
}
.header__block__link, .header__block__trigger {
  background-color: #c9ae40;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .header__block__link:hover, .header__block__trigger:hover {
    background-color: #d35400;
  }
}
.header__block__link--big, .header__block__trigger--big {
  display: none;
  width: 120px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 540px) {
  .header__block__link--big, .header__block__trigger--big {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .header__block__link--big, .header__block__trigger--big {
    font-size: 15px;
    width: 130px;
  }
}
.header__block__link .icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.header__block__trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header__block__trigger__line {
  width: 22px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
}
.header__block__trigger__line:nth-child(2) {
  margin: 4px 0 4px 6px;
  width: 16px;
  transition: width 0.25s, margin 0.25s;
}
@media (min-width: 1280px) {
  .header__block__trigger:hover .header__block__trigger__line {
    width: 22px;
    margin-left: 0;
  }
}

.sideNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: #1c2427;
  transform: scale(1.2);
  overflow-y: auto;
  transition: transform 0.5s, opacity 0.25s;
}
@media (min-width: 768px) {
  .sideNav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.sideNav.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.sideNav__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c9ae40;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .sideNav__close {
    right: auto;
    left: 10px;
  }
}
@media (min-width: 1440px) {
  .sideNav__close {
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
  }
}
.sideNav__close .icon {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  transition: transform 0.5s;
}
@media (min-width: 1280px) {
  .sideNav__close:hover {
    background-color: #d35400;
  }
}
@media (min-width: 1280px) {
  .sideNav__close:hover .icon {
    transform: rotate(90deg);
  }
}
.sideNav__left {
  padding: 100px 30px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sideNav__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 50px;
    max-width: 800px;
  }
}
@media (min-width: 1280px) {
  .sideNav__left {
    width: auto;
    flex: 1;
    padding: 50px 100px;
    max-width: 1000px;
  }
}
@media (min-width: 1440px) {
  .sideNav__left {
    gap: 80px;
  }
}
.sideNav__left__nav {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .sideNav__left__nav {
    padding-bottom: 0;
    flex: 1;
  }
}
.sideNav__left__nav .sideNav__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sideNav__left__nav .sideNav__list__link {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  font-weight: 500;
  padding: 0 20px;
  height: 56px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__link {
    font-size: 16px;
    height: 48px;
    padding: 0 24px;
  }
}
@media (min-width: 1440px) {
  .sideNav__left__nav .sideNav__list__link {
    height: 52px;
    padding: 0 32px;
    font-size: 18px;
  }
}
@media (min-width: 1536px) {
  .sideNav__left__nav .sideNav__list__link {
    height: 60px;
  }
}
.sideNav__left__nav .sideNav__list__link--last {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__link:hover {
    background-color: #c9ae40;
  }
}
.sideNav__left__nav .sideNav__list__link.active-nav {
  background-color: #d35400;
}
.sideNav__left__nav .sideNav__list__link .iconBox {
  position: absolute;
  right: 20px;
  top: calc(50% - 16px);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__link .iconBox {
    top: calc(50% - 14px);
    width: 28px;
    height: 28px;
  }
}
.sideNav__left__nav .sideNav__list__link .iconBox .icon {
  width: 12px;
  height: 12px;
  fill: #ffffff;
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__link .iconBox .icon {
    width: 10px;
    height: 10px;
  }
}
.sideNav__left__nav .sideNav__list__arrow-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sideNav__left__nav .sideNav__list__arrow-menu .sideNav__list__link {
  flex: 1;
  border-radius: 6px 0 0 6px;
}
.sideNav__left__nav .sideNav__list__arrow-menu__arrow {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 0 6px 6px 0;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__arrow-menu__arrow {
    height: 48px;
    width: 48px;
  }
}
@media (min-width: 1440px) {
  .sideNav__left__nav .sideNav__list__arrow-menu__arrow {
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 1536px) {
  .sideNav__left__nav .sideNav__list__arrow-menu__arrow {
    width: 60px;
    height: 60px;
  }
}
.sideNav__left__nav .sideNav__list__arrow-menu__arrow .icon {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  transition: transform 0.5s;
}
.sideNav__left__nav .sideNav__list__arrow-menu__arrow.opened .icon {
  transform: rotateX(180deg);
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__arrow-menu:hover .sideNav__list__arrow-menu__arrow {
    background-color: #af9631;
  }
}
.sideNav__left__nav .sideNav__list__arrow-menu.active-nav .sideNav__list__link {
  background-color: #d35400;
}
.sideNav__left__nav .sideNav__list__arrow-menu.active-nav .sideNav__list__arrow-menu__arrow {
  background-color: #a04000;
}
.sideNav__left__nav .sideNav__list__subNav {
  display: none;
}
.sideNav__left__nav .sideNav__list__subNav__inner {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.sideNav__left__nav .sideNav__list__subNav__link {
  font-size: 13px;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 3px;
  font-weight: 500;
  background-color: #111618;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .sideNav__left__nav .sideNav__list__subNav__link:hover {
    background-color: #c9ae40;
  }
}
.sideNav__left__nav .sideNav__list__subNav__link.active-sub-nav {
  background-color: #d35400;
}
.sideNav__contacts {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sideNav__contacts__address {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sideNav__contacts__address__item {
  color: #ffffff;
  font-size: 16px;
}
@media (min-width: 1440px) {
  .sideNav__contacts__address__item {
    font-size: 18px;
  }
}
.sideNav__contacts__address__item a {
  color: #ffffff;
  text-decoration: none;
}
.sideNav__contacts__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.sideNav__contacts__social__link {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .sideNav__contacts__social__link {
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 1280px) {
  .sideNav__contacts__social__link:hover {
    background-color: #c9ae40;
  }
}
.sideNav__contacts__social__link .icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.sideNav__pic {
  height: 350px;
  display: none;
}
@media (min-width: 1280px) {
  .sideNav__pic {
    display: block;
    width: 32%;
    height: 100%;
  }
}
@keyframes headerLogo {
  0% {
    opacity: 0;
    top: -110px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer__main {
  background-color: #1c2427;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__main {
    padding: 65px 20px;
  }
}
@media (min-width: 1280px) {
  .footer__main {
    padding: 80px 20px;
  }
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}
.footer__contact__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1280px) {
  .footer__contact__item {
    font-size: 15px;
  }
}
.footer__contact__item .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
.footer__contact__item span {
  color: #ffffff;
  font-weight: 500;
  flex: 1;
}
.footer__contact__item span a {
  color: #ffffff;
  text-decoration: none;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.footer__social__link {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s;
}
@media (min-width: 1280px) {
  .footer__social__link {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1280px) {
  .footer__social__link:hover {
    background-color: #d35400;
  }
}
.footer__social__link .icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}
@media (min-width: 1280px) {
  .footer__social__link .icon {
    width: 20px;
    height: 20px;
  }
}
.footer__times {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}
.footer__times__item {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
}
@media (min-width: 1280px) {
  .footer__times__item {
    padding: 8px 14px;
    font-size: 13px;
  }
}
.footer__times__item a {
  color: #ffffff;
  text-decoration: none;
}
.footer__times__item.active-day {
  background-color: #d35400;
}
.footer__last {
  background-color: #111618;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 20px 0;
  color: #ffffff;
}
@media (min-width: 1280px) {
  .footer__last {
    padding-top: 25px;
  }
}
.footer__last__text {
  font-size: 13px;
  margin-bottom: 25px;
  line-height: 1.8;
}
.footer__last__text a {
  color: #c9ae40;
  transition: color 0.5s;
}
@media (min-width: 1280px) {
  .footer__last__text a:hover {
    color: #d35400;
  }
}
.footer__last__top {
  width: 50px;
  height: 60px;
  background-color: #1c2427;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.5s;
}
@media (min-width: 1024px) {
  .footer__last__top {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1280px) {
  .footer__last__top:hover {
    background-color: #d35400;
  }
}
.footer__last__top .icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
@media (min-width: 1024px) {
  .footer__last__top .icon {
    width: 14px;
    height: 14px;
  }
}

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