@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --text-color: #000000;
    --orange: #F18A00;
    --bs-font-sans-serif: "Public Sans", sans-serif;
}
html {
    /* scroll-snap-type: y mandatory; */
}
html.snap {
    scroll-snap-type: y mandatory;
}
html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}
section {
    scroll-snap-align: start;
}
footer {
    scroll-snap-align: start;
}
body {
    position: relative;
}

.main-menu,
.lang-menu {
    position: fixed;
    left: -100vw;
    top: 120px;
    width: 100vw;
    height: calc(100vh - 120px);
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10;
    display: block;
    padding: 30px 50px;
    transition: all .2s ease-in-out;
    opacity: 0;
}
.lang-menu {
    left: auto;
    right: -100vw;
    text-align: right;
}
.main-menu ul,
.lang-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu ul li {
    font-size: 32px;
    font-weight: 900;
}
.lang-menu ul li {
    font-size: 32px;
    font-weight: 400;
}
.lang-menu ul li.active {
    font-weight: 900;
}
.main-menu ul li a,
.lang-menu ul li a {
    color: black;
    text-decoration: none;
}
.main-menu ul li a:hover,
.lang-menu ul li a:hover {
    text-decoration: underline;
}
.main-menu ul li > ul,
.lang-menu ul li > ul {
    padding-left: 30px;
}
.main-menu ul li > ul li,
.lang-menu ul li > ul li{
    font-weight: 400;
}
header.main .menu-close {
    display: none;
}
body.show-menu header.main .menu-close {
    display: inline-block;
}
body.show-menu .main-menu {
   left: 0;
    opacity: 1;
}
body.show-lang .lang-menu {
    right: 0;
    opacity: 1;
}
body.show-menu img.menu {
    display: none;
}
body.show-menu .lang-indicator {
    opacity: 0;
}
body.show-menu img.hamburger {
    display: none;
}

.public-sans-regular {
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.public-sans-black {
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

header.main {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    background-color: rgba(255, 255, 255, .8);
    align-items: center;
    justify-content: space-between;
    /*border-bottom: 1px dotted red;*/
    padding-left: 30px;
    padding-right: 30px;
    transition: height 0.2s ease-in-out;
    backdrop-filter: blur(16px);
}
header.main.contracted {
    height: 80px;
}
.flex-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}
.lang-indicator {
    gap: 8px;
    font-size: 18px;
    font-weight: 900;
}

section.hero {
    height: 100vh;
    display: flex;
    padding: 100px 100px 0 100px;
    justify-content: space-between;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #E5D9BE;
}
section.hero .left-text,
section.hero .right-text
{
    width: 33%;
}
section.hero .right-text .cta {
    margin-top: 60px;
}
section.hero .center-image
{
    width: fit-content;
}
section.hero > div.center-image {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-left: 3vw;
}
section.hero > div.center-image img {
    height: 75vh;
    width: auto;
}
section.hero > div.left-text p {
    font-size: 55px;
    line-height: 55px;
    font-weight: 400;
}
strong,
b {
    font-weight: 900;
}
section.hero > div.right-text p {
    font-size: 18px;
    line-height: 21px;
}

section.ingredients .ing-list {
    height: 50vh;
}

.cta {
    min-height: 40px;
    display: inline-flex;
    border-radius: 40px;
    border: 2px solid #000000;
    color: #000000;
    font-size: 18px;
    font-weight: 900;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    text-decoration: none;
}
.cta:hover {
    background-color: var(--orange);
    border-color: var(--orange);
}
.cta.white-black {
    border-color: white;
    color: black;
}
.cta.white-black:hover {
    background-color: white;
}
.cta.orange-white {
    border-color: #F18A00;
    color: white;
}
.cta.orange-white:hover {
    background-color: var(--orange);
}
.cta.orange-black {
    border-color: black;
    color: #F18A00;
}
.cta.orange-black:hover {
    background-color: black;
}
.cta.white-orange {
    border-color: white;
    color: #F18A00;
}
.cta.white-orange:hover {
    background-color: white;
}
.cta.black-orange {
    border-color: black;
    color: #F18A00;
}
.cta.black-orange:hover {
    background-color: black;
}



@media screen and (min-width: 1441px) and (max-width: 1920px) {
    section.hero > div.left-text {
        font-size: 65px;
        line-height: 65px;
        font-weight: 400;
    }
    strong,
    b {
        font-weight: 900;
    }
    section.hero > div.right-text {
        font-size: 24px;
        line-height: 28px;
    }
}

.screen-snap {
    height: 100vh;
}

.ingredients .container h2,
.ingredients .container p {
    text-align: center;
}

.ingredients {
    padding-top: 150px;
    padding-bottom: 90px;
    background-color: #f18a00;
    overflow-x: hidden;
    overflow-y: hidden;
}

.ingredients .ing-list {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 429px;
    overflow: hidden;
    margin-top: 10vh;
}
.ingredients .ing-list .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 90%;
    width: 100%;
    align-content: center;
    gap: 20vw;
}
.ingredients .ing-list .inner .list {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-evenly;
    width: 300px;
}
.ingredients .ing-list .inner .list.right {
    align-items: start;
}
.ingredients .ing-list .inner .list .item {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
}
.ingredients .ing-list .inner .list .item.ananas {
    text-align: right;
}
.ingredients .ing-list .inner .list.right .item {
    justify-content: start;
}
.ingredients .ing-list .inner .list .item span {
    line-height: 32px;
}
.ingredients .ing-cta {
    margin-top: 5vh;
}
h2 {
    font-size: 45px;
    line-height: 45px;
    font-weight: 900;
    margin-bottom: 36px;
}

