* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #2A2A2A;
    --secondary-color: #D20017;
    --tertiary-color: #E96D0C;
    --text-color: #3D3D3D;
    --brand-grey: #E1E1E1;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.content, .content1 {
    display: flex;
    width: 100%;
    max-width: 1196px;
}
.content1 { flex-direction: column; }

.intro svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.intro svg:first-child {
    animation: rotateShrinkCircle 3s ease-in-out forwards;
}

.intro svg:last-child {
    animation: shrinkLogo 3s ease-in-out forwards;
}

@keyframes rotateShrinkCircle {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    } 
    100% {
        transform: translate(-50%, -50%) scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes shrinkLogo {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

.main-content {
    background: url('../images/bg.png') no-repeat center center / cover;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    &::after {
        content: '';
        background: var(--primary-color);
        position: absolute;
        inset: 0;
        z-index: 3;
        transition: all 0.3s ease;
    }
}

.main-content.no-after::after { background: transparent; content: none; }

header { padding-top: 70px !important; position: relative; z-index: 3; }
.header-content {
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-change {
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    position: relative;
    a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    div {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding-top: 5px;
        position: absolute;
        top: 100%;
    }
}

@media (min-width: 768px) {
  .language-change:hover > div { display: flex; }
}

@media (max-width: 767px) {
  .language-change > div.active { display: flex; }
}

.toggle-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    svg { fill: var(--secondary-color); transition: all 0.3s ease; }
}
.toggle-menu.white-color svg { fill: white; } 

.search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    svg { fill: white; transition: all 0.3s ease; }
    input {
        background: white;
        border: none;
        border-radius: 18px;
        color: #A2A2A2;
        font: 10px 'BPG Mrgvlovani';
        line-height: 20px;
        padding-left: 18px;
        width: 0;
        height: 35px;
        opacity: 0;
        transition: all 0.3s ease;
        &:focus { outline: none; }
    }
}
.search-form:hover input { 
    opacity: 1; 
    width: 225px; 
}

.logo svg { fill: white; }

.menu {
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 0;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.5s ease;
    padding-left: calc(50% - 600px);
    padding-right: calc(50% - 587px);
    z-index: 2;
}
.menu.visible { padding-top: 200px; opacity: 1; height: 475px; }

.menu-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 250px);
}

.menu-list div {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 19px;
    a {
        color: unset;
        text-decoration: none;
        font: 14px 'FiraGo';
        line-height: 17px;
    }
    p:first-child, a:first-child { 
        font: 16px 'FiraGo Medium';
        line-height: 19px;
        margin-bottom: 13px; 
    }
}

.mobile-menu, .mobile-search { display: none; }

.socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    a {
        background: rgba(255,255,255,0.21);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        width: 25px;
        height: 25px;
        transition: all 0.3s ease;
        &:hover { background: var(--tertiary-color); }
    }
}

.site-list {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
}

header.visible .language-change a { color: black; }
header.visible .search-form svg { fill: black; }
header.visible .logo svg { fill: var(--secondary-color); }

.language-change.white-color a { color: white !important; }
.search-form.white-color {
    svg { fill: white !important; }
    input {
        background: rgba(255,255,255,0.21);
        color: white;
    }
}

