@font-face {
    font-family: mainFont;
    src: url('../content/основное/Gilroy-Light.otf');
}

:root{
    --b-r: 6px;
    --p-min: 0.5vmin;
    --p-max: 1vmin;

    /* font-size */

    --f1: 2.25rem;
    --f2: 2rem;
    --f3: 1.75rem;
    --f4: 1.5rem;
    --f5: 1.25rem;

    --c1: #ffabab;
    --c2: #97d9ff;
    --c3: #d2bece;
    --c4: #ea5160;
    --c5: #f57e86;
    --c6: #e9dfe7;
    --c7: #266bb0;

    /* отступы для основной части, для высчитывания */

    --indent-padding: 5%;
    --indent-width: 10%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: mainFont;
    -webkit-text-stroke: 0.2px black;
}

b{
    -webkit-text-stroke-width: 0px !important;
}

a{
    color: var(--c7);
    -webkit-text-stroke-color: var(--c7);
    /* -webkit-text-stroke-width: 9px; */
}

textarea{
    resize: vertical;
    min-block-size: 25vh;
    max-block-size: 25vh;
    text-align: justify;
}

input[type="file"]{
    -webkit-text-stroke-width: 0px !important;
}

input[readonly]:focus{
    outline: none !important;
}

#success{
    gap: var(--p-max);
    background-color: white;
    border: 6px solid var(--c2);
    border-radius: var(--b-r);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    padding: calc(4 * var(--p-max));
    text-align: center;
    animation: 2s linear success infinite;
    -webkit-text-stroke-width: 0.3px !important;
    font-size: var(--f2) !important;
}

@keyframes success{
    0%{
        border: 6px solid var(--c2);
        box-shadow: 0 0 6px #58db8c;
    }
    50%{
        border: 6px solid #58db8c;
        box-shadow: 0 0 6px var(--c2);
    }
    100%{
        border: 6px solid var(--c2);
        box-shadow: 0 0 6px #58db8c;
    }
}

html, body{
    width: 100%;
    /* height: 100%; */

    font-size: 12px;
}

body{
    display: flex;
    flex-direction: column;
    gap: var(--p-max);
    padding-top: calc(var(--p-max) * 3);
    align-items: center;
    background: linear-gradient(to top, var(--c6) 30%, white 70%);
}

/* header */

header{
    width: 100%;
    gap: var(--p-max);
    padding: 0 var(--indent-padding);
    margin-bottom: calc(var(--p-max) * 2);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header img{
    height: 10vh;
}

h1{
    line-height: 1.5;
}

header h1, header h1 span{
    -webkit-text-stroke-width: 0px !important;
}

/* header  */

/* nav */

nav{
    width: calc(100% - var(--indent-width));
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

nav *{
    font-size: var(--f4);
    padding: var(--p-max);
    /* border: 1.2px solid #acacac50; */
    border: 0;
    box-shadow: 0 0px 8px #acacac50;
    width: auto;
    flex-grow: 1;
    cursor: pointer;
    background-color: white;
}

nav > *:first-child{
    border-radius: var(--b-r) 0 0 0;
}

nav > *:last-child{
    border-radius: 0 var(--b-r) 0 0;
}

/* nav */

/* main */

main{
    background-color: white;
    width: calc(100% - var(--indent-width));
    border-radius: 0 0 var(--b-r) var(--b-r);
    box-shadow: 0 2px 8px #acacac50;
    height: 85vh;
    /* padding: var(--p-max); */
    position: relative;
    display: flex;
    flex-direction: column;
}

/* main */

/* all sections */

section{
    padding: calc(var(--p-max) * 2);
    padding-bottom: var(--p-max);
    flex-grow: 1;
    overflow-y: auto;
    gap: calc(var(--p-max) *2);
}

section > hr{
    display: none;
}

section hr{
    -webkit-text-stroke-width: 0px;
    border: unset;
    height: 2px;
    min-height: 2px;
    border-radius: var(--b-r);
    background-color: var(--c1);
    width: 100%;
}

section *:not(h2, h3, h4, h5, .spanH){
    font-size: var(--f4);
}

section h3, section h5{
    -webkit-text-stroke-width: 0px;
}

section ul, section ol{
    list-style-position: inside;
    list-style-type: none;
}

section ul li{
    position: relative;
    padding-left: calc(var(--f4));
}

section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--f4) / 2.5);
  width: calc(var(--f4) / 2);
  height: calc(var(--f4) / 2);
  background-image: url('../content/основное/bullite.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

section *{
    line-height: normal;
}

section *:not(section div.calend span, #section7 *, form *){
    line-height: 1.8;
}

/* all sections */

/* section1 */

#section1{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.s1_griddiv1, .s1_griddiv2{
    display: grid;
    justify-items: center;
}

