: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: auto;
}
.pay_section{
    display: flex;
    flex-direction: column;
    gap: 30px;
    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: 200px;
}
.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: 4.5rem;
    font-weight: 600;
    line-height: 5rem;
    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: 30px;
}
.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: white; /* var(--blue); */
    color: black;
    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: left;
}
.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;
}