:root {

    --white: aliceblue;

    --gray: #1a1a18;

    --background: #f5f5dc;

    --background2: #faebd7;

    --fon1: #1420DF;

    --fon2: #F700B6;

}



* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



@font-face {

    font-family: 'Montserrat-Medium';

    src: url(../fonts/Montserrat-Medium.ttf);

}



@font-face {

    font-family: 'GT-Eesti-Pro-Display-thin';

    src: url(../fonts/gteestiprodisplay_thin.otf);

}



@font-face {

    font-family: 'GT-Eesti-Pro-Display-medium';

    src: url(../fonts/gteestiprodisplay_medium.otf);

}



@font-face {

    font-family: 'Montserrat-bold';

    src: url(../fonts/Montserrat-Bold.ttf);

}



@font-face {

    font-family: 'Montserrat-regular';

    src: url(../fonts/Montserrat-Regular.ttf);

}



@font-face {

    font-family: 'Montserrat-Black';

    src: url(../fonts/Montserrat-Black.ttf);

}



html,

body {

    background-color: #00000000;

    font-family: 'Montserrat-Medium';

    height: 100%;





}



html {

    scroll-behavior: smooth;

}



.body_wrapper {

    overflow: hidden;

    width: 100%;

    position: relative;

}



.grid {

    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows: 1fr 270px;

    grid-template-areas:

        /* "header" */

        "main"

        "footer";

}



a {

    text-decoration: none;

}



li {

    list-style-type: none;

}



header {

    display: none;

}



/* Навигационное меню */



.nav {

    /* max-width: 1440px; */

    display: flex;

    align-items: self-start;

    margin: auto;

    min-height: 100vh;

    justify-content: space-between;

    color: var(--red);

    padding: 0px 30px 10px 00px;

    /* z-index: 9999999; */



}



.logo img {

    width: 250px;

}






/* МЕНЮШКА БУРГЕР */

.nav-link {



    border-radius: 10px;

    margin-top: 10px;

    background: linear-gradient(135.00deg, #F700B6, #1420DF);

    padding: 0px 10px;

    z-index: 3;

}



.nav-link a {

    color: var(--white);

    padding: 10px;

    z-index: 3;

}



.menu_2 {

    position: absolute;

    right: -350px;

    top: 0;

    background-color: #342A67;


    width: 350px;

    height: 100vh;

    visibility: hidden;

    transition: transform .5s, visibility .2s;

    padding: 60px 0px 0px 0px;

}



.menu_2 li a {

    display: block;

    padding: 15px;

}



.menu_2 li {

    transition: all .3;

}



.menu_2 li a:hover {

    transition: all .3s;

    color: var(--gray);

    background-color: beige;

}



#checkbox_toggler_2 {

    display: none;

}



.hamburger_2 {

    font-size: 24px;

    cursor: pointer;

    display: block;

    padding: 20px 0px;



}



#checkbox_toggler_2:checked~.menu_2 {

    display: block;

    max-height: 150%;

    transform: translateX(-100%);

    visibility: visible;



}





.hamburger-line_2 {

    background-color: var(--white);

    display: block;

    width: 24px;

    height: 2px;

    position: relative;

}







.hamburger-line_2::before,

.hamburger-line_2::after {

    background-color: var(--white);

    content: '';

    display: block;

    position: absolute;

    transition: all .3s;

    width: 100%;

    height: 100%;

    z-index: 3;

}



.hamburger-line_2::before {

    top: 7px;

}



.hamburger-line_2::after {

    top: -7px;

}



#checkbox_toggler_2:checked~.hamburger_2 .hamburger-line_2::before {

    transform: rotate(-45deg);

    top: 0;

}



#checkbox_toggler_2:checked~.hamburger_2 .hamburger-line_2::after {

    transform: rotate(45deg);

    top: 0;

}



#checkbox_toggler_2:checked~.hamburger_2 .hamburger-line_2 {

    background-color: transparent;

}





/* ОСНОВНОЙ БЛОК */



main {

    grid-area: main;

    grid-template-rows: repeat(4, 1fr);

    grid-template-areas:

        "main_video"

        "leaders"

        "direction"

        "feed_back";

}



/* БЛОК1 С КАРТИНКОЙ И ВИДЕО */



.full_screen {

    position: relative;

    min-height: 100vh;

    display: flex;

    flex-direction: column;

}



.full_screen_body {

    position: relative;

    z-index: 2;

}



.full_screen_menu {}



