:root{
    --main_padding: 100px;
    --blue: rgb(0 59 122);
    --black: black;
    --light_blue: rgb(0 59 122);
}
body{
    margin: unset;
    box-sizing: border-box;
    width: 100vw;
    overflow-x: hidden;
}
body *{
    font-family: "Inter";
}
.desktop{
    display: flex;
}
.mobile{
    display: none;
}
.header{
    width: 100vw;
    box-sizing: border-box;
    padding: 10px var(--main_padding);
    background: #FFFFFF;
    align-items: center;
    justify-content: space-between;
}
.nav_div{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nav_item{
    transition: all 0.5s;
    color: var(--black);
}
.nav_item:visited{
    color: var(--black);
}
.nav_item:hover{
    color: var(--blue);
    text-decoration: none;
}
.div1{
    position: relative;
    width: 100vw;
    box-sizing: border-box;
    height: 60vh;
    overflow: hidden;
}
.main_video{
    position: absolute;
    left: 0;
    top: -10vh;
    width: 100vw;
}
.div11{
    padding: 15vh 15vw;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
    color: white;
    gap: 25px;
}
.div111{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.dark{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(0,0,0,.75),rgba(0,0,0,.65),transparent);
}
.logo_svg{
    width: 50px;
}
.counter{
    width: 100vw;
    box-sizing: border-box;
    padding: 50px var(--main_padding);
    background: var(--blue);
    color: white;

}
.counter_wrapper{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.counter_item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.counter_num{
    font-size: 32px;
    font-weight: 700;
}
.counter_desc{
    font-size: 22px;
}
.counter_title{
    font-size: 32px;
    margin-bottom: 1.5em;
}
.about_day{
    padding: 50px var(--main_padding);
}
.div4{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 1em;
}
.div4_img{
    width: 100%;
    background-position: top;
    height: 350px;
    background-size: cover;
}
.div5{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2.5em;
}
.burger_item{
    border-bottom: 2px solid black;
    transition: all 0.8s;
}
.burger_item_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    box-sizing: border-box;
    padding: 15px 15px;
    cursor: pointer;
}
.burger_btn{
    transition: all 0.5s;
}
.burger_item_text{
    display: flex;
    margin-left: 15px;
    font-size: 20px;
    padding-right: 20vw;
    line-height: 32px;
    overflow: hidden;
    transition: all 0.5s;
    flex-direction: column;
}
.burger_item_text{
    display: flex;
    height: 0;
}
.pay_section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 var(--main_padding);
}
.pay_item{
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    padding: 30px 50px;
    background-image: url(./img/logo.png);
    background-position: left;
    background-size: cover;
    justify-content: space-between;
    gap: 10px;
}
.pay_item .subtitle{
    font-size: 15px;
    margin-bottom: 10px;
    text-align: left;
    line-height: 26px;
}