#section1 .partner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--p-max);
    text-align: center;
}

.s1_griddiv1 img{
    height: 7vh;
}

.s1_griddiv2 img{
    height: 4.5vh;
}

#section1 .partner img{
    width: 100%;
    object-fit: contain;
    object-position: center;
    margin-top: auto;
    cursor: pointer;
}

#section1 .shadow_block hr{
    margin: var(--p-min) 0;
}

.s1_div1{
    grid-column: 1/3;
}

.s1_griddiv1, .s1_griddiv2{
    grid-template-columns: repeat(2, 1fr);
}

.s1_griddiv2{
    gap: 2.5%;
}

.s1_griddiv1 .partner{
    width: 80%;
}

.s1_griddiv2 .partner{
    width: 60%;
}

.s1_griddiv2 .partner:first-of-type{
    justify-self: end;
}

.s1_griddiv2 .partner:last-of-type{
    justify-self: baseline;
}

.s1_div2{
    display: flex;
    flex-direction: column;
    gap: var(--p-max);
}

.s1_div2 > .shadow_block{
    flex-grow: 1;
}

#docs{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--p-max);
}

span.s1_div1{
    -webkit-text-stroke-width: 0.55px;
    margin: calc(var(--p-max) * 2) 0;
}

/* section1 */

/* section2 */

#section2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--p-max); 
    grid-auto-rows: min-content;
}

#section2 .dateOfNew{
    position: absolute;
    top: var(--p-max);
    left: var(--p-max);
    z-index: 2;
    background-color: white;
    border-radius: var(--b-r);
    padding: var(--p-min) var(--p-min) var(--p-min) 0;
}

#section2 > .shadow_block{
    /* align-items: center; */
    /* gap: var(--p-max); */
    padding: calc(var(--p-max) * 2.5 + var(--p-min) + var(--f4)) var(--p-max) var(--p-max);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--p-min);
    align-items: start;
}

#section2  > .shadow_block > div{
    display: flex;
    width: 100%;
    gap: var(--p-max);
}

.s2_link{
    cursor: pointer;
    transition: 0.8s;
    width: fit-content;
    height: 20vmin;
    object-fit: contain;
    object-position: left;
    max-width: calc(33% - var(--p-max));
}

@keyframes img_vis{
    0%{
        filter: opacity(0%);
    }
    100%{
        filter: opacity(100%)
    }
}

.s2_img{
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 999;
    outline: 1000vmax solid #00000050;
    background-color: #00000050;
    width: 100%;
    height: 100%;
    padding: 2% 0;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    animation: img_vis 0.2s linear;
}

#section2 > .shadow_block > p{
    transition: 0.8s !important;
    text-align: justify;
    min-width: calc(70% - var(--p-max) * 2);
    flex-grow: 1;
}

form>svg{
    width: 3vmin;
    height: 3vmin;
    position: sticky;
    left: 100%;
    bottom: 100%;
    cursor: pointer;
}
 
form>svg path{
    transition: 0.4s;
}

form>svg path:hover{
    fill: var(--c4);
}

/* section2 */


/* section3 */

#section3{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(2 * var(--p-max));
    justify-items: center;
    align-content: baseline;
    height: 100%;
    height: fit-content;
    position: relative;
}