.full_screen_video {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* Анимированная стрелочка */

.arrows {

    position: absolute;

    width: 50px;

    bottom: 30px;

    left: calc(50% - 25px);

    animation: arrowDown 2s infinite;

}



.arrows.two {

    animation-delay: 1s;

    opacity: 0;

}



@keyframes arrowDown {

    0% {

        bottom: 30px;

        opacity: 1;

    }



    /* 50%{

        bottom:0;

    } */

    100% {

        bottom: 0px;

        opacity: 0;

    }



}





/* Блок с лидерами */



.leaders {

    grid-area: leaders;

    /* height: 100vh; */

    background: linear-gradient(135.00deg, #F800B6, var(--fon1) );



}



.leaders_content {

    display: grid;

    grid-template-columns: repeat(3, 450px);

    grid-template-rows: 1fr;

    grid-column-gap: 50px;

    margin: 0 auto;

    justify-content: center;

    width: 1440px;







}



/* все связанное с карточками */

.card1,

.card2,

.card3 {

    width: 350px;

    margin: 0 auto;

    height: 550px;

    background: rgba(75, 72, 72, 0.26);

    border-radius: 20px;

    box-shadow: 16px 16px 30px 11px rgba(255, 255, 255, 0.3);

}



.card_type {

    padding: 40px;

    padding-top: 250px;

    background-position: 50% 10%;

    background-repeat: no-repeat;

    background-size: 200px;



}


.card_type h3 {

    font-family: Montserrat-bold;

    font-size: 14px;

    text-align: center;

    color: #FFFFFF;



}



.card_type P {

    font-family: Montserrat-regular;

    font-size: 25px;

    text-align: center;

    color: #FFFFFF;

}



.card_type_icon1 {
    background-image: url(../image/SVG/directors/Svetlana_georg.svg )
}

.card_type_icon2 {
    background-image: url(../image/SVG/directors/IRINA_ALEKS.svg )

}

.card_type_icon3 {
    background-image: url(../image/SVG/directors/Tatiana_Andr.svg )}



/* бегущие строки */



.animation_line {

    overflow: hidden;

}



.animation_line div {

    animation: running-text 45s linear infinite;

}



.animation_line2 div {

    animation: running-text2 45s linear infinite;

}



.text {

    display: inline-block;

    padding: 15px;

    color: #fff;

    text-align: center;

    font-size: 30px;

}



@keyframes running-text {

    0% {

        transform: translateX(100%);

    }



    100% {

        transform: translateX(-100%);

    }



}



@keyframes running-text2 {

    0% {

        transform: translateX(-100%);

    }



    100% {

        transform: translateX(100%);

    }



}



/* 3й блок с направлениями */

.direction {

    /* height:812px; */

    background: linear-gradient(45.00deg, #F800B6, var(--fon1) );

}



.text_direction {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    padding: 50px 70px;



}



.line_before {

    background-color: var(--white);

    max-width: 1800px;

    width: 40%;

    margin: 0 20px 0 30px;

    border: 8px solid white;

    height: 8px;



}



.direction h3 {

    font-family: Montserrat-Black;

    color: aliceblue;

    font-size: 45px;

    display: inline-block;

}







.line_after {

    background-color: var(--white);

    max-width: 1800px;

    width: 100%;

    margin: 0 20px 0 30px;

    height: 8px;

    border: 8px solid white;

}



/* Карточки с направлениями */



.cards {

    display: grid;

    grid-template-columns: repeat(3, 440px);

    grid-template-rows: 1fr;

    max-width: 1440px;

    grid-gap: 40px;

    margin: 0 auto;

    justify-content: center;





}



.card_direction{

padding: 50px 0 50px 0;

}



.card_direction_1 {

    width: 440px;

    height: 260px;

    background-color: #1420DF;

    border-radius: 40px;

    position: relative;

    box-shadow: 16px 16px 30px 11px rgba(255, 255, 255, 0.25);

}



.cards2 {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: 1fr;

    width: 90%;

    grid-gap: 40px;

    margin: 0 auto;

}





.margin {

    padding-top: 30px;

}



/* Бокс для позиционирования абсолюnнх обьектов, нужно для нижних карточек */

.ramka {

    position: relative;

    /* display: inline-block; */



}



/* наполнение синей карточки */

.color_blue {

    background-color: #214FE2;

}



.color_blue h3{

    font-size: 36px;

    display: inline-block;

}



.title1{

    position: absolute;

    top:10%;

    left:8%

}



.title2{

    position: absolute;

    top:27%;

    left:27%

}



.card_direction_icon{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/Volonteer.svg);

    background-position: 90% 70%;

    background-repeat: no-repeat;

    background-size: 150px;



}





.direction_btn{

    background: white;

    width: 170px;

    height: 38px;

    position: absolute;

    top:74%;

    left: 10%;

    border-radius: 40px;

    justify-content: center;

    align-items: center;

    display: flex;

    font-family: GT-Eesti-Pro-Display-thin;

    font-size: 22px;

    color:black

}



.direction_btn:hover{

    background-color: rgba(0, 0, 0, 0);

    border: 1px solid white;

    color: white;

}





.color_red {

    background-color: #FD4F4A;



}



.color_red h3{

    font-size: 36px;



}



.card_direction_icon2{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/Pioneers.svg);

    background-position: 90% 70%;

    background-repeat: no-repeat;

    background-size: 110px;

}



.color_orange {

    background-color: #FE8C1A;

}



.title_kvn h3{

    font-size: 30px;



}



.card_direction_icon3{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/YouniorSTANDUP.svg);

    background-position: 100% 70%;

    background-repeat: no-repeat;

    background-size: 230px;

}



