* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth !important;
    transition: all 0.2s ease;
    font-size: 1.6rem;
}

:root {
    --primary: #091829;
    --secondary: #cb9a4f;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ffffff00;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(203, 153, 79, 0.8);
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth !important;
}

body {
    font-family: "";
    font-feature-settings: "case";
    line-height: 1.5;
    background: var(--primary);
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

button {
    font-family: "Helvetica Neue LT GEO";
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    border: none;
}

span {
    font-family: "Helvetica Neue LT GEO";
    font-style: normal;
    font-weight: 400;
    font-feature-settings: "case" on;
}

a {
    text-decoration: none;
    color: #ffffff;
    width: fit-content;

    font-family: "GA ArtDeco";
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    font-feature-settings: "case" on;
}

p {
    font-feature-settings: normal;
    font-family: "Helvetica Neue LT GEO";
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

h1 {
    font-family: "GA Ptskari";
    font-style: normal;
    font-weight: 400;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "GA Apkhazeti";
    font-style: normal;
    font-weight: 400;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container-a {
    max-width: 1920px;
    width: 92%;
    margin: 0 auto;
}

.container-b {
    max-width: 1920px;
    width: 84%;
    margin: 0 auto;
}

.container-c {
    max-width: 1920px;
    width: 50%;
    margin: 0 auto;
}

.pg {
    padding: 140px 0 60px 0;
}

a[aria-current="page"] {
    color: var(--secondary);
}

@media (max-width: 1200px) {
    html {
        font-size: 56.5%;
    }

    ::-webkit-scrollbar {
        width: 3px;
    }
}

@media (max-width: 1024px) {
    .pg {
        padding: 113px 0 24px 0;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 44.5%;
    }
}

/* Header */
.mainPage header,
.mainPage .swiper-button-next {
    animation: fadeIn 2s;
}

.mainPage .swiper-button-prev {
    animation: fadeInBtn 2s;
}

.mainPage .main-hero .swiper-slide .slider-text p {
    animation: fadeIn 3s;
}

@keyframes fadeIn {

    0%,
    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInBtn {

    0%,
    60% {
        opacity: 0;
    }

    100% {
        opacity: 0.35;
    }
}

@keyframes disableSwiper {

    0%,
    90% {
        pointer-events: none;
    }

    100% {
        pointer-events: unset;
    }
}

header {
    background: rgba(9, 24, 41, 0.9);
    z-index: 99;
    padding: 24px 0;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    box-shadow: 0px 2px 4px 0px rgba(9, 24, 41, 0.4);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(9, 24, 41, 0.4);
    -moz-box-shadow: 0px 2px 4px 0px rgba(9, 24, 41, 0.4);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo,
header nav .logo img {
    max-width: 241px;
    width: 100%;
    height: 84px;
}

header nav .logo:hover {
    opacity: 0.8;
}

header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

header nav ul .vl {
    width: 1px;
    height: 20px;
    background: #d9d9d9;
    opacity: 0.4;
    border-radius: 30px;
    margin-left: -22px;
}

header nav ul li a:hover {
    color: var(--secondary);
}

header nav .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 24px;
    height: auto;
    cursor: pointer;
    display: none;
    background: transparent;
}

header nav .hamburger:hover .stripe {
    background-color: var(--secondary);
}

header nav .stripe {
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: transform 0.3s ease;
}

header nav .stripe:first-child {
    transform-origin: center bottom;
}

header nav .stripe:last-child {
    transform-origin: center top;
}

header nav .hamburger.active .stripe:first-child {
    transform: rotate(45deg) translate(0px, 6px);
}

header nav .hamburger.active .stripe:last-child {
    transform: rotate(-45deg) translate(0px, -6px);
}

.lang {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 20px;
    width: 45px;
    cursor: pointer;
    overflow: hidden;
    margin-left: -22px;
}

.lang a {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    font-feature-settings: "case" on;
    color: #ffffff;
    transition: none;
}

.lang a:nth-child(1) {
    pointer-events: none;
    position: relative;
}

.lang a:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 31%;
    right: -16px;
    transform: translate(0, -30%);
    background-image: url(../img/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 12px;
    height: 12px;
}

.lang-not:hover a,
.lang-not:hover a:nth-child(1)::after {
    filter: invert(56%) sepia(87%) saturate(295%) hue-rotate(357deg) brightness(97%) contrast(83%);
    transition: none;
}

header ul .active {
    overflow: visible;
}

header ul .active a:nth-child(1)::after {
    transform: translate(0, -30%) rotate(180deg);
}

header ul .active a:hover {
    color: var(--secondary);
}

aside {
    position: fixed;
    top: 89px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 99;
    transform: translateX(8000px);

    background-color: var(--primary);
    padding: 56px 0 56px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.aside-active {
    transform: translateX(0);
}

.no-scroll {
    overflow: hidden;
}

.header-active {
    background: rgb(9, 24, 41) !important;
}

aside .aside-cont {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

aside .aside-cont ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

aside .aside-cont .lang {
    display: flex;
}

aside .aside-cont .lang a {
    font-size: 2rem;
}

aside ul .active {
    overflow: visible;
}

aside .aside-cont .aside-socials {
    display: flex;
    gap: 16px;
}

aside .aside-cont .aside-socials .social,
aside .aside-cont .aside-socials .social img {
    height: 24px;
    width: 24px;
}

main {
    flex: 1;
}

.main-hero {
    height: 100vh;
}

.swiper {
    width: 100%;
    height: 100%;

    animation: disableSwiper 2s;
}

.main-hero .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.main-hero .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-hero .swiper-slide .slider-text h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    line-height: 182px;
    font-size: 14rem;
    color: #ffffff;
}

.main-hero .swiper-slide .slider-text .ml3 span {
    line-height: 182px;
    font-size: 14rem;
    color: #ffffff;
    font-family: "GA Ptskari";
    font-style: normal;
    font-weight: 400;
}

.main-hero .swiper-slide .slider-text p {
    position: absolute;
    left: 50%;
    bottom: 65px;
    transform: translate(-50%);

    font-size: 1.5rem;
    font-feature-settings: "case" on;
    color: rgba(255, 255, 255, 0.8);
}

.swiper-button-prev,
.swiper-button-next {
    height: 120px !important;
    width: 120px !important;
    background-image: url(../img/icons/arrow.svg);
    background-size: 24%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s ease;
    box-shadow: 0px 0px 20px #597dbc1a;
    border: 0.45px solid #bababa;
    border-radius: 50%;
    z-index: 2 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(203, 153, 79, 0.6);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-next {
    right: 4%;
}

.swiper-button-prev {
    left: 4%;
}

.swiper-button-prev {
    transform: rotate(180deg);
}

.slider-wine {
    margin: 80px auto 120px auto;
}

.slider-wine .swiper-slide,
.products-page-cont .listing .wine-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px;

    height: 563px;

    background: rgba(58, 58, 58, 0.3);
    border: 1px solid rgba(124, 124, 124, 0.16);
}

.slider-wine .swiper-slide:hover,
.products-page-cont .listing .wine-box:hover {
    background: rgba(58, 58, 58, 0.4);
}

.slider-wine .swiper-slide .wine-abt,
.products-page-cont .listing .wine-box .wine-abt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.slider-wine .swiper-slide .wine-abt h3,
.products-page-cont .listing .wine-box .wine-abt h3 {
    font-size: 4rem;
    text-align: center;
    color: #ffffff;
}

.slider-wine .swiper-slide .wine-abt p,
.products-page-cont .listing .wine-box .wine-abt p {
    font-size: 1.4rem;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

.history h1 {
    font-size: 11.8rem;
    line-height: 142px;
    color: #ffffff;
    text-align: center;
}

.history .history-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 536px;
    margin: 96px auto 0 auto;
}

.history .history-cont .history-cont-left {
    background-image: url(../img/unsplash_tjkNAG4rYz0.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 50%;
}

.history .history-cont .history-cont-right::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.1;
    z-index: -1;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)),
        url(../img/unsplash_tjkNAG4rYz0.png);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.history .history-cont .history-cont-right {
    height: 100%;
    width: 50%;
    padding: 80px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;

    position: relative;
}

.history .history-cont .history-cont-right p {
    font-size: 1.4rem;
    line-height: 24px;
    color: #ffffff;
    max-width: 440px;
    width: 100%;
}

.history .history-cont .history-cont-right button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 103px;
    width: 100%;
    height: 51px;
    margin-top: 24px;
    padding: 14px 24px;

    background: #cb9a4f;
    color: #ffffff;
    border-radius: 130px;
    font-size: 13px;
}

.history .history-cont .history-cont-right button:hover {
    opacity: 0.9;
}

.about {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
}

.about::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
        url(../img/unsplash_PUDQGDlM_V8.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;

    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: -1;
}

.about {
    padding: 140px 0 148px 0;
}

.about .about-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 432px;
    width: 100%;
}

.about h1 {
    font-size: 11.8rem;
    line-height: 142px;
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
}

.about .about-cont img {
    font-size: 11.8rem;
    line-height: 142px;
    color: #ffffff;
    white-space: nowrap;
    margin: 96px auto 40px auto;
}

.about .about-cont p {
    font-size: 1.4rem;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}

.about .about-cont button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 134px;
    width: 100%;
    height: 51px;
    margin-top: 52px;
    padding: 14px 24px;

    background: #cb9a4f;
    color: #ffffff;
    border-radius: 130px;
    font-size: 13px;
}

.about .about-cont button:hover {
    opacity: 0.9;
}

footer {
    background: #091829;
    border-radius: 0px;
    padding: 48px 0;
    z-index: 5;
}

footer .footer-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-cont ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

footer .footer-cont ul li a:hover {
    color: var(--secondary);
}

footer .footer-cont .footer-first {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

footer .footer-cont .footer-first span {
    font-size: 1.4rem;
    line-height: 21px;
    font-feature-settings: "case" on;
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-cont .footer-first a {
    font-family: "Helvetica Neue LT GEO";
    font-style: normal;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 21px;
    font-feature-settings: "case" on;
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-cont .footer-last {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

footer .footer-cont .footer-last .social,
.contact-info-cont .contact-abt .social {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;
    border: 0.6px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    cursor: pointer;
}

footer .footer-cont .footer-last .social:hover,
.contact-info-cont .contact-abt .social:hover {
    background: rgba(203, 153, 79, 0.6);
}

@media (max-width: 1200px) {
    header nav ul {
        gap: 24px;
    }

    header nav ul .vl {
        margin-left: 0;
    }

    .lang {
        margin-left: 0;
    }
}

@media (max-width: 1024px) {

    .container-a,
    .container-b {
        width: 96%;
    }

    header {
        padding: 16px 0;
    }

    header nav ul li {
        display: none;
    }

    header nav .logo,
    header nav .logo img {
        max-width: 168px;
        height: 57px;
    }

    header nav .hamburger {
        display: flex;
    }

    header nav ul .vl {
        display: none;
    }

    .lang {
        display: none;
    }

    aside .aside-cont .lang {
        height: 24px;
    }

    aside .aside-cont .lang a:nth-child(1) {
        pointer-events: unset;
    }

    aside ul .active a:nth-child(1)::after {
        transform: translate(0, -30%) rotate(180deg);
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .main-hero .swiper-slide .slider-text h1,
    .main-hero .swiper-slide .slider-text p,
    .main-hero .swiper-slide .slider-text .ml3 span {
        width: 80%;
        line-height: normal;
    }

    .main-hero .swiper-slide .slider-text h1,
    .main-hero .swiper-slide .slider-text .ml3 span {
        font-size: 8rem;
    }

    .slider-wine {
        margin: 32px auto 72px auto;
    }

    .history .history-cont {
        flex-direction: column;
        margin: 40px auto 0 auto;
    }

    .history .history-cont {
        height: auto;
    }

    .history .history-cont .history-cont-left,
    .history .history-cont .history-cont-right {
        width: 100%;
    }

    .history .history-cont .history-cont-left {
        height: 428px;
    }

    .history .history-cont .history-cont-right {
        height: fit-content;
        padding: 32px 16px;
    }

    .history .history-cont .history-cont-right p {
        max-width: none;
    }

    .about {
        padding: 40px 0 24px 0;
    }

    footer .footer-cont .footer-last {
        display: none;
    }
}

@media (max-width: 700px) {
    .history .history-cont .history-cont-left {
        height: 214px;
    }

    .about .about-cont {
        max-width: 1920px;
        width: 96%;
        align-items: flex-start;
    }

    .about .about-cont p {
        text-align: left;
    }

    .about .about-cont button {
        margin-top: 20px;
    }

    footer .footer-cont {
        flex-direction: column;
    }

    footer .footer-cont {
        flex-direction: column;
        gap: 40px;
    }

    footer .footer-cont .footer-first {
        align-items: center;
    }

    footer .footer-cont ul {
        flex-direction: column;
        gap: 28px;
    }
}

/* History Page */
.history-page {
    background-image: url(../img/unsplash_PUDQGDlM_V8.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.history-page .history-page-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.history-page .history-page-cont .text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.history-page .history-page-cont .text h1 {
    font-size: 11.8rem;
    color: #ffffff;
    margin-bottom: 64px;
}

.history-page .history-page-cont .text p {
    font-size: 1.4rem;
    color: #ffffff;

    max-width: 440px;
    width: 100%;
}

.history-page .history-page-cont .wine-grid {
    display: flex;
    gap: 20px;
    margin-top: 240px;
}

.history-page .history-page-cont .wine-grid .wine-box:nth-child(2) {
    margin-top: 48px;
}

.history-page .history-page-cont .wine-grid .wine-box:nth-child(3) {
    margin-top: 96px;
}

.history-page .history-page-cont .wine-grid .wine-box {
    max-width: 277px;
    width: 100%;
    height: 393px;
    padding: 32px 32px 20px 32px;

    background: rgba(58, 58, 58, 0.3);
    border: 1px solid rgba(124, 124, 124, 0.41);
}

.history-page .history-page-cont .wine-grid .wine-box:hover {
    background: rgba(58, 58, 58, 0.6);
}

.history-page .history-page-cont .wine-grid .wine-box .wine-abt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.history-page .history-page-cont .wine-grid .wine-box h3 {
    font-size: 3.2rem;
    text-align: center;
    color: #ffffff;
}

.history-page .history-page-cont .wine-grid .wine-box img {
    object-fit: cover;
    width: 277px;
    height: 248px;
}

@media (max-width: 1024px) {
    .history-page .history-page-cont {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .history-page .history-page-cont .text h1 {
        margin-bottom: 16px;
    }

    .history-page .history-page-cont .text p {
        max-width: none;
    }

    .history-page .history-page-cont .wine-grid {
        margin-top: 40px;
    }

    .history-page .history-page-cont .wine-grid .wine-box {
        max-width: none;
        width: 100%;
        height: 358px;
    }

    .history-page .history-page-cont .wine-grid .wine-box:nth-child(2),
    .history-page .history-page-cont .wine-grid .wine-box:nth-child(3) {
        margin-top: 0;
    }
}

@media (max-width: 700px) {
    .history-page .history-page-cont .wine-grid {
        flex-direction: column;
    }
}

/* Products External Page */
.products-ext-page-cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.products-ext-page-cont .products-ext-box {
    width: 100%;
    padding: 72px 72px 194px 72px;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.products-ext-page-cont .products-ext-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));

    margin: -72px -72px -194px -72px;
}

.products-ext-page-cont .products-ext-box .products-ext-box-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;

    z-index: 2;
}

.products-ext-page-cont .products-ext-box .products-ext-box-top img {
    width: 180px;
    height: 71px;
}

.products-ext-page-cont .products-ext-box .products-ext-box-top h1 {
    font-size: 7.2rem;
    color: #ffffff;
}

.products-ext-page-cont .products-ext-box .products-ext-box-top p {
    font-size: 1.4rem;
    color: #ffffff;
    max-width: 440px;
    width: 100%;
}

.products-ext-page-cont .products-ext-box button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 121px;
    width: 100%;
    min-height: 51px;
    margin-top: 52px;
    padding: 14px 24px;
    background: #cb9a4f;
    color: #ffffff;
    border-radius: 130px;
    font-size: 13px;

    z-index: 2;
}

.products-ext-page-cont .products-ext-box button:hover {
    opacity: 0.9;
}

@media (max-width: 1350px) {
    .products-ext-page-cont .products-ext-box {
        padding: 72px 72px 80px 72px;
    }
}

@media (max-width: 1024px) {
    .products-ext-page-cont {
        grid-template-columns: repeat(1, 1fr);
    }

    .products-ext-page-cont .products-ext-box {
        padding: 24px 20px;
    }

    .products-ext-page-cont .products-ext-box::after {
        margin: -24px -20px;
    }

    .products-ext-page-cont .products-ext-box .products-ext-box-top h1 {
        padding-left: 40px;
    }
}

/* Products Page */
.products-page-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products-page-cont .heading {
    background-image: url(../img/Rectangle\ 48.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 64px 0;
}

.products-page-cont .heading-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;

    max-width: 600px;
    width: 100%;
}

.products-page-cont .heading .heading-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.products-page-cont .heading .heading-head img {
    width: 54.71px;
    height: 71px;
}

.products-page-cont .heading .heading-head h1 {
    font-size: 6.4rem;
    color: #ffffff;
    text-align: center;
}

.products-page-cont .heading p {
    font-size: 1.4rem;
    text-align: center;
    color: #ffffff;
}

.products-page-cont .listing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 80px;
}

.products-page-cont .listing .wine-box {
    width: 100%;
}

@media (max-width: 1200px) {
    .products-page-cont .listing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .products-page-cont .listing {
        grid-template-columns: repeat(1, 1fr);
    }

    .products-page-cont .heading .heading-head {
        flex-direction: column;
        gap: 24px;
    }

    .products-page-cont .heading {
        gap: 32px;
    }

    .products-page-cont .heading .heading-head h1 {
        font-size: 4.4rem;
    }
}

/* Contact Page */
.contact-page-cont {
    display: flex;
}

.contact-info {
    width: 100%;
}

.contact-info h1 {
    font-size: 7.2rem;
    color: #ffffff;
    padding: 0 0 40px 80px;
}

.contact-info .contact-info-cont {
    background: rgba(0, 0, 0, 0.14);
    padding: 40px 200px 40px 200px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info .contact-info-cont .contact-abt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info .contact-info-cont .contact-abt span {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info .contact-info-cont .contact-abt a {
    font-family: "Helvetica Neue LT GEO";
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    font-feature-settings: "case" on;
    color: #ffffff;
}

.contact-info .contact-info-cont .contact-abt .contact-socials {
    display: flex;
    gap: 12px;
}

.contact-map {
    position: fixed;
    top: 0;
    right: 0;

    max-width: 802px;
    width: 100%;
    height: 100vh;
}

.contact-map iframe {
    width: 100%;
    height: 100vh;
}

.contactPage header {
    background: rgb(9, 24, 41) !important;
    box-shadow: 0px 2px 4px 0px rgba(9, 24, 41, 0.4);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(9, 24, 41, 0.4);
    -moz-box-shadow: 0px 2px 4px 0px rgba(9, 24, 41, 0.4);
}

@media (max-width: 1350px) {
    .contact-map {
        max-width: 604px;
    }
}

@media (max-width: 1200px) {
    .contact-page-cont {
        flex-direction: column;
    }

    .contact-map {
        position: static;
        height: 580px;
        max-width: none;
    }

    .contact-map iframe {
        height: 100%;
    }

    .contact-info .contact-info-cont {
        padding: 40px 16px 40px 16px;
    }

    .contact-info h1 {
        padding: 0 0 32px 36px;
    }
}

/* News Page */
.news-page-cont,
.news-int-page-cont {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.news-page-cont h1,
.news-int-page-cont h1 {
    font-size: 7.2rem;
    color: #ffffff;
    padding-left: 80px;
}

.news-page-cont .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 80px;
}

.news-page-cont .news-grid .news-box {
    display: flex;
    gap: 19px;

    max-height: 600px;
}

.news-page-cont .news-grid .news-box .heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.news-page-cont .news-grid .news-box .heading h3 {
    font-family: "GA ArtDeco";
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
    font-size: 3.4rem;
    font-feature-settings: "case" on;
    color: #ffffff;
    opacity: 0.9;
}

.news-page-cont .news-grid .news-box .heading p {
    font-size: 1.4rem;
    color: #ffffff;
    opacity: 0.7;

    height: 146px;
    overflow: hidden;
    flex: 1;
}

.news-page-cont .news-grid .news-box .heading button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 134px;
    height: 51px;

    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    border: 1.5px solid rgba(203, 154, 79, 0.5);
    border-radius: 130px;
}

.news-page-cont .news-grid .news-box .heading button:hover {
    border: 1.5px solid var(--secondary);
}

.news-page-cont .news-grid .news-box img {
    max-width: 426px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-int-page-cont .news-int {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex: 1;
}

.news-int-page-cont .news-int-cont {
    display: flex;
    gap: 60px;
}

.news-int-page-cont .news-int-cont .back-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 72px;
    height: 72px;
    border: 0.6px solid #bababa;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
}

.news-int-page-cont .news-int-cont .back-btn:hover {
    border: 0.6px solid var(--secondary);
}

.news-int-page-cont .news-int-cont .back-btn img {
    transform: rotate(180deg);
    width: 19px;
    height: 13px;
    opacity: 0.8;
}

.news-int-page-cont .news-int .heading {
    display: flex;
    flex-direction: column;
    gap: 24px;

    max-width: 600px;
    width: 100%;
}

.news-int-page-cont .news-int .heading h2 {
    font-family: "GA ArtDeco";
    font-style: normal;
    font-weight: 400;
    font-size: 4rem;
    line-height: 48px;
    font-feature-settings: "case" on;
    color: #ffffff;
    opacity: 0.9;
}

.news-int-page-cont .news-int .heading p {
    font-size: 1.6rem;
    color: #ffffff;
}

.news-int-page-cont .news-int img {
    max-width: 772px;
    width: 100%;
    object-fit: cover;
}

.products-page-cont .pagination {
    margin: 48px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-page-cont .pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.products-page-cont .pagination li a {
    display: block;
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
}

.products-page-cont .pagination li a:hover {
    background-color: transparent;
    outline: 1px solid #ffffff;
}

.products-page-cont .pagination li.active a {
    background-color: transparent;
    outline: 1px solid #ffffff;
    color: #fff;
}

@media (max-width: 1670px) {
    .news-page-cont .news-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 1200px) {
    .news-int-page-cont .news-int {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .news-int-page-cont .news-int img {
        max-width: none;
    }

    .news-int-page-cont .news-int-cont {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .news-int-page-cont h1 {
        display: none;
    }

    .news-page-cont h1,
    .news-int-page-cont h1 {
        padding-left: 16px;
    }
}

@media (max-width: 700px) {
    .news-page-cont .news-grid {
        column-gap: 40px;
        row-gap: 40px;
    }

    .news-page-cont .news-grid .news-box {
        flex-direction: column-reverse;
        max-height: none;
    }

    .news-page-cont .news-grid .news-box img {
        max-width: none;
        height: 321px;
    }
}

/* Products Internal Page */
.product-int-page .products-others .product-main-slider {
    position: relative;
    display: flex;
}

.product-int-page .product-main-slider .swiper {
    max-width: 984px;
    width: 100%;
}

.product-int-page .product-main-slider .swiper .swiper-wrapper .swiper-slide {
    height: 788px;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.product-int-page .product-main-slider .swiper-button-prev {
    left: -152px;
    top: 60%;
    transform: translate(0, -60%) rotate(180deg);
}

.product-int-page .product-main-slider .swiper-button-next {
    left: -152px;
    top: 40%;
    transform: translate(0, -40%);
}

.product-int-page .product-main-slider .swiper .swiper-wrapper .swiper-slide img {
    object-fit: cover;
    height: 100%;
}

.product-int-page .product-main-slider .product-main-abt {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-left: 24px;
}

.product-int-page .product-main-slider .product-main-abt h2 {
    font-size: 5.6rem;
    color: #ffffff;
}

.product-int-page .product-main-slider .product-main-abt p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);

    max-width: 329px;
    width: 100%;
}

.product-int-page .product-main-slider .product-main-abt span {
    font-family: "FiraGO";
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    font-feature-settings: "case" on;
    color: #ffffff;
    opacity: 0.7;
}

.product-int-page .product-main-slider .product-main-abt .abt-listing {
    margin-top: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-int-page .product-main-slider .product-main-abt .abt-listing .abt-list {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(217, 217, 217, 0.1);
    padding-bottom: 10px;
}

.product-int-page .product-main-slider .product-main-abt .abt-listing .abt-list span {
    font-family: "Helvetica Neue LT GEO";
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 24px;
    color: #ffffff;
}

.product-int-page .slider-wine {
    margin: 160px auto 0 auto;
}

.product-int-page .slider-wine h2 {
    font-family: "GA Ptskari";
    font-style: normal;
    font-weight: 400;
    font-size: 6.4rem;
    color: #ffffff;

    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 1350px) {
    .product-int-page .products-others .container-c {
        width: 70%;
    }
}

@media (max-width: 1024px) {
    .product-int-page .products-others .product-main-slider {
        flex-direction: column;
    }

    .product-int-page .products-others .container-c {
        width: 100%;
    }

    .product-int-page .product-main-slider .swiper-button-prev,
    .product-int-page .product-main-slider .swiper-button-next {
        display: block;
        width: 54px !important;
        height: 54px !important;
    }

    .product-int-page .product-main-slider .swiper-button-prev {
        top: 16%;
        left: 0;
    }

    .product-int-page .product-main-slider .swiper-button-next {
        top: 16%;
        right: 0;
        left: unset;
    }

    .product-int-page .product-main-slider .product-main-abt {
        margin-left: 0px;
        margin-top: 48px;
        padding: 0 24px;
    }
}

@media (max-width: 700px) {
    .product-int-page .product-main-slider .swiper .swiper-wrapper .swiper-slide {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .product-int-page .product-main-slider .swiper .swiper-wrapper .swiper-slide img {
        width: 146px;
    }
}