 /* General */

:root {

    --mustard: #CCCC66;
    --mustard-dark: #9F9F04;
    --black: #272727;
    --grey: #D9D9D9;
    --grey-dark: #9D9D9D;
    --white: #fff;
    --cookie-bg-color: #E5E5E5;

    
    --accent-color: #fff;
    --header-color: rgba(255, 255, 255, 0.85);
    --text-color: #272727;
    --link-menu-color: #9F9F04;
    --logo-tags-color: #CCCC66;
    --bg-img: none;
}


html {
    box-sizing: border-box;
}
 *, *::before, *::after {
    box-sizing: inherit;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Минимальная высота - вся видимая область */
    margin: 0;
    overflow-x: hidden;
}

body, body .header {
    background-color: var(--accent-color);
}

.main {
  flex-grow: 1; /* Контент растягивается */
}

.footer {
  flex-shrink: 0; /* Футер не сжимается */
}

.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 48px;
    margin: 0 auto;
}


.container-text {
    max-width: 1116px;
    padding: 0 20px;
    margin: 0 auto;
}

video {
    clip-path: inset(1px 2px);
}

a {
    color: var(--link-menu-color);
    text-decoration: none;
    transition: 0.2s ease;
}
a:hover {
    text-decoration: underline;
}

p, span {
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0.01rem;
    margin-top: 0;
}
p {
    margin-bottom: 10px;
}

h2 {
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 50px;
    color: var(--text-color);
    letter-spacing: 0;
    margin-bottom: 30px;
}

h3 {
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--text-color);
    letter-spacing: 0;
    margin-bottom: 13px;
    margin-top: 0;
}

h4 {
    font-family: 'Merriweather-Italic', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0rem;
    margin-bottom: 7px;
    margin-top: 0;
}

h5 {
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0rem;
    margin-bottom: 7px;
    margin-top: 0;
}

ul li, ol li {
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0rem;
    margin-bottom: 7px;
}

.no-line-hover:hover {
    text-decoration: none;
}

/* Header */

header {
    position: relative;
    margin-bottom: 183px;
}

.header {
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 1000;
    align-items: center;
    width: 100%;

    /* background: var(--header-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */

    transition: 
        transform 0.35s cubic-bezier(.4,0,.2,1),
        opacity 0.35s ease;

    opacity: 1;

    height: 88px;
    padding: 20px 0;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link{
    display: flex;
    transition: 0.5s ease;
    text-decoration: none;
}
.logo-link:hover {
    text-decoration: none;
}

.img-logo {
    display: flex;
    align-items: center;
}
.img-logo > * {
    width: 48px;
    height: 48px;
    /* background-color: var(--logo-tags-color); */
    margin-right: 27px;
}

.title-logo,.text-logo {
    letter-spacing: 0.03rem;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    font-family: Commissioner, sans-serif;
    font-weight: 400;
    line-height: 30px;
}

.title-logo {
    margin-right: 15px;
    letter-spacing: 0.04rem;
    font-weight: 900;
    font-family: Commissioner, sans-serif;
}

/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-links {
    margin: 0;
    list-style: none;
    letter-spacing: 0rem;
    position: relative;
    padding-left: 0;
}

.menu-links a {
    text-decoration: none;
}


.underbar{
  width: 0;
  height: 1px;
  bottom: -10px;
  right:0;
  position: absolute;
  transition: 0.5s ease;
}

.menu-links li {
  float: left;
  padding: 0 19px;
  transition: 0.5s ease;
  font-size: 20px;
    letter-spacing: 0rem;
    margin: 0;
}


  .menu-links li:nth-of-type(1).active ~ .underbar  {
    right: 356px;
    width: 82px;
    background: var(--link-menu-color);
  }

  .menu-links li:nth-of-type(2).active ~ .underbar  {
    right: 266px;
    width: 50px;
    background: var(--link-menu-color);
  }
  .menu-links li:nth-of-type(3).active ~ .underbar  {
    right: 137px;
    width: 89px;
    background: var(--link-menu-color);
  }


  .menu-links li:nth-of-type(1):hover ~ .underbar  {
    right: 356px;
    width: 82px;
    background: var(--link-menu-color);
  }

  .menu-links li:nth-of-type(2):hover ~ .underbar  {
    right: 266px;
    width: 50px;
    background: var(--link-menu-color);
  }
  .menu-links li:nth-of-type(3):hover ~ .underbar {
    right: 137px;
    width: 89px;
    background: var(--link-menu-color);
  }
  .menu-links li:nth-of-type(4):hover ~ .underbar{
    right: 0px;
    width: 25px;
    background: var(--link-menu-color);
  }

.menu-links a, .menu-links a:hover {
    text-decoration: none;
    color: var(--link-menu-color);
}

.menu-links li.lang {
    padding: 0 0 0 91px;
}

#menu-toggle, .menu-icon {
    display: none;
    width: 30px;
    height: 13px;
    position: relative;
    cursor: pointer;
}
.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--link-menu-color);
  transition: all 0.5s ease-in-out;
}
.menu-icon::after {
    bottom:0;
}