.pay_item .title{
    font-size: 46px;
    font-weight: 500;
    width: 160px;
}
.cost_div{
    display: flex;
    gap: 20px;
    white-space: nowrap;
}
.cost{
    font-size: 46px;
    font-weight: 700;
}
.old_cost{
    position: relative;
    font-size: 36px;
}
.red_line{
    position: absolute;
    top: 17px;
    transform: rotate(-10deg);
    height: 5px;
    background: red;
    width: 100%;
    left: 0;
}
.div6{
    text-align: center;
    margin: 1em 0;
    margin-bottom: 2em;
    font-size: 20px;
}
.text1{
    font-size: 2.25rem;
    line-height: 2.5rem;
    text-shadow: rgba(202, 227, 246, 0.4) 0px 2px 2px;
    margin-bottom: .5rem;
}
.text2{
    font-size: 2.5rem;
    line-height: 3rem;
    text-shadow: rgba(255, 255, 255, 0.5) 0px 2px 2px;
    margin-top: .5rem;
    margin-bottom: 0.5em;
}
.div2{
    position: absolute;
    top: 50vh;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.div22{
    background: rgb(229 241 251);
    padding: 1em 3vw;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.div2_item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    width: 140px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    
}
.div2_item_active{
    cursor: pointer;
    transition: all 0.5s;
}
.div2_item_active:hover{
    background: #003b7a;
    padding: 10px 0;
    color: white;
}
.div2_item svg{
    height: 35px;
}
.first_section{
    position: relative;
}
.about_day .title{
    font-size: 32px;
    margin-bottom: 1em;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.div5_item{
    padding: 10px 20px;
    border: 3px solid var(--blue);
    font-size: 20px;
}
.light_blue{
    color: var(--light_blue);
}
.div7{
    padding: var(--main_padding);
    text-align: center;
    font-size: 75px;
    position: relative;
    line-height: 120px;
}
.fucking_strange{
    color: var(--blue);
    font-style: italic;
    font-weight: 600;
}
.img_div7_wrapper{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.075;
}
footer{
    padding: 50px var(--main_padding);
    background: var(--blue);
    color: white;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.right_footer{
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
}
.footer_logo{
    width: 100px;
}
.pay_item_info{
    display: flex;
    flex-direction: row;
    gap: 35px;
    align-items: center;
}
.btn{
    padding: 20px 80px;
    background: white;
    color: var(--blue);
    border: 3px solid white;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s;
    white-space: nowrap;
}
.btn:hover{
    background: var(--blue);
    color: white;
    border: 3px solid (white);
}
.line{
    width: 100%;
    height: 3px;
    background: var(--blue);
    margin-left: 45px;
    margin-block-start: 6px;
}
.nav_item{
    font-size: 16px;
    font-weight: 300;
    transition: all 0.5s;
    color: var(--black);
    cursor: pointer;
    text-decoration: none;
}
.nav_item:visited{
    color: var(--black);
    text-decoration: none;
}
.nav_item:hover{
    text-decoration: none;
    color: var(--blue);
}
.simple_btn{
    padding: 10px 50px;
    box-sizing: border-box;
    border: 3px solid var(--blue);
    color: var(--blue);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    text-decoration: none;
}
.simple_btn2{
    padding: 10px 50px;
    box-sizing: border-box;
    border: 3px solid white;
    color: white;
    cursor: pointer;
    font-weight: 500;
    width: fit-content;
    text-decoration: none !important;
}
.no_decor{
    text-decoration: none !important;
}
.simple_btn2:visited{
    text-decoration: none !important;
}
.end{
    width: 100%;
    height: 25px;
}
.danger{
    width: fit-content;
    padding: 0px 28px;
    background: var(--blue);
    color: white;
    font-weight: 500;
    display: flex;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    line-height: 25px;
}
.img_row{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}
.img_row img{
    max-width: 40%;
    max-height: 240px;
}
.ssu1{
    font-size: 16px;
}
.politics{
    padding: 50px var(--main_padding);
}
.politics .title{
    font-size: 32px;
    margin-bottom: 30px;
}
li{
    font-size: 22px;
    margin-bottom: 18px;
    line-height: 28px;
    font-weight: 300;
}
.no_break{
    white-space: nowrap;
}
.simple_bold{
    font-weight: 500;
}
.old_section{
    padding: 50px var(--main_padding);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
.old_section .title{
    font-size: 32px;
    width: 100%;
    text-align: left;
}
.video_box{
    max-width: 100%;
    max-height: 550px;
}
.dark_wrap{
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    background: #00000033;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.dark_form{
    width: 50vw;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    position: relative;
    z-index: 15;
}
.dark_back{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 11;
}
.dark_form .title{
    font-size: 22px;
}
.cart{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #80808094;
    border-bottom: 1px solid #80808094;
    padding: 15px 0;
}
.red_star{
    z-index: 2;
    position: relative;
    color: red;
}
.div6_special{
    margin: unset;
    text-align: center;
    margin-top: 15px !important;
}
.cart_name{
    font-size: 18px;
    font-weight: 300;
}
.num_count{
    font-size: 18px;
}
.num_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 200px;
    transition: all 0.5s;
    cursor: pointer;
    font-size: 18px;
}
.num_nav:hover{
    background: #80808030;;
}
.form_input_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.simple_input{
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    box-sizing: border-box;
}
.subtitle{
    font-size: 14px;
    text-align: center;
}
.blue{
    color: var(--blue);
    
}
.total{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}
.num_bar{
    display: flex;
    gap: 10px;
    align-items: center;
}
.form_exit{
    right: 20px;
    top: 15px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    transform: rotate(45deg);
}
.dark_form .simple_btn{
    font-size: 22px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.main_map{
    margin-top: 20px;
    margin-bottom: 20px;
}
.main_map_content_wrapper{
    padding: 0 var(--main_padding);
    margin-bottom: 20px;
}
.main_map_content_wrapper>.title{
    font-size: 32px;
    margin-bottom: 1em;
    white-space: nowrap;
    display: flex
;
    align-items: center;
}
.main_map_description{
    display: flex
    ;
        align-items: center;
        gap: 30px;
}
.main_map_description>.subtitle{
    font-size: 20px;
}
.main_map_description>a{
    text-decoration: none;
}

/* Плавная анимация скролла */
html {
    scroll-behavior: smooth;
}

/* Анимации для элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимации для заголовков */
.title {
    animation: fadeInUp 0.8s ease-out;
}

/* Анимации для навигации */
.nav_item {
    animation: fadeInLeft 0.6s ease-out;
    transition: all 0.3s ease;
}

.nav_item:hover {
    transform: translateY(-2px);
}

/* Анимации для кнопок */
.simple_btn, .simple_btn2, .btn {
    animation: scaleIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.simple_btn:hover, .simple_btn2:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Анимации для секций */
.second_section {
    animation: fadeInUp 1s ease-out;
}

.pay_section {
    animation: fadeInUp 1.2s ease-out;
}

/* Анимации для карточек */
.pay_item {
    animation: fadeInLeft 0.8s ease-out;
    transition: all 0.3s ease;
}

.pay_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Анимации для burger элементов */
.burger_item {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

/* .burger_item:hover {
    transform: translateX(10px);
} */

/* Анимации для счетчика */
.counter_item {
    animation: scaleIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.counter_item:hover {
    transform: scale(1.05);
}

/* Анимации для изображений */
.img_row img {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.img_row img:hover {
    transform: scale(1.05);
}

/* Анимации для видео */
.video_box {
    animation: fadeInUp 1s ease-out;
    transition: all 0.3s ease;
}

.video_box:hover {
    transform: scale(1.02);
}

/* Анимации для футера */
footer {
    animation: fadeInUp 1.2s ease-out;
}

/* Плавные переходы для всех элементов */
* {
    transition: all 0.3s ease;
}

/* Анимация появления при скролле */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.n_decor{
    padding-right: 100px; 
    padding-left: 100px;
}
.ns_decor{
    padding-left: 83px; 
    padding-right: 130px;
    border-left-width: 83px;
}