html {font-size: 62.5%;}
header{
    width: var(--global-width);
    display: grid;
    grid-template-columns: 1fr;
}
.float_button_cntr{
    position: fixed;
    z-index: 500;
    width: 60px;
    height: 60px;
    border: var(--dark-grey) 1px solid;
    background-color: var(--white-main);
    opacity: 0.8;
    border-radius: 30px;
    right: 10px;
    bottom: 40px;
    text-align: center;
    padding-top: 8px;
    display: none;
    cursor: pointer;
}
.float_button_cntr i{
    color: var(--dark-grey);
    font-size: 4rem;
}
#side_contact {
    position: fixed;
    z-index: 500;
    border: var(--dark-grey) 1px solid;
    background-color: var(--white-main);
    opacity: 0.8;
    border-radius: 20px;
    right: 10px;
    bottom: 40%;
    padding: 6px;
    display: none;
}
.side_social_link{
    padding: 6px;
}
.side_social_link:first-of-type{
    border-bottom: 1px solid var(--dark-grey);
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.side_social_link i{
    font-size: 3rem;
    color: var(--dark-grey);
}
/*************** HEADER TOP BAR ***********************************/
#bar_top{
    background-color: var(--dark-grey); border-bottom: var(--body-grey) 1px solid;
    display: grid;
    grid-template-columns: max-content auto max-content;
    align-items: center;
}

/*************** Name of Firma ***************/
#top_firma {margin-left: 20px; grid-area: NAM;}
#top_firma a{
    font-family: "Play", sans-serif;
    font-weight: 700; font-style: normal;
    color: var(--white-main);
    font-size: 2.2rem;
}

/************* Social Icons link ************/
#top_social{
    grid-area: SOC;
    display: grid;
    grid-template-columns: repeat(6, 40px);
    justify-items: center;
}
.social_link{
    position: relative;
    padding: 5px 8px;
}   
.social_link a, i{
    color: var(--white-main);
    font-size: 2.2rem;
}
.sub_social{
    background-color: var(--dark-grey);
    position: absolute;
    top: 34px;
    left: -2px;
    display: none;
    z-index: 100;
}
.social_link:hover{
    background-color: var(--light-grey);
    border-bottom: var(--orange-main) 1px solid;
    transition: all 0.3s ease;
}
.social_link:hover > .sub_social{
    display: flex;
    flex-direction:column;
    transition: all 0.3s ease;
}

/*********** Locale Button ************/
#top_locale{
    grid-area: LOC;
    margin-right: 20px;
    position: relative;
    width: 156px;
}
.current_locale{
    display: flex;
    justify-items: start;
    align-items: center;
    cursor: pointer;
}
.cl_img img{width: 30px;}
.cl_name{
    color: var(--white-main);
    font-size: 2.2rem;
    margin-left: 10px;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
}

#locale_container{
    position: absolute;
    z-index: 150;
    display: none;
}
.locale_rec{
    border-left: var(--white-main) 1px solid;
    border-right: var(--white-main) 1px solid;
}
.locale_rec button{
    background-color: var(--dark-grey);
    color: var(--white-main);
    font-size: 2.2rem;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    border: none;
    height: 40px;
    width: 140px;
}
#top_locale:hover > #locale_container{
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}
.locale_rec button:hover{
    background-color: var(--light-grey);
    border-bottom: var(--orange-main) 1px solid;
    transition: all 0.3s ease;
}


/******************* HEADER SLIDER *************************************/
#bar_slider{
    width: var(--global-width);
    position: relative;
}
.slide{
    position: absolute;
    width: 100%;
    top:0px;
}
.slide-0 {position: relative;}
.slide-0 img {width: 100%;}
.slide img {width: 100%;}
.slide_logo{
    position: absolute;
    left: 20px;
    top: 4%;
}
.slide_logo img{
    width: 100%;
    -webkit-filter: drop-shadow(3px 3px 3px #000);
    filter: drop-shadow(3px 3px 3px #000);
}
.slide-1 {animation: fader-1 22s infinite;}
.slide-2 {animation: fader-2 22s infinite;}
.slide-3 {animation: fader-3 22s infinite;}
.slide-4 {animation: fader-4 22s infinite;}
#bar_slider h1{
    font-size: 4vw;
    color: var(--white-main);
    text-shadow: 2px 2px 2px #000;
    font-family: "Sofia Sans", sans-serif; font-optical-sizing: auto;
    font-weight: 400; font-style: normal;
}
#bar_slider i{
    font-size: 1em;
    color: var(--white-main);
    text-shadow: 2px 2px 2px #000;
}
.text-1{
    top: 16.7%; 
    animation: fader_text-1 22s infinite;
    position: absolute;
}
.text-2{
    top: 33.4%;
    animation: fader_text-2 22s infinite;
    position: absolute;
}
.text-3{
    top: 50.1%;
    animation: fader_text-3 22s infinite;
    position: absolute;
}
.text-4{
    top: 66.8%;
    animation: fader_text-4 22s infinite;
    position: absolute;
}
/***************** HEADER MENU BAR *************************************/

