html, body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #FFF;
    line-height: 1.5;
    font-size: 14px;
    background-color: #000;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
  --main: #FF2FC1;
}

a {
    text-decoration: none;
}

.wrapper {
    display: block;
    max-width: 1600px;
    margin: auto;
    padding: 0 60px;
    box-sizing: border-box;
}

h1 {
    font-weight: 600;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

h2 {
    font-size: 60px;
    font-weight: 800;
    padding: 0;
    margin: 0; 
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.1;
}

h3, h4 {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 0; 
    line-height: 1.1;
}

b, strong {
    font-weight: 600;
}

header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 99;
}

header a {
    color: #FFF;
    transition: 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-weight: 600;
    white-space: nowrap;
} 

header nav {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 40px;
}

header .contact {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px; 
}

header a:hover {
    color: var(--main);
}

header i {
    font-size: 20px;
    color: var(--main);
}

header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100px;
}

a.logo  {
    display: block !important;
    margin: auto;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.hero .wrapper {
    display: flex;
    width: 100%;
    align-items: center;
}

.hero .hero__content {
    position: relative;
    gap: 60px;
    z-index: 4;
    display: flex;
    width: 100%;
}

.hero .hero__content_text {
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.hero .hero__content span {
    color: var(--main);
    font-weight: 700;
}

.hero .hero__content h1 {
    margin-bottom: 20px;
    font-size: 16px;
}

.hero .hero__content p {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1.1;
}

.hero__orb {
    position: absolute;
    width: 2000px;
    height: 2000px;
    border-radius: 100%;
    background: #ff00fb;
    background: radial-gradient(circle, rgba(255, 0, 251, 1) 0%, rgba(89, 22, 184, 1) 35%, rgba(0, 0, 0, 1) 65%);
    pointer-events: none;
    z-index: 1;
    will-change: left, top;
}

.hero__logo {
    width: 100%;
    max-width: 50%;
    height: auto;
    display: block;
    position: absolute;
    min-width: 880px;
    right: 0;
}

.button {
    background-color: #FFF;
    color: var(--main);
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    padding: 0 60px;
    display: flex;
    align-items: center;
    height: 60px;
    transition: 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
}

.button:hover {
    background-color: var(--main);
    color: #FFF;
}

.button.alt:hover {
    background-color: #000;
}

section {
    text-align: center;
    margin-bottom: 120px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    line-height: 1.1;
    position: relative;
    z-index: 4;
}

.stat .stat__item {
    position: relative;
    width: calc(100%/3);
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #545454;
    border-radius: 10px;
    box-sizing: border-box;
    padding-bottom: 25px;
}

.stat .stat__item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid var(--main);
    border-radius: 10px;
    transition: 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.stat .stat__item:nth-of-type(1)::before {
    top: 5px;
    left: 5px;
}

.stat .stat__item:nth-of-type(2)::before {
    top: -5px;
    left: -5px;
}

.stat .stat__item:nth-of-type(3)::before {
    top: 5px;
    left: -5px;
}

.stat .stat__item:hover::before {
    top: 0;
    left: 0;
}

.stat .stat__item:hover .glitch::before, .glitch:hover::before  {
    top: 2px;
    left: 2px;
}

.stat .stat__item span {
    display: inline-block;
    font-size: 128px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.stat .stat__item p {
    font-weight: 600;
}

.glitch {
    position: relative;
    display: inline-block;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: textGlitchPulse 14s infinite alternate ease-in-out;
}

.glitch::before {
    transition: 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    content: attr(data-text);
    position: absolute;
    top: 4px;
    left: 4px;
    color: #ff2fc1;
    z-index: -1;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
    animation: glitchShiftBefore 16s infinite ease-in-out;
}

.glitch::after {
    transition: 1.2s cubic-bezier(0.3, 0.8, 0.5, 1.2);
    content: attr(data-text);
    position: absolute;
    top: -2px;
    left: -2px;
    color: #6900ff;
    z-index: -2;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
    animation: glitchShiftAfter 18s infinite ease-in-out;
}

/* Анимация для основного текста — очень медленное мерцание */
@keyframes textGlitchPulse {
    0%, 97%, 100% {
        text-shadow: 0 0 0 rgba(255, 47, 193, 0);
        transform: skew(0deg);
    }
    97.5% {
        text-shadow: -0.5px 0 #ff2fc1, 0.5px 0 #6900ff;
        transform: skew(0.2deg);
    }
    98% {
        text-shadow: 0.5px -0.5px #ff2fc1, -0.5px 0.5px #6900ff;
        transform: skew(-0.15deg);
    }
    98.5% {
        text-shadow: -1px 0.5px #ff2fc1, 1px -0.5px #6900ff;
        transform: skew(0.1deg);
    }
    99% {
        text-shadow: 0.5px 1px #ff2fc1, -0.5px -1px #6900ff;
        transform: skew(-0.1deg);
    }
}

@keyframes glitchShiftBefore {
    0%, 100% {
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
    4% {
        transform: translate(3px, -1px);
        clip-path: inset(5% 0 15% 0);
    }
    8% {
        transform: translate(-4px, 2px);
        clip-path: inset(20% 0 25% 0);
    }
    12% {
        transform: translate(5px, -2px);
        clip-path: inset(40% 0 10% 0);
    }
    16% {
        transform: translate(-3px, 3px);
        clip-path: inset(60% 0 15% 0);
    }
    20% {
        transform: translate(4px, -1px);
        clip-path: inset(75% 0 8% 0);
    }
    24% {
        transform: translate(-2px, 2px);
        clip-path: inset(10% 0 55% 0);
    }
    28% {
        transform: translate(2px, -2px);
        clip-path: inset(30% 0 20% 0);
    }
    32% {
        transform: translate(-5px, 1px);
        clip-path: inset(85% 0 5% 0);
    }
    36% {
        transform: translate(3px, -1px);
        clip-path: inset(50% 0 30% 0);
    }
    40% {
        transform: translate(0px, 2px);
        clip-path: inset(12% 0 45% 0);
    }
    44% {
        transform: translate(1px, -3px);
        clip-path: inset(70% 0 12% 0);
    }
    48% {
        transform: translate(-1px, 1px);
        clip-path: inset(25% 0 35% 0);
    }
    52%, 100% {
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes glitchShiftAfter {
    0%, 100% {
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
    5% {
        transform: translate(-4px, 2px);
        clip-path: inset(8% 0 20% 0);
    }
    10% {
        transform: translate(5px, -1px);
        clip-path: inset(35% 0 18% 0);
    }
    15% {
        transform: translate(-5px, 3px);
        clip-path: inset(55% 0 12% 0);
    }
    20% {
        transform: translate(3px, -2px);
        clip-path: inset(78% 0 8% 0);
    }
    25% {
        transform: translate(-2px, 1px);
        clip-path: inset(18% 0 65% 0);
    }
    30% {
        transform: translate(4px, -3px);
        clip-path: inset(42% 0 28% 0);
    }
    35% {
        transform: translate(-3px, 2px);
        clip-path: inset(88% 0 4% 0);
    }
    40% {
        transform: translate(2px, -1px);
        clip-path: inset(25% 0 45% 0);
    }
    45% {
        transform: translate(-1px, 1px);
        clip-path: inset(62% 0 15% 0);
    }
    50% {
        transform: translate(1px, -1px);
        clip-path: inset(15% 0 55% 0);
    }
    55% {
        transform: translate(-1px, 2px);
        clip-path: inset(48% 0 22% 0);
    }
    60%, 100% {
        transform: translate(0, 0);
        clip-path: inset(0 0 0 0);
    }
}

.cols {
    display: flex;
    gap: 50px;
    text-align: left;
}

.cols .col {
    width: 50%;
}

.services, .cases {
    padding: 60px 0 90px 0;
}

.services__items {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

.cases__items {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

/* Только горизонтальная полоса прокрутки для .cases__items */
.cases__items {
  overflow-x: auto;
  overflow-y: hidden;
  
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a #111111;
  
  /* Webkit (Chrome, Safari, Edge) */
  &::-webkit-scrollbar {
    height: 6px;
  }
  
  &::-webkit-scrollbar-track {
    background: #111111;
    border-radius: 10px;
  }
  
  &::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
  }
  
  &::-webkit-scrollbar-thumb:hover {
    background: #555555;
  }
  
  /* Убираем стрелки и лишние элементы */
  &::-webkit-scrollbar-button {
    display: none;
  }
  
  &::-webkit-scrollbar-corner {
    background: transparent;
  }
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .cases__items {
    -webkit-overflow-scrolling: touch;
    
    &::-webkit-scrollbar {
      height: 4px;
    }
  }
}

.services__items h3 {
    margin-bottom: 20px;
}

.services__items .pre {
    color: #545454;
    font-weight: 600;
}

.services__items .services__items__item.active h3, .cases__items .cases__items__item.active h3 {
    color: var(--main);
}

.services__items .services__items__item.active .pre {
    color: #FFF;
}

.services__items .services__items__item h3, .services__items .services__items__item .pre, .cases__items .cases__items__item h3 {
    transition: 1s;
}

.services__items .services__items__item {
    cursor: pointer;
}

.cases__items .cases__items__item {
    cursor: pointer;
}

.cases__items__info {
    opacity: 0;
    transition: opacity 1s, transform 1s;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(-20px); 
}

.cases__items__info.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    height: auto;
    transform: translateY(0); 
}

.cases__bg {
    background-size: cover;
    background-position: center center;
}

.services__items .services__items__item .desc, .cases__items .cases__items__item .desc {
    opacity: 0;
    transition: opacity 1s, transform 1s;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: translateY(-20px); 
}

.services__items .services__items__item .desc p {
    margin-bottom: 10px;
}

.services__items .services__items__item .desc p:last-of-type {
    margin-bottom: 0;
}

.services__items .services__items__item .desc ul {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.services__items .services__items__item .desc ul li, .services__items .services__items__item .desc b {
    border-left: 10px solid var(--main);
    padding-left: 20px;
}

.services__items .services__items__item.active .desc, .cases__items .cases__items__item.active .desc {
    opacity: 1;
    visibility: visible;
    position: relative;
    height: auto;
    padding-top: 20px;
    transform: translateY(0);
}

.services__video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services__video-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video__sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.video__sound-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.video__sound-btn:active {
    transform: scale(0.9);
}

/* Кнопка полупрозрачная по умолчанию, становится ярче при наведении на видео */
.video__sound-btn {
    opacity: 0.7;
}

.services__video:hover .video__sound-btn {
    opacity: 1;
}

.services .cols.vert {
    flex-direction: column;
    align-items: center;
}

.services .cols.vert .col {
    width: 60%;
}

/* Для мобильных */
@media (max-width: 640px) {
    .video__sound-btn {
        bottom: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

.hero:after {
    content: "";
    width: 100%;
    height: 400px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: 3;
    pointer-events: none;
}

.section__p {
    max-width: 900px;
    margin: auto;
    margin-bottom: 70px;
}

.cases .info h4 {
    display: flex;
    line-height: 1;
    align-items:center;
    gap: 30px;
    margin-bottom: 20px;
}

.cases .col {
    min-height: 600px;
}

.cases .info p {
    margin-bottom: 30px;
}

.cases .info p:last-of-type {
    margin-bottom: 0;
}

.cases .info h4:before {
    content: "";
    display: block;
    height: 8px;
    background-color: var(--main);
    width: 40px;
}

.whywe__table {
    display: flex;
    gap: 30px;
    width: 100%;
}

.column {
    flex: 1;
}

.column__header {
    padding: 0 30px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background-color: #545454;
    font-size: 1.1em;
    border-radius: 10px 10px 0 0;
}

.column__item {
    height: 90px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid #545454;
    border-right: 1px solid #545454;
}

.column .column__item:nth-child(even) {
    background-color: #151515;
}

.column .column__item {
    border-bottom: 1px solid #232323;
}

.column.we .column__item {
    background-color: var(--main);
    border-bottom: 1px solid #ff97e0;
}

.column.we {
    border-color: #FFF;
}

.column.we .column__header {
    background-color: #FFF;
}

.column .column__item:last-of-type {
    border-bottom: 1px solid #545454;
}

.column.we .column__item {
    border-left: 1px solid var(--main);
    border-right: 1px solid var(--main);
}

.column.we .column__item:last-of-type {
    border-bottom: 1px solid var(--main);
}

.column.we .logo {
    width: 100px;
}

.column:first-child .column__item {
    font-weight: bold;
    color: var(--main);
    border-color: transparent;
}

.column:first-child .column__header {
    background-color: transparent;
}

.freeaudit {
    background-color: var(--main);
    padding: 30px 0;
    text-align: left;
}

.freeaudit .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.freeaudit h3 {
    margin-bottom: 10px;
}

.portfolio__line {
    display: flex;
    text-align: left;
}

.portfolio__line__item {
    min-width: 20%;
    margin-left: 30px;
    cursor: pointer;
}

.portfolio__line__item .portfolio__line__item_img {
    aspect-ratio: 2/1.5;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio__line__item_img img,
.portfolio__line__item_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform-origin: center center;
}

.portfolio__line__item:hover .portfolio__line__item_img img,
.portfolio__line__item:hover .portfolio__line__item_img video {
    transform: scale(1.12);
}

.portfolio__line__item p {
    font-size: 14px;
}

.portfolio__line.portfolio__left {
    margin-bottom: 10px;
}

.portfolio__line h4 {
    margin-bottom: 5px;
}

.team__items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team__items h4 {
    margin-bottom: 5px;
}

.team__items .team__item {
    width: calc((100% - (5 - 1) * 40px) / 5);
}

.team__items .team__item .team__item_img {
    aspect-ratio: 1/1;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.team__items .team__item .team__item_img img {
    width: 100%;
    border-radius: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform-origin: center center;
    filter: grayscale(100%);
}

.team__items .team__item:hover img {
    transform: scale(1.12);
    filter: grayscale(0);
}

.team__items p {
    font-size: 14px;
}

.price__items {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.price__items .price__item {
    width: calc(100%/3);
    text-align: left;
    padding: 40px 30px;
    border: 1px solid #545454;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 1s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-sizing: border-box; 
}

.price__items .price__item:hover {
    transform: translateY(-20px) !important; 
}

.price__item.rec {
    color: #000;
    background-color: var(--main);
    border-color: var(--main);
}

.price__item .sub {
    background-color: var(--main);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.price__item.rec .sub {
    background-color: #FFF;
    color: var(--main);
}

.price__item h3 {
    margin-bottom: 10px;
}

.price__item p, .price__item ul {
    margin-bottom: 30px;
}

.price__item ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
    line-height: 1.1;
}

.price__item.rec ul li:before {
    background-color: #000;
}

.price__item ul li:before {
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    width: 10px !important;
    height: 10px !important;
    border-radius: 100%;
    background-color: var(--main);
}

.price__item h4 {
    margin-bottom: 20px;
}

.price__items .price__item .price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-top: 20px;
}

.price__items .price__item .price.sm {
    font-size: 24px;
    line-height: 1.1;
}

.contact .cols {
    font-weight: 700;
    max-width: 900px;
    margin: auto;
    gap: 30px;
}

.contact .lang {
    font-size: 12px;
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.contact input, .contact textarea {
    width: 100%;
    border: 0;
    background-color: transparent;
    border: 1px solid #545454;
    border-radius: 10px;
    padding: 20px 30px;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.contact textarea {
    height: 100%;
}

.col textarea {
    width: 100%;
    height: calc(100% - 57px);
    box-sizing: border-box;
}

.contact .button {
    margin: auto;
    margin-top: 60px;
}

footer {
    text-align: center;
}

footer p {
    text-align: center;
    margin: auto;
    max-width: 900px;
    color: #545454;
    padding-bottom: 60px;
    font-size: 14px;
}

footer .logo {
    width: 100px;
    margin-bottom: 30px;
}

.whywe__mobile {
    text-align: left;
}

.whywe__mobile__item .row {
    display: flex;
}

.whywe__mobile__item .row {
    margin-left: -30px;
    margin-right: -30px;
}

.whywe__mobile__item .row .col {
    width: 50%;
    padding: 10px 30px;
    box-sizing: border-box;
}

.whywe__mobile__item .row.lead {
    background-color: var(--main);
    margin-bottom: 60px;
}

.whywe__mobile__item h3 {
    margin-bottom: 20px;
    color: var(--main);
}

.whywe__mobile {
    display: none;
}

.cases .stat {
    margin-bottom: 30px;
    align-items: flex-start;
    margin-top: 30px;
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
    padding: 20px 0;
}

.cases .info .pre {
    display: flex;
    color: var(--main);
    gap: 30px;
}

.cases .stat .stat__item {
    border: 0;
    padding: 0;
}

.cases .stat .stat__item::before {
    display: none;
}

.cases .stat .stat__item span {
        font-size: 40px;
        margin-bottom: 10px;
}

.cases .stat .stat__item {
    width: calc(100% / 4);
}

.cases .stat .stat__item p {
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
}

.services .desc .col {
    min-height: auto;
}

.services__items h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--main);
    margin-bottom: 20px;
    margin-top: 30px;
}

.services__items b {
    margin-bottom: 20px;
    display: block;
}

.services__items p.res {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.services__items p.res span {
    white-space: nowrap;
    border: 1px solid var(--main);
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 12px;
}

.services__items p.pm {
    border-bottom: 1px solid #545454;
    font-size: 12px;
    padding-bottom: 7px;
    margin-bottom: 20px !important;
}

.message {
}

.message span {
    background-color: var(--main);
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    padding: 10px 60px;
    align-items: center;
    min-height: 60px;
    margin: auto;
    display: none;
    box-sizing: border-box;
}

.message span.active {
    display: flex;
}

.form.send {
    display: none;
}

.contact .form {
    margin-bottom: 40px;
}

.contact .error {
    border-color: var(--main);
}

.form .req {
    color: var(--main);
    display: inline-block;
    margin-left: 5px;
}