/* ----------------------------------------
    CSS RESET
---------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:wght@500&display=swap");
html {
  color: #000;
  background: #FFF; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0;
  font-variant: normal; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%; }

legend {
  color: #000; }

#yui3-css-stamp.cssreset {
  display: none; }

/* ----------------------------------------
    FONTS
---------------------------------------- */
/* ----------------------------------------
    COLORS
---------------------------------------- */
/* ----------------------------------------
    VARS
---------------------------------------- */
/* ----------------------------------------
    GLOBAL
---------------------------------------- */
* {
  box-sizing: border-box;
  outline: none; }

html {
  scroll-behavior: smooth; }

html,
body {
  height: 100%; }

@media (max-width: 800px) {
  body {
    padding-top: 80px; } }

img {
  display: block; }

a {
  text-decoration: none;
  cursor: pointer; }

/* ----------------------------------------
    HEADER
---------------------------------------- */
.header {
  width: 100%; }
  @media (max-width: 800px) {
    .header {
      position: fixed !important;
      top: 0;
      left: 0;
      z-index: 50;
      background-color: white; } }
  .header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px !important;
    margin: auto;
    padding: 60px 0; }
    @media (max-width: 800px) {
      .header .wrap {
        padding: 10px 20px; } }
    @media (max-width: 800px) {
      .header .wrap .logo {
        position: relative;
        z-index: 200; } }
    .header .wrap img {
      height: 60px; }
      @media (max-width: 800px) {
        .header .wrap img {
          filter: brightness(0) saturate(100%) !important; } }
    .header .wrap ul {
      display: flex;
      justify-content: space-between;
      gap: 60px; }
      @media (max-width: 800px) {
        .header .wrap ul {
          position: fixed;
          background-color: white;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          z-index: 100;
          display: none;
          padding-top: 80px; } }
      .header .wrap ul li {
        list-style: none !important; }
        @media (max-width: 800px) {
          .header .wrap ul li {
            display: block;
            height: calc((100% / 8));
            width: 100%;
            border-top: solid 1px #e1e1e1; } }
        .header .wrap ul li a {
          font-family: "Poppins";
          font-weight: 500;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0em;
          color: #111111; }
          @media (max-width: 800px) {
            .header .wrap ul li a {
              color: #111111 !important;
              width: 100%;
              height: 100%;
              display: flex;
              justify-content: center;
              align-items: center;
              font-size: 26px; } }
    .header .wrap .header-burger {
      display: none;
      width: 2rem;
      height: 2rem;
      z-index: 150;
      display: none;
      margin: 0 1rem;
      position: absolute;
      z-index: 200;
      top: 27px;
      right: 4px;
      cursor: pointer; }
      @media (max-width: 800px) {
        .header .wrap .header-burger {
          display: block; } }
      .header .wrap .header-burger span {
        width: 100%;
        height: 0.25rem;
        background: #000;
        transform-origin: center center;
        top: initial;
        left: initial;
        right: initial;
        bottom: initial;
        z-index: initial;
        position: absolute;
        transition: 0.25s;
        cursor: pointer; }
    .header .wrap .header-burger span:nth-child(2) {
      top: 10px; }
    .header .wrap .header-burger span:nth-child(3) {
      top: 20px; }
    .header .wrap .header-burger span:nth-child(4) {
      top: 30px; }
    .header .wrap .header-burger span.rotate1 {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg); }
    .header .wrap .header-burger span.rotate2 {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      top: 10px; }
    .header .wrap .header-burger span.none {
      display: none; }

/* ----------------------------------------
    FOOTER
---------------------------------------- */
.footer {
  background-color: #111111;
  width: 100%;
  margin-top: 0px; }
  .footer .wrap {
    max-width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: space-around;
    padding: 80px 0; }
    @media (max-width: 800px) {
      .footer .wrap {
        padding-left: 20px;
        padding-right: 20px;
        flex-wrap: wrap; } }
    .footer .wrap .col {
      width: auto; }
    .footer .wrap .col:nth-of-type(1) {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: space-between; }
      @media (max-width: 800px) {
        .footer .wrap .col:nth-of-type(1) {
          width: 100%;
          justify-content: center;
          align-items: center;
          gap: 40px;
          margin-bottom: 40px; } }
      .footer .wrap .col:nth-of-type(1) img {
        width: 174px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
      .footer .wrap .col:nth-of-type(1) p {
        font-family: "Jost";
        font-weight: 400;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.01em;
        color: #e1e1e1; }
        @media (max-width: 800px) {
          .footer .wrap .col:nth-of-type(1) p {
            text-align: center;
            padding: 0 40px 0 40px; }
            .footer .wrap .col:nth-of-type(1) p br {
              display: none; } }
      .footer .wrap .col:nth-of-type(1) .socials {
        max-width: 120px; }
        .footer .wrap .col:nth-of-type(1) .socials img {
          display: inline-block;
          margin-right: 40px;
          height: 24px;
          width: auto;
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
        .footer .wrap .col:nth-of-type(1) .socials a:last-of-type img {
          margin-right: 0; }
    @media (max-width: 800px) {
      .footer .wrap .col:nth-of-type(2) {
        width: 50%; } }
    .footer .wrap .col:nth-of-type(2) h4 {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: white;
      margin-bottom: 24px; }
      @media (max-width: 800px) {
        .footer .wrap .col:nth-of-type(2) h4 {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
    .footer .wrap .col:nth-of-type(2) ul {
      padding-left: 0; }
      .footer .wrap .col:nth-of-type(2) ul li {
        list-style: none;
        font-family: "Jost";
        font-weight: 400;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.01em;
        color: #e1e1e1;
        margin-bottom: 12px; }
        .footer .wrap .col:nth-of-type(2) ul li a {
          color: white; }
      .footer .wrap .col:nth-of-type(2) ul li:last-of-type {
        margin-bottom: 0; }
    @media (max-width: 800px) {
      .footer .wrap .col:nth-of-type(3) {
        width: 50%; } }
    .footer .wrap .col:nth-of-type(3) h4 {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: white;
      margin-bottom: 24px; }
      @media (max-width: 800px) {
        .footer .wrap .col:nth-of-type(3) h4 {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
    .footer .wrap .col:nth-of-type(3) ul {
      padding-left: 0; }
      .footer .wrap .col:nth-of-type(3) ul li {
        list-style: none;
        font-family: "Jost";
        font-weight: 400;
        font-size: 14px;
        line-height: normal;
        letter-spacing: 0.01em;
        color: #e1e1e1;
        margin-bottom: 12px; }
        .footer .wrap .col:nth-of-type(3) ul li a {
          color: white !important; }
      .footer .wrap .col:nth-of-type(3) ul li:last-of-type {
        margin-bottom: 0; }
    @media (max-width: 800px) {
      .footer .wrap .col:nth-of-type(4) {
        width: 50%;
        margin-top: 40px; } }
    .footer .wrap .col:nth-of-type(4) h4 {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: white;
      margin-bottom: 24px; }
      @media (max-width: 800px) {
        .footer .wrap .col:nth-of-type(4) h4 {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
    .footer .wrap .col:nth-of-type(4) p {
      font-family: "Jost";
      font-weight: 400;
      font-size: 14px;
      line-height: normal;
      letter-spacing: 0.01em;
      color: #e1e1e1;
      margin-bottom: 12px; }
      .footer .wrap .col:nth-of-type(4) p a {
        color: white !important; }
    .footer .wrap .col:nth-of-type(4) p:last-of-type {
      margin-bottom: 0; }
    @media (max-width: 800px) {
      .footer .wrap .col:nth-of-type(5) {
        width: 50%;
        margin-top: 40px; } }
    .footer .wrap .col:nth-of-type(5) h4 {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: white;
      margin-bottom: 24px; }
      @media (max-width: 800px) {
        .footer .wrap .col:nth-of-type(5) h4 {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
    .footer .wrap .col:nth-of-type(5) p {
      font-family: "Jost";
      font-weight: 400;
      font-size: 14px;
      line-height: normal;
      letter-spacing: 0.01em;
      color: #e1e1e1;
      margin-bottom: 12px; }
    .footer .wrap .col:nth-of-type(5) p:last-of-type {
      margin-bottom: 0; }

/* ----------------------------------------
    COPYRIGHT
---------------------------------------- */
.copyright {
  background-color: #111111;
  width: 100%; }
  .copyright .wrap {
    max-width: 1320px;
    margin: auto;
    padding: 48px 0;
    border-top: solid 1px rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: space-between; }
    @media (max-width: 800px) {
      .copyright .wrap {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px; } }
    .copyright .wrap p:first-of-type {
      font-family: "Jost";
      font-weight: 400;
      font-size: 14px;
      line-height: normal;
      letter-spacing: 0.01em;
      color: #b0b0b0; }
      .copyright .wrap p:first-of-type span {
        color: white; }
      @media (max-width: 800px) {
        .copyright .wrap p:first-of-type {
          text-align: center; } }
    .copyright .wrap p:last-of-type a {
      font-family: "Jost";
      font-weight: 400;
      font-size: 14px;
      line-height: normal;
      letter-spacing: 0.01em;
      color: #b0b0b0;
      display: flex;
      justify-content: space-between;
      gap: 5px;
      align-items: center; }
      @media (max-width: 800px) {
        .copyright .wrap p:last-of-type a {
          justify-content: center; } }
      .copyright .wrap p:last-of-type a img {
        height: 8px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
    @media (max-width: 800px) {
      .copyright .wrap p {
        width: 100%; } }

/* ----------------------------------------
    FOOTER ORDER 1
---------------------------------------- */
.footer-order-1 {
  width: 100%; }
  .footer-order-1 .wrap {
    max-width: 1320px;
    margin: auto;
    padding: 80px 0; }
    @media (max-width: 800px) {
      .footer-order-1 .wrap {
        padding-left: 20px;
        padding-right: 20px; } }
    .footer-order-1 .wrap h3 {
      font-family: "Cormorant Garamond";
      font-weight: 500;
      font-size: 80px;
      line-height: 100px;
      letter-spacing: 0em;
      text-align: center;
      color: #111111;
      text-transform: uppercase; }
      @media (max-width: 800px) {
        .footer-order-1 .wrap h3 {
          font-size: calc(80px * 0.5);
          line-height: calc(80px * 0.5);
          margin-bottom: 24px; } }
    .footer-order-1 .wrap p {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      text-align: center;
      color: #363636; }
      @media (max-width: 800px) {
        .footer-order-1 .wrap p {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
    .footer-order-1 .wrap .buttons {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 40px auto 0 auto; }
      @media (max-width: 800px) {
        .footer-order-1 .wrap .buttons {
          flex-wrap: wrap;
          gap: 24px; } }
      .footer-order-1 .wrap .buttons a {
        display: inline-flex;
        border: solid 2px #df6637;
        border-radius: 8px;
        padding: 16px 32px;
        font-family: "Jost";
        font-weight: 600;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0.01em;
        justify-content: center; }
        @media (max-width: 800px) {
          .footer-order-1 .wrap .buttons a {
            width: 100%; } }
      .footer-order-1 .wrap .buttons a:nth-of-type(1) {
        background-color: #df6637;
        color: white; }
      .footer-order-1 .wrap .buttons a:nth-of-type(2) {
        color: #df6637; }

/* ----------------------------------------
    FOOTER ORDER 2
---------------------------------------- */
.footer-order-2 {
  background-image: url("../assets/images/demo/order/header.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  margin-top: 80px;
  padding: 80px;
  position: relative; }
  @media (max-width: 800px) {
    .footer-order-2 {
      padding-left: 20px !important;
      padding-right: 20px !important; } }
  .footer-order-2 .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.5); }
  .footer-order-2 .wrap {
    padding: 0 !important;
    position: relative; }
    .footer-order-2 .wrap h3 {
      font-family: "Cormorant Garamond";
      font-weight: 500;
      font-size: 80px;
      line-height: 100px;
      letter-spacing: 0em;
      color: white;
      text-align: center;
      text-transform: uppercase; }
      @media (max-width: 800px) {
        .footer-order-2 .wrap h3 {
          font-size: calc(80px * 0.5);
          line-height: calc(80px * 0.5);
          margin-bottom: 24px; } }
    .footer-order-2 .wrap .form {
      padding: 80px 0 100px 0; }
      .footer-order-2 .wrap .form form {
        display: flex;
        justify-content: space-between;
        gap: 40px; }
        @media (max-width: 800px) {
          .footer-order-2 .wrap .form form {
            flex-wrap: wrap;
            gap: 24px; } }
        .footer-order-2 .wrap .form form .form-input {
          width: calc(100%/4);
          position: relative; }
          @media (max-width: 800px) {
            .footer-order-2 .wrap .form form .form-input {
              width: 100%; } }
          .footer-order-2 .wrap .form form .form-input .arrow {
            height: 7px;
            position: absolute;
            bottom: 25px;
            right: 0;
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
          .footer-order-2 .wrap .form form .form-input input {
            width: 100%;
            height: 56px;
            border: none;
            border-bottom: solid 2px white;
            font-family: "Jost";
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            letter-spacing: 0.03em;
            color: white;
            background: none; }
          .footer-order-2 .wrap .form form .form-input input::placeholder {
            color: white;
            opacity: 1; }
        .footer-order-2 .wrap .form form button {
          width: calc(100%/4);
          display: inline-flex;
          border-radius: 8px;
          background-color: #df6637;
          color: white;
          padding: 16px 32px;
          font-family: "Jost";
          font-weight: 600;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          border: solid 1px #df6637;
          justify-content: center;
          align-items: center;
          cursor: pointer; }
          @media (max-width: 800px) {
            .footer-order-2 .wrap .form form button {
              width: 100%;
              margin-top: 40px; } }
    .footer-order-2 .wrap h4 {
      font-family: "Cormorant Garamond";
      font-weight: 400;
      font-size: 56px;
      line-height: 56px;
      letter-spacing: 0.05em;
      color: white;
      text-align: center;
      text-transform: uppercase; }
      @media (max-width: 800px) {
        .footer-order-2 .wrap h4 {
          font-size: calc(56px * 0.6);
          line-height: calc(56px * 0.6); } }
      .footer-order-2 .wrap h4 a {
        color: white !important; }

/* ----------------------------------------
    GALLERY
---------------------------------------- */
.gallery {
  width: 100%; }
  .gallery .wrap {
    max-width: 1320px;
    margin: auto;
    padding-bottom: 80px; }
    @media (max-width: 800px) {
      .gallery .wrap {
        padding-left: 20px;
        padding-right: 20px; } }
    .gallery .wrap h1 {
      margin-bottom: 80px;
      font-family: "Cormorant Garamond";
      font-weight: 500;
      font-size: 80px;
      line-height: 100px;
      letter-spacing: 0em;
      text-align: center;
      color: #111111;
      text-transform: uppercase; }
      @media (max-width: 800px) {
        .gallery .wrap h1 {
          font-size: calc(80px * 0.5);
          line-height: calc(80px * 0.5);
          margin-bottom: 24px; } }
    .gallery .wrap .photos {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      width: 100%; }
      .gallery .wrap .photos a {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        display: block;
        width: calc((100% / 4) - 24px);
        aspect-ratio: 1;
        border-radius: 8px; }
        @media (max-width: 800px) {
          .gallery .wrap .photos a {
            width: calc((100% / 2) - 12px); } }

/* ----------------------------------------
    OFFEER
---------------------------------------- */
.offer {
  width: 100%;
  height: 100%; }
  .offer .top {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%; }
    @media (max-width: 800px) {
      .offer .top {
        height: auto;
        padding: 80px 10px; } }
    .offer .top .overlay {
      background-color: rgba(17, 17, 17, 0.25);
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .offer .top .header {
      position: relative;
      z-index: 2; }
      .offer .top .header img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
      .offer .top .header a {
        color: white; }
    .offer .top .container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1320px;
      margin: auto;
      height: calc(100% - 280px); }
      .offer .top .container .box {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center; }
        .offer .top .container .box h1 {
          font-family: "Cormorant Garamond";
          font-weight: 500;
          font-size: 80px;
          line-height: 100px;
          letter-spacing: 0em;
          color: white;
          text-transform: uppercase; }
          @media (max-width: 800px) {
            .offer .top .container .box h1 {
              font-size: calc(80px * 0.5);
              line-height: calc(80px * 0.5);
              margin-bottom: 24px; } }
        .offer .top .container .box p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 24px;
          line-height: 24px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .offer .top .container .box p {
              font-size: calc(24px * 0.8);
              line-height: calc(24px * 0.8); } }
        .offer .top .container .box a {
          background-color: white;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          margin-top: 40px;
          padding: 16px 32px;
          border: solid 1px white;
          border-radius: 8px;
          font-family: "Jost";
          font-weight: 600;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          color: #111111; }
  .offer .wrap {
    max-width: 1320px;
    margin: auto; }
    @media (max-width: 800px) {
      .offer .wrap {
        padding-left: 20px;
        padding-right: 20px; } }
    .offer .wrap .text {
      max-width: 1096px;
      margin: auto;
      padding: 80px 0; }
      .offer .wrap .text h2 {
        margin-bottom: 48px;
        font-family: "Cormorant Garamond";
        font-weight: 400;
        font-size: 56px;
        line-height: 56px;
        letter-spacing: 0.05em;
        color: #111111;
        text-transform: uppercase; }
        @media (max-width: 800px) {
          .offer .wrap .text h2 {
            font-size: calc(56px * 0.6);
            line-height: calc(56px * 0.6); } }
      .offer .wrap .text p {
        margin-bottom: 24px;
        font-family: "Jost";
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #363636; }
      .offer .wrap .text p:last-of-type {
        margin-bottom: 0; }
  .offer .products {
    background-color: #111111;
    width: 100%;
    padding: 80px 0; }
    .offer .products .wrap {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      max-width: 1320px;
      margin: auto; }
      @media (max-width: 800px) {
        .offer .products .wrap {
          flex-wrap: wrap; } }
      .offer .products .wrap .product {
        width: calc((100% / 3) - 24px); }
        @media (max-width: 800px) {
          .offer .products .wrap .product {
            width: 100%;
            margin-bottom: 40px; } }
        .offer .products .wrap .product .photo {
          background-size: cover;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          width: 100%;
          height: 312px; }
        .offer .products .wrap .product p:nth-of-type(1) {
          margin: 24px 0;
          font-family: "Cormorant Garamond";
          font-weight: 400;
          font-size: 56px;
          line-height: 56px;
          letter-spacing: 0.05em;
          text-align: center;
          color: white;
          text-transform: uppercase; }
          @media (max-width: 800px) {
            .offer .products .wrap .product p:nth-of-type(1) {
              font-size: calc(56px * 0.6);
              line-height: calc(56px * 0.6); } }
        .offer .products .wrap .product p:nth-of-type(2) {
          font-family: "Jost";
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          letter-spacing: 0.03em;
          text-align: center;
          color: white; }
      @media (max-width: 800px) {
        .offer .products .wrap .product:last-of-type {
          margin-bottom: 0; } }

/* ----------------------------------------
    EVENTS
---------------------------------------- */
.events {
  width: 100%;
  height: 100%; }
  .events .top {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%; }
    @media (max-width: 800px) {
      .events .top {
        height: auto;
        padding: 80px 20px; } }
    .events .top .overlay {
      background-color: rgba(17, 17, 17, 0.25);
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .events .top .header {
      position: relative;
      z-index: 2; }
      .events .top .header img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
      .events .top .header a {
        color: white; }
      @media (max-width: 800px) {
        .events .top .header .wrap {
          padding-top: 10px !important; } }
    .events .top .container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1320px;
      margin: auto;
      height: calc(100% - 280px); }
      .events .top .container .box {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center; }
        .events .top .container .box h1 {
          font-family: "Cormorant Garamond";
          font-weight: 500;
          font-size: 80px;
          line-height: 100px;
          letter-spacing: 0em;
          color: white;
          text-transform: uppercase; }
          @media (max-width: 800px) {
            .events .top .container .box h1 {
              font-size: calc(80px * 0.5);
              line-height: calc(80px * 0.5);
              margin-bottom: 24px; } }
        .events .top .container .box p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 24px;
          line-height: 24px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .events .top .container .box p {
              font-size: calc(24px * 0.8);
              line-height: calc(24px * 0.8); } }
        .events .top .container .box a {
          background-color: white;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          margin-top: 40px;
          padding: 16px 32px;
          border: solid 1px white;
          border-radius: 8px;
          font-family: "Jost";
          font-weight: 600;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          color: #111111; }
  .events .wrap {
    max-width: 1096px;
    margin: auto;
    padding-top: 80px; }
    @media (max-width: 800px) {
      .events .wrap {
        padding-left: 20px;
        padding-right: 20px; } }
    .events .wrap h2 {
      margin: 80px 0 48px 0;
      font-family: "Cormorant Garamond";
      font-weight: 400;
      font-size: 56px;
      line-height: 56px;
      letter-spacing: 0.05em;
      color: #111111;
      text-transform: uppercase; }
      @media (max-width: 800px) {
        .events .wrap h2 {
          font-size: calc(56px * 0.6);
          line-height: calc(56px * 0.6); } }
    .events .wrap h2:first-of-type {
      margin-top: 0; }
    .events .wrap p {
      margin-bottom: 24px;
      font-family: "Jost";
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      letter-spacing: 0.03em;
      color: #363636; }
    .events .wrap p:last-of-type {
      margin-bottom: 0; }
    .events .wrap ul {
      padding-left: 16px; }
      .events .wrap ul li {
        list-style: disc;
        font-family: "Jost";
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #363636; }
    .events .wrap .gallery {
      padding-top: 80px; }
      .events .wrap .gallery h2 {
        margin-bottom: 48px;
        font-family: "Cormorant Garamond";
        font-weight: 400;
        font-size: 56px;
        line-height: 56px;
        letter-spacing: 0.05em;
        color: #111111; }
        @media (max-width: 800px) {
          .events .wrap .gallery h2 {
            font-size: calc(56px * 0.6);
            line-height: calc(56px * 0.6); } }
      .events .wrap .gallery .photos {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
        width: 100%; }
        .events .wrap .gallery .photos a {
          background-size: cover;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          display: block;
          width: calc((100%/2) - 12px);
          height: 312px;
          border-radius: 8px; }
          @media (max-width: 800px) {
            .events .wrap .gallery .photos a {
              aspect-ratio: 1;
              height: auto; } }

/* ----------------------------------------
    CATERING
---------------------------------------- */
.catering {
  width: 100%;
  height: 100%; }
  .catering .top {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%; }
    @media (max-width: 800px) {
      .catering .top {
        height: auto;
        padding: 80px 20px; } }
    .catering .top .overlay {
      background-color: rgba(17, 17, 17, 0.25);
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .catering .top .header {
      position: relative;
      z-index: 2; }
      .catering .top .header img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
      .catering .top .header a {
        color: white; }
      @media (max-width: 800px) {
        .catering .top .header .wrap {
          padding-top: 10px !important; } }
    .catering .top .container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1320px;
      margin: auto;
      height: calc(100% - 280px); }
      .catering .top .container .box {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center; }
        .catering .top .container .box h1 {
          font-family: "Cormorant Garamond";
          font-weight: 500;
          font-size: 80px;
          line-height: 100px;
          letter-spacing: 0em;
          color: white;
          text-transform: uppercase; }
          @media (max-width: 800px) {
            .catering .top .container .box h1 {
              font-size: calc(80px * 0.5);
              line-height: calc(80px * 0.5);
              margin-bottom: 24px; } }
        .catering .top .container .box p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 24px;
          line-height: 24px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .catering .top .container .box p {
              font-size: calc(24px * 0.8);
              line-height: calc(24px * 0.8); } }
        .catering .top .container .box a {
          background-color: white;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          margin-top: 40px;
          padding: 16px 32px;
          border: solid 1px white;
          border-radius: 8px;
          font-family: "Jost";
          font-weight: 600;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          color: #111111; }
  .catering .wrap {
    max-width: 1096px;
    margin: auto;
    padding-top: 80px; }
    @media (max-width: 800px) {
      .catering .wrap {
        padding-left: 20px;
        padding-right: 20px; } }
    .catering .wrap h2 {
      margin: 80px 0 48px 0;
      font-family: "Cormorant Garamond";
      font-weight: 400;
      font-size: 56px;
      line-height: 56px;
      letter-spacing: 0.05em;
      color: #111111;
      text-transform: uppercase; }
      @media (max-width: 800px) {
        .catering .wrap h2 {
          font-size: calc(56px * 0.6);
          line-height: calc(56px * 0.6); } }
    .catering .wrap h2:first-of-type {
      margin-top: 0; }
    .catering .wrap p {
      margin-bottom: 24px;
      font-family: "Jost";
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      letter-spacing: 0.03em;
      color: #363636; }
    .catering .wrap p:last-of-type {
      margin-bottom: 0; }
    .catering .wrap ul {
      padding-left: 16px; }
      .catering .wrap ul li {
        list-style: disc;
        font-family: "Jost";
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: #363636; }
    .catering .wrap .dinner-set {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #363636; }
      @media (max-width: 800px) {
        .catering .wrap .dinner-set {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
      .catering .wrap .dinner-set span {
        font-family: "Jost";
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: rgba(17, 17, 17, 0.5); }
    .catering .wrap .how-to-order {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #363636; }
      @media (max-width: 800px) {
        .catering .wrap .how-to-order {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
      .catering .wrap .how-to-order span {
        font-family: "Jost";
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.03em;
        color: rgba(17, 17, 17, 0.5); }

/* ----------------------------------------
    CONTACT
---------------------------------------- */
.contact {
  width: 100%;
  height: 100%; }
  .contact .top {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%; }
    @media (max-width: 800px) {
      .contact .top {
        height: auto;
        padding: 80px 20px; } }
    .contact .top .overlay {
      background-color: rgba(17, 17, 17, 0.25);
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .contact .top .header {
      position: relative;
      z-index: 2; }
      .contact .top .header img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
      .contact .top .header a {
        color: white; }
    .contact .top .container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1320px;
      margin: auto;
      height: calc(100% - 280px); }
      .contact .top .container .box {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center; }
        .contact .top .container .box h1 {
          text-transform: uppercase;
          font-family: "Cormorant Garamond";
          font-weight: 500;
          font-size: 80px;
          line-height: 100px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .contact .top .container .box h1 {
              font-size: calc(80px * 0.5);
              line-height: calc(80px * 0.5);
              margin-bottom: 24px; } }
        .contact .top .container .box p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 24px;
          line-height: 24px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .contact .top .container .box p {
              font-size: calc(24px * 0.8);
              line-height: calc(24px * 0.8); } }
        .contact .top .container .box .buttons {
          display: flex;
          justify-content: center;
          gap: 40px;
          margin: 40px auto 0 auto; }
          @media (max-width: 800px) {
            .contact .top .container .box .buttons {
              flex-wrap: wrap;
              gap: 24px; } }
          .contact .top .container .box .buttons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 16px 32px;
            border: solid 2px white;
            border-radius: 8px;
            font-family: "Jost";
            font-weight: 600;
            font-size: 16px;
            line-height: normal;
            letter-spacing: 0.01em; }
            @media (max-width: 800px) {
              .contact .top .container .box .buttons a {
                width: 100%; } }
          .contact .top .container .box .buttons a:nth-of-type(1) {
            background-color: white;
            color: #111111; }
          .contact .top .container .box .buttons a:nth-of-type(2) {
            color: white; }
  .contact .box2 {
    background-color: #111111;
    width: 100%;
    padding: 80px 0; }
    .contact .box2 .wrap {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      max-width: 1320px;
      margin: auto; }
      @media (max-width: 800px) {
        .contact .box2 .wrap {
          flex-wrap: wrap;
          padding-left: 20px;
          padding-right: 20px; } }
      .contact .box2 .wrap .col {
        width: 50%; }
        @media (max-width: 800px) {
          .contact .box2 .wrap .col {
            width: 100%; } }
      .contact .box2 .wrap .col:nth-of-type(1) h2 {
        text-transform: uppercase;
        font-family: "Cormorant Garamond";
        font-weight: 400;
        font-size: 56px;
        line-height: 56px;
        letter-spacing: 0.05em;
        color: white;
        margin-bottom: 48px; }
        @media (max-width: 800px) {
          .contact .box2 .wrap .col:nth-of-type(1) h2 {
            font-size: calc(56px * 0.6);
            line-height: calc(56px * 0.6); } }
        @media (max-width: 800px) {
          .contact .box2 .wrap .col:nth-of-type(1) h2 {
            text-align: center; } }
      .contact .box2 .wrap .col:nth-of-type(1) .details {
        display: flex;
        justify-content: space-between; }
        @media (max-width: 800px) {
          .contact .box2 .wrap .col:nth-of-type(1) .details {
            flex-wrap: wrap; } }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col {
          width: auto; }
          @media (max-width: 800px) {
            .contact .box2 .wrap .col:nth-of-type(1) .details .col {
              width: 100%;
              text-align: center !important; } }
          .contact .box2 .wrap .col:nth-of-type(1) .details .col p {
            font-family: "Jost";
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            letter-spacing: 0.03em;
            color: white; }
            .contact .box2 .wrap .col:nth-of-type(1) .details .col p a {
              color: white; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(1) p:nth-of-type(1) {
          margin-bottom: 24px; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(1) p:nth-of-type(2) {
          margin-bottom: 48px; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(1) p:nth-of-type(3) a {
          font-family: "Jost";
          font-weight: 600;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          border-bottom: solid 2px #df6637; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(1) p:nth-of-type(3) span {
          display: inline-block;
          font-family: "Jost";
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          letter-spacing: 0.03em;
          margin: 0 10px; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(1) p:last-of-type {
          margin-bottom: 0; }
        @media (max-width: 800px) {
          .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(2) {
            margin-top: 40px; } }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(2) p {
          margin-bottom: 12px; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(2) p:nth-of-type(1) {
          margin-bottom: 24px; }
        .contact .box2 .wrap .col:nth-of-type(1) .details .col:nth-of-type(2) p:last-of-type {
          margin-bottom: 0; }
      .contact .box2 .wrap .col:nth-of-type(2) .photo {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        border-radius: 8px; }
        @media (max-width: 800px) {
          .contact .box2 .wrap .col:nth-of-type(2) .photo {
            aspect-ratio: 1;
            margin-top: 40px; } }
  .contact .map {
    padding-top: 80px;
    margin-bottom: 80px; }
    .contact .map .wrap {
      max-width: 1320px;
      margin: auto; }
      @media (max-width: 800px) {
        .contact .map .wrap {
          padding-left: 20px;
          padding-right: 20px; } }
      .contact .map .wrap h2 {
        margin-bottom: 48px;
        font-family: "Cormorant Garamond";
        font-weight: 400;
        font-size: 56px;
        line-height: 56px;
        letter-spacing: 0.05em;
        color: #111111;
        text-transform: uppercase; }
        @media (max-width: 800px) {
          .contact .map .wrap h2 {
            font-size: calc(56px * 0.6);
            line-height: calc(56px * 0.6); } }
        @media (max-width: 800px) {
          .contact .map .wrap h2 {
            text-align: center; } }
      .contact .map .wrap img {
        width: 100%; }

/* ----------------------------------------
    MENU
---------------------------------------- */
.menu {
  width: 100%; }
  .menu .wrap {
    max-width: 1320px;
    margin: auto; }
    @media (max-width: 800px) {
      .menu .wrap {
        padding-left: 20px;
        padding-right: 20px; } }
    .menu .wrap .top h1 {
      text-transform: uppercase;
      font-family: "Cormorant Garamond";
      font-weight: 500;
      font-size: 80px;
      line-height: 100px;
      letter-spacing: 0em;
      color: #111111;
      text-align: center; }
      @media (max-width: 800px) {
        .menu .wrap .top h1 {
          font-size: calc(80px * 0.5);
          line-height: calc(80px * 0.5);
          margin-bottom: 24px; } }
    .menu .wrap .top p {
      font-family: "Jost";
      font-weight: 400;
      font-size: 24px;
      line-height: 24px;
      letter-spacing: 0em;
      color: #363636;
      text-align: center; }
      @media (max-width: 800px) {
        .menu .wrap .top p {
          font-size: calc(24px * 0.8);
          line-height: calc(24px * 0.8); } }
    .menu .wrap .top .buttons {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 40px auto 0 auto; }
      @media (max-width: 800px) {
        .menu .wrap .top .buttons {
          flex-wrap: wrap;
          gap: 24px; } }
      .menu .wrap .top .buttons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: solid 2px #df6637;
        font-family: "Jost";
        font-weight: 600;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0.01em;
        padding: 16px 32px;
        border-radius: 8px; }
        @media (max-width: 800px) {
          .menu .wrap .top .buttons a {
            width: 100%; } }
      .menu .wrap .top .buttons a:nth-of-type(1) {
        background-color: #df6637;
        color: white; }
      .menu .wrap .top .buttons a:nth-of-type(2) {
        color: #df6637; }
    .menu .wrap .tabs {
      width: 100%;
      padding: 80px;
      display: flex;
      justify-content: center;
      gap: 80px; }
      @media (max-width: 800px) {
        .menu .wrap .tabs {
          padding-left: 20px;
          padding-right: 20px;
          gap: 0;
          justify-content: space-between; } }
      .menu .wrap .tabs a {
        font-family: "Jost";
        font-weight: 600;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0.01em;
        color: #111111; }
      .menu .wrap .tabs .active {
        border-bottom: solid 2px #df6637; }
    .menu .wrap .content h2 {
      font-family: "Cormorant Garamond";
      font-weight: 400;
      font-size: 56px;
      line-height: 56px;
      letter-spacing: 0.05em;
      color: #111111;
      margin-bottom: 48px;
      text-transform: uppercase;
      margin-top: 80px; }
      @media (max-width: 800px) {
        .menu .wrap .content h2 {
          font-size: calc(56px * 0.6);
          line-height: calc(56px * 0.6); } }
    .menu .wrap .content h2:first-of-type {
      margin-top: 0; }
    .menu .wrap .content a {
      display: inline-flex;
      margin-top: 48px;
      border: solid 2px #df6637;
      font-family: "Jost";
      font-weight: 600;
      font-size: 16px;
      line-height: normal;
      letter-spacing: 0.01em;
      color: #df6637;
      padding: 16px 32px;
      justify-content: center;
      align-items: center;
      border-radius: 8px; }
    .menu .wrap .content .details {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 32px 136px; }
      .menu .wrap .content .details .position {
        width: calc(50% - 68px); }
        @media (max-width: 800px) {
          .menu .wrap .content .details .position {
            width: 100%; } }
        .menu .wrap .content .details .position p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 24px;
          line-height: 24px;
          letter-spacing: 0em;
          color: #111111; }
          @media (max-width: 800px) {
            .menu .wrap .content .details .position p {
              font-size: calc(24px * 0.8);
              line-height: calc(24px * 0.8); } }
          .menu .wrap .content .details .position p span {
            color: #df6637; }
        .menu .wrap .content .details .position span {
          font-family: "Jost";
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          letter-spacing: 0.03em;
          color: rgba(17, 17, 17, 0.5); }

/* ----------------------------------------
    HOME
---------------------------------------- */
.home {
  width: 100%;
  height: 100%; }
  .home .top {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%; }
    @media (max-width: 800px) {
      .home .top {
        height: auto;
        padding: 80px 20px; } }
    .home .top .overlay {
      background-color: rgba(17, 17, 17, 0.25);
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .home .top .header {
      position: relative;
      z-index: 2; }
      .home .top .header img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
      .home .top .header a {
        color: white; }
    .home .top .container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1320px;
      margin: auto;
      height: calc(100% - 280px); }
      @media (max-width: 800px) {
        .home .top .container {
          position: relative;
          z-index: 1; } }
      .home .top .container .box {
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center; }
        .home .top .container .box h1 {
          text-transform: uppercase;
          font-family: "Cormorant Garamond";
          font-weight: 500;
          font-size: 80px;
          line-height: 100px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .home .top .container .box h1 {
              font-size: calc(80px * 0.5);
              line-height: calc(80px * 0.5);
              margin-bottom: 24px; } }
        .home .top .container .box p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 24px;
          line-height: 24px;
          letter-spacing: 0em;
          color: white; }
          @media (max-width: 800px) {
            .home .top .container .box p {
              font-size: calc(24px * 0.8);
              line-height: calc(24px * 0.8); } }
        .home .top .container .box .buttons {
          display: flex;
          justify-content: center;
          gap: 40px;
          margin: 40px auto 0 auto; }
          @media (max-width: 800px) {
            .home .top .container .box .buttons {
              flex-wrap: wrap;
              gap: 24px; } }
          .home .top .container .box .buttons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 16px 32px;
            border: solid 2px white;
            border-radius: 8px;
            font-family: "Jost";
            font-weight: 600;
            font-size: 16px;
            line-height: normal;
            letter-spacing: 0.01em; }
            @media (max-width: 800px) {
              .home .top .container .box .buttons a {
                width: 100%; } }
          .home .top .container .box .buttons a:nth-of-type(1) {
            background-color: white;
            color: #111111; }
          .home .top .container .box .buttons a:nth-of-type(2) {
            color: white; }
  .home .section-1 {
    width: 100%; }
    .home .section-1 .wrap {
      max-width: 1320px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 80px 0;
      align-items: center; }
      @media (max-width: 800px) {
        .home .section-1 .wrap {
          padding-left: 20px;
          padding-right: 20px;
          flex-wrap: wrap; } }
      .home .section-1 .wrap .col {
        width: 50%; }
        @media (max-width: 800px) {
          .home .section-1 .wrap .col {
            width: 100%; } }
        .home .section-1 .wrap .col h2 {
          font-family: "Cormorant Garamond";
          font-weight: 400;
          font-size: 56px;
          line-height: 56px;
          letter-spacing: 0.05em;
          color: #111111;
          text-transform: uppercase;
          margin-bottom: 48px; }
          @media (max-width: 800px) {
            .home .section-1 .wrap .col h2 {
              font-size: calc(56px * 0.6);
              line-height: calc(56px * 0.6); } }
        .home .section-1 .wrap .col p {
          font-family: "Jost";
          font-weight: 400;
          font-size: 16px;
          line-height: 26px;
          letter-spacing: 0.03em;
          color: #363636; }
        .home .section-1 .wrap .col .photo {
          background-size: cover;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          width: 100%;
          height: 480px;
          border-radius: 8px; }
  .home .section-2 {
    background-color: #111111;
    padding: 80px 0; }
    .home .section-2 .wrap {
      max-width: 1320px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 24px; }
      @media (max-width: 800px) {
        .home .section-2 .wrap {
          padding-left: 20px;
          padding-right: 20px;
          flex-wrap: wrap; } }
      .home .section-2 .wrap .col {
        width: 50%; }
        @media (max-width: 800px) {
          .home .section-2 .wrap .col {
            width: 100%; } }
        .home .section-2 .wrap .col .info {
          width: 100%;
          height: 100%;
          display: flex;
          flex-wrap: wrap;
          flex-direction: column;
          justify-content: space-around;
          align-items: start; }
          @media (max-width: 800px) {
            .home .section-2 .wrap .col .info {
              gap: 24px; } }
          .home .section-2 .wrap .col .info h2 {
            font-family: "Cormorant Garamond";
            font-weight: 400;
            font-size: 56px;
            line-height: 56px;
            letter-spacing: 0.05em;
            color: white;
            text-transform: uppercase; }
            @media (max-width: 800px) {
              .home .section-2 .wrap .col .info h2 {
                font-size: calc(56px * 0.6);
                line-height: calc(56px * 0.6); } }
          .home .section-2 .wrap .col .info p {
            font-family: "Jost";
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            letter-spacing: 0.03em;
            color: #e1e1e1; }
          .home .section-2 .wrap .col .info a {
            font-family: "Jost";
            font-weight: 600;
            font-size: 16px;
            line-height: normal;
            letter-spacing: 0.01em;
            color: white;
            border-bottom: solid 2px #df6637; }
        .home .section-2 .wrap .col .photo {
          background-size: cover;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          width: 100%;
          height: 400px;
          border-radius: 8px; }
          @media (max-width: 800px) {
            .home .section-2 .wrap .col .photo {
              margin-top: 24px; } }
  .home .section-3 {
    width: 100%;
    padding: 80px 0; }
    .home .section-3 .wrap {
      max-width: 1320px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 24px; }
      @media (max-width: 800px) {
        .home .section-3 .wrap {
          padding-left: 20px;
          padding-right: 20px;
          flex-wrap: wrap; } }
      .home .section-3 .wrap .col {
        width: calc((100% / 3));
        text-align: center; }
        @media (max-width: 800px) {
          .home .section-3 .wrap .col {
            width: 100%; } }
        .home .section-3 .wrap .col .photo {
          background-size: cover;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          width: 100%;
          height: 312px;
          border-radius: 8px; }
        .home .section-3 .wrap .col p {
          font-family: "Cormorant Garamond";
          font-weight: 400;
          font-size: 56px;
          line-height: 56px;
          letter-spacing: 0.05em;
          color: #111111;
          text-transform: uppercase;
          text-align: center;
          margin: 24px 0;
          font-size: 49px; }
          @media (max-width: 800px) {
            .home .section-3 .wrap .col p {
              font-size: calc(56px * 0.6);
              line-height: calc(56px * 0.6); } }
        .home .section-3 .wrap .col a {
          font-family: "Jost";
          font-weight: 600;
          font-size: 16px;
          line-height: normal;
          letter-spacing: 0.01em;
          border-bottom: solid 2px #df6637;
          text-align: center;
          color: #111111; }
  .home .section-4 {
    background-color: #111111;
    padding: 80px 0; }
    .home .section-4 .wrap {
      max-width: 1320px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      gap: 24px; }
      @media (max-width: 800px) {
        .home .section-4 .wrap {
          padding-left: 20px;
          padding-right: 20px;
          flex-wrap: wrap;
          gap: 40px; } }
      .home .section-4 .wrap .col {
        width: 50%; }
        @media (max-width: 800px) {
          .home .section-4 .wrap .col {
            width: 100%; } }
        .home .section-4 .wrap .col h2 {
          font-family: "Cormorant Garamond";
          font-weight: 400;
          font-size: 56px;
          line-height: 56px;
          letter-spacing: 0.05em;
          color: white;
          margin-bottom: 40px;
          text-transform: uppercase; }
          @media (max-width: 800px) {
            .home .section-4 .wrap .col h2 {
              font-size: calc(56px * 0.6);
              line-height: calc(56px * 0.6); } }
          @media (max-width: 800px) {
            .home .section-4 .wrap .col h2 br {
              display: none; } }
        .home .section-4 .wrap .col .content {
          width: 100%;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 24px; }
          .home .section-4 .wrap .col .content .photo {
            background-size: cover;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            width: 100%;
            height: 324px;
            border-radius: 8px; }
            @media (max-width: 800px) {
              .home .section-4 .wrap .col .content .photo {
                height: auto;
                aspect-ratio: 1; } }
          .home .section-4 .wrap .col .content p {
            font-family: "Jost";
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            letter-spacing: 0.03em;
            color: #e1e1e1;
            margin-bottom: 40px; }
          .home .section-4 .wrap .col .content a {
            font-family: "Jost";
            font-weight: 600;
            font-size: 16px;
            line-height: normal;
            letter-spacing: 0.01em;
            color: white;
            border-bottom: solid 2px #df6637; }
        .home .section-4 .wrap .col .photo {
          background-size: cover;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          width: 100%;
          height: 400px;
          border-radius: 8px; }
          @media (max-width: 800px) {
            .home .section-4 .wrap .col .photo {
              height: auto;
              aspect-ratio: 1; } }

/* ----------------------------------------
    PRELOADER
---------------------------------------- */
.preloader {
  display: none; }

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