#menu-toggle:checked ~ .menu-icon::before {
  transform: translateY(3px) rotate(45deg); /* Поворот верхней */
}

#menu-toggle:checked ~ .menu-icon::after {
  transform: translateY(-8px) rotate(-45deg); /* Поворот нижней */
}

/* section */

h1.main-title {
    margin-top: 10px;
    letter-spacing: 0;
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 50px;
    color: var(--text-color);
}

.page-title {
    margin: 0 0 0 21px;
    letter-spacing: 0;
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    color: var(--text-color);
}
.container-text .page-title {
    margin: 0;
}


/* Footer */

.footer {
    margin-bottom: 50px;
    margin-top: 177px;
}

.footer p {
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0rem;
    margin: 0 10px 11px 0;
}

.footer .footer-col-2 p {
    white-space: nowrap;
}
.footer .footer-col-2 p a {
    font-size: 20px;
    color: var(--text-color);
}

.footer-flex, .footer-flex-2 {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
}

.footer-flex-2 {
    width: 58%;
}

.footer-col-2 {
    display: flex;
    flex-wrap: wrap;
}

.footer-col-2 p {
    font-weight: bold;
}


/* Slider */

.slider-main {
    position: relative;
    margin-top: 40px;
}

.slider-main .itc-slider-item {
  flex: 0 0 100%;
}
.slider-main .itc-slider-item img, .slider-main .itc-slider-item video {
  width: 100%;
}

/* Gallery */

.gallery {
    margin-top: 56px;
}

.gallery-row {
    display: flex;
    gap: 24px;
  justify-content: space-between;
}

.gallery-item {
    margin-bottom: 34px;
    transition: 0.5s ease;
}
.gallery-item a {
    display: flex;
    overflow: hidden;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    align-self: center;
  transition: 0.5s ease;
}
.gallery-item video {
    display: block;
    object-fit: contain;
    background-color: #fff;
    margin: 0;
    padding: 0;
}
.gallery-item img:hover {
    transform: scale(1.04);

}

.gallery-row:nth-child(odd) .gallery-item:first-child,
.gallery-row:nth-child(even) .gallery-item:last-child {
    max-width: 888px;
    width: 67.27%;
}

.gallery-row:nth-child(odd) .gallery-item:last-child,
.gallery-row:nth-child(even) .gallery-item:first-child {
    max-width: 432px;
    width: 32.73%;
}

.gallery-item-title {
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    margin: 9px 0px 7px;
}




/* Behance */

.behance {
    margin: 57px auto 0;
}

.behance-text {
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    margin: 0;
    text-align: center;
}


/* about */

body#about, body#about .header {
    background-color: var(--logo-tags-color);
}

.about .intro {
    margin: 58px auto 62px;
    max-width: 848px;
}


.col-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.col-2 > * {
  width:calc( ( 100% - 52px ) / 2 );
}

.why-we .col-2 > * {
    margin-bottom: 25px;
}

.why-we .col-2 {
    margin-bottom: 25px;
}

.services {
    margin-bottom: 54px;
}

.col-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.col-3 > * {
  width:calc( ( 100% - 52px ) / 3 );
}

.services ul li {
    font-weight: bold;
}

.services ul {
  list-style-type: none;
  margin: 0;
  padding: 0; 
}

