@charset "UTF-8";
/*-----------------------------------------------------------------------------------
	Theme file    
----------------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------------------

	 Global SCSS INDEX

	01. Colours	
	02. Mixins
		- Full BG
		- Transition
	03. Fonts + Links
	04. Buttons
	05. Icons
	06. Mailchimp + Modals
	07. Media Queries

-----------------------------------------------------------------------------------*/
@font-face {
  font-family: "Suisse Black";
  src: url("../fonts/SuisseIntl-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Bold";
  src: url("../fonts/SuisseIntl-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Med";
  src: url("../fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Reg";
  src: url("../fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Lgt";
  src: url("../fonts/SuisseIntl-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Italic";
  src: url("../fonts/SuisseWorks-RegularItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
h1 {
  font-family: "Suisse Black";
  font-size: 10.25rem;
  line-height: 80%;
  color: #e8e2cf;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(60px);
  animation: fade-in-up 1s forwards;
}
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-family: "Suisse Black";
  font-size: 6rem;
  line-height: 80%;
  text-transform: uppercase;
  color: #e8e2cf;
  opacity: 0;
  transform: translateY(60px);
  animation: fade-in-up 1s forwards;
}
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h3 {
  color: #e8e2cf;
  font-family: "Suisse Works";
  font-size: 1.875rem;
  line-height: 80%;
  font-style: italic;
  font-weight: 700;
}

h4 {
  font-family: "Suisse Black";
}

p, li {
  ⁨⁨color: #e8e2cf;
  font-family: "Suisse Reg";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
}

p {
  line-height: 1.4;
}

li {
  line-height: 1.8;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #e8e2cf;
}

a:hover {
  color: #b6a263;
}

button {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.link, .link-blk {
  display: block;
  position: relative;
  width: fit-content;
  margin: 20px 0;
  padding: 0 22px 0 0;
  text-align: left;
  font-family: "Suisse Black";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 1.5rem */
  text-transform: uppercase;
}

.link {
  background: url("../images/arrow-right.svg") no-repeat;
  color: #e8e2cf;
  background-size: 12px auto;
  background-position: center right;
}

.link-blk {
  background: url("../images/arrow-right-blk.svg") no-repeat;
  color: #151515;
  background-size: 12px auto;
  background-position: center right;
}

.link:hover, .link-blk:hover {
  color: #b6a263;
  background: url("../images/arrow-right-ngold.svg") no-repeat;
  background-size: 12px auto;
  background-position: center right;
}

.link::after, .link-blk::after {
  content: " ";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #b6a263; /* Example color, matching text */
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.link:hover::after, .link-blk:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

button {
  border: 0;
  box-shadow: none;
  display: block;
  position: relative;
  width: fit-content;
  background: transparent;
  letter-spacing: 0.02rem;
}

.connect, .buy {
  display: inline-block;
  padding: 15px 60px 15px 25px;
  margin-top: 20px;
  border-radius: 30px;
  font-family: "Suisse Bold";
  color: #e8e2cf;
  font-size: 1.125rem;
  letter-spacing: 0.02rem;
}

.connect {
  background: url("../images/instagram.svg") no-repeat;
  background-size: 28px auto;
  background-position: center right;
  color: #e8e2cf;
  border: 1px solid #e8e2cf;
}

.connect:hover {
  background-color: #b6a263;
  border: 1px solid #b6a263;
  color: #403923;
  background-image: url("../images/instagram-olive.svg") no-repeat;
  background-size: 28px auto;
  background-position: center right;
}

.buy {
  background: url("../images/buy.svg") no-repeat #b6a263;
  background-size: 28px auto;
  background-position: center right;
  color: #151515;
  border: 1px solid #151515;
}

/*-----------------------------------------------------------------------------------

	 Global SCSS INDEX

	00. Template Elements
	01. Header
		- Brand
		- Navigation	
	02. Main
		- Banner & Titles
	03. Footer
	04. Media Queries

-----------------------------------------------------------------------------------*/
.dev-notes {
  color: blueviolet;
  letter-spacing: 0.2rem;
}

body {
  background-color: #000000;
  font-family: "Suisse Int'l";
}

.header, .main {
  background: #151515;
}

.footer, .sign-up, .copyright, .social {
  background: #1A1A1A;
}

.container {
  max-width: 1440px;
}

section {
  padding: 0 !important;
}

.instagram, .specs {
  background-color: #403923;
}

.wrap-50 {
  display: flex;
  width: 50%;
}

.top {
  margin-top: 60px;
}

.right {
  text-align: right;
}

.pad-r {
  padding-right: 140px;
}

.header {
  display: flex;
  align-items: center;
  height: 80px;
}
.header .brand {
  width: 10%;
}
.header .brand img {
  width: 100%;
  height: auto;
}
.header .navigation {
  width: 80%;
  display: flex;
  justify-content: center;
}
.header .navigation .nav-link {
  color: #e8e2cf;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .navigation .nav-link:hover {
  color: #b6a263;
}

.banner h2 {
  font-size: 4rem;
}

.footer {
  padding: 60px 140px 0 140px;
}
.footer .wrapper {
  display: flex;
  padding: 70px 0 40px 0;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
  color: #e8e2cf;
}
.footer .wrapper img {
  width: 150px;
  height: auto;
  margin: -25px 0 40px 0;
}
.footer .wrapper h4 {
  font-family: "Suisse Bold";
  font-size: 1.125rem;
  font-style: normal;
  line-height: 140%; /* 1.575rem */
  text-transform: uppercase;
  margin-bottom: 60px;
}
.footer .wrapper ul {
  padding: 0;
}
.footer .wrapper li {
  list-style-type: none;
  line-height: 2;
}
.footer .wrapper p, .footer .wrapper a {
  font-family: "Suisse Lgt";
  color: #e8e2cf;
  font-size: 1.125rem;
  font-style: normal;
}
.footer .wrapper a:hover {
  color: #b6a263;
}
.footer .wrapper .col {
  text-align: left;
  flex: inherit;
}
.footer .wrapper .country h4 {
  margin-bottom: 10px;
}
.footer .wrapper .country .dropdown .btn {
  background-color: #252525;
  border: 1px solid #e8e2cf;
  color: #e8e2cf;
}
.footer .wrapper .country .dropdown-toggle::after {
  content: "";
  border: 0;
}
.footer .wrapper .country .dropdown-menu.show {
  background-color: #252525;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .wrapper .country .dropdown-menu.show a.dropdown-item:hover {
  background-color: #e8e2cf;
  color: #252525;
}
.footer .wrapper .country #dropdownMenuButton .arrow {
  background-image: url("../images/arrow-dwn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 10px;
  transition: transform 0.3s ease-in-out;
  margin-left: 10px;
  display: inline-block;
  width: 12px;
  height: 18px;
  border: 0;
}
.footer .wrapper .country #dropdownMenuButton:hover .arrow {
  background-position: center 10px;
}

.social {
  padding: 0 140px;
}
.social hr {
  color: #e9e9e9;
  margin: -15px;
}
.social ul {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  z-index: 10;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
  padding-right: 30px;
  color: #e8e2cf;
  background-color: #1A1A1A;
}
.social ul li {
  list-style-type: none;
}
.social img {
  width: 27px;
  height: auto;
  margin: 0 3px;
}

.sign-up {
  background-color: #1A1A1A;
  display: flex;
  flex-flow: row nowrap;
  padding: 50px 140px 30px 140px;
  color: #e8e2cf;
}
.sign-up p {
  font-size: 1rem;
  margin-bottom: 0;
}

.copyright {
  padding: 140px 140px 60px 140px;
}
.copyright a {
  font-size: 0.8rem;
  color: #555555;
  margin-right: 20px;
  text-decoration: none;
}
.copyright a:hover {
  color: #e8e2cf;
}

/*-----------------------------------------------------------------------------------

	 Content Holders SCSS INDEX

	00. Banner
	01. Home Page
		- Intro
		- Wine Sections
		- Explore More
		- Instagram

	02. Wine Page
		- Filter
		- Wine Collection
	03. Fonts + Links
	04. Buttons
	05. Icons
	06. Mailchimp + Modals
	07. Media Queries

-----------------------------------------------------------------------------------*/
.banner-fw {
  padding: 0;
}
.banner-fw h1 {
  position: relative;
  z-index: 10;
  margin: 60px 0 0 0;
  font-size: 10.25rem;
  font-weight: 900;
  line-height: 80%;
  text-transform: uppercase;
  letter-spacing: -0.205rem;
}
.banner-fw h1:nth-child(2) {
  text-indent: 60px;
  margin: 0 0 -20px 0;
}
.banner-fw .banner {
  width: 100%;
  height: 840px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.intro {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 20px 70px 20px;
  text-align: center;
  color: #e8e2cf;
}
.intro h1 {
  color: #e8e2cf;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 2.5rem */
  letter-spacing: -0.05rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.intro p {
  font-size: 1.75rem;
}

section.wine-section {
  padding: 0;
}
section.wine-section .banner-img {
  position: sticky;
  top: -40px;
  width: 100%;
  height: 1100px;
}
section.wine-section .content {
  position: relative;
  padding: 60px 0 0 0;
  background-color: #151515;
}
section.wine-section .content h2 {
  font-size: 10.25rem;
  margin: -100px 0 0 20px;
}
section.wine-section .content h3 {
  margin-bottom: 40px;
}
section.wine-section .content .details {
  display: flex;
  flex-flow: row nowrap;
  padding: 100px 0;
}
section.wine-section .content .details .text {
  max-width: 650px;
  align-content: center;
  padding: 0 120px 0 140px;
  color: #e8e2cf;
}
section.wine-section .content .details .text .link:first-child {
  margin-top: 60px;
}
section.wine-section .content .details .images {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-flow: row nowrap;
  grid-gap: 20px;
  padding-right: 20px;
}
section.wine-section .content .details .images .image {
  width: 330px;
  max-width: 330px;
  height: 500px;
  border-radius: 8px;
  background-color: #e8e2cf;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.explore {
  position: relative;
  background-color: #e8e2cf;
  padding: 40px 25px 120px 25px;
}
.explore h2, .explore h3 {
  font-family: "Suisse Black";
  text-transform: uppercase;
  font-style: normal;
  color: #151515;
}
.explore h2 {
  font-size: 6rem;
}
.explore h3 {
  height: 65px;
  font-size: 2.5rem !important;
  margin-bottom: 20px;
}
.explore .collection {
  width: 100%;
  flex-flow: row nowrap;
  padding: 0 25px 80px 25px;
}
.explore .collection .col {
  width: 25%;
}
.explore .collection .col .image {
  margin: 0;
  background-color: #151515;
}

.instagram .content {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
  position: relative;
  padding: 120px 25px;
}
.instagram .col {
  flex: inherit;
  width: 25%;
  height: auto;
}
.instagram h2, .instagram h3 {
  font-family: "Suisse Black";
  word-break: break-word;
  text-transform: uppercase;
  font-style: normal;
  color: #e8e2cf;
}
.instagram h2 {
  font-size: 5rem;
}
.instagram h3 {
  max-width: 220px;
  height: 65px;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 40px;
}
.instagram video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  background-color: #f1f1f1;
}

.title {
  padding: 60px 25px 20px 25px;
}

#accordion .card {
  background: transparent;
}
#accordion .card-header {
  border: 0;
  background-color: transparent;
}

.choose-wine {
  padding: 30px 25px 80px 25px;
}
.choose-wine .filter {
  display: flex;
  flex-flow: row nowrap;
  margin: 20px 0;
}
.choose-wine .filter h3 {
  font-size: 1.4rem;
  margin: 0 0 40px 0;
}
.choose-wine .filter a {
  color: ⁨⁨ #403923;
}
.choose-wine .filter a:hover, .choose-wine .filter a.active {
  color: #b6a263;
}
.choose-wine .filter .range {
  width: 50%;
}
.choose-wine .filter .style {
  width: 30%;
  position: relative;
}
.choose-wine .filter .style .group {
  position: absolute;
  bottom: 0;
}
.choose-wine .filter .select {
  margin: 20px 0 0 0;
  padding: 0 22px 0 0;
  text-align: left;
  font-family: "Suisse Black";
  font-size: 3rem;
  font-style: normal;
  font-weight: 900;
  line-height: 90%; /* 1.5rem */
  text-transform: uppercase;
  color: #e8e2cf;
}
.choose-wine .filter .select:hover, .choose-wine .filter .select.active {
  color: #b6a263;
}
.choose-wine .filter .small {
  font-size: 1.325rem;
  margin: 12px 0 0 0;
  letter-spacing: 0.02rem;
}
.choose-wine .filter .clear {
  width: fit-content;
  height: fit-content;
  padding: 0 25px;
  font-family: "Suisse Black";
  text-transform: uppercase;
  color: #e8e2cf;
  background: url("../images/cross.svg") no-repeat;
  background-size: 16px auto;
  background-position: center right;
}
.choose-wine .filter .clear:hover {
  color: #b6a263;
  background: url("../images/cross-gld.svg") no-repeat;
  background-size: 16px auto;
  background-position: center right;
}
.choose-wine .collection {
  padding: 0;
}
.choose-wine .filter-mob {
  display: none;
}

.collection {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  grid-gap: 1.2%;
  padding: 0 25px;
  margin-top: 60px;
}
.collection .col {
  flex: inherit;
  width: 23.8%;
  border-radius: 8px;
}
.collection .col h3 {
  font-family: "Suisse Black";
  font-size: 1.5rem;
  font-style: normal;
  text-transform: uppercase;
}
.collection .col h4 {
  font-family: "Suisse Italic";
  color: #e8e2cf;
  font-size: 1.2rem;
}
.collection .col .image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin: 0 0 35px 0;
  background-color: #e8e2cf;
  border-radius: 8px;
}
.collection .col .link {
  margin: 20px 0 0 0;
  font-size: 1.125rem;
}

.wine-info {
  display: flex;
  justify-content: center;
}
.wine-info .info {
  width: 66.666%;
  padding: 140px 140px 40px 140px;
}
.wine-info .info h1 {
  font-size: 6rem;
  margin-bottom: 40px;
}
.wine-info .info h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.wine-info .info h3 {
  margin-bottom: 20px;
}
.wine-info .info p {
  font-family: "Suisse Lgt";
  color: #e8e2cf;
  font-size: 1.325rem;
  line-height: 120%;
}
.wine-info .image {
  width: 33.333%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.specs h2 {
  margin-bottom: 30px;
}
.specs p {
  font-family: "Suisse Lgt";
  color: #e8e2cf;
  font-size: 1.75rem;
  line-height: 85%;
}
.specs .notes {
  display: flex;
  gap: 20px;
  padding: 20px 25px;
  margin-bottom: 60px;
}
.specs .notes .col {
  border: 1px solid #e8e2cf;
  border-radius: 8px;
  padding: 40px;
  color: #e8e2cf;
}
.specs .notes .col h3 {
  font-family: "Suisse Black";
  text-transform: uppercase;
  font-style: normal;
  font-size: 1.375rem;
  color: #e8e2cf;
  margin-bottom: 20px;
}
.specs .notes .col p {
  font-size: 1.325rem;
  line-height: 125%;
}
.specs .lifestyle {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  padding: 0 25px 85px 25px;
}
.specs .lifestyle .image {
  width: 100%;
  height: 480px;
  border-radius: 8px;
}

/*-----------------------------------------------------------------------------------
----------------------------------------------------------------------------------- */
