@font-face {
  font-family: "Playfair-Display-italic";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Playfair-Display/Playfair-Display-italic.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Playfair-Display";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Playfair-Display/Playfair-Display") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Nunito-Bold";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/nunito/Nunito-Bold.woff") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Nunito-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/nunito/Nunito-Medium.woff") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Nunito-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/nunito/Nunito-Regular.woff") format("woff2");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: clamp(9px, 1.5vw, 10px);
}

.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
}

body {
  background: #ffffff;
  font-family: "Playfair-Display", sans-serif;
  font-weight: 400;
  overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #000000;
  font-family: "Playfair-Display", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 7.2rem;
  font-family: "Playfair-Display-italic", sans-serif;
  font-weight: 500;
}
h1 span {
  color: #a20d28;
  font-style: italic;
}
h1:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 3.6rem;
}
h2:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 4.4rem;
  }
}

h3 {
  font-size: 2.5rem;
}
h3:last-child {
  margin-bottom: 0;
}

h3 {
  font-family: "Playfair-Display-italic", sans-serif;
  font-weight: 500;
}
h3 span {
  font-family: "Playfair-Display-italic", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #a20d28;
}

h4 {
  font-size: 3.6rem;
  font-family: "Playfair-Display-italic", sans-serif;
  font-weight: 500;
}
h4:last-child {
  margin-bottom: 0;
}

h5 {
  font-size: 2.4rem;
}
h5:last-child {
  margin-bottom: 0;
}

h6 {
  font-size: 2rem;
}
h6:last-child {
  margin-bottom: 0;
}

p {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #000000;
  font-family: "Nunito-Medium", sans-serif;
  font-weight: 500;
}
p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 1.6rem;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
  font-size: 1.8rem;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background: unset;
}

.btn-default {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: #000;
  color: #fff;
  border-radius: 3rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Nunito-Medium", sans-serif;
  font-weight: 500;
}

span {
  display: inline-block;
}