.services ul li::before {
    content: "-";
    color: var(--text-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

.team {
    margin-bottom: 33px;
}

.team h3 {
    letter-spacing: 0;
    margin-top: 15px;
    margin-bottom: 2px;
}
.team span {
    letter-spacing: 0rem;
}

.team .col-3 {
    gap: 62px;
    row-gap: 30px;
}
.team  .col-3 > * {
  width:calc( ( 100% - 124px ) / 3 );
}

.team img {
    width: 100%;
}

.team-item {
    margin-top: 10px;
}

/* cookie */

body#cookie, body#cookie .header {
    background-color: var(--cookie-bg-color);
}

.cookie-list {
    margin-left: 50px;
}

.cookie-list h2 {
    letter-spacing: 0;
    margin-bottom: 20px;
}
.cookie-list li {
    margin-bottom: 38px;
}

.cookie-list li::marker {
    font-family: 'Merriweather', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 50px;
    color: var(--text-color);
    letter-spacing: 0.08rem;
}

#cookie_note {
    /* display: none; */
    /* bottom: 40px; */
    display: flex;
    bottom: -400px;
    transition: 1.5s ease;

    position: fixed;
    flex-wrap: wrap;
    flex-direction: column;
    left: 50%;
    z-index: 100;
    margin: 0 auto;
    max-width: 1116px;
    width: 90%;
    transform: translateX(-50%);
    padding: 60px;
    background-color: var(--logo-tags-color);
    border-radius: 12px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p {
    color: rgb(255, 255, 255);
}

#cookie_note a {
    color:#fff;
    text-decoration: underline;
}

.cookie_accept {
    cursor: pointer;
    background-color: #fff;
    border: none;
    padding: 10px 60px;
    color: var(--link-menu-color);
    margin: 20px auto 0;
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.01rem;
}

#cookie_note.show {
    display: flex;
    bottom: 40px;
}


/* Contacts */

.contacts .intro {
    max-width: 848px;
}
.contacts .intro h2 {
    margin-bottom: 50px;
}
.contacts .intro .col-2 div:last-child p:first-child {
    font-weight: normal;
}

/* Project */

.introtag {
    display: flex;
    gap: 20px;
    margin-top: 57px;
    margin-left: 21px;
}
.p-tags {
    max-width: 40%;
    width: 100%;
}
.p-intro p {
    font-weight: bold;
}
.main-tags, .second-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 10px;
}
.tag-project {
    display: block;
    border: 1px solid var(--logo-tags-color);
    padding: 0 8px;
    margin-right: 11px;
    border-radius: 15px;
    font-family: 'Merriweather-Italic', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: var(--logo-tags-color);
    letter-spacing: 0.02rem;
    white-space: nowrap;
    transition: 0.2s ease;
}

.tag-project:hover {
    background-color: var(--logo-tags-color);
    color: #fff;
    border-color: transparent;
    transition: 0.2s ease;
    text-decoration: none;
}
.second-tags {
    margin-top: 10px;
}

.hero-img {
    margin-bottom: 71px;
}
.hero-img img {
    margin-top: 60px;
    width: 100%;
}

.p-description {
    margin-top: 56px;
    margin-bottom: 71px;
    max-width: 848px;
    margin-left: 34%;
}
.p-description p {
    margin-bottom: 12px;
    letter-spacing: 0;
}

.p-gallery-row-1,
.p-gallery-row-2 {
    margin-bottom: 25px;
}
.p-gallery-item  img, .p-gallery-item  video{
    width: 100%;
}
.p-gallery-row-2 {
    display: flex;
    gap: 25px;
  justify-content: space-between;
}

.p-details {
    margin-top: 67px;
    display: flex;
    gap: 26px;
    row-gap: 0;
}
.p-details > * {
    width:calc( ( 100% - 52px ) / 3 );
}

.p-details h4:nth-child(even) {
    font-family: 'Commissioner', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-color);
    letter-spacing: 0rem;
    margin-bottom: 7px;
    margin-top: 0;
}

.p-detail-1 > *,
.p-detail-2 > *,
.p-detail-3 > * {
    display: flex;
    gap: 10px;
    margin-bottom: 3px;
    /* white-space: nowrap; */
}

.p-detail-3 > * {
    flex-direction: column;
    flex-wrap: wrap;
    row-gap: 0;
    margin-bottom: 10px;
}
.p-detail-3 h4 {
    margin-bottom: 0;
}
.p-detail-3 h4:nth-child(even) {
    margin-bottom: 0;
    white-space: wrap;
}