#section3 > button, #section4 > button{
    background-color: white;
    border-width: 0px 4px 4px 0px;
    border-color: var(--c2);
    border-style: solid;
    box-shadow: 0px 0px 6px var(--c2);
    border-radius: var(--b-r);
    padding: var(--p-max);
    min-width: 70%;
    line-height: 1.5;
    font-size: var(--f4);
    cursor: pointer;
}

#section3 > button:active, #section4 > button:active, form > button:active{
    border-width: 4px 0px 0px 4px !important;
}

#section3 form, form{
    display: flex;
    flex-direction: column;
    gap: var(--p-max);
    width: 100%;
    padding: calc(var(--p-max) * 3) calc(2 * var(--indent-width));
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
}

#section3 form input, form input, textarea, .form_org_list, .section3div div button, .section3div_nominations > *{
    border: 0.75px solid var(--c6);
    font-size: var(--f4);
}

#section3 form input:not(input[type="radio"]), form input:not(input[type="radio"]){
    padding: var(--p-max);
}

form h3:not(:first-child){
    margin-top: calc(var(--p-max) * 3);
}

form h3{
    text-align: center;
    margin-bottom: calc(var(--p-max) * 2);
}

#section3 form .section3div{
    display: flex;
    gap: var(--p-max);
    flex-wrap:wrap;
    width: 100%;
    justify-content: center;
    align-items: center;

    position: relative;
}

#section3 form .section3div > input{
    flex-grow: 1;
    cursor: pointer !important;
}

#section3 form .section3div > button{
    height: fit-content;
    cursor: pointer;
    rotate: 0;
    transition: 0.4s;
    user-select: none !important;
}

.form_org_list{
    width: 100%;
    height: 50vmin;
    display: flex;
    flex-direction: column;
    gap: var(--p-max);
    
    position: absolute;
    top: calc(100% + var(--p-max));
    left: 50%;
    transform: translate(-50%, 0);

    overflow-y: auto;

    background-color: white;
    transition: 0.4s;
}

.form_org_list_hidden{
    height: 0 !important;
    padding: 0 !important;
    border: 0px solid var(--c6) !important;
}

.section3div_nominations{
    display: flex;
    flex-direction: column;
}

.section3div_nominations *{
    cursor: pointer;
}

#section3 form .section3div div > button{
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.section3div button{
    background-color: white;
    border: none;
}

form > button{
    background-color: white;
    border-width: 0px 4px 4px 0px;
    border-style: solid;
    border-radius: var(--b-r);
    padding: var(--p-max);
    line-height: 1.5;
    cursor: pointer;
    margin-top: calc(var(--p-max) * 2);
    font-size: var(--f4) !important;
}

form > button[type='submit']{
    min-width: 70%;
    border-color: var(--c2);
    box-shadow: 0px 0px 6px var(--c2);
    background-color: #97d9ff59;
}

form > button[type='button']{
    min-width: 50%;
    border-color: var(--c5);
    box-shadow: 0px 0px 6px var(--c5);
    background-color: #ea516659 !important
}

form > span:not(.shadow_block){
    font-size: var(--f5);
}

form label:not(form > label:first-of-type), form >span.shadow_block{
    margin-top: calc(2 * var(--p-max));
}

form input[type="checkbox"]{
    width: calc(2 * var(--p-max));
    height: calc(2 * var(--p-max));
}

form label[for="oo_do_"], form label[for="fl_do_"], form label[for="team_memb"]{
    display: flex;
    align-items: center;
    gap: var(--p-max);
}

form > i{
    font-size: var(--f5) !important;
}

.s3_h3, .s4_h3, .s5_h3{
    grid-column: 1/3;
    margin-top: 10vh;
    margin-bottom: var(--p-max);
}


/* section3 */

/* section4, section5 */

#section4, #section5{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    gap: calc(2 * var(--p-max));
    justify-items: center;
    align-content: baseline;
    height: 100%;
    height: fit-content;
    position: relative;
}

.s4-5_div1{
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--p-max) + var(--p-min)) calc(2 * var(--p-max));
    margin-top: calc(3 * var(--p-max));
}

