@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*,*::before,*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
html,body {
    height: 100%;
    font-family: 'Roboto', Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.container {
    max-width: 1000px;
    margin: 0px auto;
    padding: 0px 10px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

h1 {
  font-size: 16px;
}

.up {
  padding-bottom: 80px;
  background-color: #ffffff;
  z-index: 0;
}

.up-2 {
  padding-bottom: 110px;
  background-color: #ffffff;
  z-index: 0;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(80, 60, 200, 1);
    z-index: 2;
}

.header__body {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

.header__logo {
    flex: 0 0 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.header__logo img{
    max-width: 100%;
    display: block;
}

.header__burger,
.mobile__only {
    display: none;
}

.header__list {
    display: flex;
    position: relative;
    z-index: 2;
}

.header__list li{
    list-style: none;
    margin: 0px 0px 0px 20px;
    white-space: nowrap;
}

.header__link {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
}

.header__link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__link svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    /* vertical-align: middle; */
    transform: translateY(-1px);
}

.hero-title {
  font-size: clamp(40px,2vw,60px);
  font-weight: 800;
  letter-spacing: clamp(1px, 1vw, 5px);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 3px 3px 4px #000000;
  line-height: 1.3;
}

.client-h1 {
  color: #0c0013;
  font-size: clamp(22px, 2vw, 50px);
  font-weight: 600;
  letter-spacing: clamp(1px, 1vw, 4px);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px #000000;
}

.client-h2 {
  color: #0c0013;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: clamp(1px, 1vw, 3px);
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px #000000;
}

.client-h3 {
  color: #0c0013;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: clamp(1px, 1vw, 3px);
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px #000000;
}

.brand {
  color: #000000;
  font-size: clamp(14px, 2vw, 16px);
}

.location {
  color: #000000;
  font-size: clamp(12px, 2vw, 14px);
}

@media (max-width: 767px){
    body.lock{
        overflow: hidden;
    }

    .up {
      padding-bottom: 50px;
    }

    .up-2 {
      padding-bottom: 55px;
    }

    .header__body{
        height: 50px;
    }

    .header__logo{
        flex: 0 0 40px;
    }

    .header__text {
        color: #fff;
        font-size: 18px;
        z-index: 2;
        margin: 0 20px;
        padding-top: 10px;
        text-transform: uppercase;
        text-align: center;
    }

    .header__burger{
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 3;
    }

    .header__burger span{
        position: absolute;
        background-color: #fff;
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.3s ease 0s;
    }

    .header__burger::before,
    .header__burger::after{
        content: '';
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .header__burger::before{
        top: 0;
    }

    .header__burger::after{
        bottom: 0;
    }

    .header__burger.active span{
        transform: scale(0);
    }

    .header__burger.active::before{
        transform: rotate(45deg);
        top: 9px;
    }

    .header__burger.active::after{
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 80%;
        overflow: auto;
        transition: all 0.3s ease 0s;
        background-color: rgba(80, 60, 200, 0.9);
        padding: 70px 10px 0px 10px;
        border-radius: 0% 0% 2% 2%;
    }

    .header__menu.active{
        top: 0;
    }

    .header__menu {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
  }
  
  .header__swipe-area {
      margin-top: auto;
      padding: 10px 0;
      text-align: center;
  }
  
  
  .header__swipe-line {
      width: 40%;
      height: 4px;
      background-color: #fff;
      margin: 0 auto;
      border-radius: 2px;
  }

    .header__list{
        display: block;
    }

    .header__list li{
        margin: 0px 0px 20px 0px;
    }

    .header__link{
        font-size: 24px;
    }

    .hero-title,.client-h1 {
      display: none;
    }

    .mobile__only{
      display: block;
      padding-left: 20px;
    }
    .category__link {
      color: #fff;
      text-transform: uppercase;
      font-size: 16px;
      text-decoration: none;
      white-space: nowrap;
    }
}

.container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  border: none;
}

.card-body {
  height: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* box-shadow: 0px 4px 1px #e0e0e0; */
}

.category-body {
  height: 20vh;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-body {
  height: 15vh;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-description {
  color: #74016a;
  font-size: clamp(18px,2vw, 20px);
}

.description-index-h1 {
  color: #ffffff;
  font-size: clamp(18px,2vw, 20px);
  text-shadow: 2px 2px 4px #000000;
}

.description-index-h2 {
  color: #eeeeee;
  font-size: clamp(18px,2vw, 20px);
  text-shadow: 3px 3px 4px #000000;
}

.description-h1 {
  color: #000000;
  font-size: clamp(18px,2vw, 20px);
  text-shadow: 1px 1px 4px #000000;
}

.description-h2 {
  color: #000000;
  font-size: clamp(18px,2vw, 20px);
  text-shadow: 1px 1px 2px #000000;
}

.card-name {
  color: #130011;
  font-size: clamp(14px,2vw, 16px);
  font-weight: 600;
}

.card-description {
  color: #160014;
  font-size: clamp(14px,2vw, 16px);
  height: 320px;
  overflow-y: scroll;
  scroll-behavior: smooth;
    &::-webkit-scrollbar {
    width: 4px; /* ширина скроллбара */
    }
    
    &::-webkit-scrollbar-track {
    background: #ffffff; /* цвет фона скроллбара */
    }
    
    &::-webkit-scrollbar-thumb {
    background: #888; /* цвет ползунка скроллбара */
    }
    
    &::-webkit-scrollbar-thumb:hover {
    background: #555; /* изменение цвета ползунка при наведении */
    }
}

.contact-description {
  color: #110011;
  font-size: clamp(12px,2vw, 16px);
  text-decoration: none;
}

.category-name {
  color: #120174;
  font-size: clamp(19px,2vw, 20px);
  font-weight: 600;
}

.category-button {
  border: 3px solid #dddddd;
  border-radius: 11px;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 0;
  padding-top: 0;
  display: inline-block;
}

.category-name a,
.description-h1 a {
  text-decoration: none;
  color: #211a63;
}

.category-name a:hover,
.description-h1 a:hover {
  color: #8b0097;
}

.sm-body {
  height: 14vh;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sm-name {
  color: #74016a;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 600;
}
.sm-name a {
  text-decoration: none;
  color: #ff0000;
}

.sm-name a:hover {
  color: #74016a;
}

.row {
  width: 100%;
  height: 100%;
}

.wrapper {  
  background-color: #ffffff;
}

.swiper {
  display: flex;
  height: auto;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 10px 10px 10px -1px rgba(10, 99, 169, 0.16),
              -10px -10px 10px -1px rgba(255, 255, 255, 0.70); */
}

.swiper-text {
  text-align: left;
  margin: 25px auto;
  max-width: 450px;
  display: flex;
  padding: 1px;
  padding-left: 10px;
  margin-top: 10px;
  background-color: #ffffff;
}

.swiper-wrapper {
  box-sizing: content-box;
  flex: 1 1 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1.4;
  position: relative;
  overflow: hidden;
  background-color: white;
}

.swiper-slide.feed {
  height: 68vh;
}

.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-button-prev {
  background-color: #bb8b5f00;
  left: 20px;
}

.swiper-button-next {
  background-color: #48971b00;
  right: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #ff8c88;
  font-size: 20px;
}

.swiper-pagination-bullet {
  background-color: transparent;
  width: 9px;
  height: 9px;
  opacity: 1;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.swiper-pagination-bullet-active {
  background-color: #ff8c88;
}

.scroll-button {
  text-align: left;
  margin: auto;
  max-width: 450px;
  padding-left: 10px;
}

.scroll-btn {
  cursor: pointer;
  text-decoration: none;
}

hr {
  border: none;
  height: 2px;
  background-color: #bb2649;
  margin: 20px 0;
}

footer {
  justify-content: center;
  font-size: smaller;
  color: rgb(0, 0, 0);
  text-align: center;
  padding-bottom: 50px;
  width: 100%;
}