.project video {
    width:100%;
    object-fit: contain;    
}

/* Services */


.intro {
    margin: 58px auto 62px;
}

.intro p {
    font-weight: bold;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(120px);
  transition: 
    transform 0.7s cubic-bezier(.22,.61,.36,1),
    opacity 0.5s ease;
  will-change: transform, opacity;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* отключение анимации */
.scroll-animate.no-animation {
  transition: none !important;
}

.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.3s; }

/* Media */

@view-transition {
  navigation: auto;
}

@font-face {
    font-family: "Commissioner"; 
    src: url("fonts/Commissioner.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}

@font-face {
  font-family: "Merriweather";
  src: url("fonts/Merriweather-VariableFont.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Merriweather-Italic";
  src: url("fonts/Merriweather-Italic-VariableFont.ttf");
  font-weight: normal;
}

@media screen and (max-width: 1000px) {

    /* General */

    body {
        margin-top: 10px;
    }

    .container {
        padding: 0 30px;
    }

    /* Header */
    header {
        margin-bottom: 138px;
    }
    .header {
        height: 88px;
        padding: 20px 0;
        top: 0;
    }

    .text-logo {
        display: none;
    }

    /* Footer */
    
    .footer-flex-2 {
        width: 100%;
    }
    /* Slider */

    .slider-main {
    margin-top: 30px;
    }

    /* Gallery */

    .gallery-row {
        gap: 20px;
    }

    /* Project */

    .introtag {
        display: flex;
        gap: 20px;
        margin-top: 57px;
        margin-left: 0;
    }
    .p-tags {
        max-width: 100%;
        width: 100%;
    }
    .introtag > * {
    width:calc( ( 100% - 40px ) / 2 );
    }
    .p-description {
        margin-left: 20px;
        margin-right: 20px;
    }
    
}

@media screen and (max-width: 768px) {

    /* General */

    body {
        margin-top: 5px;
    }
    
    .container {
        padding: 0 20px;
    }
    .page-title {
        margin-left: 13px
    }

    /* Header */
    header {
        margin-bottom: 123px;
    }
    .header {
        height: 70px;
        padding: 15px 0;
        font-size: 16px;
    }

    
    .title-logo, .text-logo {
        font-size: 18px;
    }
    .text-logo {
        display: block;
    }
    
    .img-logo > * {
        width: 40px;
        height: 40px;
    }

  .menu-links {
    height: 100%;
    /* transition: right 0.5s ease; */
    position: fixed;
    width: 360px;
    height: 100vh;
    display: flex;
    right: 0;
    top: 70px;
    flex-direction: column;
    background-color: var(--logo-tags-color);
    color: #fff;
    z-index: 100;
    padding: 57px 70px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .menu-links li {
    padding: 0 0 15px 0;
    font-size: 24px;
    font-weight: bold;
  }

  .menu-links li.lang {
    padding: 45px 0 0 0;
    margin: 0;
  }

  .menu-links li a {
    color: #fff;
  }

  .menu-icon {
    display: block; /* Показываем бургер-иконку */
    cursor: pointer;
  }

  /* Показываем меню при клике на checkbox */
    #menu-toggle:checked ~ .menu-links {
    transform: translateX(0);
  }

  /* Footer */

  .footer-flex {
    align-items: start;
    flex-wrap: wrap;
  }
  .footer-flex-2 {
    align-items: start;
    flex-wrap: nowrap;
  }
  
  .footer-col-1 {
    flex-grow: 2;
  }
  
    .footer-col-2 {
        flex-grow: 1;
    }

    .br-none {
        display: none;
    }

  /* Slider */

  .slider-main .itc-slider-item img {
        height: 350px;
        object-fit: cover;
    }


    /* About */

    
    .col-3, .team .col-3 {
        gap: 40px;
    }
    .col-3 > *, .team  .col-3 > * {
    width:calc( ( 100% - 40px ) / 2 );
    }

    /*Cookie  */

    #cookie_note {
        padding: 30px;
        width: 95%;
    }
        
    #cookie_note.show {
        bottom: 20px;
    }

    
    /* Project */

    
    .introtag {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .introtag > * {
    width:100%;
    }

    .hero-img {
        margin-bottom: 51px;
    }
    .p-description {
        margin-top: 46px;
        margin-bottom: 51px;
    }

    .p-details {
        flex-wrap: wrap;
        gap: 40px;
        row-gap: 14px;
    }
    .p-details > * {
    width:calc( ( 100% - 40px ) / 2 );
    }
    
    
}

@media screen and (max-width: 480px) {

    /* General */

    
    .container, .container-text {
        padding: 0 15px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
        margin-bottom: 21px;
    }
    
    h3 {
        font-size: 20px;
        letter-spacing: 0rem;
    }

    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 18px;
    }

     ul li, ol li {
        font-size: 18px;
    }
    

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .page-title {
        font-size: 36px;
    }

    p, span {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    /* Header */
    
    header {
        margin-bottom: 92px;
    }

    .header {
        height: 66px;
        font-size: 14px;
    }
    
    .text-logo {
        display: none;
    }
    
    .img-logo > * {
        width: 36px;
        height: 36px;
        margin-right: 20px;
    }

    .menu-links {
        top: 66px;
    }

    /* section */

    h1.main-title {
        font-size: 20px;
        line-height: 25px;
    }

        .slider-main {
        margin-top: 20px;
    }
    
    /* Footer */
 
    .footer {
        margin-top: 120px;
    }

    .footer-flex-2 {
        gap: 15px;
    }

    .footer p {
        font-size: 18px;
    }

    /* Slider */

    .slider-main .container {
        padding: 0;
    }
    
    /* Gallery */

    .gallery-row {
        flex-direction: column;
        gap: 0;
    }

    .gallery-item-title {
        font-size: 16px;
    }

    .gallery-item {
        margin-bottom: 30px;

    }
    
    .gallery-row:nth-child(odd) .gallery-item:first-child,
    .gallery-row:nth-child(even) .gallery-item:last-child,
    .gallery-row:nth-child(odd) .gallery-item:last-child,
    .gallery-row:nth-child(even) .gallery-item:first-child {
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-item img {
        object-fit: cover;
        width: 100%;
        height: 297px;
    }

    /* Behance */

    .behance-text {
        font-size: 18px;
    }

    /* About */

    
    .col-2, .col-3, .team .col-3 {
        gap: 0;
        flex-direction: column;
    }

    .col-3 {
        align-items: center;
        justify-content: center;}

    .col-2 > *, .col-3 > *, .team  .col-3 > * {
        width:auto;flex: 1;
    }


    .team {
        margin-bottom: 0px;
    }

    .team-item:first-child  {
        margin-top: 18px;
    }

    .team-item  {
        margin-top: 40px;
    }

    .team-item img {
        max-width: 220px;
    }
    
    .intro {
        margin-top: 48px;
        margin-bottom: 33px;
    }

    .why-we .col-2 > * {
        margin-bottom: 19px;
    }

    .why-we .col-2 div:last-child {
        margin-bottom: 6px;
    }

    .services {
        margin-bottom: 37px;
    }

    .services h2 {
        margin-bottom: 30px;
    }

    .services > ul:first-child {
        margin-top: 9px;
    }

    .services .col-3 > * {
        max-width: 336px;
        width: 100%;
    }

    .services li {
        margin-bottom:6px;
    }

    /* cookie */

    .cookie-list {
        margin-left: 20px;
    }
    .cookie-list h2 {
        font-size: 25px;
        margin-top: 50px;
        line-height: 30px;
    }
    .cookie-list li::marker {
        font-size: 22px;
    }


    /* Project */
    
    .p-details {
        flex-direction: column;
        gap: 40px;
        row-gap: 14px;
        padding-left: 20px;
    }
    .p-details > * {
        width:100%;
    }
    .p-gallery-row-2 {
        flex-direction: column;
    }
    .p-description {
        margin-left: 0;
        margin-right: 0;
    }
    .tag-project {
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {

    /* General */

    .container {
        padding: 0 10px;
    }
    
    /* Header */
    header {
        margin-bottom: 82px;
    }

    .header {
        height: 80px;
    }
    
    .text-logo {
        display: none;
    }

    .menu-links {
        width: 100%;
    }

    /* Footer */
    
    .footer p {
        font-size: 17px;
    }

    /* Slider */

    .slider-main .container {
        padding: 0;
    }

  /* Footer */

  .footer-flex-2 {
    flex-wrap: wrap;
  }


    /* cookie */

    .cookie-list {
        margin-left: 0;
    }


}