#bar_menu{
    background-color: var(--dark-grey);
}
.top_menu{
    display: flex;
    max-width: 1280px;
    margin: 0px auto;
    height: 40px;
}
.menu_t a{
    color: var(--white-main);
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    cursor: pointer;
}
.menu_t i{
    color: var(--white-main);
    margin-right: 5px;
}
.menu_t{
    position: relative;
    border-right: var(--dark-grey) 1px solid;
    transition: all 0.3s ease;
    height: 40px;
}
.menu_t:hover{
    background-color: var(--light-grey);
    border-bottom: var(--orange-main) 1px solid;
    transition: all 0.3s ease;
}
.menu_t:hover > .sub_menu{
    display: flex;
    flex-direction:column;
    transition: all 0.3s ease;
}
.sub_menu{
    top: 40px; left: 0px;
    position: absolute;
    min-width: 300px;
    background-color: var(--dark-grey);
    display: none;
}

/************** MAIN PART *************************************************/

body{background-color: var(--body-grey);}
main{
    margin: 0 auto;
    max-width: 1280px; margin-top: 10px;
    background-color: var(--main-bg);
    border-radius: 20px; border-right: solid 1px var(--main-border); border-left: solid 1px var(--main-border);
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
}

/*************** Main Slogan ***********************/
.arcticle_slogan, .arcticle_slogan_small{
    width: 80%;
    margin: 0px auto;
}
.arcticle_slogan h1{
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 8rem);
    color: var(--dark-grey);
    text-align: center;
}
.slogan_img{
    width: 56vw;
    margin: 0px auto;
    opacity: 0.8;
    max-width: 700px;
    text-align: center;
}
.slogan_img img{
    width: 100%;
    max-width: 700px;
    min-width: 180px;
}

.arcticle_slogan_small h1{
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 6rem);
    color: var(--dark-grey);
    text-align: center;
}

/*************** Eggs *****************************/
.article_egg{
    display: grid;
    justify-items: center;
    row-gap: 20px;
}
.egg{
    border: var(--dark-grey) 1px solid;
    border-radius: 30%;
    width: 80%;
    display: flex;
    flex-direction:column;
    text-align: center;
    padding: 10% 0px;
}
#egg-1{grid-area: QAL;}
#egg-2{grid-area: INN;}
#egg-3{grid-area: DES;}
#egg-4{grid-area: UMS;}
#egg-5{grid-area: FRN;}
.egg h3{color: var(--dark-grey);}
.egg i{color: var(--dark-grey);}

/************** CONTENT LIST **********************************************/

/************** Download container ****************************************/
.f_download_container{
    display: grid;
    align-items: center;
    border-bottom: var(--dark-green) 2px solid;
    height: 60px;
    margin: 0px 20px;
}
.dwnld_icon i,.dwnld_text,.dwnld_link a{
    color: var(--dark-grey);
}
.dwnld_icon{
    grid-area: LICO;
    justify-self: start;
    padding-right: 10px;
}
.dwnld_text{
    grid-area: LTXT;
    justify-self: start;
    font-family: "Sofia Sans", sans-serif;
}
.dwnld_link{
    grid-area: LLNK;
    display: grid;
    width: 200px;
    background-color: var(--btn-bgr);
    border: var(--btn-bdr) solid 1px;
    border-radius: 20px;
    justify-items: center;
    align-items: center;
    height: 40px;
}
.dwnld_link a, .offen_link a{
    color: var(--white-main);
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.offen_link{
    grid-area: OFNL;
    display: grid;
    width: 200px;
    background-color: var(--btn-bgr);
    border: var(--btn-bdr) solid 1px;
    border-radius: 20px;
    justify-items: center;
    align-items: center;
    height: 40px;
}

/******************** Mail Form *******************************************/
.form_container{
    width: 80%;
    margin: 0px auto;
}



#form_order, .mail_result{
    background-color: var(--forms-bg);
    width: 80%;
    border: solid 1px var(--light-grey);
    border-radius: 10px;
    margin: 0px auto;
    padding: 20px;
}