.container {
  max-width: 1500px;
  padding: 0 1.2rem;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.btn-default {
  display: inline-block;
  overflow: hidden;
  padding: 1rem 2.2rem;
  background: #000;
  color: #fff;
  border-radius: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-default .hover-bg {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 0;
  background: #17608a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-default span {
  position: relative;
  z-index: 1;
}
.btn-default img {
  max-width: 30px;
  margin-right: 1rem;
}

.highlight {
  color: #a20d28;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

section {
  overflow: hidden;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
}

.mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .desktop {
    display: block;
  }
}

img,
video {
  max-width: 100%;
}

.button-box {
  padding-top: 2rem;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-wrapper {
  align-items: stretch;
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-button {
  background-color: #000000;
  border-radius: 5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper .swiper-button::after {
  display: none;
}
.swiper .swiper-button i {
  font-size: 3rem;
  color: #5597c4;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #5597c4;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .line {
  width: 3.5rem;
  height: 3px;
  border-radius: 7px;
  background-color: #5597c4;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.is-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
  z-index: 9999;
}
.hamburger.is-active .line:nth-child(2) {
  width: 0;
}
.hamburger.is-active .line:nth-child(1), .hamburger.is-active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px);
}
.hamburger.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(90deg);
}
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.popup-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.5019607843);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.popup-modal .popup-box {
  position: relative;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
}
.popup-modal .popup-box .popup-close button {
  position: absolute;
  right: 10px;
  top: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popup-modal .popup-box .popup-close button:hover {
  transform: scale(0.8);
}
.popup-modal .popup-box .popup-close button i {
  font-size: 2.6rem;
  cursor: pointer;
}

.nav-tabs {
  width: 100%;
  max-width: 700px;
  margin: auto;
}
.nav-tabs .tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #ddd;
}
.nav-tabs .tab-buttons button {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: #eaeaea;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
.nav-tabs .tab-buttons button.active {
  background-color: #5597c4;
  color: #fff;
}
.nav-tabs .tab-panel {
  display: none;
  padding: 25px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  border: 1px solid #ddd;
  border-top: 0;
}
.nav-tabs .tab-panel.active {
  display: block;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: #f4f4f4;
  padding: 1.6rem;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
}

.accordion-header::after {
  content: "&#xEA4E";
  background-image: url("https://cdn-icons-png.flaticon.com/512/130/130906.png");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
  display: none;
  background: #fff;
  padding: 1.4rem;
  line-height: 1.5;
  font-size: 1.6rem;
}

.header {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 10px 0;
  background-color: transparent;
}
.header .header-box {
  align-items: center;
  justify-content: center;
  gap: 20px;
  display: flex;
}
.header .header-box .logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-box .logo-box a img {
  max-width: 18rem;
}
@media screen and (min-width: 768px) {
  .header .header-box .logo-box a img {
    max-width: 21rem;
  }
}
@media screen and (min-width: 992px) {
  .header .header-box .logo-box a img {
    max-width: 23rem;
  }
}
.header .header-box .main-nav {
  display: none;
  position: relative;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav {
    display: block;
  }
}
.header .header-box .main-nav.show {
  display: block;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  overflow: hidden;
}
.header .header-box .main-nav .animated-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 300vw;
  height: 200vh;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background: transparent;
}
.header .header-box .main-nav .animated-box .box {
  width: 33.33%;
  height: 100%;
  opacity: 0;
  background-color: #000000;
}
.header .header-box .main-nav .animated-box .first-box {
  transform: translateX(-100%);
}
.header .header-box .main-nav .animated-box .second-box {
  transform-origin: center;
  transform: scaleX(0);
}
.header .header-box .main-nav .animated-box .third-box {
  transform: translateX(100%);
}
.header .header-box .main-nav .animated-box.open .first-box {
  animation: slideLeft 0.8s ease forwards;
}
.header .header-box .main-nav .animated-box.open .second-box {
  animation: slideMid 0.8s ease forwards;
}
.header .header-box .main-nav .animated-box.open .third-box {
  animation: slideRight 0.8s ease forwards;
}
.header .header-box .main-nav .animated-box.close .first-box {
  animation: slideLeftReverse 0.6s ease forwards;
}
.header .header-box .main-nav .animated-box.close .second-box {
  animation: slideMidReverse 0.6s ease forwards;
}
.header .header-box .main-nav .animated-box.close .third-box {
  animation: slideRightReverse 0.6s ease forwards;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .animated-box {
    display: none;
  }
}
.header .header-box .main-nav .nav-wrap {
  position: relative;
  top: 50%;
  z-index: 999;
  transform: translate(0px, -50%);
  padding-left: 7rem;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap {
    position: static;
    transform: none;
    padding-left: 0;
    gap: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header .header-box .main-nav .nav-wrap.show-items li {
  opacity: 1;
  transform: translateX(0);
}
.header .header-box .main-nav .nav-wrap.show-items .button-box .btn-default {
  opacity: 1;
  transform: translateX(0);
}
.header .header-box .main-nav .nav-wrap nav ul {
  gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  display: flex;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul {
    flex-direction: row;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(6) {
  transition-delay: 0.6s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(7) {
  transition-delay: 0.7s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(8) {
  transition-delay: 0.8s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(9) {
  transition-delay: 0.9s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(10) {
  transition-delay: 1s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(11) {
  transition-delay: 1.1s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(12) {
  transition-delay: 1.2s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(13) {
  transition-delay: 1.3s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(14) {
  transition-delay: 1.4s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(15) {
  transition-delay: 1.5s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(16) {
  transition-delay: 1.6s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(17) {
  transition-delay: 1.7s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(18) {
  transition-delay: 1.8s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(19) {
  transition-delay: 1.9s;
}
.header .header-box .main-nav .nav-wrap nav ul li:nth-child(20) {
  transition-delay: 2s;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li {
    opacity: 1;
    transform: none;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li a {
  position: relative;
  font-size: 1.8rem;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Playfair-Display", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li a {
    color: #5597c4;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -5px;
  background-color: #5597c4;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header .header-box .main-nav .nav-wrap nav ul li a.active, .header .header-box .main-nav .nav-wrap nav ul li a:hover {
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li a.active, .header .header-box .main-nav .nav-wrap nav ul li a:hover {
    color: #5597c4;
  }
}
.header .header-box .main-nav .nav-wrap nav ul li a.active::after, .header .header-box .main-nav .nav-wrap nav ul li a:hover::after {
  width: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul li a.active::after, .header .header-box .main-nav .nav-wrap nav ul li a:hover::after {
    background-color: #5597c4;
  }
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap nav ul {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap .button-box {
    padding: 0;
  }
}
.header .header-box .main-nav .nav-wrap .button-box .btn-default {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.7s;
}
@media screen and (min-width: 992px) {
  .header .header-box .main-nav .nav-wrap .button-box .btn-default {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideMid {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideLeftReverse {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes slideMidReverse {
  0% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}
@keyframes slideRightReverse {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
footer {
  background: linear-gradient(228.99deg, #3a3737 -8.36%, #1e1d1d 71.82%);
  position: relative;
}
footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3csvg%20width='752'%20height='574'%20viewBox='0%200%20752%20574'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e...%3c/svg%3e") no-repeat top right;
  opacity: 0.3;
  pointer-events: none;
}
footer .container {
  max-width: 95%;
}
footer .my_container .footer_wrapper {
  padding: 3.75em 0 1.25em;
}
footer .my_container .footer_wrapper .footer_items_top {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 12em;
}
footer .my_container .footer_wrapper .footer_items_top .footer_item .title {
  font-weight: 400;
  font-size: 2em;
  line-height: 1.6em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1em;
}
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .wlc_logo {
  width: 13.75em;
  height: auto;
  margin-bottom: 3.75em;
}
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .address,
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .mail {
  display: flex;
  gap: 1em;
  margin-bottom: 1.25em;
}
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .address .icon,
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .mail .icon {
  width: 1.5em;
  height: 2em;
  margin-top: 0.3em;
}
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .address .name,
footer .my_container .footer_wrapper .footer_items_top .info_wrapper .mail .name {
  text-decoration: none;
  font-weight: 400;
  font-size: 1.7em;
  line-height: 1.7em;
  color: #fff;
}
footer .my_container .footer_wrapper .footer_items_top .quick_links .link {
  list-style-type: none;
}
footer .my_container .footer_wrapper .footer_items_top .quick_links .link .active {
  color: #fff;
}
footer .my_container .footer_wrapper .footer_items_top .quick_links .link a {
  font-weight: 500;
  font-size: 1.375em;
  line-height: 2em;
  color: #838383;
}
footer .my_container .footer_wrapper .footer_items_top .quick_links .link a .hover-bg {
  color: #ffffff;
}
footer .my_container .footer_wrapper .sponsors .sponsor {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .my_container .footer_wrapper .sponsors .sponsor small {
  color: #ffffff;
  font-weight: 700;
  font-size: 9px;
  line-height: 1.5em;
  letter-spacing: 0.2em;
}
footer .my_container .footer_wrapper .sponsors .sponsor img {
  margin-top: 0.625em;
  width: 4.875em;
}
footer .my_container .footer_wrapper .news_letter {
  display: flex;
  flex-direction: column;
}
footer .my_container .footer_wrapper .news_letter .subscribe_text {
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.7em;
  color: #ffffff;
}
footer .my_container .footer_wrapper .news_letter .input {
  margin-top: 1.875em;
  display: flex;
  gap: 1.25em;
}
footer .my_container .footer_wrapper .news_letter .input input {
  border: none;
  padding: 0.625em 1.0625em;
  border-bottom: 2px solid rgb(233, 201, 113);
  font-weight: 400;
  font-size: 1.5em;
  line-height: 2.125em;
  width: 100%;
}
footer .my_container .footer_wrapper .news_letter .input button {
  border: none;
  outline: none;
  aspect-ratio: 1/1;
  height: 3.5em;
  border-radius: 10px;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
footer .my_container .footer_wrapper .news_letter .input button img {
  width: 0.8413em;
  height: 0.8962em;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .my_container .footer_wrapper .news_letter .input button:hover {
  background: linear-gradient(82.43deg, #e9c971 8.48%, #a88a40 83.46%);
}
footer .my_container .footer_wrapper .news_letter .input button:hover img {
  filter: grayscale(1) invert(1);
}
footer .my_container .footer_wrapper .news_letter .error {
  position: static !important;
}
footer .my_container .footer_wrapper .news_letter .socials {
  display: flex;
  gap: 1.25em;
  margin-top: auto;
}
@media screen and (min-width: 992px) {
  footer .my_container .footer_wrapper .news_letter .socials {
    margin-top: 20px;
  }
}
footer .my_container .footer_wrapper .news_letter .socials a img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .my_container .line {
  width: 100%;
  height: 1px;
  background-color: #4c4c4c;
  margin: 3.75em 0 1.25em;
}
footer .my_container .footer_items_bottom {
  display: flex;
  justify-content: space-between;
}
footer .my_container .footer_items_bottom p,
footer .my_container .footer_items_bottom a {
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.125em;
  color: #fff;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 1280px) {
  footer .my_container .footer_wrapper .footer_items_top {
    gap: 6em;
  }
}
@media (max-width: 992px) {
  footer .my_container .footer_wrapper .footer_items_top {
    grid-template-columns: repeat(2, auto);
  }
  footer .my_container .footer_wrapper .footer_items_top .news_letter .socials {
    margin-top: 2.4em;
  }
}
@media (max-width: 767px) {
  footer .my_container .footer_wrapper {
    padding: 4em 0 2.4em;
  }
  footer .my_container .footer_wrapper .footer_items_top {
    row-gap: 4em;
    -moz-column-gap: 5.3em;
         column-gap: 5.3em;
  }
  footer .my_container .footer_wrapper .footer_items_top .footer_item .title {
    font-size: 1.8em;
    line-height: 1.5556em;
    letter-spacing: 0.1111em;
    margin-bottom: 0.6667em;
  }
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .wlc_logo {
    width: 17.3em;
    margin-bottom: 4em;
  }
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .address,
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .mail {
    gap: 1.6em;
    margin-bottom: 2em;
  }
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .address .icon,
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .mail .icon {
    width: 2.4em;
    height: 2.4em;
  }
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .address .name,
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper .mail .name {
    font-size: 1.6em;
    line-height: 1.625em;
  }
  footer .my_container .footer_wrapper .footer_items_top .quick_links .link a {
    font-size: 1.6em;
    line-height: 1.75em;
  }
  footer .my_container .footer_wrapper .footer_items_top .sponsors .sponsor img {
    width: 6.5em;
  }
  footer .my_container .footer_wrapper .footer_items_top .news_letter .subscribe_text {
    font-size: 1.6em;
    line-height: 1.625em;
  }
  footer .my_container .footer_wrapper .footer_items_top .news_letter .input {
    margin-top: 2em;
    gap: 1em;
  }
  footer .my_container .footer_wrapper .footer_items_top .news_letter .input input {
    padding: 0.9167em 0.8em;
    font-size: 1.2em;
    line-height: 1em;
  }
  footer .my_container .footer_wrapper .footer_items_top .news_letter .input button {
    flex-shrink: 0;
    border-radius: 4px;
    height: 4em;
  }
  footer .my_container .footer_wrapper .footer_items_top .news_letter .input button img {
    width: 0.9em;
    height: 1em;
  }
  footer .my_container .footer_wrapper .line {
    margin: 2.4em 0;
  }
  footer .my_container .footer_wrapper .footer_items_bottom p,
  footer .my_container .footer_wrapper .footer_items_bottom a {
    font-size: 1.2em;
    line-height: 1.2em;
  }
}
@media (max-width: 650px) {
  footer:before {
    background: url("data:image/svg+xml,%3csvg%20width='321'%20height='376'%20viewBox='0%200%20321%20376'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e...%3c/svg%3e") no-repeat top right;
  }
  footer .my_container .footer_wrapper .footer_items_top .info_wrapper,
  footer .my_container .footer_wrapper .footer_items_top .news_letter {
    grid-column: span 2;
  }
}
#home-banner {
  position: relative;
  background-image: url("../images/home-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 10rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
#home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
#home-banner .content {
  position: relative;
  z-index: 1;
}
#home-banner .content .text-part h1 {
  font-family: "Playfair-Display-italic", sans-serif;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  font-size: 3.4rem;
}
#home-banner .content .text-part h1 span {
  font-family: "Playfair-Display-italic", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #a20d28;
}
@media screen and (min-width: 576px) {
  #home-banner .content .text-part h1 {
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 768px) {
  #home-banner .content .text-part h1 {
    font-size: 5.4rem;
  }
}
@media screen and (min-width: 992px) {
  #home-banner .content .text-part h1 {
    font-size: 6.7rem;
  }
}
#home-banner .powered_by {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 100px;
  transform: translate(-50%);
  text-align: center;
}
@media screen and (min-width: 480px) {
  #home-banner .powered_by {
    z-index: 1;
    right: 8rem;
  }
}
@media screen and (min-width: 768px) {
  #home-banner .powered_by {
    left: unset;
    transform: none;
  }
}
#home-banner .powered_by p {
  font-family: "Nunito-Bold", sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 1.4rem;
}

#images-part {
  padding: 3rem 0;
}
@media screen and (min-width: 576px) {
  #images-part {
    padding: 5rem 0;
  }
}
#images-part .images-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem 4rem;
}
@media screen and (min-width: 768px) {
  #images-part .images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1081px) {
  #images-part .images-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 4rem;
  }
}
#images-part .images-part-box {
  height: 100%;
}
#images-part .images-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#images-part .images-text img {
  width: 100%;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.8rem;
  margin-bottom: 2.5rem;
}
#images-part .images-text h3 span {
  color: #a20d28;
  font-style: italic;
}
@media screen and (min-width: 1081px) {
  #images-part .images-text h3 h3 {
    line-height: 1.3;
    margin-bottom: 2rem;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1300px) {
  #images-part .images-text h3 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  #images-part .images-text h3 {
    font-size: 2.8rem;
  }
}
#images-part .images-text p {
  color: #595757;
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 2px solid #d4b06a;
  font-size: 1.5rem;
}
@media screen and (min-width: 1081px) {
  #images-part .images-text p {
    font-size: 1.6rem;
  }
}
#images-part .images-text .button-box {
  padding: 0;
}
@media screen and (min-width: 768px) {
  #images-part .images-text .button-box {
    margin-top: auto;
  }
}
#images-part .images-text .button-box .btn-default {
  font-size: 1.5rem;
}
@media screen and (min-width: 480px) {
  #images-part .images-text .button-box .btn-default {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1081px) {
  #images-part .images-text .button-box .btn-default {
    font-size: 1.8rem;
  }
}

#artificial {
  margin: 10rem 0 0;
}
#artificial .artificial-box {
  margin: 0 auto;
}
#artificial .artificial-box .content {
  text-align: center;
  margin-bottom: 5rem;
}
#artificial .artificial-box .content .text-part h1 {
  font-size: 2.2rem;
}
@media screen and (min-width: 480px) {
  #artificial .artificial-box .content .text-part h1 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  #artificial .artificial-box .content .text-part h1 {
    font-size: 4.2rem;
  }
}
@media screen and (min-width: 992px) {
  #artificial .artificial-box .content .text-part h1 {
    font-size: 5.2rem;
  }
}
@media screen and (min-width: 1081px) {
  #artificial .artificial-box .content .text-part h1 {
    font-size: 7.2rem;
    line-height: 1.2;
  }
}
#artificial .artificial-box .content .text-part h1 span {
  font-weight: 500;
}
#artificial .artificial-box .img-box {
  margin-bottom: 2rem;
}
#artificial .artificial-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
#artificial .artificial-box .date {
  margin-bottom: 1rem;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