.title_kvn{

    position: absolute;

    top:10%;

    left:5%

}



.title_kvn2{

    position: absolute;

    top:23%;

    left:20%

}







.color_yellow {

    position: absolute;

    right: 0;

    top: 0;

    background-color: #E8D70C;

}



.card_direction_icon4{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/TOC.svg);

    background-position: 80% 75%;

    background-repeat: no-repeat;

    background-size: 110px;

}



.title_toc{

    position: absolute;

    top:10%;

    left:5%

}



.title_toc2{

    position: absolute;

    top:23%;

    left:5%

}



.title_toc h3{

    font-size: 30px;

}



.title_toc2 h3{

    font-size: 26px;



}





.color_green {

    background-color: #9ACD32;

    /* position: absolute; */

    left: 0;

}



.card_direction_icon5{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/GAZETA.svg);

    background-position: 90% 75%;

    background-repeat: no-repeat;

    background-size: 150px;

}



.color_green h3 {

    font-size: 36px;



}



.title_gazeta{

    position: absolute;

    top:10%;

    left:5%

}



.title_gazeta2{

    position: absolute;

    top:23%;

    left:20%

}







/* Вторая страничка слайдера с карточками */

/* Карточка проектного офиса */

.Project_title{

    position: absolute;

    top:10%;

    left:5%

}



.Project_title2{

    position: absolute;

    top:23%;

    left:35%

}



.card_direction_icon1_1{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/GRANT.svg);

    background-position: 90% 75%;

    background-repeat: no-repeat;

    background-size: 150px;

}



/* Карточка ПМК */



.card_direction_icon2_2{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/YOUNGER_CLUB.svg);

    background-position: 90% 75%;

    background-repeat: no-repeat;

    background-size: 150px;

}



.pmk_title {

    position: absolute;

    top:10%;

    left:5%



}

.pmk_title2 {

    position: absolute;

    top:37%;

    left:5%



}



.pmk_title h3{

    font-size: 30px;



}

.pmk_title2 h3{

    font-size: 34px;



}



/* Карточка профилкатика */



.card_direction_icon3_3{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/PROFILACTICA.svg);

    background-position: 90% 75%;

    background-repeat: no-repeat;

    background-size: 150px;

}



.profilaction {

    position: absolute;

    top:15%;

    left:5%

}





.profilaction h3{

font-size: 36px;

}



/* Карточка психологическая поддержка */



.color_blue_salat{

    background-color: #5D80F0;

    position: absolute;

    right: 0;

    top: 0;

}



.card_direction_icon4_4{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/PSYCHOLOGY.svg);

    background-position: 90% 75%;

    background-repeat: no-repeat;

    background-size: 150px;

}



.psuchlogy_title1{

    position: absolute;

    top:7%;

    left:5%

}



.psuchlogy_title2{

    position: absolute;

    top:40%;

    left:5%

}



.psuchlogy_title1 h3{

    font-size: 32px;

}



.psuchlogy_title2 h3{

    font-size: 30px;

}



/* КАРТОЧКА ММЦ */



.color_green_blue{

    background-color: #0D9B9C;

}



.card_direction_icon5_5{

    background-image:url(../image/SVG/DIRECTIONS_LOGOS/MMC.svg);

    background-position: 90% 75%;

    background-repeat: no-repeat;

    background-size: 150px;

}

.mmc-title1{

    position: absolute;

    top:7%;

    left:5%

}



.mmc_title2{

    position: absolute;

    top:35%;

    left:5%

}



.mmc-title1 h3{

    font-size: 28px;

}



.mmc_title2 h3{

    font-size: 32px;

}



/* Блок обратная связь */



.feed_back{

    background: linear-gradient(135.00deg, #F800B6, var(--fon1) );
    height: 1100px;
    position: relative;

}



.feed_back_filling{

    position: relative;

    height: 100vh;

}



.text_feed_back{

    position: absolute;

    top: 3%;

    left: 10%;



}



.text_feed_back h3{

    font-size: 96px;

    font-family: Montserrat-Black;

    color: #fff;

}







/* подвал сайта */
footer{
    background-color: #1E1357;
    grid-area: footer;
    height: 270px;
    align-items: center;
    display: flex;
  
  }
  .all_object{
    width: 1440px;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px 0px 20px ;
    
  
    margin: auto;
  }
  .all_object a{
    color:var(--white);
    display: block;
  }
  
  .all_object span{
    color:var(--white);
    font-family:GT-Eesti-Pro-Display-medium;
    font-size: 36px;;
  }
  
  /* левый подвала */
  .left a{
    padding-bottom: 15px;
  }
  .left a img{
   max-width: 250px;
    padding-bottom:20px ;
  }
  
  /* центральный блок */
  .center li{
    padding-bottom: 8px;
    font-family: GT-Eesti-Pro-Display-thin;
  font-size: 18px;
  }
  .footer_nav :hover{
    color: #F800B6;
  }