p {
    font-size: 18px;
    line-height: 21px;
}
ol {
    font-size: 18px;
}

.how-it-works .swiper {
    height: 100%;
    width: 100%;
}

.how-it-works .slide1 {
    background: url('../images/how-it-works.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-color: black;
}
.how-it-works .slide2 {
    background-color: white;
}
.how-it-works .slide3 {
    background-color: black;
}
.how-it-works .slide4 {
    background-color: white;
}

.how-it-works .slide1 .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.how-it-works h2 {
    color: var(--orange);
    font-size: 45px;
}
.how-it-works .slide1 p,
.how-it-works .slide3 p {
    color: white;
}
.how-it-works .swiper-slide .cta {
    margin-top: 16vh;
}
.how-it-works .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
.last-news .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 60px;
    /* top: 60px; */
}
.how-it-works .swiper-pagination-bullet,
.last-news .swiper-pagination-bullet{
    width: 30px;
    height: 10px;
    border-radius: 0;
    border: none;
    background-color: #E5D9BE;
    opacity: 1;
}
.how-it-works .swiper-pagination-bullet.swiper-pagination-bullet-active,
.last-news .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--orange);
}
.how-it-works .swiper-button-next:after,
.how-it-works .swiper-rtl .swiper-button-prev:after {
    content: '';
    background: url('../images/right.svg') no-repeat;
    background-size: contain;
    width: 68px;
    height: 44px;
    /*right: 7.5vw;*/
}
.how-it-works .swiper-button-prev:after,
.how-it-works .swiper-rtl .swiper-button-next {
    content: '';
    background: url('../images/left.svg') no-repeat;
    background-size: contain;
    width: 68px;
    height: 44px;
}
.how-it-works .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    display: none;
}
.how-it-works .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 5vw;
}
.how-it-works .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 5vw;
}
.swiper-slide .containerx {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10%;
}

.swiper-slide .containerx,
.swiper-slide .containerx .inner-left,
.swiper-slide .containerx .inner-right {
    height: 100%;
}
.swiper-slide .containerx .inner-left {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}
.swiper-slide .containerx .inner-right {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 50%;
}
.swiper-slide .containerx .inner-right img {
    height: auto;
    width: 80%;
}