.s4-5_div1 span, .s6_div1 span{
    text-align: justify;
}

.s4-5_div1 h6, .s6_div1 h6{
    -webkit-text-stroke: 0px !important;
    font-size: var(--f4);
    text-align: center;
    color: var(--c4);
    /* align-self: anchor-center; */
}

#section4 > button, #section5 > button{
    margin-bottom: 10vh;
}

/* section4, section5 */

/* section6 */

#section6{
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    gap: calc(2 * var(--p-max));
    justify-items: center;
    align-content: baseline;
    height: 100%;
    height: fit-content;
    position: relative;
}

#section6 .calend span:first-of-type{
    margin-top: auto;
}

#section6 .calend span:last-of-type{
    margin-bottom: auto;
}

.s6_div1{
    grid-column: 1 / 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--p-max) + var(--p-min)) calc(2 * var(--p-max));
    margin-top: calc(3 * var(--p-max));
}

/* section6 */

/* section7 */

#section7{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(3 * var(--p-max));
}

#section7 > div:not(.s7_div4){
    width: 100%;
    display: grid;
    gap: calc(2 * var(--p-max));
    justify-items: center;
}

.s7_div1{
    grid-template-columns: repeat(2, 1fr);
}

.s7_div2, .s7_div3{
    grid-template-columns: repeat(6, 1fr); 
}

.s7_div4{
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    text-align: center;
    width: calc((100% - (2 * var(--p-max))) / 2 - 2.5% ) !important;
}


.s7_juri{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--p-max);
}

.s7_juri img{
    width: 100%;
    max-height: 20vh;
    object-fit: contain;
    object-position: center;
}

.s7_juri span{
    text-align: center;
}

.s7_div1_block, .s7_div2_block{
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.s7_div3_block{
    overflow: hidden;
    display: flex;
    flex-direction: column;    
    gap: var(--p-max);
}

.s7_div1_block, .s7_div2_block, .s7_div3_block{
    width: 95%;
}

.s7_div1_block img, .s7_div2_block img, .s7_div4 img{
    width: 100%;
    object-fit: contain;
    object-position: top;
}

.s7_div1_block img, .s7_div4 img{
    height: 25vmin;
}

.s7_div2_block img{
    height: 20vmin;
}

.s7_div3_block img{
    height: 15vmin;
    width: 100%;
    object-fit: contain;
    object-position: center;
}


.s7_div1_block>div, .s7_div2_block > div, .s7_div3_block > div, .s7_div4 > div{
    padding: var(--p-max);
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: calc(var(--p-max) * 2);
    z-index: 1;
    border-radius: var(--b-r);
    background-color: white;
    flex-grow: 1;
}


.s7_div1_block>div *, .s7_div2_block>div *, .s7_div3_block *{
    text-align: center;
    width: 100%;
}

#section7 h6{
    -webkit-text-stroke-width: 0px;
}

#section7 h3{
    position: relative;
    width: 100%;
    text-align: center;
}

#section7 h4{
    font-size: calc((var(--f3) + var(--f4)) / 2);
    -webkit-text-stroke-width: 0px;
}

#swipe-parts{
    width: 4vmax;
    /* height: calc(3*var(--p-max)); */
    border: 2px solid var(--c4);
    border-radius: 100px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

#swipe-parts>div{
    position: absolute;
    top: var(--p-min);
    bottom: var(--p-min);
    left: var(--p-min);
    width: 45%;
    border-radius: 100px;
    background-color: var(--c5);
    cursor: pointer;
}


/* section7 */

/* tabel */

table{
    grid-column: 1 / 3;
    border-collapse: collapse;
}

table tr > *{
    padding: var(--p-max);
}

table tr td{
    border: 1px solid black;
}

table tr:not(:first-child) th{
    padding: calc(2 * var(--p-max)) 0;
}

table tr:first-child th{
    padding-bottom: calc(2 * var(--p-max));
}

/* tabel */

/* footer */

