/*Обнулення стилів*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}
* {
    -webkit-tap-highlight-color: transparent;
}
*:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}



body {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    /* Значення у відсотках або в одиницях em */
    letter-spacing: 1.5px;
    /* Значення в пікселях */
   
    overflow-wrap: break-word;
    overflow: auto;


    /*	text-align: justify;*/
}

body::-webkit-scrollbar {
    width: 0em;
    /* Товщина смуги прокрутки */
}

body::-webkit-scrollbar-thumb {
    background-color: transparent;
    /* Колір смуги прокрутки */
}

.wrapper {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* ////////////////////////////////////////////////////////////////////////////////АНІМАЦІОН */



header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    box-shadow: 0 4px 4px -2px rgba(64, 51, 50, 0.3);

    background-color: #D9C49C;
}

.menu {
    max-width: 90%;
    margin: 0px auto;
    padding: 0px 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 60px;
    align-items: center;
}



.menu__logolink:hover .menu__image {
    transform: scale(1.1);
}


.menu__logolink {
    flex: 0 0 60px;
    position: relative;
    z-index: 5;
    display: flex;
    align-items:center;
}
.menu__logolink p{
  margin-left: 10px;
  text-decoration: none;
  text-wrap: nowrap;
  font-size: 22px;
    font-weight: 700;
    color:#403332;

}


.menu__image {
    width: 100%;
    max-width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}


.menu__burger {
    display: none;
}

.menu__list {
    display: flex;
    position: relative;
    z-index: 4;
}

.menu__list li {
    margin: 0px 0px 0px 30px;
}

.menu__link {
    color: #403332;
    font-weight: 700;
    font-size: 18px;
	position: relative;
}


.menu__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #403332;
    transform: scaleX(0); 
    transform-origin: center; 
    transition: transform 0.3s ease-in-out; 
}

.menu__link:hover::after {
    transform: scaleX(1); 
}