.how-it-works .slide3 {
    background-color: black;
}

.mixology {
    background-color: var(--orange);
}
.mixology .containerx {
    height: 100%;
    width: 80%;
    display: flex;
    margin: 0 auto;
    gap: 30px;
    justify-content: space-between;
}
.mixology .containerx > div {
    height: 100%;
}
.mixology .containerx .inner-left {
    width: 45%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.mixology .containerx .inner-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.mixology .containerx .inner-right img {
    width: 90%;
    height: auto;
}
.mixology h2 {
    margin-bottom: 40px;
    font-size: 45px;
}
.mixology .cta {
    margin-top: 40px;
}

.last-news {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 110px 0 75px 0;
}
.last-news .container {
    width: 80%;
    text-align: center;
}
.last-news h2 {
    color: var(--orange);
}
.last-news .news-strip {
}
.last-news .news-item {
    /* height: 390px; */
    aspect-ratio: 0.84;
    border-radius: 18px;
    width: 90%;
    height: 440px;
    overflow: hidden;
    background-color: #E5D9BE;
    position: relative;
    margin: 0 auto;
}
.last-news .news-item .cover {
    height: 154px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.last-news .news-item .content {
    height: 236px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}
.last-news .news-item h3 {
    font-size: 21px;
    font-weight: 900;
    overflow-wrap: anywhere;
}
.last-news .news-item .news-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    text-align: left;
    flex-direction: column;
    align-items: start;
}
.last-news .news-item .news-footer .cta {
    margin-top: 20px;
}

.last-news .swiper {
    margin-bottom: 30px;
}

footer {
    width: 100%;
}
footer .row {
    width: 100%;
    margin: 0;
}
footer .credits {
    background-color: var(--orange);
    padding: 86px 140px;
    flex-direction: column;
    display: flex;
    justify-content: center;
}
footer .newsletter {
    background-color: #F0E9D9;
    padding: 86px 128px;
}
footer .newsletter > img {
    margin-bottom: 36px;
    height: 216px;
    width: auto;
}
footer h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}
.second .footer-menu {
    margin-bottom: 20px;
}
.footer-follow-us {
    margin-bottom: 20px;
}
.footer-follow-us a {
    text-decoration: none;
}
.footer-menu a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}
.footer-menu a:hover {
    text-decoration: underline;
}
footer .company-logos {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    margin-bottom: 30px;
}
.how-it-works .slide1-text {
    width: 85%;
}