footer{
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    background-color: #ffffff50;
    border-radius: var(--b-r) var(--b-r) 0 0;
    padding: var(--p-max) var(--indent-padding) calc(var(--p-min) * 2 + var(--f5));
    position: relative;
    width: 100%;
    margin-top: calc(var(--p-max) * 2);
    box-shadow: 0 -2px 8px #acacac50;
}

footer > span{
    position: absolute;
    bottom: var(--p-min);
}

footer> div{
    display: flex;
    flex-direction: column;
    /* gap: calc(var(--p-min) / 3); */
    justify-content: space-between;
}

footer *{
    font-size: var(--f5);
}

/* footer */

/* Дополнительные классы */

.active_button_nav{
    background-color: var(--c6);
}

.shadow_block{
    box-shadow: 0 0 4px #acacac50;
    border-radius: var(--b-r);
    padding: var(--p-max);
}

.spanH{
    color: var(--c5);
    -webkit-color-stroke: var(--c5) !important;
    font-size: var(--f3);
}

.unvis{
    display: none !important;
}

.disactive_input{
    cursor: not-allowed !important;
    background-color: #acacac50 !important;
    /* user-select: none; */
}

.disactive_button{
    cursor: wait !important;
    background-color: #acacac50 !important;
    user-select: none !important;
    pointer-events: none !important;
}

.send_form{
    cursor: wait !important;
}

.bold_text{
    -webkit-text-stroke-width: 0.7px !important;
}

.rotate180{
    rotate: 180deg !important;
}

.active_form_list_element{
    background-color: var(--c6) !important;
    border-radius: var(--b-r) !important;
}

.error{
    color: #ea5160;
    -webkit-text-stroke-color: #ea5160;
    -webkit-text-stroke-width: 0.7px;
}

span[data-errors="duplicate"]{
    gap: var(--p-max);
    background-color: white;
    border: 6px solid var(--c4);
    border-radius: var(--b-r);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    padding: calc(4 * var(--p-max));
    text-align: center;
    animation: 2s linear error infinite;
    -webkit-text-stroke-width: 0.3px !important;
    font-size: var(--f2) !important;
}

#notice{
    /* position: absolute;
    bottom: 0;
    left: 0; */
    font-size: var(--f3);
    padding: var(--p-max);
    /* padding-top: calc(var(--p-max) * 3); */
    width: 100%;
    text-align: center;
    background-color: white;
}

.calend{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    gap: var(--p-min);
    padding: calc(var(--p-max) * 2 + var(--p-min)) var(--p-max) var(--p-max) !important;
    position: relative;
    height: fit-content;
}

.calendHead{
    width: 100%;
    height: calc(var(--p-max) * 2);
    background-color: var(--c4);
    position: absolute;
    top: 0;
}

.td_center > *{
    text-align: center;
}


@keyframes error{
    0%{
        border: 6px solid var(--c5);
        box-shadow: 0 0 6px var(--c5);
    }
    50%{
        border: 6px solid var(--c4);
        box-shadow: 0 0 6px var(--c4);
    }
    100%{
        border: 6px solid var(--c5);
        box-shadow: 0 0 6px var(--c5);
    }
}

#fix_page{
    position: fixed;
    bottom: var(--p-max);
    right: var(--p-max);
    cursor: pointer;
    background-color: white;
    z-index: 9;
    transition: 0.2s;
}

#fix_page.active{
    background-color: var(--c6);
}

body.fix{
    overflow-y: hidden !important;
}

#section7 h4{
    width: 100%;
    position: relative;
    padding-right: calc(2 * var(--p-max) + var(--p-min));
    text-align: center;
}

.rotate0{
    rotate: 0deg !important;    
}

.hide_parts{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: calc(2 * var(--p-max));
    cursor: pointer;
    rotate: 180deg;
    transition: 0.2s;
    -webkit-text-stroke-width: 0px !important;
}

/* Дополнительные классы */

/* > 1930px */

@media screen and (min-width: 1930px){
    .s7_div1_block img, .s7_div4 img{
        height: 18vmin;
    }

    .s7_div2_block img{
        height: 13vmin;
    }

    .s7_div3_block img{
        height: 8vmin;
    }
}