.form_order_title{
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 6rem);
    color: var(--dark-grey);
    text-align: center;
    padding-bottom: 20px;
}

.form_order_text, .form_order_lbl, .form_order_legend, input, textarea, #send_form, .mail_result{
    font-size: clamp(1.6rem, 2vw, 2.6rem);
    line-height: clamp(2rem, 2.4vw, 3.4rem);
    font-family: "Sofia Sans", sans-serif;
    font-weight: 300;
    color: var(--dark-grey);
}
input, textarea{
    width: 100%;
    border:none;
    border-bottom: solid 1px var(--light-grey);
    border-radius: 6px;
}
textarea{
    height: 100px;
}
.form_order_text{
    margin: 10px 0px;
}
.form_order_lbl{
    margin-top: 10px;
}

.form_order_legend{
    font-weight: 500;
}
.form_order_lbl{
    display: block;
}
.form_order_chbx{
    transform:scale(2);
    width: max-content;
    cursor: pointer;
}
#send_form{
    margin-top: 30px;
    width: 200px;
    border:none;
    border-bottom: solid 1px var(--light-grey);
    border-radius: 6px;
    cursor: pointer;
    background-color: var(--btn-bgr);
    font-weight: 400;
    color: var(--white-main);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.mail_result {
    text-align: center;
    font-weight: 600;
    color: var(--dark-green);
}


/******************** Main Text ******************************************/
.article_container{
    display: grid;
    margin-bottom: 20px;
}
.pic_container{grid-area: PIC;}
.article_name{
    grid-area: TIT;
    justify-self: stretch;
    border-bottom: solid 2px var(--dark-green);
    padding: 10px 0px;
    margin: 0px 20px;
}
.article_main{
    grid-area: TXT;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.pic_container img{
    border: var(--dark-grey) solid 1px;
    margin: 10px;
    border-radius: 10px;
}
.pic_container video{
    border: var(--dark-grey) solid 1px;
    margin: 10px;
    border-radius: 10px;
}
.pic_inner_container img{
    border: var(--dark-grey) solid 1px;
    margin: 5px;
    border-radius: 10px;
    width: 40%;
    display:inline-block;
}


.article_name h2{
    font-size: clamp(2.4rem, 3vw, 4rem);
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    color: var(--dark-grey);
    text-align: center;
}
.article_main p{
    font-family: "Sofia Sans", sans-serif;
    font-weight: 300;
    color: var(--dark-grey);
}
h3{
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    color: var(--dark-grey);
    font-size: 3rem;
    margin-top: 10px;
}

/*****************CONTENT DETAIL *************************************/

.article_btn{
    grid-area: BTN;
    justify-self: end;
    width: 160px;
    display: grid;
    background-color: var(--btn-bgr);
    border: var(--btn-bdr) solid 1px;
    border-radius: 20px;
    margin-right: 40px;
}
.article_btn a{
    color: var(--white-main);
    font-size: 2rem;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    justify-self: center;
    align-self: center;
}
/**************** PUBLIC CONTAINER ****************************************/
.pub{
    max-width: 960px;
    padding: 0px 30px;
}
.public h1, h2, h3, h4, p, li{
    font-family: "Sofia Sans", sans-serif;
    color: var(--dark-grey);
}
.public h1{
    font-size: 4vw;
    text-align: center;
    font-weight: 800;
    margin: 30px 0px;
}
.public h2{
    font-size: 3vw;
    margin: 20px 0px;
    font-weight: 700;
}
.public h3{
    font-size: 2vw;
    margin: 20px 0px;
    font-weight: 600;
}
.public h4{
    font-size: 1.5vw;
    margin: 20px 0 0 40px;
    font-weight: 500;
}
.public p{
    font-size: 1.5vw;
    font-weight: 300;
    margin: 10px 0 10px 40px;
}
.public ul{
    list-style-type:circle;
}
.public li{
    font-size: 1.5vw;
    font-weight: 300;
    margin: 10px 0 10px 60px;
}
.public a{
    margin-left: 20px;
    color:#072505;
}


/**************** FOOTER ************************************************/
footer{
    background-color: var(--dark-grey); border-top: var(--white-main) 1px solid;
    width: var(--global-width);
    display: grid;
    grid-template-rows: auto;
    align-items:start;
    padding: 10px 20px;
    width: 100%;
    margin-top: 10px;
}
.foot_2 a{font-weight: 200;}
.foot_2 h1, .foot_2 h1 a{font-weight: 400;}
.foot_2 h2{
    line-height: 2.6rem;
    font-weight: 200;
}
.foot_1{
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}
.foot_2{min-height: 40px;}
.cprt{
    padding-top: 10px;
    padding-bottom: 10px;
}
.foot_2 a, .foot_2 h1, .foot_2 h2{
    color: var(--white-main);
    font-family: "Sofia Sans", sans-serif;
}
.foot_2 a:hover{border-bottom: var(--orange-main) 1px solid;}
.foot_2 i{margin-right: 20px;}
.footer_contact{grid-area: CONT;}
.footer_pages{grid-area: PAGES;}
.footer_social{grid-area: SOCI;}

/******************* Форма cookies ***************************/

.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, sans-serif;  
    color: #FFF;
    background: var(--dark-green);
    padding: 10px 20px; 
    border-top: 4px solid var(--dark-grey);
}
/* Оформление кнопок */
.cookie_btn {
    display: inline-block;
    margin: 10px 6px 4px 6px;
    text-decoration: none;
    position: relative;
    font-size: 13px;
    padding: 8px 20px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    background: var(--dark-green);
    border: 1px solid var(--btn-bdr);
    border-radius: 6px;
}
.cookie_btn:hover {
    color: #FFF;
}
.cookie_btn:after,
.cookie_btn:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #FFF;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.cookie_btn:before {
    top: -6px;
}
.cookie_btn:hover:after,
.cookie_btn:hover:before {
    width: 100%;
    left: 0;
}