.card {
    width: 70px;
    height: 100vh;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
    opacity: 0;
    transform: translateY(-100vh);
    animation: none;
}
.card.show {
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[for='site1'] { background: #F8F9FA; }
.card[for='site2'] { background: #E9ECEF; }
.card[for='site3'] { background: #DEE2E6; }
.card[for='site4'] { background: #CED4DA; } 
.card[for='site5'] { 
    background: #A1A7AE; 
    .name { color: white; }
}

.name {
    color: var(--text-color);
    font: 22px 'FiraGo';
    line-height: 27px;
    font-feature-settings: "case" 1;
    white-space: nowrap;         
    transform: rotate(-90deg);   
    transform-origin: left bottom; 
    width: 27px;
    position: absolute;
    bottom: 80px;
    left: 46px;
}

.site-list input { display: none; }
.site-list input:checked + label .description-cont {
    opacity: 1 !important;
}

input:checked + .card {
    cursor: unset;
    width: calc(100svw - 140px);
    z-index: 1;
    .name { display: none; }
}

.card .description-cont {
    display: flex;
    align-items: flex-end;
    width: calc(100svw - 140px);
    height: 100vh;
    padding: 0 130px 50px 85px;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, #ffffff 0.00%, #f2f3f3 10%, 
        rgba(235,236,236,0.94) 25%, 
        rgba(222,223,223,0.88) 40%, 
        rgba(111,113,115,0) 100.00%);
        z-index: 1;
    }
    > * {
        position: relative;
        z-index: 2;
    }
}

.description { width: 875px; }

input:checked + .card[for='site1'] .description-cont {
    background: url('../images/site1-bg.png') no-repeat center center / cover;
    .learn-more { border: 1px solid #E8E8E8; }
}

input:checked + .card[for='site2'] .description-cont {
    background: url('../images/site2-bg.png') no-repeat center center / cover;
    .learn-more { border: 1px solid #C8C8C8; }
}

input:checked + .card[for='site3'] .description-cont {
    background: url('../images/site3-bg.jpg') no-repeat center center / cover;
    .learn-more { border: 1px solid #C8C8C8; }
}

input:checked + .card[for='site4'] .description-cont {
    background: url('../images/site4-bg.png') no-repeat center center / cover;
    .learn-more { border: 1px solid #848484; }
}

input:checked + .card[for='site5'] .description-cont {
    background: url('../images/site5-bg.png') no-repeat center center / cover;
    .learn-more { border: 1px solid #848484; }
}

.site-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    > span:first-child {
        color: var(--text-color);
        font: 50px 'Gilroy GEO';
        line-height: 60px;
    }
}

.site-menu {
    display: flex;
    gap: 65px;
    a {
        color: black;
        text-decoration: none;
        font: 16px 'FiraGo Medium';
        line-height: 22px;
        transition: all 0.3s ease;
        &:hover { color: var(--secondary-color); }
    }
}

.text {
    font: 14px 'FiraGo';
    line-height: 28px;
    margin-bottom: 75px;
}

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

.learn-more {
    background: transparent;
    border-radius: 23px;
    color: unset;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 14px 'FiraGo';
    line-height: 19px;
    width: 185px;
    height: 45px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color) !important;
        color: white;
    }
}

.close-btn {
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 40px; height: 40px;
    transition: all 0.3s ease;
    &:hover {
        background: white;
        color: var(--secondary-color);
    }
}

.header-section {
    background: var(--primary-color);
    min-height: 100px;
    position: relative;
    z-index: 3;
    .logo svg { fill: var(--secondary-color); }
}

.brand-history-con { padding: 50px 20px 150px; }

.page-title {
    color: var(--text-color);
    font: 20px 'FiraGo Medium';
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title1 {
    color: black;
    font: 40px 'Gilroy GEO';
    line-height: 46px;
}

.brand-history-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 1;
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        left: 613px; width: 1px;
        height: 99%;
    }
}

.brand-history { width: 575px; }
.history-prev-img {  
    position: relative;
    min-height: 565px;
    > img:first-child {
        position: relative;
        width: 523px;
        height: 517px;
        margin-left: 50px;
        object-fit: cover;
        z-index: 3;
    }
    > div {
        border: 7px solid var(--secondary-color);
        position: absolute;
        left: 0; bottom: 0;
        width: 455px;
        height: 490px;
        z-index: 2;
    }
}

.brand-info {
    width: calc(100% - 575px);
    .page-title1 { margin-bottom: 25px; }
    .text {
        font: 14px 'FiraGo';
        line-height: 28px;
        margin-bottom: 10px;
    }
}

footer {
    background: var(--primary-color);
    min-height: 80px;
}

.footer-content {
    align-items: center;
    justify-content: space-between;
    .socials { flex-direction: row; }
}

.creator, .copyright {
    color: white;
    font: 10px 'BPG Arial';
    line-height: 13px;
    a { color: white; text-decoration: none; }
}

.contact-cont { padding: 50px 20px 70px; min-height: 84vh; }

.contact-img {
  background: url('../images/contact-bg.jpg') no-repeat center center / cover;
  border-radius: 20px 20px 0 0;
  position: relative;
  width: 100%;
  height: 500px;
}

.contact-items { 
    display: flex; 
    > div:first-child { border-radius: 0 0 0 20px; }
    > a:last-child { border-radius: 0 0 20px 0; }
}

.contact-items > * {
    background: #F7F7F7;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
    width: calc(100% / 3);
    height: 215px;
    transition: all 0.3s ease;
    span { 
        text-align: center;
        font: 16px 'FiraGo';
        line-height: 19px;
        transition: all 0.3s ease;
    }
}

.contact-items > *:hover {
    background: var(--secondary-color);
    color: white;
    span {
        font: 20px 'FiraGo';
        line-height: 24px;
    }
    .icon1 {
        background: white;
        color: var(--secondary-color);
        fill: var(--secondary-color);
    }
}

.icon1 {
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    fill: white;
    font-size: 25px;
    position: absolute;
    top: -38px;
    width: 75px;
    height: 75px;
    transition: all 0.3s ease;
}

.application-cont { padding: 50px 20px 150px; }

.application-page {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    .text {
        background: #ECF5FF;
        border-radius: 20px;
        padding: 40px 30px 50px;
        width: calc(50% - 15px);
        margin-bottom: 0;
    }
}

.application-form {
    width: calc(50% - 15px);
    padding-top: 40px;
    > p:first-child {
        font: 16px 'FiraGo Medium';
        line-height: 28px;
        margin-bottom: 50px;
        a {
            color: #2767C8;
            text-decoration: none;
        }
    }
    button {
        background: var(--secondary-color);
        border: none;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        width: 210px; height: 50px;
        position: relative;
        &::after {
            content: '';
            position: absolute;
            inset: -10px;
            border: 10px solid rgba(210, 0, 23, 0.27);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
    }
}
.application-form button:hover::after { opacity: 1; }

.application-form > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    label {
        color: black;
        font: 14px 'BPG Mrgvlovani';
        line-height: 19px;
    }
    input {
        border: 1px solid #DFDFDF;
        border-radius: 5px;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        height: 50px;
        padding-left: 20px;
        &:focus { outline: none; }
    }
}

.captcha-item {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
    align-items: center;
    div {
        background: #666699;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 50px;
    }
    input {
        width: 100px;
    }
}

.form-modal-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px !important;
    padding: 30px 20px !important;
    p { color: green; margin-bottom: 0; }
}

#exampleModal .btn-close {
    --bs-btn-close-bg: none;
    opacity: 1 !important;
    display: flex;
    font-size: 25px;
    i { color: var(--secondary-color); }
}

.news-cont { 
    padding: 50px 20px 150px; 
    min-height: 90vh;
}

.goto-news {
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 45px;
    margin-left: auto;
    transition: all 0.3s ease;
    img { transition: all 0.3s ease; }
    &:hover {
        background: var(--secondary-color);
        img { filter: brightness(0) invert(1); }
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
    margin-bottom: 60px;
}

.news-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-img-cont {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    img {
        border-radius: 10px 10px 0 0;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }
}

.news-desc {
    background: transparent;
    border: 1px solid #C8C8C8;
    border-top: none;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 35px;
    transition: all 0.3s ease;
    .title {
        color: black;
        font: 16px 'FiraGo';
        line-height: 19px;
        max-width: 195px;
        height: 76px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 0;
    }
}

.news-item:hover {
    .news-img-cont img { transform: scale(1.1); }
    .news-desc { 
        background: rgba(210, 0, 23, 0.09); 
        border-color: rgba(210, 0, 23, 0.09); 
    }
}

.recipe-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    > span {
        color: #2B2B2B;
        font: 26px 'FiraGo Medium';
        line-height: 32px;
    }
}

.recipe {
  border-top: 1px solid var(--brand-grey);
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 30px;
} 

.current-recipe {
    width: 67%;
    .date {
        font: 14px 'FiraGo';
        line-height: 17px;
        margin-bottom: 10px;
    }
    .name1 {
        color: black;
        font: 26px 'Gilroy GEO';
        line-height: 32px;
        margin-bottom: 20px;
    }
}

.recipe-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 45px;
}

.prepare {
    border-bottom: 1px solid var(--brand-grey);
    position: relative;
    display: flex;
    gap: 70px;
    padding-bottom: 40px;
    margin-bottom: 35px; 
    &::after {
        content: '';
        background: var(--brand-grey);
        height: 90%;
        width: 1px;
        position: absolute;
        left: 272px; top: 0;
    }
}

.news-text, .news-text * {
    font: 14px 'FiraGo' !important;
    line-height: 28px !important;
}
.news-text { 
    border-bottom: 1px solid var(--brand-grey);
    padding-bottom: 40px; 
    margin-bottom: 30px;
}

.share-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.share {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    span {
        color: var(--text-color);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
    }
}

.share button {
    background: #F2F2F2;
    border: none;
    border-radius: 50%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
    svg, img { transition: all 0.3s ease; }
    &:hover {
        background: var(--primary-color);
        color: white;
        svg { fill: white; }
        img { filter: brightness(0) invert(1); }
    }
}

.goback {
    color: black;
    -webkit-text-stroke: 1px transparent;
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    transition: all 0.3s ease;
    &:hover {
        color: var(--primary-color);
        -webkit-text-stroke-color: var(--primary-color);
    }
}

.other-news {
    width: calc(33% - 40px);
    padding-top: 32px;
    > p:first-child {
        font: 16px 'FiraGo';
        line-height: 19px;
        margin-bottom: 20px;
    }
    > div {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.nav-btn {
    background: #C8C8C8;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    &:hover { background: var(--primary-color); }
}

.pagination-buttons {
    display: flex;
    gap: 17px;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    button {
        background: transparent;
        border: none;
        color: #929395;
        &.active { color: var(--primary-color); }
    }
}