/* от 1000px */

@media screen and (min-width: 1000px){
    html, body{
        font-size: 12px;
    }

    form>svg{
        transform: translate(calc(3vmin * 4), 0);
    }

    #section3, #section4, #section5, #section6{
        padding-top: calc(var(--p-max) * 6);
    }

    #fix_page{
        width: 5vmin;
        height: 5vmin;
    }

    .s7_span2{
        grid-column: span 2;
        width: calc(45%);
    }

    .s7_span2:nth-of-type(7){
        justify-self: end;
        transform: translate(calc(4 * var(--p-max)), 0);
    }

    .s7_span2:last-of-type{
        justify-self: baseline;
        transform: translate(calc(-4 * var(--p-max)), 0);
    }
}

@media screen and (max-width: 1000px){
    html, body{
        font-size: 10px;
    }

    section > hr{
        display: block !important;
        margin: var(--p-max) 0;
    }

    .s1_div1{
        grid-column: unset !important;
    }

    nav{
        overflow-x: auto;
    }

    nav > *{
        flex-shrink: 0;
    }

    #section1 > div{
        gap: calc(var(--p-max) * 2);
    }

    #section1 .partner{
        width: 95% !important;
        justify-self: unset !important;
    }

    .s3_h3, .s4_h3, .s5_h3{
        margin: var(--p-max) 0 !important;
        text-align: center;
    }

    .s4-5_div1, .s6_div1{
        margin: 0 !important;
    }

    .s4-5_div1>h6:nth-of-type(2), .s6_div1>h6:nth-of-type(2), .s7_div1>h3:nth-of-type(2){
        grid-row: 3;
    }

    .s4-5_div1>h6:nth-of-type(3), .s6_div1>h6:nth-of-type(3){
        grid-row: 5;
    }

    .s4-5_div1>h6:nth-of-type(4){
        grid-row: 7;
    }

    .s7_div4{
        width: 95% !important;
    }

    #fix_page{
        width: 10vmin;
        height: 10vmin;
    }

}

@media screen and (min-width: 600px) and (max-width: 1000px){
    *:not(#section3, #section4, #section5, hr){
        grid-template-columns: repeat(1, 1fr) !important;
    }

    #section3 > button, #section4 > button, #section5 > button{
        grid-column: 1/3;
    }

    section > hr:not(#section1>hr, #section6>hr){
        grid-column: 1/3;        
    }

    #section3 > button, #section4 > button{
        width: 80%;
    }

    form{
        padding: calc(var(--p-max) * 2) !important;
    }
}

@media screen and (max-width: 600px){
    html, body{
        font-size: 8px !important;
    }
    :root{
        --p-min: 1vmin;
        --p-max: 2vmin;
    }

    *{
        grid-template-columns: repeat(1, 1fr) !important;
    }

    header{
        flex-direction: column;
        align-items: baseline;
    }

    .s3_h3, .s4_h3, .s5_h3, .s4-5_div1{
        grid-column: unset !important;
    }

    #section3>h3:nth-of-type(2), #section4>h3:nth-of-type(2), #section5>h3:nth-of-type(2){
       grid-row: 3;
    }

    #section3 > button, #section4 > button{
        width: 95%;
    }

    form{
        padding: var(--p-max) !important;
        grid-column: unset !important;
    }

    form textarea{
        height: 25vh;
    }

    footer{
        flex-direction: column;
        gap: var(--p-max);
    }

    footer>div{
        gap: var(--p-max);
    }

    footer>span{
        left: 50%;
        transform: translate(-50%, 0);
    }

    .spanH{
        text-align: center;
    }
}

/* 1000px */ 



/* rofls */

.dev{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 25%;
    transform: translate(0, -50%);
    font-size: var(--f1) !important;
}

.rotatealltime{
    animation: 5s linear arotatealltime infinite;
}

@keyframes arotatealltime{
    0%{
        rotate: 0deg;
    }

    100%{
        rotate: 1800deg
    }
}