.error_pic{
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 20px;
}
.error_pic img{
    width: 98%;
    border-radius: 8px;
    border: solid 1px var(--btn-bdr);
}

.stat_container{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);;
}
.stat_block{
    max-width: 200px;
    border: solid 1px var(--light-grey);
    border-radius: 6px;
    margin: 4px;
    padding: 4px;
}
.stat_block h1{
    font-size: 2em;
    margin-bottom: 6px;
}
.stat_block p{
    font-size: 1.5em;
}

/****************************** Gallery *********************************/
#gallery_container {
    display: grid;
    padding-left: 20px;
    padding-bottom: 40px;
}
.gallery_item{
    width: 90%;
}
.gallery_item img {
    width: 100%;
    border: 1px solid var(--light-grey);
    border-radius: 14px;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.gallery_item img:hover {
    transform: scale(1.03);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-height: 90vh;
    max-width: 90vw;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.5)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    background-color: var(--white-main);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 1100;
}
.close i{
    font-size: 40px;
    color: var(--dark-grey);
}

.close:hover {
    color: #ccc;
}
.nav-btn {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    background-color: var(--white-main);
    border-radius: 10%;
    cursor: pointer;
    user-select: none;
    padding: 6px 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.nav-btn i{
    font-size: 40px;
    color: var(--dark-grey);
}
.nav-btn:hover {
    opacity: 1;
    background: rgba(0,0,0,0.2);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .nav-btn {
        font-size: 40px;
        padding: 0 10px;
    }
}

.modal-footer {
    position: fixed;
    bottom: 20px;
    left: 30px;
    width: 100%;
    text-align: center;
    color: var(--white-main);
    font-size: 30px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.zoom-controls {
    background: var(--white-main);
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 20px;
}

.zoom-btn {
    background: none;
    border: 1px solid var(--dark-grey);
    color: var(--dark-grey);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    font-size: 30px;
}

.zoom-btn:hover {
    background: rgba(255,255,255,0.2);
}

.preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Свайп-анимация */
.modal-content.swipe-left {
    animation: swipeLeft 0.3s forwards;
}

.modal-content.swipe-right {
    animation: swipeRight 0.3s forwards;
}

@keyframes swipeLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@keyframes swipeRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
/************ MEDIA REQUEST **************************************************/
@media (min-width: 541px) {
    header{grid-template-rows: 40px auto 40px;}
    #bar_top{
        grid-auto-rows: 40px;
        grid-template-areas:
            "NAM SOC LOC";
    }
    #top_locale{justify-self: start;}
    .slide_logo{width: 10%;}
    .slide_logo img{opacity: 1;}
    .slide_text{display: block;}
    #top_social{justify-self: center;}
    .menu_t{padding: 8px 12px;}
    .menu_t a, .menu_t i{font-size: 2.2rem;}

    main{row-gap: 40px;}
    .article_egg{
        grid-template-columns: repeat(5, 1fr);
        grid-template-areas:
            "QAL INN DES UMS FRN";
    }
    .egg h3{font-size: 2.2vw;}
    .egg i{
        font-size: 4vw;
        margin-bottom: 20px;
    }
    

    .f_download_container{
        grid-template-columns: 40px auto auto auto;
        grid-template-areas:
        "LICO LTXT LLNK OFNL";
    }
    .dwnld_icon i,.dwnld_text{
        font-size: clamp(1.2rem, 2vw, 3rem);
    }
    .dwnld_link{
        width: 180px;
        height: 40px;
    }
    .offen_link{
        width: 140px;
        height: 40px;
        margin-left: 10px;
    }
    .dwnld_link a, .offen_link a{
        font-size: 2rem;
    }

    .public h1{font-size: 4vw;}
    .public h2{font-size: 3vw;}
    .public h3{font-size: 2vw;}
    .public h4{font-size: 1.5vw;}
    .public p{font-size: 1.5vw; line-height: 1.7vw;}
    .public li{font-size: 1.5vw; line-height: 1.7vw;}

    .article_container{
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: minmax(40px, auto) auto 40px;
        column-gap: 20px;
        grid-template-areas:
            "PIC TIT"
            "PIC TXT"
            "PIC BTN";
    }
    .pic_container img{width: 100%;}
    .pic_container video{width: 100%;}
    .article_main p{
        font-size: clamp(1.6rem, 2vw, 2.6rem);
        line-height: clamp(2rem, 2.4vw, 3.4rem);
    }

    footer{
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: "CONT PAGES SOCI";
    }
    .foot_2 h1, .foot_2 h1 a{font-size: clamp(1.5rem, 3vw, 3rem);}
    .foot_2 h2{font-size: clamp(0.8rem, 2vw, 2rem);}
    .foot_2 a{font-size: clamp(0.8rem, 2vw, 2rem);}
    #gallery_container {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;}
}


@media (max-width: 540px) {
    header{grid-template-rows: 80px auto 40px;}
    #bar_top{
        grid-auto-rows: 40px 40px;
        grid-template-areas:
            "NAM SOC SOC"
            "NAM LOC LOC";
    }
    #top_locale{justify-self: end;}
    .slide_logo{width: 30%;}
    .slide_logo img{opacity: 1;}
    .slide_text{display: none;}
    #top_social{justify-self: end;}
    .menu_t{padding: 12px 8px;}
    .menu_t a{font-size: 1.4rem;}
    .menu_t i{font-size: 1.2rem;}

    main{row-gap: 20px;}

    .f_download_container{
        grid-template-columns: 30px auto auto;
        grid-template-rows: auto;
        row-gap: 6px;
        grid-template-areas:
        "LICO LTXT LLNK"
        "LICO LTXT OFNL";
        height: 80px;
    }
    .dwnld_icon i,.dwnld_text{
        font-size: clamp(1.6rem, 2vw, 3rem);
    }
    .dwnld_link, .offen_link{
        width: 120px;
        height: 26px;
    }
    .dwnld_link a, .offen_link a{
        font-size: 1.4rem;
    }
    
    

    .article_egg{
        grid-template-columns: repeat(6, 1fr);
        grid-template-areas:
            "QAL QAL INN INN DES DES"
            ". UMS UMS FRN FRN .";
    }
    .egg h3{font-size: 4vw;}
    .egg i{
        font-size: 7vw;
        margin-bottom: 10px;
    }


    .article_container{
        grid-template-columns: 1fr;
        grid-auto-rows: auto auto auto 40px;
        column-gap: 20px;
        grid-template-areas:
            "PIC"
            "TIT"
            "TXT"
            "BTN";
    }
    .pic_container img{width: 94%;}
    .pic_container video{width: 94%;}
    .article_main p{
        font-size: clamp(2rem, 2.4vw, 3rem);
        line-height: clamp(2.6rem, 3vw, 4rem);
    }

    .public h1{font-size: 7vw;}
    .public h2{font-size: 6vw;}
    .public h3{font-size: 5vw;}
    .public h4{font-size: 4vw;}
    .public p{font-size: 4vw; line-height: 5vw;}
    .public li{font-size: 4vw; line-height: 5vw;}

    footer{
        grid-template-columns: 1fr;
        grid-template-areas:
            "CONT"
            "PAGES"
            "SOCI";
    }
    .foot_2 a{font-size: 2rem;}
    .foot_2 h1, .foot_2 h1 a{font-size: 3rem;}
    .foot_2 h2{font-size: 2rem;}
    #gallery_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;}
}