@media screen and (min-width: 576px) {
  #artificial .artificial-box .date {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
  }
}
#artificial .artificial-box .date p {
  color: #595757;
  margin: 0;
}
#artificial .artificial-box hr {
  border: none;
  height: 1px;
  background: #d4b06a;
  opacity: 0.6;
}

.ai-section {
  padding: 0;
}
.ai-section .ai-section-box {
  margin: 0 auto;
}
.ai-section .ai-section-box p {
  font-size: 1.7rem;
  line-height: 1.5;
  color: #595757;
  margin-bottom: 26px;
}
@media screen and (min-width: 576px) {
  .ai-section .ai-section-box p {
    font-size: 2rem;
  }
}

.blog-detail {
  padding: 10px 0;
}
@media screen and (min-width: 1081px) {
  .blog-detail {
    padding: 40px 0;
  }
}
.blog-detail .blog-detail-box {
  gap: 80px;
  flex-direction: row;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .blog-detail .blog-detail-box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.blog-detail .blog-detail-box .text-box,
.blog-detail .blog-detail-box .image-box {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .blog-detail .blog-detail-box .text-box,
  .blog-detail .blog-detail-box .image-box {
    width: calc(50% - 40px);
  }
}
.blog-detail .blog-detail-box .text-box {
  height: 100%;
  margin-top: 3rem;
}
.blog-detail .blog-detail-box .text-box h4 {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .blog-detail .blog-detail-box .text-box h4 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 480px) {
  .blog-detail .blog-detail-box .text-box h4 {
    font-size: 2.5rem;
  }
}
.blog-detail .blog-detail-box .text-box p {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #595757;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .blog-detail .blog-detail-box .text-box p {
    font-size: 2rem;
  }
}
.blog-detail .blog-detail-box .text-box p:not(:last-child) {
  margin-bottom: 30px;
}
.blog-detail .blog-detail-box .text-box .underline {
  color: #a20d28;
}
.blog-detail .blog-detail-box .underline {
  font-weight: bold;
  text-decoration: underline;
  color: #595757;
}
.blog-detail .blog-detail-box .image-box img {
  width: 100%;
  height: 100%;
  max-height: 600px;
}

