:root {
    --yellow: #ffd301;
    --blue: #055d95;
    --white: #ffffff;
    --black: #000000;
    --gray: #e6e6e6;
    font-size: 0.07320644217vw;
}

html {
    scroll-behavior: smooth;
}

html body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "space-grotesk-variable", sans-serif;
    font-variation-settings: "wght" 500;
    position: relative;
    background-color: var(--gray);
    color: var(--black);
    overflow-x: hidden;
}

section {
    position: relative;
}

.hidden {
    display: none !important;
}


@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}


.container {
    max-width: 1366px;
    height: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* *Menu */
.main-navigation {
    /* height: 120px; */
    background-color: var(--white);
    position: relative;
}

.main_menu_content {
    padding: 26px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu_links {
    opacity: 0;
    position: fixed;
    z-index: 99;
    background: var(--blue);
    width: 100vw;
    height: 100vh;
    top: 0;
    min-height: 768px;
    -webkit-transition: all ease-in-out 0.8s;
    -o-transition: all ease-in-out 0.8s;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    left: 100%;
}

.menu_links.open {
    display: block;
    opacity: 1;
    left: 0;
}

.menu_img_wrapper {
    position: relative;
}

.menu_yellow_bg {
    width: 300%;
    height: 336px;
    position: absolute;
    background: var(--yellow);
    bottom: 9px;
}

.menu_people {
    position: relative;
    width: 822px;
    height: 408px;
    max-width: unset;
}

.menu_content {
    padding: 46px 105px 45px 100px;
    position: relative;
    overflow: hidden;
}

.menu_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 271px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 98px;
    margin-bottom: 143px;
}

.menu-menu-container {
    min-width: 176px;
    margin-top: 80px;
}

.menu-menu-container a {
    font-size: clamp(27px, 40rem, 40px);
    line-height: clamp(30px, 30rem, 30px);
    color: var(--yellow);
    position: relative;
}

.menu-menu-container ul li a:after {
    content: " ";
    width: 0%;
    position: absolute;
    left: 0;
    height: 3px;
    bottom: -5px;
    display: block;
    background-color: var(--yellow);
    -webkit-transition: width 0.4s, opacity 0.1s 0.3s;
    -o-transition: width 0.4s, opacity 0.1s 0.3s;
    transition: width 0.4s, opacity 0.1s 0.3s;
    opacity: 0;
}

.menu-menu-container ul li a:hover:after {
    -webkit-transition: width 0.4s;
    -o-transition: width 0.4s;
    transition: width 0.4s;
    opacity: 1;
    width: 100%;
}

.menu_content>.close {
    position: absolute;
    right: 0;
    margin-right: 105px;
}

.menu_content>.close,
.menu_burger {
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

.menu_content>.close:hover,
.menu_burger:hover {
    cursor: pointer;
    opacity: 0.8;
}

.socials_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
}



/* *Hero section */
.hero {
    width: 100%;
    min-height: calc(100lvh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 90.78%;
    height: 100%;
    background: transparent -o-linear-gradient(left, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    background: transparent -webkit-gradient(linear, left top, right top, from(#000000), to(#00000000)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    opacity: 0.5;
    left: 0;
}

.hero .container {
    max-width: 100%;
    width: 100%;
    padding: 0 100px;
}

.hero_content {
    padding: 65px 0;
    max-width: clamp(320px, 450rem, 450px);
}

.hero-badge {
    display: block;
    height: auto;
    /* max-height: calc(100); */
    width: clamp(375px, 462rem, 462px);
    margin-bottom: clamp(4px, 10rem, 10px);
    margin-left: -100px;
    object-fit: bottom left;
}

.hero_content h1 {
    font-size: clamp(33px, 50rem, 50px);
    font-variation-settings: "wght" 700;
    line-height: 1;
    color: #FFF;
    margin-bottom: 32px;
    letter-spacing: -1.59px;
}

.hero_content p {
    font-size: clamp(16px, 24rem, 24px);
    line-height: 1.3;
    font-variation-settings: "wght" 400;
    letter-spacing: -0.78px;
    color: #FFF;
    margin-bottom: 28px;
}

.btn-hero {
    display: inline-flex;
    padding: 15px 57px 13px 57px;
    background: #FFD301;
    color: #055D95;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-variation-settings: "wght" 700;
    line-height: 1;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    opacity: 0.85;
}

.hero .arrow-down {
    position: absolute;
    top: auto;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 991px) {
    .hero {
        min-height: calc(100lvh - 86px);
    }
}

@media only screen and (max-width: 576px) {
    .hero {
        min-height: calc(100lvh - 62px);
        justify-content: flex-end;
    }

    .hero video {
        /* height: 100%;
        width: auto; */
    }

    .hero video.mobile-centered {
        /* left: 50%;
        transform: translateX(-60%); */
    }

    .hero .container {
        padding: 0 15px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .hero_content {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badge {
        margin-left: -15px;
        width: calc(100vw + 15px);
    }

    .hero_content h1 {
        letter-spacing: -0.48px;
        margin-bottom: 16px;
    }

    .hero_content p {
        letter-spacing: -0.48px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Countdown */
.hero_content.countdown {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 440px;
    padding: 94px 90px 120px;
}

.hero_content.countdown .countdown {
    margin-top: 28px;
    margin-bottom: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
}

.hero_content.countdown .countdown .countdown_first,
.hero_content.countdown .countdown .countdown_second {
    border-radius: 32px;
    background: #ffd301;
    width: 124px;
    height: 182px;
    text-align: center;
    padding: 12px 24px;
    overflow: hidden;
    will-change: transform;
}

.hero_content.countdown .countdown .countdown_first>div,
.hero_content.countdown .countdown .countdown_second>div {
    -webkit-transition: -webkit-transform 2.5s ease;
    transition: -webkit-transform 2.5s ease;
    -o-transition: transform 2.5s ease;
    transition: transform 2.5s ease;
    transition: transform 2.5s ease, -webkit-transform 2.5s ease;
    will-change: transform;
}

.hero_content.countdown .countdown span {
    will-change: transform;
    color: #055d95;
    text-align: center;
    font-size: 124px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.47;
    display: block;
    height: 182.27px;
}

.hero_content.countdown .countdown_wrapper>h1 {
    color: #fff;
    text-align: center;
    font-size: 53px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -1.59px;
}

.hero_content.countdown .countdown_wrapper>span {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.08px;
}

@media only screen and (max-width: 768px) {
    .hero_content.countdown {
        width: auto;
        padding: 244px 20px 70px;
    }

    .hero_content.countdown .countdown_wrapper>span {
        font-size: 23px;
        letter-spacing: -0.69px;
    }

    .hero_content.countdown .countdown_wrapper .countdown {
        margin-top: 16px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .hero_content.countdown .countdown_wrapper .countdown .countdown_first,
    .hero_content.countdown .countdown_wrapper .countdown .countdown_second {
        border-radius: 20px;
        width: 82px;
        height: 118px;
        padding: 8px 10px;
    }

    .hero_content.countdown .countdown_wrapper .countdown span {
        font-size: 88px;
        line-height: 1.4;
        height: 123.2px;
    }

    .hero_content.countdown .countdown_wrapper>h1 {
        font-size: 33px;
        line-height: 33px;
        letter-spacing: -0.99px;
    }
}

/* *Precent section */
.precent {
    height: 768px;
    background: transparent url("../images/people.jpg") 50% 50% repeat padding-box;
}

.precent_content {
    padding: 120px 212px 120px 190px;
}

.precent_content>div,
.precent_middle>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.precent p {
    color: var(--white);
    text-align: center;
}

.precent_top {
    width: 720px;
    height: 220px;
    background: transparent url("../images/precent_blue_top.svg") 0% 0% no-repeat padding-box;
    z-index: 3;
    background-size: contain;
}

.precent_top p {
    font-size: clamp(27px, 52rem, 52px);
    line-height: clamp(27px, 50rem, 50px);
    -webkit-transform: matrix(0.99, -0.1, 0.1, 0.99, 0, 0);
    -ms-transform: matrix(0.99, -0.1, 0.1, 0.99, 0, 0);
    transform: matrix(0.99, -0.1, 0.1, 0.99, 0, 0);
}

.precent_middle {
    width: 701px;
    height: 366px;
    background: transparent url("../images/precent_yellow_block.svg") 0% 0% no-repeat padding-box;
    z-index: 2;
    margin-left: 139px;
    margin-top: -58px;
}

.precent_middle p {
    font-size: clamp(142px, 293rem, 293px);
    line-height: clamp(165px, 326rem, 326px);
    color: var(--black);
    font-variation-settings: "wght" 700;
    -webkit-text-stroke: 10px;
}

.precent_middle img {
    width: 208px;
    height: 233px;
    margin-top: -65px;
}

.precent_bottom {
    width: 477px;
    height: 114px;
    background: transparent url("../images/precent_blue_bottom.svg") 0% 0% no-repeat padding-box;
    z-index: 1;
    margin-left: auto;
    margin-top: -66px;
}

.precent_bottom p {
    font-size: clamp(27px, 46rem, 46px);
    line-height: 1;
}

/* *Eu plan section */
.eu_plan {
    background: var(--blue);
    height: 474px;
}

.eu_plan_content {
    padding: 190px 0 90px 137px;
}

.eu_plan_content p {
    font-size: clamp(57px, 70rem, 70px);
    line-height: clamp(62px, 75rem, 75px);
    color: var(--yellow);
    max-width: 510px;
    font-weight: 700;
}

.eu_plan_content video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.eu_plan_content .video_wrapper {
    width: 628px;
    height: 377px;
    position: absolute;
    right: 0;
    top: 140px;
}

/* *Smoking rates went down section */
.smoking_rates {
    padding-bottom: 80px;
    overflow: hidden;
}

.smoking_rates_content {
    padding: 183px 100px 158px;
}

.smoking_rates_content p {
    font-size: clamp(33px, 46rem, 46px);
    line-height: clamp(38px, 52rem, 52px);
    max-width: 763px;
    color: var(--black);
    margin-left: auto;
    position: relative;
    z-index: 11;
}

.smoking_rates_content p>span {
    color: var(--blue);
}

.smoking_rates_video_wrapper {
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.smoking_rates_video_wrapper video {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.shape_yellow {
    background: var(--yellow);
    -webkit-animation: morph_yellow 5s ease-in-out infinite;
    animation: morph_yellow 5s ease-in-out infinite;
    border-radius: 60% 10% 30% 70% / 30% 60% 70% 90%;
    width: 286px;
    height: 274px;
    -webkit-transition: ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 5;
    position: absolute;
    top: 200px;
    left: 0;
}

.shape_blue {
    background: var(--blue);
    -webkit-animation: morph_blue 5s ease-in-out infinite;
    animation: morph_blue 5s ease-in-out infinite;
    border-radius: 10% 40% 30% 10% / 60% 30% 70% 40%;
    width: 558px;
    height: 366px;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 5;
    position: absolute;
    top: 711px;
    left: 808px;
}

@-webkit-keyframes morph_yellow {
    0% {
        border-radius: 60% 10% 30% 70% / 30% 60% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }

    33% {
        border-radius: 10% 60% 70% 40% / 60% 30% 20% 40%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    66% {
        border-radius: 80% 40% 20% 90% / 90% 90% 50% 100%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    100% {
        border-radius: 60% 10% 30% 70% / 30% 60% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }
}

@keyframes morph_yellow {
    0% {
        border-radius: 60% 10% 30% 70% / 30% 60% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }

    33% {
        border-radius: 10% 60% 70% 40% / 60% 30% 20% 40%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    66% {
        border-radius: 80% 40% 20% 90% / 90% 90% 50% 100%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    100% {
        border-radius: 60% 10% 30% 70% / 30% 60% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }
}

@-webkit-keyframes morph_blue {
    0% {
        border-radius: 10% 40% 30% 90% / 60% 30% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }

    33% {
        border-radius: 50% 10% 90% 40% / 30% 60% 20% 50%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    66% {
        border-radius: 50% 10% 90% 50% / 30% 60% 20% 70%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    100% {
        border-radius: 10% 40% 30% 90% / 60% 30% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }
}

@keyframes morph_blue {
    0% {
        border-radius: 10% 40% 30% 90% / 60% 30% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }

    33% {
        border-radius: 50% 10% 90% 40% / 30% 60% 20% 50%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    66% {
        border-radius: 50% 10% 90% 50% / 30% 60% 20% 70%;
        /* background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%); */
    }

    100% {
        border-radius: 10% 40% 30% 90% / 60% 30% 70% 90%;
        /* background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%); */
    }
}

/* *All thanks section */
.all_thanks {
    background: var(--blue);
    /* height: 345px; */
    overflow: hidden;
}

.all_thanks_content {
    padding: 74px 0 73px 0;
    /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; */
    text-align: center;
}

.all_thanks_content>p {
    font-size: clamp(35px, 75rem, 75px);
    line-height: 1.5;
    color: var(--yellow);
    /* margin-right: 20px; */
    font-variation-settings: "wght" 400;
    font-weight: 700;
}

/* *Alternative products section */
.alternative_products {
    background: var(--yellow);
    height: 496px;
}

.alternative_products_content {
    padding: 140px 124px 0 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 125px;
}

.alternative_products_content video {
    width: 804px;
    height: 423px;
}

.alternative_products_content p {
    font-size: clamp(27px, 40rem, 40px);
    line-height: clamp(32px, 45rem, 45px);
    color: var(--blue);
}

/* *Risk section */
.risk {
    overflow: hidden;
}

.risk_content {
    padding: 167px 84px 89px;
}

.risk_content p {
    font-size: clamp(33px, 50rem, 50px);
    line-height: clamp(38px, 60rem, 60px);
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
}

.chart_wrapper {
    position: relative;
}

.chart_wrapper lottie-player {
    width: auto;
    height: auto;
    margin: auto;
}

/* *Alternatives section */
.alternatives_wrapper {
    position: relative;
    /* overflow: hidden; */
}

.filters_wrapper {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.filters_both {
    position: absolute;
    top: 6.78%;
    right: 7.5%;
}

.alternatives {
    background: url("../images/yellow_bg.jpg") 0% 0% no-repeat padding-box scroll;
    background-size: cover;
    height: 977px;
}

.alternatives_content {
    padding: 140px 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.alternatives_content p {
    font-size: clamp(27px, 50rem, 50px);
    line-height: clamp(32px, 55rem, 55px);
    color: var(--black);
    max-width: 606px;
}

.e_cigarete_wrapper {
    margin-top: 140px;
    position: relative;
}

.e_cigarete_extra_bg {
    background: var(--yellow);
    position: absolute;
    width: 162%;
    height: 99.9%;
    top: 0;
    left: -155%;
}

.filters {
    width: 420px;
    height: 838px;
}

/* *alternatives_2 section */
.alternatives_2 {
    background: var(--blue);
    height: 1160px;
    z-index: 2;
}

.alternatives_2_content {
    padding: 0 249px 117px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.alternatives_2_content .left_row {
    background: var(--yellow);
    padding: 40px 40px 152px 73px;
    margin-top: 330px;
    position: relative;
    left: -73px;
    width: 600px;
}

.alternatives_2_content .right_row {
    -ms-flex-item-align: self-end;
    -ms-grid-row-align: self-end;
    align-self: self-end;
}

.alternatives_2_content p {
    font-size: clamp(23px, 40rem, 40px);
    line-height: clamp(28px, 45rem, 45px);
    color: var(--yellow);
    max-width: 490px;
    margin-top: 70px;
    margin-bottom: 117px;
}

.alternatives_2_content .left_row .video_wrapper {
    width: 487px;
    height: 673px;
}

.alternatives_2_content .left_row .video_wrapper video {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.right_row>img {
    width: 420px;
    height: 832px;
    position: relative;
    top: -1px;
}

/* *Results section */
.results {
    width: 100%;
    height: 464px;
    background: url("../images/black_bg.png") 50% 0% repeat padding-box scroll;
}

.results_content {
    padding: 97px 211px 135px;
}

.results_content p {
    font-size: clamp(47px, 100rem, 100px);
    line-height: clamp(47px, 105rem, 105px);
    color: var(--yellow);
    text-align: center;
    font-weight: 700;
}

/* *Sectio tobacco_diseases */
.tobacco_diseases {
    height: 769px;
}

.tobacco_diseases_content {
    padding: 120px 186px 122px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tobacco_diseases_content .left_row>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.tobacco_diseases_content .img_wrapper,
.tobacco_diseases_content .inner_right {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    text-align: center;
}

.tobacco_diseases_content .img_wrapper {
    text-align: right;
}

.blue_arrow {
    max-width: 108px;
    max-height: 221px;
}

.tobacco_diseases_content .inner_right video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.tobacco_diseases_content .left_row .img_wrapper>img {
    width: 100%;
    height: auto;
}

.tobacco_diseases_content .inner_right>img:last-child {
    width: 100%;
    height: auto;
}

.tobacco_diseases_content .inner_right .video_wrapper {
    width: 100%;
    height: auto;
}

.tobacco_diseases_content .left_row p {
    font-size: clamp(19px, 33rem, 33px);
    line-height: clamp(22px, 35rem, 35px);
    color: var(--black);
    text-align: center;
    max-width: 270px;
    margin-bottom: 26px;
    margin-left: auto;
}

.tobacco_diseases_content p {
    font-size: clamp(27px, 42rem, 42px);
    line-height: clamp(32px, 47rem, 47px);
    color: var(--blue);
    max-width: 336px;
    font-weight: 700;
}

.premature_deaths {
    background: var(--yellow);
    overflow: hidden;
}

.premature_deaths_content {
    padding: 124px 100px 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
    position: relative;
}

.premature_deaths_content>lottie-player {
    position: absolute;
    right: -10%;
    top: 3%;
    width: 1150px;
}

.premature_deaths_content .left_row p {
    font-size: clamp(27px, 42rem, 42px);
    line-height: clamp(32px, 47rem, 47px);
    max-width: 454px;
    font-weight: 700;
}

.premature_deaths_content .left_row .video_wrapper {
    width: 307px;
    height: 110px;
    margin-left: 146px;
    margin-bottom: 70px;
}

.premature_deaths_content .left_row video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

/* *Lung cancer section */
.lung_cancer {
    height: 768px;
}

.lung_cancer_content {
    padding: 104px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 177px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lung_cancer_content .left_row p {
    font-size: clamp(39px, 53rem, 53px);
    line-height: clamp(39px, 63rem, 63px);
    color: var(--black);
    max-width: 190px;
    margin-top: 39px;
    margin-bottom: 32px;
    font-weight: 700;
}

.lung_cancer_content .left_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.eu_flag {
    width: 100%;
    height: auto;
}

.left_row_inner>img {
    width: 100%;
    height: auto;
}

.lung_cancer_content .left_row .left_row_inner>div {
    margin-left: 42px;
}

.lung_cancer_content .left_row .left_row_inner>div .video_wrapper {
    width: 100%;
    max-width: 193px;
    height: auto;
}

.lung_cancer_content .left_row .img_wrapper,
.lung_cancer_content .left_row .left_row_inner {
    width: 50%;
}

.lung_cancer_content .left_row .left_row_inner>div video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.lung_cancer_content p {
    font-size: clamp(27px, 42rem, 42px);
    line-height: clamp(32px, 47rem, 47px);
    max-width: 353px;
    color: var(--blue);
    font-weight: 700;
}

/* *cancer deaths section */
.cancer_deaths {
    height: 768px;
    background: var(--yellow);
    overflow: hidden;
}

.cancer_deaths_content {
    padding: 92px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    position: relative;
}

.cancer_deaths_content .left_row,
.cancer_deaths_content .right_row {
    width: 50%;
}

.cancer_deaths_content .left_row p {
    font-size: clamp(39px, 59rem, 59px);
    line-height: clamp(39px, 64rem, 64px);
    margin-bottom: 58px;
    color: var(--black);
    max-width: 550px;
    font-weight: 700;
}

.cancer_deaths_content .left_row lottie-player {
    position: absolute;
    top: 25%;
    left: -20%;
    height: auto;
    width: 1150px;
}

.cancer_deaths_content .right_row p:first-child {
    font-size: clamp(27px, 42rem, 42px);
    line-height: clamp(32px, 47rem, 47px);
    margin-bottom: 24px;
    margin-left: auto;
    max-width: 406px;
    color: var(--blue);
}

.cancer_deaths_content .right_row img {
    width: 406px;
    height: 228px;
    margin-top: 100px;
}

.cancer_deaths_content .right_row p:last-child {
    font-size: clamp(27px, 46rem, 46px);
    line-height: 1;
    margin-top: 59px;
    max-width: 185px;
    color: var(--blue);
}

.cancer_deaths_content .right_row p:last-child span {
    font-size: clamp(57px, 94rem, 94px);
    line-height: clamp(57px, 61rem, 61px);
    font-weight: 700;
}

/* *cancer rates section */
.cancer_rates {
    height: 768px;
    overflow: hidden;
}

.cancer_rates_content {
    padding: 82px 47px 82px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 78px;
}

.cancer_rates_content>p {
    font-size: clamp(27px, 42rem, 42px);
    line-height: clamp(32px, 47rem, 47px);
    max-width: 380px;
    color: var(--blue);
    margin-top: 326px;
    font-weight: 700;
}

.cancer_rates_content .right_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cancer_rates_content .right_row .inner_left {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    width: 50%;
}

.cancer_rates_content .right_row .inner_right {
    width: 50%;
}

.cancer_rates_content .right_row .inner_left p {
    font-size: clamp(39px, 57rem, 57px);
    line-height: clamp(39px, 47rem, 47px);
    margin-bottom: 22px;
    max-width: 349px;
    font-weight: 700;
}

.cancer_rates_content .right_row .inner_right>.video_wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    position: relative;
    left: 52px;
}

.cancer_rates_content .right_row .inner_right video {
    width: 100%;
    height: auto;
}

.cancer_rates_content .right_row .inner_right div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    left: 55px;
}

.cancer_rates_content .right_row .inner_left img {
    width: 100%;
    max-width: 295px;
    height: auto;
}

.cancer_rates_content .right_row .inner_right p {
    font-size: clamp(27px, 42rem, 42px);
    line-height: clamp(27px, 34rem, 34px);
    max-width: 195px;
    color: var(--black);
}

.cancer_rates_content .right_row .inner_right p>span {
    font-size: clamp(57px, 108rem, 108px);
    line-height: clamp(57px, 89rem, 89px);
    font-weight: 700;
}

.cancer_rates_content .right_row .inner_right img:last-child {
    width: 100%;
    height: auto;
    max-width: 297px;
    margin-top: 28px;
    margin-left: -59px;
}

.quitLikeSweden {
    /* height: 953px; */
    background: var(--yellow);
    /* display: none; */
}

.postNetwork {
    display: none;
}

.themeStart47 .slick-next,
.themeStart47 .slick-prev {
    background: unset !important;
}

.themeStart47 .slick-next {
    right: -35px !important;
}

.slick-prev:before,
.slick-next:before {
    font-family: "fa-solid" !important;
    color: var(--blue) !important;
    font-size: clamp(20px, 40rem, 40px) !important;
}

.slick-prev:before {
    content: "" !important;
}

.slick-next:before {
    content: "" !important;
}

.quitLikeSweden_content {
    padding: 100px;
}

.quitLikeSweden_content h2 {
    font-size: clamp(33px, 46rem, 46px);
    line-height: clamp(32px, 53rem, 53px);
    color: var(--blue);
    text-align: center;
    font-weight: 700;
    margin-bottom: 40rem;
}

/* *Footer section */
.site_footer {
    background: var(--yellow);
    border-top: solid 1px var(--black);
    height: 80px;
}

.site_footer_content {
    padding: 24px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site_footer_content>p {
    font-size: clamp(19px, 22rem, 22px);
    line-height: 1;
    color: var(--black);
}

.site_footer_content .terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.footer_social_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
}

.twitter,
.linkedin,
.substack {
    width: 30px;
    height: 26px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.twitter:hover,
.linkedin:hover,
.substack:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.privacy_policy,
.cookie_policy {
    color: var(--black);
    font-size: clamp(13px, 16rem, 16px);
    line-height: 1;
}

/* .all_thanks_content {
  will-change: transform;
  -webkit-animation: scroll_text 7s linear infinite;
  animation: scroll_text 7s linear infinite;
} */

@-webkit-keyframes scroll_text {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes scroll_text {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* *About us section */
.about_us {
    background: var(--yellow);
    overflow: hidden;
}

.about_us_content {
    padding: 80px 100px 100px;
}

.question_block {
    margin-bottom: 81px;
}

.question_block h1,
.question_block h2 {
    font-size: clamp(39px, 70rem, 70px);
    line-height: clamp(39px, 75rem, 75px);
    color: var(--blue);
    margin-bottom: 71px;
    font-weight: 700;
}

.question_block h1 {
    min-width: 597px;
}

.question_block p {
    font-size: clamp(16px, 20rem, 20px);
    line-height: clamp(26px, 20rem, 20px);
    color: var(--black);
    margin-bottom: 30px;
}

.question_block p:last-child,
.question_block:last-child {
    margin-bottom: 0;
}

.question_block>.with_img>div>p {
    margin-bottom: 30px;
}

.with_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.with_img>img {
    width: 683px;
    height: 368px;
    margin-top: 40px;
}

.with_img>div>p {
    max-width: 583px;
}

.button {
    background: var(--blue);
    padding: 15px 57px 13px;
    font-size: 18px;
    line-height: 1;
    color: var(--yellow);
}

.about_img_mob {
    display: none;
}

.blue_c {
    color: var(--blue);
}

.black_c {
    color: var(--black);
}

.policy_content {
    padding: 74px 100px 100px;
    overflow: hidden;
}

.policy_content>div {
    background: url("../images/policies_bg.svg") 0% 0% no-repeat padding-box scroll;
    background-size: contain;
    width: 998px;
    height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -100px;
    margin-bottom: 74px;
}

.policy_content h1 {
    font-size: clamp(39px, 70rem, 70px);
    text-transform: uppercase;
    color: var(--yellow);
    margin-left: 100px;
    font-weight: 700;
}

.policy_content h2 {
    font-size: clamp(16px, 16rem, 16px);
    line-height: clamp(26px, 30rem, 30px);
    margin-top: 30px;
}

.policy_content p {
    font-size: clamp(16px, 16rem, 16px);
    line-height: clamp(26px, 30rem, 30px);
}

.slideIn,
.slideInLeft {
    opacity: 0;
    visibility: hidden;
}

.page_404_content {
    padding: 50px;
    text-align: center;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page_404_content h1 {
    font-size: clamp(39px, 70rem, 70px);
    line-height: 1;
}

.page_404_content h2 {
    font-size: clamp(16px, 16rem, 16px);
    line-height: 1;
}

.page_404_content a {
    padding: 12px 20px;
    font-size: clamp(16px, 16rem, 16px);
    line-height: 1;
    background: var(--yellow);
    color: var(--blue);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.page_404_content a:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.with_img .inner_left {
    width: 52%;
}

.about_video_wrapper {
    position: relative;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    bottom: 40px;
}

.about_video {
    width: 100%;
    height: auto;
    position: relative;
}

.head_btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.head_btn {
    border-radius: 4px;
    background: var(--yellow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8rem 12rem 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}

.dwn_wh {
    opacity: 1;
    display: block;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.dwn_bl {
    opacity: 0;
    display: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.head_btn:hover {
    cursor: pointer;
}

.head_btn:hover p {
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.head_btn:hover .dwn_bl {
    /* opacity: 1; */
    /* display: block; */
}

.head_btn:hover .dwn_wh {
    /* opacity: 0; */
    /* display: none; */
}

.head_btn p {
    font-size: clamp(16px, 30rem, 30px);
    color: var(--blue);
    font-variation-settings: "wght" 700;
    line-height: 1;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.head_btn img {
    width: 26rem;
    height: auto;
    margin-top: -6px;
}

.menu_burger {
    width: 40rem;
    margin-left: 51rem;
}

.report_links {
    min-height: 100vh;
    min-width: 100vw;
    background: var(--blue);
    position: fixed;
    z-index: 99;
    top: 0;
    opacity: 0;
    left: 100%;
    -webkit-transition: all ease-in-out 0.8s;
    -o-transition: all ease-in-out 0.8s;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.report_links.open {
    left: 0%;
    opacity: 1;
}

.report_links.fat.open {
    left: 0%;
    opacity: 1;
}

.report_links_content {
    /* min-width: 100vw; */
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials_links.report {
    position: absolute;
    bottom: 45rem;
    left: 100rem;
}

.close.rep,
.close.fat {
    position: absolute;
    top: 5.5%;
    right: 105px;
}

.close.rep:hover,
.close.fat:hover {
    cursor: pointer;
}

.head_btn_wrap.mob {
    display: none;
}

/* * Single post css */
.single_post {
    background: var(--yellow);
    min-height: 100vh;
}

.single_post_content {
    padding: clamp(50px, 80rem, 80px) clamp(15px, 100rem, 100px) clamp(50px, 100rem, 100px);
}

.single_post_content h1 {
    font-size: clamp(25px, 40rem, 40px);
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.single_post_content_wrapper>h2,
.single_post_content_wrapper>h3,
.single_post_content_wrapper>h4,
.single_post_content_wrapper>h5,
.single_post_content_wrapper>h6 {
    font-size: clamp(20px, 25rem, 25px);
    line-height: 1.3;
    color: var(--blue);
    margin-bottom: 10px;
}

.single_post_content_wrapper>div,
.single_post_content_wrapper>p{
    font-size: clamp(16px, 20rem, 20px);
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 25px;
}

.single_post_content_wrapper>ul {
    list-style: disc;
    list-style-position: inside;
}

.single_post_content_wrapper>ul li{
    font-size: clamp(16px, 20rem, 20px);
    line-height: 1.4;
    color: var(--black);
    margin-bottom: clamp(16px, 20rem, 20px);
}

.single_post_content_wrapper>ul li:last-of-type{
    margin-bottom: 25px;
}

.single_post_content_wrapper a {
    color: var(--blue);
}

.single_post_content_wrapper img {
    width: 100%;
}

.single_post_content_wrapper .single_post_content_image {
    margin-bottom: 22px;
}

.single_post_content_wrapper .single_post_meta {
    margin-bottom: 22px;
}

.single_post_content_image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 509px;
    object-fit: cover;
}

.single_post_content_wrapper blockquote {
    float: left;
    max-width: 45%;
    font-size: clamp(24px, 50rem, 50px);
    margin: 20px;
}

/* * Posts page css */
.news {
    background: var(--yellow);
    min-height: 100vh;
}

.news_content {
    padding: clamp(50px, 80rem, 80px) clamp(15px, 100rem, 100px) clamp(50px, 100rem, 100px);
}

.news_content h1 {
    font-size: clamp(36px, 70rem, 70px);
    line-height: 1;
    color: var(--blue);
    margin-bottom: 71px;
    font-weight: 700;
    text-align: left;
}

.posts_wrapper {}

.post_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: clamp(50px, 80rem, 80px);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.post_item:last-of-type {
    margin-bottom: 0;
}

.post_item:hover {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.post_img {
    width: 359px;
    height: 246px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.post_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.post_content_wrapper {
    padding-left: 53px;
}

.post_content_wrapper h2 {
    font-size: clamp(27px, 40rem, 40px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 22px;
}

.post_content_wrapper p {
    font-size: clamp(16px, 20rem, 20px);
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 22px;
}

.menu>li {
    margin-bottom: 25px;
}

.resources {
    background: var(--blue);
}

.resources_content_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100rem 50rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.resources_content_wrapper .report_button {
    margin-top: 30px;
}

.resources_content_wrapper .report_button:first-of-type {
    margin-top: 0px;
}

.report_button {
    font-size: clamp(27px, 40rem, 40px);
    line-height: clamp(30px, 30rem, 30px);
    color: var(--yellow);
    line-height: 1;
    position: relative;
    text-align: center;
}

.report_button:after,
.report_submenu_button:after {
    content: " ";
    width: 0%;
    position: absolute;
    left: 0;
    height: 3px;
    bottom: -4px;
    display: block;
    background-color: var(--yellow);
    -webkit-transition: width 0.4s, opacity 0.1s 0.3s;
    -o-transition: width 0.4s, opacity 0.1s 0.3s;
    transition: width 0.4s, opacity 0.1s 0.3s;
    opacity: 0;
}

.report_button:hover:after,
.report_button.toggle:after,
.report_submenu_button.toggle:after,
.report_submenu_button:hover:after {
    -webkit-transition: width 0.4s;
    -o-transition: width 0.4s;
    transition: width 0.4s;
    opacity: 1;
    width: 100%;
}

.report_submenu {
    display: none;
    text-align: center;
    padding-top: 10px;
}

.report_submenu_outer {
    display: inline-block;
    vertical-align: top;
}

.report_submenu_button {
    display: inline-block;
    font-size: clamp(16px, 20rem, 20px);
    line-height: 1.1;
    color: var(--yellow);
    padding-top: 10px;
    margin: 0px 10px;
    position: relative;
    vertical-align: top;
}

.report_submenu>.report_button {
    font-size: clamp(16px, 20rem, 20px);
}

.about {
    background: var(--yellow);
    overflow: hidden;
}

.about_content {
    padding: 100rem 50rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about_content p {
    font-size: clamp(57px, 70rem, 70px);
    line-height: clamp(62px, 75rem, 75px);
    color: var(--blue);
    max-width: 510px;
    font-weight: 700;
    width: 40%;
}

.about_video_wrapper.about {
    position: static;
    width: 100%;
}

.about_video.about {
    position: static;
    width: 90%;
}

.about_content .left-side .report_submenu {
    display: block;
    max-width: 81%;
    margin-top: 80rem;
}

.about_content .left-side .report_submenu .report_submenu_button {
    color: var(--blue);
}

.about_content .left-side .report_submenu .report_submenu_button.active:after {
    background-color: var(--blue);
    opacity: 1;
    width: 100%;
    bottom: -5px;
}

.about_content .left-side .report_submenu .report_submenu_button:hover {
    cursor: pointer;
}

.about_content .left-side .report_submenu .report_submenu_button:hover:after {
    background-color: var(--blue);
    bottom: -5px;
}

/* 576px, 768px, 992px, and 1200px */

@media only screen and (max-width: 1200px) {
    .precent_content {
        padding: 100px 100px 120px 100px;
    }

    .eu_plan_content {
        padding: 120px 0 90px 100px;
    }

    .eu_plan_content p {
        max-width: 450px;
    }

    .eu_plan_content .video_wrapper {
        width: 45%;
        height: auto;
    }

    .smoking_rates_content {
        padding: 153px 100px 158px;
    }

    .shape_blue {
        top: 551px;
    }

    .all_thanks {
        height: auto;
    }

    .all_thanks_content {
        padding: 84px 0 73px 0;
    }

    .all_thanks_content>p {
        line-height: 1;
    }

    .alternative_products_content {
        padding: 140px 80px 0 80px;
        gap: 60px;
    }

    .alternative_products_content video {
        width: 70%;
    }

    .filters_both {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
        right: -10%;
    }

    .alternatives_2_content {
        padding: 0 159px 117px 0;
    }

    .results_content {
        padding: 97px 121px 135px;
    }

    .tobacco_diseases_content {
        padding: 120px 100px 122px 100px;
        gap: 80px;
    }

    .premature_deaths_content .left_row .video_wrapper {
        margin-left: 100px;
    }

    .premature_deaths_content>lottie-player {
        width: 75%;
    }

    .lung_cancer_content {
        gap: 80px;
    }

    .cancer_deaths_content .left_row lottie-player {
        top: unset;
        left: -13%;
        width: 75%;
    }

    .cancer_rates_content {
        gap: 48px;
    }

    .cancer_rates_content .right_row {
        width: 50%;
    }

    .cancer_rates_content .right_row .inner_right img:last-child {
        margin-left: 0;
    }

    .cancer_rates_content>p {
        width: 40%;
    }

    /* * Posts page css */
    .post_content_wrapper {
        padding-left: 33px;
    }
}

@media only screen and (max-width: 991px) {
    .precent_content {
        padding: 100px 50px 120px;
    }

    /* .precent_content > div, .precent_middle > div{
    width: 80%;
  } */
    .precent_top {
        width: 70%;
        background-size: cover;
    }

    .precent_middle {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        margin-left: 4%;
    }

    .precent_bottom {
        margin-top: -75px;
    }

    .eu_plan {
        height: auto;
    }

    .eu_plan_content {
        padding: 120px 0 90px 60px;
    }

    .eu_plan_content p,
    .about_content p {
        font-size: clamp(40px, 70rem, 70px);
        max-width: 340px;
    }

    .smoking_rates_content {
        padding: 153px 100px 98px;
    }

    .shape_blue {
        left: 65%;
        top: 60%;
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }

    .alternative_products_content {
        padding: 60px 60px 0 60px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .alternative_products {
        height: auto;
    }

    .alternative_products_content video {
        width: 65%;
    }

    .risk_content {
        padding: 117px 84px 89px;
    }

    .alternatives_2_content {
        padding: 0 50px 117px 0;
    }

    .alternatives_2_content .left_row .video_wrapper {
        width: 100%;
        height: auto;
    }

    .filters_both {
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
        right: -18%;
    }

    .tobacco_diseases_content {
        padding: 80px;
    }

    .blue_arrow {
        width: 30%;
    }

    .tobacco_diseases {
        height: auto;
    }

    .tobacco_diseases_content p {
        width: 80%;
        gap: 50px;
    }

    .premature_deaths_content {
        padding: 124px 100px 150px;
    }

    .premature_deaths_content .left_row .video_wrapper {
        margin-left: 10px;
    }

    .premature_deaths_content .left_row p {
        max-width: 300px;
    }

    .lung_cancer_content {
        padding: 80px 70px;
        gap: 50px;
    }

    .lung_cancer_content p {
        max-width: 240px;
    }

    .lung_cancer,
    .cancer_deaths,
    .cancer_rates {
        height: auto;
    }

    .cancer_rates_content {
        padding: 82px 47px 82px 40px;
    }

    .site_footer_content {
        padding: 24px 30px;
    }

    .cancer_deaths_content .right_row img {
        width: 100%;
        height: auto;
    }

    .menu_content {
        padding: 45px;
    }

    .menu_content>.close {
        margin-right: 45px;
        width: 20px;
    }

    .menu_img_wrapper {
        left: -25%;
    }

    .main_menu_content a img {
        width: 50%;
    }

    .main_menu_content>img {
        width: 30px;
    }

    .with_img {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .with_img .inner_left {
        width: 100%;
    }

    .with_img>div>p {
        max-width: 100%;
    }

    /* * Posts page css */
    .post_img {
        width: 297px;
        height: 203px;
    }

    .post_content_wrapper {
        padding-left: 28px;
    }

    .post_content_wrapper h2,
    .post_content_wrapper p {
        margin-bottom: 15px;
    }

    p.post_meta {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {

    /* * Posts page css */
    .post_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news_content h1 {
        margin-bottom: 40px;
    }

    .post_img {
        width: 100%;
        height: 246px;
        margin-bottom: 15px;
    }

    .post_content_wrapper {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 576px) {
    .main_menu_content {
        padding: 15px;
    }

    .main_menu_content>img {
        width: 116px;
    }

    .main_menu_content .menu_burger {
        width: 22px;
    }

    .precent_content {
        padding: 153px 0;
    }

    .precent {
        /* height: 667px; */
    }

    .precent_top {
        width: 250px;
        height: 200px;
        background-size: inherit;
        margin-left: 15px;
    }

    .precent_top p {
        max-width: 200px;
    }

    .precent_middle img {
        width: 103px;
        height: 121px;
        margin-top: -40px;
    }

    .precent_middle {
        width: 355px;
        height: 185px;
        margin: auto;
        margin-top: -47px;
        background-size: contain;
    }

    .precent_middle p {
        font-variation-settings: "wght" 500;
    }

    .eu_plan_content p {
        font-weight: 500;
    }

    .precent_bottom {
        width: 182px;
        height: 106px;
        background-size: cover;
        z-index: 3;
        margin-top: -30px;
    }

    .eu_plan_content {
        padding: 71px 45px 223px 45px;
    }

    .eu_plan_content .video_wrapper {
        width: 335px;
        height: 200px;
        top: auto;
        bottom: -48px;
    }

    .smoking_rates_content {
        padding: 119px 0 68px 0;
    }

    .smoking_rates_content p {
        max-width: 275px;
        margin-right: 15px;
        font-weight: 700;
    }

    .smoking_rates_video_wrapper {
        margin-top: 41px;
    }

    .shape_yellow {
        width: 103px;
        height: 103px;
        top: 250px;
        left: -30px;
    }

    .shape_blue {
        top: auto;
        bottom: 0px;
        left: 195px;
        width: 336px;
        height: 136px;
    }

    .smoking_rates {
        padding-bottom: 55px;
    }

    .all_thanks_content {
        padding: 32px 0;
    }

    .all_thanks {
        /* height: 169px; */
    }

    .all_thanks_content>p {
        line-height: 1.5;
    }

    .alternative_products {
        height: auto;
    }

    .alternative_products_content {
        padding: 71px 0 0 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 0;
    }

    .alternative_products_content video {
        width: 360px;
        height: auto;
        position: relative;
        bottom: -53px;
        margin-top: -12px;
    }

    .alternative_products_content p {
        max-width: 345px;
        margin: auto;
        font-weight: 700;
    }

    .risk_content {
        padding: 124px 15px 90px;
    }

    .risk_content p {
        margin-bottom: 80px;
    }

    .chart_wrapper lottie-player {
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
    }

    .alternatives {
        height: auto;
    }

    .alternatives_content {
        padding: 71px 0 75px 0;
    }

    .filters_both {
        width: 192px;
        top: 19.17%;
        right: -1.5%;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .alternatives_content p {
        margin-left: 15px;
        max-width: 321px;
        font-weight: 700;
    }

    .e_cigarete_wrapper>img {
        width: 188px;
        height: 158px;
        left: 0;
    }

    .e_cigarete_wrapper {
        margin-top: 75px;
    }

    .alternatives_2_content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 62px 41px 0;
    }

    .alternatives_2_content .left_row {
        padding: 24px 22px 90px 0;
        left: 0;
        margin-top: 291px;
    }

    .alternatives_2_content .left_row .video_wrapper {
        width: 291px;
        height: 401px;
    }

    .alternatives_2 {
        height: auto;
    }

    .alternatives_2_content p {
        max-width: 283px;
        margin-top: 41px;
        margin-bottom: 0;
        margin-left: 15px;
    }

    .results {
        height: 244px;
        background: url("../images/black_bg_mob.png") 50% 0% repeat padding-box scroll;
    }

    .results_content {
        padding: 40px 15px;
    }

    .tobacco_diseases {
        height: auto;
    }

    .tobacco_diseases_content {
        padding: 66px 15px 110px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 56px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .tobacco_diseases_content p {
        width: unset;
    }

    .tobacco_diseases_content .inner_right>img:last-child {
        width: 174px;
        height: 52px;
    }

    .premature_deaths {
        height: auto;
    }

    .premature_deaths_content {
        padding: 88px 15px 56px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 91px;
    }

    .premature_deaths_content .left_row p {
        max-width: 300px;
    }

    .premature_deaths_content .left_row .video_wrapper {
        width: 222px;
        height: 80px;
        margin-bottom: 30px;
        margin-left: 111px;
    }

    .premature_deaths_content>lottie-player {
        position: static;
        width: auto;
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }

    .lung_cancer {
        height: auto;
    }

    .lung_cancer_content {
        padding: 56px 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 56px;
        overflow: hidden;
    }

    .lung_cancer_content .left_row .img_wrapper,
    .lung_cancer_content .left_row .left_row_inner {
        overflow: hidden;
    }

    .lung_cancer_content .left_row .left_row_inner>div .video_wrapper {
        width: 100%;
        height: 147px;
        margin-left: 21px;
    }

    .lung_cancer_content p {
        max-width: 290px;
    }

    .lung_cancer_content .left_row .left_row_inner>div {
        margin-left: 17px;
    }

    .lung_cancer_content .left_row p {
        margin-top: 45px;
        margin-bottom: 29px;
    }

    .cancer_deaths {
        height: auto;
    }

    .cancer_deaths_content {
        padding: 56px 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 70px;
    }

    .cancer_deaths_content .left_row lottie-player {
        width: auto;
        position: static;
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }

    .cancer_deaths_content .left_row,
    .cancer_deaths_content .right_row {
        width: 100%;
    }

    .cancer_deaths_content .right_row {
        position: static;
    }

    .cancer_deaths_content .left_row p {
        margin-bottom: 90px;
    }

    .cancer_deaths_content .right_row p:first-child {
        max-width: 259px;
        margin-bottom: 30px;
    }

    .cancer_deaths_content .right_row img {
        width: 272px;
        height: 153px;
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
        margin-top: 0;
    }

    .cancer_deaths_content .right_row p:last-child {
        position: absolute;
        margin-top: unset;
        top: 120px;
        right: 15px;
        max-width: 112px;
    }

    .cancer_rates_content {
        padding: 56px 15px 98px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 78px;
    }

    .cancer_rates_content>p {
        margin-top: 0;
        max-width: 272px;
        width: unset;
    }

    .cancer_rates_content .right_row {
        position: static;
        gap: 17px;
        width: 100%;
    }

    .cancer_rates_content .right_row .inner_right div {
        left: 0;
    }

    .cancer_rates_content .right_row .inner_right p {
        width: 140px;
        overflow: hidden;
    }

    .cancer_rates_content .right_row .inner_left {
        min-width: auto;
    }

    .cancer_rates_content .right_row .inner_right>.video_wrapper {
        display: none;
    }

    .cancer_rates_content .right_row .inner_right img:last-child {
        margin-left: -17px;
        margin-top: 15px;
    }

    .cancer_rates_content .right_row .inner_left p {
        text-align: center;
    }

    .blue_arrow,
    .black_arrow {
        width: 64px;
        height: 133px;
    }

    .cancer_rates_content .right_row .inner_right {
        -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    }

    .cancer_rates {
        height: auto;
    }

    .quitLikeSweden_content {
        padding: 56px 15px 50px;
    }

    .quitLikeSweden {
        /* height: 804px; */
    }

    .site_footer_content {
        padding: 31px 80px 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .site_footer {
        height: auto;
    }

    .site_footer_content>p {
        margin-bottom: 30px;
    }

    .footer_social_links {
        margin-bottom: 30px;
    }

    .menu_content {
        padding: 22px 0 30px 0;
    }

    .menu_content>.close {
        margin-right: 17px;
        width: 17px;
    }

    .menu_wrapper {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
        margin-top: 80px;
        gap: 86px;
        margin-bottom: 141px;
    }

    .menu_people {
        width: 375px;
        height: 218px;
    }

    .menu_yellow_bg {
        height: 153px;
        bottom: 1px;
    }

    .menu-menu-container {
        margin: auto;
        min-width: unset;
    }

    .socials_links {
        gap: 60px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .menu_links {
        min-height: 100vh;
    }

    .about_us_content {
        padding: 50px 15px;
    }

    .question_block {
        margin-bottom: 50px;
    }

    .question_block h1,
    .question_block h2 {
        margin-bottom: 30px;
    }

    .with_img {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: unset;
    }

    .about_img_mob {
        display: block;
        width: 100%;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .with_img>img {
        display: none;
    }

    .with_img>div {
        width: 100%;
        margin-bottom: 30px;
    }

    .about_video_wrapper {
        top: 0;
        margin-bottom: 30px;
    }

    .about_video {
        width: 100%;
        height: auto;
        top: 0;
    }

    .question_block h1 {
        min-width: unset;
    }

    .policy_content {
        padding: 30px 15px 50px;
    }

    .policy_content>div {
        margin-bottom: 25px;
        width: 135%;
        height: 137px;
        background-position: 70% 0%;
        padding-right: 35%;
        background-size: cover;
    }

    .question_block>.with_img>div>p {
        margin-bottom: 0;
    }

    .head_btn_wrap:not(.head_btn_wrap.mob)>.head_btn {
        display: none;
    }

    .head_btn_wrap.mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .head_btn_wrap.mob {
        position: absolute;
        z-index: 50;
        top: 20px;
        right: 14px;
    }

    .head_btn {
        padding: 4px 10px 1px;
        border-radius: 2px;
    }

    .head_btn img {
        width: 16px;
        height: auto;
        margin-top: -3px;
    }

    .report_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 45px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .socials_links.report {
        left: unset;
        bottom: 30px;
    }

    .close.rep,
    .close.fat {
        width: 17px;
        right: 17px;
    }

    .about_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .about_content p {
        font-size: clamp(40px, 70rem, 70px);
        max-width: 340px;
        width: 100%;
    }

    .about_video.about {
        width: 100%;
    }

    .about_video_wrapper.about {
        width: 100%;
    }

    .about_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .about_content p {
        font-size: clamp(40px, 70rem, 70px);
        max-width: 340px;
        width: 100%;
    }

    .about_video.about {
        width: 100%;
    }

    .about_video_wrapper.about {
        width: 100%;
    }

    .main_menu_content .menu_burger {
        width: 22px;
    }

    .single_post_content_wrapper blockquote {
        max-width: 100%;
    }

    /* * Single post css */
    .single_post_content,
    .news_content {
        padding-left: 80rem;
        padding-right: 80rem;
    }

    /* * Posts page css */
    .news_content h1 {
        margin-bottom: 30px;
    }

    .post_img {
        height: 203px;
    }

    .themeStart47 .slick-next {
        right: -32px !important;
    }

    .themeStart47 .slick-prev {
        left: -12px !important;
    }

    .about_content .left-side .report_submenu {
        max-width: 100%;
        text-align: left;
    }

    .about_video_wrapper.about iframe {
        width: 100%;
        height: calc(100vw / 2 + 10px);
    }
}

@media only screen and (max-width: 345px) {
    .report_submenu_button {
        margin: 0px 8px;
    }
}