.bullets-nav {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.bullets-nav .bullet {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: white;
    margin-bottom: 10px;
}
.white-bullets .bullets-nav .bullet {
    background-color: white;
}
.dovegrey-bullets .bullets-nav .bullet {
    background-color: #E5D9BE;
}
.bullets-nav .bullet:last-of-type {
    margin-bottom: 0;
}
.bullets-nav .bullet.active {
    background-color: var(--orange);
}
.bullets-nav .bullet.bullet-18.active,
.bullets-nav .bullet.bullet-20.active,
.bullets-nav .bullet.bullet-60.active,
.bullets-nav .bullet.bullet-63.active,
.bullets-nav .bullet.bullet-161.active,
.bullets-nav .bullet.bullet-164.active,
.bullets-nav .bullet.bullet-167.active,
.bullets-nav .bullet.bullet-170.active,
.bullets-nav .bullet.bullet-18.active,
.bullets-nav .bullet.bullet-20.active,
.bullets-nav .bullet.bullet-173.active,
.bullets-nav .bullet.bullet-176.active
{
    background-color: black;
}
.where-snapshot {
    background-image: url('../images/where-backdrop.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.where-snapshot .containerx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 100%;
    width: 80%;
    margin: 0 auto;
}
.where-snapshot .containerx .inner-left {
    width: 40%;
}
.where-snapshot .containerx .inner-right {
    width: 50%;
}

.internal-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
h1 {
    font-size: 45px;
    font-weight: 900;
}
h1.h1-lower {
    font-weight: 500;
}
.internal-hero h1 {
    text-align: center;
}
.relative {
    position: relative;
}
.scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.internal-hero.blog .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.internal-hero.blog .overlay h1 {
    color: var(--orange);
    width: 90%;
}

@keyframes fill {
    49% {
        fill: white;
    }
    50% {
        fill: orange;
    }
    100% {
        fill: white;
    }
}

.down-path {
    animation: fill 1s infinite;
    fill: white;
}

.delay-1 {
    animation-delay: .3s;
}

.delay-2 {
    animation-delay: .6s;
}
.page-intro {
    padding: 90px 0;
    text-align: center;
}
.focus-on-listing {
    background-color: #E5D9BE;
    padding-top: 75px;
    padding-bottom: 55px;
}
.focus-on-listing .containerx {
    width: 70%;
    margin: 0 auto;
}
.focus-on-listing .containerx .row > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.focus-on-listing .containerx .row > div img {
    height: 460px;
    width: auto;
}
.focus-on-listing .containerx .row > div h2 {
    font-weight: 500;
}
.focus-on-listing .containerx .row > div .cta {
    margin-top: 36px;
}

.band-content {
    padding: 86px 0 110px 0;
}
.band-content .containerx {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12vw;
}
.band-content .containerx.Left > img {
    order: 0;
}
.band-content .containerx.Left > div {
    order: 1;
}
.band-content .containerx.Right > img {
    order: 1;
}
.band-content .containerx.Right > div {
    order: 0;
}

.blog.list-band {
    background-color: #000000;
    padding-top: 120px;
    padding-bottom: 60px;
}

.card.news {
    border-radius: 18px;
    border: none;
    background-color: #E5D9BE;
    margin-bottom: 32px;
    height: 480px;
}
.card.news .card-header {
    border: none;
    height: 180px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.card.news .card-header .category {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 26px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}
.card.news .card-body {
    padding: 20px 32px;
}
.card.news .card-body h3 {
    font-size: 28px;
    font-weight: 800    ;
}
.card.news .card-footer {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 32px 32px 32px;
    gap: 18px;
    border: none;
}
.category-name {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 900;
}
.blog.news-details {
    background-color: #000000;
    color: #ffffff;
    padding: 105px 0 80px 0;
}
.blog.news-details p,
.blog.news-details ul li {
    font-size: 18px;
}
.blog.news-details p a,
.blog a,
.blog.news-details ul li a,
.blog.news-details ul li a span
{
    color: var(--orange) !important;
    font-weight: bold;
}
.blog.news-details h1,
.blog.news-details h2 {
    color: var(--orange);
    margin-top: 50px;
    margin-bottom: 25px;
}
.news-footer {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: var(--orange);
}
.blog .sharing {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
}
.blog .sharing a {
    text-decoration: none;  
}

.ingredients-band {
    padding: 75px 0 140px 0;
    background-color: #E5D9BE;
}
.ingredients-band h2 {
    color: var(--orange);
    text-align: center;
    font-size: 45px;
}
.ingredients-band .ingredients-pane {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
.ingredients-band .ingredients-pane > div {
    width: 28%;
}
.ingredient-box {
    height: 540px;
}
.ingredient-box .content {
    margin-top: 89px;
    border: 1px solid #000000;
    position: relative;
    padding: 95px 36px 36px 36px;
    height: calc(100% - 59px);
    text-align: center;
}
.ingredient-box .content img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ingredient-box .content h3 {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 35px;
    font-weight: 800;
}
.ingredient-box .content p strong,
.ingredient-box .content p b {
    color: var(--orange);
}

.block.cocktail {
    height: auto;
    padding: 80px 0 90px 0;
}

.block.cocktail .ingredients {
    background-color: transparent;
    padding: 0;
}
.block.cocktail h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 800;
}
.block.cocktail h3 {
    font-size: 28px;
    font-weight: 800;
}
.block.cocktail h4 {
    font-size: 18px;
    font-weight: 800;
}
.block.cocktail .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.block.cocktail .content > div {
    width: 30%;
}
.block.cocktail .desc_ingredients {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.block.cocktail .container {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center calc(50% + 40px);
}
.block.cocktail ul {
    padding-left: 15px;
}
.block.cocktail ul li {
    padding-left: 20px;
}

.ingredient-box a {
    color: var(--orange);
}

.follow-us {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px; /* Padding per maggiore leggibilità */
    z-index: 10;
    display: flex;
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    gap: 10px;
}

.blog h3 {
    font-size: 20px;
    font-weight: 800;
}

.follow-us svg.dark-fill path {
    fill: white;
}
.follow-us svg.light-fill path {
    fill: black;
}
.focus-on-listing h2 {
    font-size: 40px;
    text-align: center;
}
/*
.follow-us svg path,
.follow-us.dark svg path {
    fill: black;
}
.follow-us.light svg path {
    fill: white;
}
*/

.form-view {
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #E5D9BE;
}

.form-view input[type="text"],
.form-view input[type="email"],
.form-view select,
.form-view input[type="file"],
.form-view textarea {
    border: 1px solid #000000;
}
.form-view textarea {
    height: 150px;
}
.form-view input[type="checkbox"] {
    background-color: transparent;
    width: 16px;
    height: 16px;
    border: 1px solid #000000;
}

.form-view a {
    color: #f18a00;
    font-weight: 800;
}

.form-view .container {
    max-width: 1000px;
}

.store-cards {
    padding: 180px 0;
}

.store-card {
    display: flex;
    flex-direction: column;
    height: 432px;
    width: 90%;
    border-radius: 18px;
    overflow: hidden;
    max-width: 330px;
    margin: 0 auto 32px auto;
}
.store-card .header-map {
    height: 154px;
}
.store-card .category-name {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 100%;
}
.store-card .store-address {
    flex: 1;
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 11px;
    background-color: #E5D9BE;
}
.store-card h2 {
    font-weight: 900;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
}

@media screen and (max-height: 800px) {
}

@media screen and (min-width: 900px) and (max-width: 1680px) {
    section.ingredients .ing-list {
        height: 36vh;
    }
    h2 {
        font-size: 28px;
    }
    .focus-on-listing .containerx .row > div img {
        height: 320px;
        width: auto;
    }
    .mixology .containerx .inner-right img {
        width: 80%;
    }
}
@media screen and (min-width: 1281px) and (max-width: 1920px) {
    section.ingredients .ing-list {
        height: 40vh;
    }
    .last-news .news-item h3 {
        font-size: 21px;
    }
    h2 {
        font-size: 45px;
    }
}
@media screen and (min-width: 1921px) and (max-width: 2560px) {
    .mixology .containerx .inner-right img {
        width: 70%;
    }
    section.hero {
        padding: 100px 150px 0 150px;
    }
    section.hero > div.left-text {
        font-size: 75px;
        line-height: 75px;
        font-weight: 400;
    }
    strong,
    b {
        font-weight: 900;
    }
    section.hero > div.right-text p {
        font-size: 30px;
        line-height: 34px;
    }
    .last-news .news-item h3 {
        font-size: 27px;
    }
    h1 {
        font-size: 54px;
    }
}

@media screen and (min-width: 2561px) and (max-width: 3840px) {
    h1 {
        font-size: 62px;
    }
    section.hero {
        padding: 100px 150px 0 150px;
    }
    section.hero > div.left-text {
        font-size: 85px;
        line-height: 85px;
        font-weight: 400;
    }
    strong,
    b {
        font-weight: 900;
    }
    section.hero > div.right-text p {
        font-size: 36px;
        line-height: 40px;
    }
    .last-news .news-item h3 {
        font-size: 32px;
    }
}