@media (max-width: 1100px) {
    body.lock {
        overflow: hidden;
    }

    .menu {
        height: 50px;
    }

    .menu__logolink {
        flex: 0 0 45px;
		margin-left: 10px;
    }
    .menu__image {
        width: 100%;
        max-width: 45px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .menu__logolink p{
      margin-left: 10px;
      text-decoration: none;
      text-wrap: nowrap;
      font-size: 18px;
        font-weight: 700;
        color:#403332;
    
    }

    .menu__burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 5;
        cursor: pointer; 
    }

    
    .menu__burger span {
        position: absolute;
        background-color: #403332; 
        left: 0;
        width: 100%;
        height: 3px;
        top: 9px; 
        transition: all 0.3s ease 0s;
    }


    .menu__burger:before {
        content: '';
        background-color: #403332; 
        position: absolute;
        width: 100%;
        height: 3px;
        top: 1px; 
        left: 0;
        transition: all 0.3s ease 0s;
    }

   
    .menu__burger:after {
        content: '';
        background-color: #403332; 
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: 1px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .menu__burger.active span {
        transform: scale(0);
    }

    .menu__burger.active:before {
        transform: rotate(45deg);
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu__burger.active:after {
        transform: rotate(-45deg);
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .menu__block {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #D9D6C7;
        overflow: auto;
        padding: 70px 10px 20px 10px;
        transition: all 0.3s ease 0s;
    }

    .menu__block.active {
        top: 0;
    }

    .menu__list {
        display: block;
    }

    .menu__list li {
        margin: 0px 0px 20px 0px;
    }

    .menu__link {
        font-size: 18px;
        padding: 10px 5px;
    }
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.content {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    width: 100%;
    
    padding-bottom: 20px;
    padding-top: 60px;
    background-color: #D9D6C7;
}





.block__title{
    width: 100%;
    height: 50px;
    font-size: 26px;
    font-weight: 800;
    color:#403332;
    margin: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.block__title img{
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.block{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.row{
  
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;


}
.row-start{
  
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 60px;


}
.block__text{
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 60px - 350px);
    
}

.block__text p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #403332;
    word-wrap: break-word; /* старі браузери */
    overflow-wrap: break-word; /* Сучасні */
    line-height: 2;
}
.block__text a {
   
    color: #734B34;
   text-decoration: none;
   font-weight: 700;
}

.block__text span {
   
   
    background-color: #D9C49C;
    display: inline; 
    padding: 3px;
    border-radius: 5px;

}




.block__img{
    background-color:#e8e5d8;
    border-radius: 10px;
    position:relative;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;

    
}

.author__img{
    width: 350px;
  height: auto;
  border: solid 6px #403332;
  border-radius: 10px;
  
}

.author__name{
    position:absolute;
    bottom: 4px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  font-weight: 700;
  color: #D9D6C7;
}





@media (max-width: 1250px) {


    .block__title{
      
        height: 45px;
        font-size: 24px;
        
    }
    
    .block__title img{
        width: 45px;
        height: 45px;
        
    }
    
   
    
    .row{
      
   
        padding: 10px 40px;
    
    
    }
    .row-start{
      
        
        padding: 10px 40px;
    
    
    }
    .block__text{
       
        max-width: calc(100% - 40px - 320px);
        
    }
    
    .block__text p {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
       
        line-height: 2;
    }

    
    .block__img{
        
        max-width: 320px;
    margin-bottom: 10px;
    
        
    }
    
    .author__img{
        width: 320px;
      
    }
    
    .author__name{

        font-size: 18px;
    
    }
}

@media (max-width: 1000px) {

    .block__title{
      
        height: 40px;
        font-size: 20px;
        
    }
    
    .block__title img{
        width: 40px;
        height: 40px;
        
    }
    
   
    
    .row{
        justify-content: center;
    align-items: center;
    padding: 10px 60px;
   
        padding: 6px 10px;
    
    
    }
    .row-start{
      
        
        padding: 0px 0px;
    
    
    }
    .block__text{
        order: 2; 
        max-width: calc(100% - 20px);
        
    }
    
    .block__text p {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
       
        line-height: 2;
    }

    
    .block__img{
        order: 1;
        max-width: 300px;
    
    
        
    }
    
    .author__img{
        width: 300px;
        border: solid 4px #403332;
    }
    
    .author__name{

        font-size: 16px;
    
    }
}




@media (max-width: 660px) {
    .block__img{
        order: 1;
        max-width: 250px;
    
    
        
    }
    
    .author__img{
        width: 250px;
        border: solid 4px #403332;
    }
    
    .author__name{
    
        font-size: 14px;
    
    }
}




/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.block__item {
    width: 100%;
    z-index: 3;
   /* background-color: #D9C49C; */
   padding: 10px 60px;
   
  
}
.block__item__title {
    width: 100% ;
    min-height: 55px;

display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 4px -2px rgba(64, 51, 50, 0.3);

 
}

.block__item__title h2{

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  font-weight: 700;
  color: #403332;
 
}

.item__button{
    cursor: pointer;
    background-color:#D9C49C;
    border: solid 6px #403332;
  border-radius: 10px;
  padding: 5px 5px;

 
}

.img__button{
    width:40px;
    margin-right:5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

 .block__item__title:hover .img__button {
    transform: scale(1.1);
   
} 

.block__item__arrow{
    cursor: pointer;
display: flex;
justify-content: flex-start;
align-items: center;
margin-right: 10px;
}


.img-rotate {
    transform: rotate(0deg); 
    width:30px;
    transition: transform 0.3s ease;
  }
  
  .rotated {
    transform: rotate(180deg); 
  }



.block__item-info {
    max-height: 0;
    overflow: hidden;
    background-color: #e8e5d8;
    width: calc(100% - 20px);
    border-bottom-right-radius:4px;
    border-bottom-left-radius:4px;
    padding: 0px 10px;
    margin: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: max-height 0.3s ease-in-out;
    
}



.skills__area {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 10px;
}


.skills__list {
    flex: 1 0 calc(33.33% - 30px);
    margin: 5px;
  display: flex;
  justify-content: flex-start;
    align-items: center;
    
}

.skills__list p {

    font-size: 18px;
    font-weight: 700;
    color: #403332;
   
      background-color: #D9C49C;
   
    padding: 3px;
    border-radius: 5px;
}
.skill {
    display: flex;
    justify-content: flex-start;
    align-items: center;
margin: 5px 5px;
    font-size: 16px;
    font-weight: 700;
    color: #403332;
}

.img__list{
    width:40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-right: 5px;
}

 .img__list:hover {
    transform: scale(1.1);
   
} 
@media (max-width: 1500px) {
    .skills__area {
        width: 100%;
        display: flex;
         flex-direction: column; 
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    
    .skills__list {
        flex: 1 0 calc(100% - 20px);
        padding: 0px;
      display: flex;
      justify-content: flex-start;
        align-items: center;
    }
}


@media (max-width: 1250px) {

    .block__item {
    
       padding: 10px 40px;
       
      
    }
    .block__item__title {
       
        min-height: 50px;

    }
    
    .block__item__title h2{

        font-size: 18px;
   
     
    }

    
    .img__button{
        width:36px;
       
    }

    .img-rotate {
       
        width:26px;
       
      }
      

    
.block__item-info {
    max-height: 0;
    overflow: hidden;
    background-color: #e8e5d8;
    width: calc(100% - 20px);
    border-bottom-right-radius:4px;
    border-bottom-left-radius:4px;
    padding: 0px 10px;
    margin: 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: max-height 0.3s ease-in-out;
    
}



.skills__area {
    width: 100%;
    display: flex;
     flex-direction: column; 
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}


.skills__list {
    flex: 1 0 calc(100% - 20px);
    padding: 0px;
  display: flex;
  justify-content: flex-start;
    align-items: center;
}


    
    .img__list{
        width:40px;
 
    }


}
    @media (max-width: 1000px) {
        .block__item {
    
            padding: 10px 10px;
            
           
         }
         .block__item__title {
            
             min-height: 45px;
     
         }
         
         .block__item__title h2{
     
             font-size: 16px;
        
          
         }
         .item__button{
       
            border: solid 4px #403332;
       
        
         
        }
       
         
         .img__button{
             width:32px;
            
         }
     
         .img-rotate {
            
             width:22px;
            
           }
           
     
         
     .block__item-info {
         max-height: 0;
         overflow: hidden;
         background-color: #e8e5d8;
         width: calc(100% - 10px);
         border-bottom-right-radius:4px;
         border-bottom-left-radius:4px;
         padding: 0px 5px;
         margin: 0px 5px;
         display: flex;
         justify-content: space-between;
         align-items: flex-start;
         transition: max-height 0.3s ease-in-out;
         
     }
     
     
     
     .skills__area {
         width: 100%;
         display: flex;
          flex-direction: column; 
         justify-content: center;
         align-items: flex-start;
         flex-wrap: wrap;
       
     }
     
     
     .skills__list {
         flex: 1 0 calc(100% - 10px);
         padding: 0px;
         
       display: flex;
       justify-content: flex-start;
         align-items: center;
     }



     
     .skills__list p {
            
        font-size: 14px;
        margin: 5px 5px;
        margin-top: 10px;
     }
     .skill {
         display: flex;
         justify-content: flex-start;
         align-items: center;
     margin: 5px 5px;
    
         font-size: 16px;
         font-weight: 700;
         color: #403332;
     }
         
         .img__list{
             width:28px;
      
         }
    }
    @media (max-width: 620px) {

        .block__item {
    
            padding: 10px 10px;
            
           
         }
         .block__item__title {
            
             min-height: 45px;
     
         }
         
         .block__item__title h2{
     
             font-size: 16px;
        
          
         }
         .item__button{
       
            border: solid 4px #403332;
       
        
         
        }
       
         
         .img__button{
             width:32px;
            
         }
     
         .img-rotate {
            
             width:22px;
            
           }
           
     
         
     .block__item-info {
         max-height: 0;
         overflow: hidden;
         background-color: #e8e5d8;
         width: calc(100% - 10px);
         border-bottom-right-radius:4px;
         border-bottom-left-radius:4px;
         padding: 0px 5px;
         margin: 0px 5px;
         display: flex;
         justify-content: space-between;
         align-items: flex-start;
         transition: max-height 0.3s ease-in-out;
         
     }
     
     
     
     .skills__area {
         width: 100%;
         display: flex;
          flex-direction: column; 
         justify-content: center;
         align-items: flex-start;
         flex-wrap: wrap;
     }


        .skills__list {
            flex: 1 0 calc(100% - 10px);
            padding: 0px;
          display: flex;
          flex-direction: column;
          justify-content: center;
            align-items: flex-start;
        }
     
        
            .skills__list p {
            
               font-size: 14px;
               margin: 5px 5px;
            }
            .skill {
                display: flex;
                justify-content: flex-start;
                align-items: center;
            margin: 5px 5px;
            
                font-size: 16px;
                font-weight: 700;
                color: #403332;
            }
        
    }
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */



.block__nav{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    padding: 10px 60px;
    background-color:#D9C49C;
    /* border-bottom: solid 6px #403332; */
    box-shadow: 0 4px 4px -2px rgba(64, 51, 50, 0.3);
}

.block__nav p{
    font-size: 20px;
    font-weight: 700;
    color: #403332;


    display: flex;
   
    justify-content: center;
    align-items: center;
}



.block__panel{
    flex: 1 0 calc(50% - 40px);
    margin: 10px;
   
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
    align-items: flex-start;

    background-color: #e8e5d8;
    border-radius: 10px;
 border: solid 6px #403332;
 padding-bottom: 10px;
 
}


.block__panel h2{

    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
  font-weight: 700;
  color: #403332;
  background-color:#D9C49C;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.block__panel p {

    font-size: 18px;
    font-weight: 700;
    color: #403332;
    padding: 5px 10px;
    border-radius: 5px;
}





@media (max-width: 1250px) {
    .block__nav{
  
        padding: 10px 40px;
       
    }
    
    .block__nav p{
        font-size: 18px;

    }
    
    
    
    .block__panel{
        flex: 1 0 calc(50% - 20px);
        border: solid 6px #403332;
     
    }
    
    
    .block__panel h2{

        font-size: 18px;
     
    }
    
    .block__panel p {
    
        font-size: 16px;
       
    }
    
    
}

    @media (max-width: 1106px) {
        .block__nav{
  
            padding: 10px 10px;
            display: flex;
   flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
        
        .block__nav p{
            font-size: 16px;
    margin-bottom: 5px;
        }
        
        
        
        .block__panel{
            flex: 1 0 50%;
          
         
        }
        
        
        .block__panel h2{
    
            font-size: 16px;
         
        }
        
        .block__panel p {
        
            font-size: 14px;
           
        }
        
    }

    @media (max-width: 1000px) {
        .block__panel{
            flex: 1 0 50%;
            border: solid 4px #403332;
         
        }
        
    }



/* ////////////////////////////////////////////////// слайдер */
.present {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
     overflow: hidden;
}

.container {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
   

}

/* Плавність при завантаженні */
.slider-block {
    display: flex;
    height: auto;
    opacity: 1;
    transition: transform 0.6s ease;
}


.slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    transition: transform 0.6s ease, opacity 0.6s ease;
}


/* Для нецентральних слайдів */
.slide.inactive {
    opacity: 0.5;
   
    pointer-events: none;
    transition: all 0.5s ease; 
}




.slider {
    width: 100%;
    height: auto;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slide-content {
    width: 100%;
    z-index: 20;
    background-color: #e8e5d8;
    border: solid 6px #403332;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Верхній блок */
.slide__top {
    background-color: #D9C49C;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #403332;
    width: 100%;
    position: relative;
    z-index: 25;
     transition: opacity 0.3s ease;
}

.slide__top img {
    width: 40px;
    cursor: pointer;
    margin-right: 5px;
}

/* Нижній блок */
.slide__bottom {
    text-decoration: none;
    background-color: #403332;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #e8e5d8;
    width: 100%;
     transition: opacity 0.3s ease;
}

.slide__panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Стилі для кнопок */
.arrow-prev, .arrow-next {
    height: calc(100% - (var(--slide-top-height) + var(--slide-bottom-height) + 4%));
    cursor: pointer;
    position: absolute;
    z-index: 15;
    bottom: 0px;
    display: flex;
    opacity: 0.5;
    align-items: center;
    color: #403332;
    font-size: 20px;
    font-weight: 700;
    top: calc(var(--slide-top-height));
}

.arrow-prev {
    left: 6px;
    justify-content: flex-start;
    width: 50%;
}

.arrow-next {
    right: 6px;
    justify-content: flex-end;
    width: 50%;
}

.svg__link {
    width: 20px;
    margin-right: 5px;
}



/* Для великих екранів */
@media (min-width: 1500px) {
    .container {
        max-width: 800px;
        width: 100%;
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1000px) {
    .container {
        max-width: 100%;
    }

    .slide-content {
        
        border: solid 4px #403332;
        border-radius: 0;
    }

    .arrow-prev, .arrow-next {
        font-size: 14px;
    }

    .slide__top {
        background-color: #D9C49C;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        color: #403332;
        width: 100%;
    }

    .slide__top img {
        width: 24px;
        cursor: pointer;
        margin-right: 5px;
    }

    .slide__bottom {
        text-decoration: none;
        background-color: #403332;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        color: #e8e5d8;
        width: 100%;
    }
}


.svg__link{
    width: 15px;
    margin-right: 5px;
}



/* //////////////////////////////////////////////////// */

/* ////////////////////////////////////////////////////////// */



/* .......................................................................////////////////////////////////////////////////////////////////////// */

footer {

	width: 100%;
	min-height: 200px;
	background-color: #403332;
    /* border-top: solid 6px #403332; */

    box-shadow: 0 -4px 4px -2px rgba(64, 51, 50, 0.3); 
position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.block__footer{
    width: calc(80% - 20px);
   margin: 10px 10px;
margin-bottom: 40px;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}

/* .list__footer {

} */
.link__footer a{

    display: flex;
    justify-content: flex-start;
    align-items: center;
margin: 5px 5px;
    font-size: 16px;
    font-weight: 700;
    color: #D9D6C7;

}


.link__footer:hover .img__list{
    transform: scale(1.1);
}

.list__footer p {

    font-size: 18px;
    font-weight: 700;
    color: #D9C49C;
   
    padding: 5px;
    border-radius: 5px;
}

.block__footer-bottom{
    position:absolute;
    bottom: 0;
    right: 0;
    background-color: #D9D6C7;
   z-index: 10;
    min-height: 30px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    color:#403332;
    font-size: 14px;

}




@media (max-width: 1250px) {
    footer {

        min-height: 100px;
        
    }
    .block__footer{
        width: calc(90% - 20px);
       margin: 5px 10px;
    margin-bottom: 40px;
 
    }
    

    .link__footer a{
    
    margin: 3px 3px;
        font-size: 14px;

    
    }
    

    .list__footer p {
    
        font-size: 16px;
       
    }
    
    .block__footer-bottom{
       
        min-height: 26px;

        font-size: 12px;
    
    }
}

@media (max-width: 1000px) {
    footer {

        min-height: 100px;
        
    }
    .block__footer{
        width: calc(90% - 20px);
       margin: 5px 10px;
    margin-bottom: 40px;
    flex-direction: column;
 
    }
    

    .link__footer a{
    
    margin: 3px 3px;
        font-size: 14px;

    
    }
    

    .list__footer p {
    
        font-size: 16px;
       
    }
    
    .block__footer-bottom{
       
        min-height: 26px;

        font-size: 12px;
    
    }
}



















