.subscribe-part {
  background: linear-gradient(90deg, #7a0f14 0%, #a51e22 50%, #8e1216 100%);
  padding: 6rem 0;
  color: #ffffff;
}
.subscribe-part .subscribe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .subscribe-part .subscribe-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
}
.subscribe-part .subscribe-text {
  flex: 1;
}
.subscribe-part .subscribe-text h4 {
  color: #ffffff;
  line-height: 1.3;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .subscribe-part .subscribe-text h4 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .subscribe-part .subscribe-text h4 {
    font-size: 3.6rem;
  }
}
.subscribe-part .subscribe-form {
  flex: 1;
}
.subscribe-part .subscribe-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.subscribe-part .subscribe-form .input-group {
  flex: 1;
}
.subscribe-part .subscribe-form .input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #d6a85a;
  padding: 1rem 0;
  font-size: 2rem;
  color: #ffffff;
  outline: none;
  font-family: "Nunito-Medium", sans-serif;
  font-weight: 500;
}
.subscribe-part .subscribe-form .input-group input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.8;
}
.subscribe-part .subscribe-form .input-group input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}
.subscribe-part .subscribe-form .button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 1.3rem 2.4rem;
  font-size: 1.6rem;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Nunito-Medium", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .subscribe-part .subscribe-form .button {
    font-size: 2rem;
    padding: 1.6rem 4rem;
  }
}
.subscribe-part .subscribe-form .button:hover {
  background: #ffffff;
}/*# sourceMappingURL=style.css.map */