/*
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Press+Start+2P&display=swap');
*/
@import url('https://gfont.swiport.ru/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Press+Start+2P&display=swap');


:root {
    /* --main-color: #212121;
    --blue-color: #389ec5;
    --dark-blue-color: #292B37;
    --green-color: #008080; */
    

    --main-color: #151d1d;
    --light-grey: #e0e0e0;
    --bg-color: #eceff1;
    --blue-color: #91C4E2;
    --dark-blue-color: #436294;
    --green-color: #59999C;
    --dark-green-color: #2f4a4c;
    
    --white-color: #fff;
    --box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 24px 0px, rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;

    --font-family-base: "Fira Sans", serif;
    --font-family-heading: "Montserrat", serif;
    --font-family-pixel: "Press Start 2P", serif;

    --border-radius-s: 6px;
    --border-radius-m: 8px;
    --border-radius-l: 12px;
    --border-radius-xl: 24px;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: var(--font-family-base);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color:  var(--main-color);
    background-color: #eceff1;
}

main {
    flex: 1 0 auto;
}

.br-section {
    border-radius: var(--border-radius-xl);
}

.br-18 {
    border-radius: 18px;
}

.mb0 {
    margin-bottom: 0;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.dark-blue-color {
    background-color: var(--dark-blue-color);
    color: var(--light-grey);
}

.blue-color-text {
    color: var(--blue-color);
}

strong {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-style: normal;
}

.text-blue {
    color: var(--blue-color);
}

.text-green {
    color: var(--green-color);
}

.bg-green {
    background-color: var(--green-color);
}

.bg-blue {
    background-color: var(--blue-color);
}

.bg-dark-blue {
    background-color: var(--dark-blue-color);
}

.container {
    width: 96%;
    max-width: 1440px;
}

.section {
    padding: 40px 0;
    overflow-x: hidden;

    &.white {
        margin: 20px 1.09vw;
    }

    .section__title {
        font-size: clamp(2rem, 3vw, 2.4rem);
    }
    
    @media screen and (max-width: 600px) {
        padding: 20px 0;
    }
}



.home-h1 {
    font-size: clamp(2rem, 3vw, 3.6rem);
    margin-top: 0;
    margin-bottom: 0; 
    
    .i-letter {
        position: relative;
        display: inline-block;
        
        &::after {
            content: '';
            display: block;
            position: absolute;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            top: -6px;
            left: 50%;
            margin-left: -7px;
            background: var(--green-color);
        }
    }
}

.page-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    
    &::before {
        content: '';
        width: 12px;
        height: 12px;
        background: var(--green-color);
        position: absolute;
        left: -24px;
        top: 0;
    }
}

.slider {
    position: relative;
    top: -40px;
    
    .slides {
        background: transparent;
        
        .slider-banner{
            .caption {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                padding-left: clamp(3rem, 3vw, 6rem);
                
                .slider-banner__title {
                    /* font-family: "Montserrat", sans-serif; */
                    font-family: "Unbounded", serif;
                    font-size: clamp(2rem, 3vw, 6rem);
                    font-weight: 700;
                    margin-top:15%;
                    margin-bottom: 20px;
                    line-height: 1;
                }
                
                .slider-banner__content {
                    margin-bottom: 20px;
                }
            }
        }
        
    }
    
    .slider__icon {
        position: absolute;
        top: 50%;
        font-size: clamp(3rem, 5vw, 8rem);
        margin-top: -40px;
        color: var(--white-color);
        z-index: 100;
        opacity: .3;
        transition: .5s;
        cursor: pointer;
        
        &.slider__left-arrow{
            left: 20px;
        }
        
        &.slider__right-arrow {
            right: 20px;
        }
        
        &:hover {
            opacity: .8;
        }
    }
}

.header-navigation {
    height: 68px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    line-height: 68px;
    box-shadow: var(--box-shadow);
    /* border-radius: var(--border-radius-xl);
    border-top-left-radius: 0;
    border-top-right-radius: 0; */

    .nav-wrapper {
        height: 80px;
    }
    
    .header__logo {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        
        img {
            height: 40px;
            display: flex;
            margin-right: 20px;   
        }
    }
    
    .header-menu__list {
        height: 68px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        
        .header-menu__item {
            
            .header-menu__link {
                color: var(--main-color);
                outline: none;
                white-space: nowrap;
                
                .header-menu__icon {
                    font-size: .7rem;
                    margin-left: 3px;
                    transition: .3s;
                }
                
                &:hover {
                    background-color: transparent;
                    color: var(--green-color);
                    
                    /* .header-menu__icon {
                        transform: rotate(180deg);
                    } */
                }
            }

        }
    }
    
    .header-contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        margin: 0 40px;
        
        .header-contacts__phone {
            color: var(--main-color);
            font-size: 1.6rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            line-height: 1;
            white-space: nowrap;
            
            .fa-solid {
                font-size: 1.2rem;
                color: var(--blue-color);
                margin-right: 10px;
            }
        }
        
        .header-contacts__mail {
            color: var(--main-color);
            font-size: 0.9rem;
            line-height: 1;
        }
    }

}

@media screen and (max-width: 600px) {
    .header-navigation {
        .header__logo {
            img {
                height: 50px;
            }
        }
    }
}

.dropdown-menu {
    position: absolute;
    z-index: 5;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-s);
    
    .dropdown-menu__item {
        display: flex;
        align-items: center;
        padding: 18px;
        
        .dropdown-menu__img {
            margin-right: 10px;
            max-width: 50px;
            height: auto;
        }
        
        .dropdown-menu__text {
            width: 220px;
            font-size: 0.8rem;
            color: var(--main-color);
            line-height: 1.2;
            
            strong {
                white-space: nowrap;
                font-weight: 700;
            }
            
            span {
                white-space: nowrap;
            }
        }
        
        &:hover {
            background: #0000001a;
        }
    }
}

.sidenav {
    .button-login {
        position: absolute;
        left: 20px;
    }
}

.breadcrumbs {
    background-color: transparent;
    box-shadow: none;
    height: auto;
    margin-top: 40px;
    line-height: 1;
    
    .nav-wrapper {
        display: flex;
        align-items: center;
        
        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white-color);
            color: var(--main-color);
            padding: 10px 30px;
            border-radius: var(--border-radius-s);
            margin-left: -20px;
            box-shadow: -2px 2px 12px 4px rgba(44,43,55,.1);
            font-size: 0.9rem;
            transition: .5s;
            
            &::before {
                content: none;
            }
            
            &:first-child {
                margin-left: 0;
            }
            
            &:last-child {
                color: var(--green-color);
            }
            
            &:hover {
                color: var(--blue-color);
            }
        }
    }
}

a {color: var(--blue-color)}
button {border: none}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0 24px;
    font-size: 0.9rem;
    line-height: 0;
    background: var(--green-color);
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    opacity: 1;
    transition: 0.5s;
    
    &.button-small {
        min-height: 36px;
        min-width: 36px;
        padding: 6px 12px;
        border-radius: var(--border-radius-s);
    }
    
    &.button-large {
        font-size: 1rem;
        min-height: 58px;
        min-width: 48px;
        padding: 18px 36px;
        border-radius: 50px;
        border-radius: var(--border-radius-l);
    }
    
    .button__button-icon {
        font-size: 0.8rem;
        margin-right: 12px;
        opacity: 0.8;
    }
    
    &:hover {
        opacity: 0.7; 
    }
    
    &.button-dark {
        background: var(--main-color);
        color: var(--white-color);
        
        &:hover {
            opacity: 0.7;
        }

    }
    
    &.button-light {
        background: var(--white-color);
        color: var(--main-color);
        border: 1px solid var(--light-grey);
        
        &:hover {
            background: var(--light-grey);
            opacity: 0.7;
        }
    }

    &.button-white {
        background: var(--white-color);
        color: var(--dark-green-color);
        
        &:hover {
            background: var(--white-color);
            opacity: 0.7;
        }
    }
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    .tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 12px 18px;
        background-color: var(--light-grey);
        color: var(--dark-blue-color); 
        border-radius: 8px;
        font-size: .9rem;
        font-weight: 500;
        opacity: .8;

        .tag_icon {
            mar
        }
    } 
}

.tag {
    display: inline-flex;
    padding: 12px;
    background-color: var(--light-grey);
    color: var(--dark-blue-color); 
    border-radius: 8px;
}

blockquote {
    border-left: 6px solid var(--blue-color);
}

.justify {
    text-align: justify;
}

.content {
    ul {
        li {
            position: relative;
            padding-left: 16px;
            
            &::before {
                content: "";
                display: block;
                position: absolute;
                width: 6px;
                height: 6px;
                left: 0px;
                top: 7px;
                border-radius: 50%;
                background-color: var(--green-color);
            }
        }
    }
    
    h3 {
        font-size: 1.6rem;
        font-weight: 600;
    }
}

.post-content {
    hr {
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        margin:  36px 0;
    }

    h2 {
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--blue-color);
        margin-top: 0;
    }

    h3, h4, h5 {
        font-size: 1.2rem;
        font-weight: 900;
    }
    
    img {
        border-radius: 18px;
        max-width: 100%;
        height: auto;
    }

    blockquote {
        font-style: italic;
        font-size: 1.4rem;
        min-height: 100px;
        display: flex;
        align-items: center;
        padding-left: 40px;
        margin-left: 20px;
        position: relative;

        &::after {
            content: '\f10e';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--white-color);
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--blue-color);
            position: absolute;
            top: 50%;
            margin-top: -20px;
            left: -24px;
            border-radius: 50%;
        }
    }

    ul > li {
        position: relative;
        padding: 5px 0;
        list-style-type: none;
        margin-left: 40px;

        &:before {
            content: "";
            display: block;
            position: absolute;
            left: -14px;
            top: 13px;
            width: 6px;
            height: 6px;
            border-radius: 2px 0 2px 2px;
            background: var(--green-color);
        }
    }
  
}

.card-panel {
    border-radius: var(--border-radius-xl);
   padding: 24px;
   box-shadow: none; 
   
   &.included-card {
       display: flex;
       justify-content: center;
       align-items: center;
       height: 180px;
            
       i {
            font-size: 2rem;
            color: var(--green-color);
            height: 80px;
            flex: 0 0 auto;
            width: 80px;
            border: 3px solid #f5f5f5;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 20px 0 0;
       }
   }
}

.card {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--box-shadow);
    
    .card-content {
        padding: 24px;

        .card__icon {
            padding-bottom: 20px;

            i {
                font-size: 4rem;
                color: var(--green-color);
            }
        }

        .card__title {
            font-size: 1.6rem;
            color: var(--main-color);
            font-weight: 900;
            line-height: 1;
            height: 50px;
            margin: 20px 0;
        }

        .card__content {
            font-size: 1rem;
            color: var(--main-color);
            font-weight: 400;
            height: 80px;
        }
    }

    &.hover {
        transition: 0.5s;
        &:hover {
            transform: translateY(-8px);
        }
    }
}

.card-category {
    position: relative;
    overflow: hidden;
    
    background-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
    
    .card-content  {
        position: relative;
        z-index: 1;
    }
    
    .card__title {
         text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
    }
    
   
    
    &:hover {
        background-size: 100%;
    }
}


.start-section {
   width: 100%;
   height:100vh;
   margin-top: -40px;
   
   
   .start-section-container {
       width: 100%;
       height: 100%;
       margin-top: 60px;
       color: #ffffffcc;
       
       .start-section-container__h1 {
            /* background: linear-gradient(135deg, var(--green-color) 0%, var(--blue-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            color: var(--bg-color);
            font-size: clamp(4rem, 6vw, 6rem);
            margin-top: 0;  
            margin-bottom: 0;
       }
       
       .start-section-container__strong {
            color: #ffffff8a;
            font-size: clamp(1.4rem, 3vw, 2rem);
            margin-left: 20%;
            margin-top: -10px;
       }
       
       .start-section-container__decription {
           margin: 40px 0;
           font-weight: 300;
           font-size: 1.2rem;

           .start-section-container__title {
                display: inline;
                font-size: 1.2rem;
           }

           b, strong  {
                font-weight: 500;
           }
       }
       
       .start-section-container__skill-box-flex {
           display: flex;
           margin-bottom: 40px;
           gap: 20px;
       }
       
       .start-section-container__skill-box-card {
            display: none;
            align-items: center;
            flex-direction: column;
            padding: 24px 36px;
           /* -webkit-backdrop-filter: blur(0.2rem);
            backdrop-filter: blur(0.2rem); */
            background: url('/assets/img/background/bg-pixel-left.jpg');
            background-size: cover;
            background-position: left;
            background-repeat: no-repeat;
           
           .skill-box__number {
               font-size: 2.4rem;
               font-weight: 600;
               font-family: var(--font-family-heading);
               color: var(--blue-color);
           }
           
           .skill-box__text {
               font-weight: 400;
               line-height: 1;
           }

           &:last-child {
                transform: scale(-1, 1);

                .skill-box__number {
                    transform: scale(-1, 1);
                }
                
                .skill-box__text {
                    transform: scale(-1, 1);
                }
            }
       }
       
       .button {
            border-radius: var(--border-radius-l);
            background-color: transparent;
            border: 2px solid var(--blue-color);
            color: var(--white-color);


            &.button-with-title {
                position: relative;

                &::after {
                    /* content: ''; */
                    display: block;
                    width: 250px;
                    height: 65px;
                    background-image: url(/assets/img/background/info-title.svg);
                    background-repeat: no-repeat;
                    position: absolute;
                    left: 30%;
                    bottom: -70px;
                }
            }

            &:hover {
                background-color: #ffffff47;
                opacity: 1;
            }
       }
       
       .move-down-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            margin-top: 40px;
            border-radius: var(--border-radius-l);
            border: 2px solid var(--blue-color);
            transition: .5s;
            
            &:hover {
                background-color: #ffffff47;
            }
       }
   }
   
   @media screen and (max-width: 600px) {
       .start-section-container {
           
           .start-section-container__decription {
               margin: 20px 0;
           }
           .start-section-container__skill-box-flex {
               margin-bottom: 20px;
           }
           .start-section-container__skill-box-card {
                padding: 0;
                background: none;
               
               .skill-box__number {
                   font-size: 2rem;
               }
           }
           
           .move-down-btn {
               display: none;
           }
       }
   }
}

.card-tab {
    position: relative;
    background: #eceff1;
    min-height: 400px;
    border-radius: var(--border-radius-xl);
    margin-top: 0px;
    background-size: 275px 130px;
    background-image: url(/assets/img/cards/tab-grey.svg);
    background-repeat: no-repeat;
    margin-bottom: 20px;
    
    
    &.left-button {
        background-position: 0% 100%;
        background-image: url(/assets/img/cards/tab-white.svg);
    }
    
    &.right-button {
        background-position: 100% 100%;
        background-image: url(/assets/img/cards/tab-white-right.svg);
    }
    
    .card-tab__content {
        padding: 36px;
    }
    
    .card-tab__title {
        display: inline-flex;

        .card-tab__icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background-size: 80px 80px;
            background-position: center;
            background-repeat: no-repeat;
            margin-left: -10px;
            margin-right: 10px;
        }
        
        strong {
            display: block;
            margin-top: 10px;
            font-family: var(--font-family-heading);
            font-weight: 600;
            font-style: normal;
            font-size: 2rem;
            line-height: 1;
        }
    }
    
    .button {
        position: absolute;
        border-radius: 50px;
        min-width: 192px;
        height: 64px;
        font-size: 1.2rem;
        
        &:hover {
            transform: scale(1.1)
        }
    }
    
    .left-card-button {
        left: 12px;
        bottom: 12px;
    }
    
    .right-card-button {
        right: 12px;
        bottom: 12px;
    }
    
    @media screen and (max-width: 600px) {
        
        margin-bottom: 40px;
        
        .card-tab__content {
            padding: 18px;
        }
        
        .card-tab__description {
            height: 160px;
            overflow: hidden;
        }
    }
}

.card-cms-item {
    padding: 1rem;
    
    .card-cms-item__content {
        height: 180px;
        overflow: hidden;

        .card-cms-item__title {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--blue-color);
            margin-top: 0;
            padding-top: 0;
        }
    }
    
    @media screen and (max-width: 600px) {
        .card-cms-item__image-container {
            text-align: center;
            .card-cms-item__image {
                max-width: 100px;
            }
        }
        
        .card-cms-item__content {
            text-align: justify;
            .card-cms-item__title {
                text-align: center;
            }
        }
    }
}

.skill-box {

    .skill-box__number {
        font-size: 4rem;
        font-weight: 700;
        margin-right: 20px;
    }
    
    .skill-box__text {
        font-weight: 500;
        line-height: 1;
        font-size: 1.2rem;
    }
}

.client-section {
    .client-section__client-name {
        font-size: 2.2rem;
    }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ carousel
*/

.feedback-carousel, .certificates-carousel, .support-carousel {
    position: relative;
}


.carousel__navigation {
    position: absolute;
    right: 0;
    top: -90px;
    width: 148px;
    
    display: flex;
    justify-content: space-around;


    .carousel__navigation-item {
        width: 64px;
        height: 64px;
        background-color: var(--green-color);
        border-radius: var(--border-radius-m);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: var(--box-shadow);
        transition: 0.5s;
        user-select: none;
        
        path {
            fill: var(--white-color);
            transition: 0.5s;
        }
        
        svg {
            width: 32px;
            height: 32px;
        }
        
        .icon-slider-arrow-left {
            transform: rotate(180deg);
        }
        
        &:hover {
            cursor: pointer;
            opacity: .6;
            background: var(--green-color);
            
            path {
                fill: var(--white-color);
            }
        }
    
    }
}

.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
}

.feedback-card {

    .feedback-card__logo {
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 20px;
        align-items: center;
    }
    
    .feedback-card__name {
        margin-top: 20px;
        text-align: center;
        height: 50px;
        overflow: hidden;
        line-height: 1.1;
    }

    .feedback-card__content {
        height: 280px;
        overflow: hidden;
        
        blockquote {
            font-style: italic;
            padding-left: 10px;
        }
        
        strong {
            display: block;
            line-height: 1.1;
        }
    }
}

.fullscreen-modal {
    width: 100%;
    height: 100%;
    max-height: 100%;
    top: 0 !important;

    .modal-content {
        margin-top: 10%;

        .container {
            max-width: 600px;
        }
    }

    .close-x {
        position: absolute;
        right: 30px;
        top: 20px;
        font-size: 3rem;
        color: var(--blue-color);
        transition: .4s;

        &:hover {
            color: var(--green-color);
        }
    }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ About
*/

.org-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    padding: 3rem;
    color: var(--main-color);
    height: 300px;
    overflow: hidden;
    transition: .5s;
    
    .org-card__image {
        width: 100%;
        height: 100px;
        object-fit: contain;
        object-position: center;
        margin-bottom: 20px;
        transition: .5s;
    }
    
    &:hover {
        .org-card__image {
            opacity: .6;
        }
    }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ Service
*/

.service-card {
    border-radius: var(--border-radius-l);
    
    .service-card__card-image-outer {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: var(--border-radius-l);
        
        .service-card__card-image {
            width: 100%;
            aspect-ratio: 16 / 9;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: 0.3s;
        }
    }
    
    .service-card__card-content {
        height: 100px;
        margin: 18px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        
        strong {
            display: block;
            font-size: 1.2rem;
            line-height: 1;
            font-weight: 600;
            color: var(--main-color);
            margin-bottom: 9px;
        }
        
        p {
            font-size: 1rem;
            line-height: 1.2;
            color: var(--main-color);
        }
    }
    
    .service-card__card-action {
        padding: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #a0a0a033;
    }
    
    &:hover {
        box-shadow: 0px 0px 8px 8px rgb(100 142 178 / 10%);
        
        .service-card__card-image {
            transform: scale(1.1);
            z-index: 5;
        }
        
    }
    
}

.service-item-card {
    background-color: var(--dark-blue-color);
    color: var(--white-color);
    .card-content {
        strong {
            display: block;
            height: 48px;
            overflow: hidden;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1;
        }
        p {
            height: 84px;
            overflow: hidden;
            margin: 10px 0;
            opacity: 0.7;
            line-height: 1;
        }
        .card-price {
            color: var(--blue-color);
            font-size: 1.2rem;
        }
    }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ support
*/

.support-item {
    border-radius: var(--border-radius-xl);
    margin-bottom: 18px;
    overflow: hidden;
    background: #eceff1;
    
    .support-item__head {
        background: linear-gradient(45deg, #329dc7, #23657e);
        text-align: center;
        color: white;
        border-radius: var(--border-radius-xl);
        padding: 24px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .support-item__title {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 9px;
    }
    
    .support-item__price {
        /* font-family: "Montserrat", sans-serif; */
        font-family: "Unbounded", serif;
        
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 18px;
        
        sub {
            display: block;
            font-size: 0.4em;
            font-weight: 400;
        }
    }
    
    .support-item__body {
        background: #eceff1;
        border-radius: 0 0 18px 18px;
        overflow: hidden;
        
        ul {
            margin: 0;
            
            li {
                text-align: left;
                padding: 12px 24px;
                font-size: 1rem;
                border-bottom: 1px solid #0f000008;
                
                &:last-child {
                    text-align: center;
                    padding: 24px 24px;
                }
                
                i {
                    margin-right: 5px;
                    color: #c1c1c1;
                }
                
                &.info {
                    height: 90px;
                    overflow: hidden;
                }
            }
        }
    }
}


.support-carousel {
   .lite-blue-gradient {
        background: linear-gradient(45deg, rgba(221,236,242,1) 0%, rgba(197,213,219,1) 100%);
        color: var(--main-color);
    }
    
    .blue-gradient {
        background: linear-gradient(45deg, rgba(126,202,221,1) 0%, rgba(37,149,177,1) 100%);
        color: var(--white-color);
    }
    
    .yellow-gradient {
        background: linear-gradient(45deg, rgba(248,230,158,1) 0%, rgba(241,208,75,1) 100%);
        color: var(--main-color);
    }
    
    .pink-gradient {
        background: linear-gradient(45deg, rgba(232,159,187,1) 0%, rgba(209,68,122,1) 100%);
        color: var(--white-color);
    }
    
    .dark-blue-gradient {
        background: linear-gradient(45deg, rgba(6,103,163,1) 0%, rgba(12,61,92,1) 100%);
        color: var(--white-color);
    }
    
    .black-gradient {
        background: linear-gradient(45deg, rgba(76,76,76,1) 0%, rgba(33,33,33,1) 100%);
        color: var(--white-color);
        
        
    } 
}

.list-tags {
    li {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        min-width: 44px;
        padding: 0 24px;
        line-height: 1;
        background: var(--white-color);
        color: var(--main-color);
        border-radius: var(--border-radius-m);
        margin: 6px;
    }
}

.maintenance {
    border: none;
    margin: 0;
    box-shadow: none;

    .collapsible-header {
        position: relative;
        background-color: var(--white-color);
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--main-color);
        padding: 0;
        border-bottom: 0;
        padding-left: 34px;

        &::before {
            content: '+';
            color: var(--green-color);
            font-size: 2.4rem;
            position: absolute;
            left: 0;
            top: -15px;
        }
    }

    .collapsible-body {
        border-bottom: 0;
    }
}

.faq-text {
    display: block;
    text-align: center;
    font-size: 18rem;
    opacity: .2;
    margin-top: 3rem;
    color: var(--blue-color);
    transform: rotate(-90deg);
}

.development-stages {
    list-style-type: none;
    counter-reset: li;
    padding: 0;
    margin: 0;
    
    > .development-stages__item {
        position: relative;
        padding-bottom: 20px;
        padding-top: 4px;
        margin-bottom: 10px;
        min-height: 220px;
        padding-left: 3rem;
        
        strong {
            display: block;
            padding-left: 1.4rem;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--green-color);
        }
        
        &::before {
            content: counter(li) "";
            counter-increment: li;
            color: var(--white-color);
            text-align: center;
            position: absolute;
            font-weight: 700;
            font-size: 1rem;
            width: 40px;
            height: 40px;
            top: -5px;
            left: 10px;
            background: var(--green-color);
            border-radius: 50%;
            line-height: 40px;
        }
        
    }
}

/*----------------------------------------------------------------------------- 
*/


.service-cat-item {
    border-radius: 2.222rem;
    
    background-color: var(--bg-color);
    text-decoration: none;
    color: var(--main-color);
    position: relative;
    transition-property: background-color;
    height: 100%;
    
    .service-cat-item-content {
        /* padding: 2.444rem 2.444rem 6.111rem 2.444rem; */
        padding: 2.444rem;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        
        .service-cat-item__name {
            width: 80%;
            min-width: 16.4rem;
            font-weight: 700;
            font-size: 1.33rem;
            line-height: 120%;
            text-transform: uppercase;
            margin-right: 1.111rem;
            position: relative;
            z-index: 2;
        }
        
        .service-cat-item__desc {
            width: 100%;
            height: 200px;
            overflow: hidden;
            line-height: 150%;
            color: var(--main-color);
            flex-grow: 1;
            position: relative;
            z-index: 2;
        }
        
    }
     
    .card-icon-container {
        position:relative;
        height:60px;
        
        .card-icon {
            display:block;
            width:0;
            height:0;
            padding:30px;
            border:solid var(--bg-color) 30px;
            position:absolute;
            margin:-30px;
            background-color: var(--bg-color);
            
            .card-icon-content {
                position:absolute;
                border-radius: var(--border-radius-l);
                background: var(--dark-blue-color);
                color: var(--white-color);
                overflow:hidden;
                width:0;
                height:0;
                padding:36px;
                
                display:flex;
                justify-content: center;
                align-items: center;
                margin:-30px;

                font-size: 20px;
                font-weight: 600;
                font-family: var(--font-family-heading);
            }
            
            &::before {
                content: "";
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                padding: 10px;
                background: transparent;
                border-width: 10px;
                border-radius: 50%;
                border-style: solid;
                overflow: hidden;
                
                right: -60px;
                top: -10px;
                border-color: var(--bg-color) transparent transparent transparent;
                transform: rotate(-45deg);
            }
            
            &::after {
                content: "";
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                padding: 10px;
                background: transparent;
                border-width: 10px;
                border-radius: 50%;
                border-style: solid;
                overflow: hidden;
                
                left: -10px;
                bottom: -60px;
                border-color: var(--bg-color) transparent transparent transparent;
                transform: rotate(-45deg);
            }
        }
        
        & .card-icon-left {
            left:0;
            border-radius:0 0 var(--border-radius-xl) 0;
        }
        & .card-icon-right {
            right:0;
            border-radius:0 0 0 var(--border-radius-xl);
        }
        
        & .card-icon-right::before {
            left: -60px;
            transform: rotate(45deg);
        }
        & .card-icon-right::after {
            left: 30px;
            transform: rotate(45deg);
        }
    }
    
    & :last-child {
        & .card-icon-left {
            border-radius:0 50% 0 0 !important;
            
            &::before {
                left: -10px;
                top: -60px;
                transform: rotate(225deg);
            }
            &::after {
                left: 80px;
                bottom: -10px;
                transform: rotate(-135deg);
            }
        }
        
                
        & .card-icon-right {
            border-radius:50% 0 0 0 !important;
            
            &::before {
                left: 30px;
                top: -60px;
                transform: rotate(-225deg);
            }
            &::after {
                left: -60px;
                bottom: -10px;
                transform: rotate(135deg);
            }
        }
    }
    
}

.section.white .card-icon {
    --bg-color: white;
}

/*----------------------------------------------------------------------------- 
*/

.nowrap {white-space:nowrap;}

.service-cat-item-new {
    border-radius: var(--border-radius-xl);
    margin: 5px;
    margin-bottom: 30px;
    
    background-color: var(--bg-color);
    text-decoration: none;
    color: var(--main-color);
    position: relative;
    transition-property: background-color;
    height: 100%;
    
    .service-cat-item-content {
        padding: 2.444rem;
        display: flex;
        flex-direction: column;
        
        .service-cat-item__name {
            display: flex;
            align-items: center;
            width: 80%;
            min-width: 16.4rem;
            font-weight: 700;
            font-size: 1.33rem;
            line-height: 120%;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
            
            .service-cat-item__icon {
                flex-shrink: 0;
                width: 80px;
                height: 80px;
                background-size: 80px 80px;
                background-position: center;
                background-repeat: no-repeat;
                margin-left: -10px;
                margin-right: 10px;
            }
            
            strong {
                display: block;
                margin-top: 10px;
                font-family: var(--font-family-heading);
                font-weight: 600;
                font-style: normal;
                font-size: calc(14px + 16 * (100vw / 1280));
                line-height: 1;
            }
        }
        
        .service-cat-item__desc {
            width: 100%;
            overflow: hidden;
            line-height: 150%;
            color: var(--main-color);
            flex-grow: 1;
            position: relative;
            z-index: 2;
            
            &.h6 {
                height: 6.6rem;
            }
            
            &.h8 {
                height: 8rem;
            }
            
            &.h12 {
                height: 12rem;
            }

            @media screen and (max-width: 800px) {
                overflow: visible;
                &.h6 {
                    height: auto;
                }
            }
        }
        
    }
    
    
    .card-icon-container {
        position:relative;
        
        .card-icon {
            display:inline-block;
            position:relative;
            border:solid var(--bg-color) 30px;
            margin:-30px;
            background-color: var(--bg-color);
 
            .card-icon-content {
                position: relative;
                border-radius: var(--border-radius-l);
                background: var(--green-color);
                color: var(--white-color);
                overflow: hidden;
                display: inline-block;
                transition: .3s;
                
                &.card-icon-button {
                    padding: 18px 36px;
                }
            }
            
            &::before {
                content: "";
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                padding: 10px;
                background: transparent;
                border-width: 10px;
                border-radius: var(--border-radius-xl);
                border-style: solid;
                overflow: hidden;
                
                right: -60px;
                top: -10px;
                border-color: var(--bg-color) transparent transparent transparent;
                transform: rotate(-45deg);
            }
            
            &::after {
                content: "";
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                padding: 10px;
                background: transparent;
                border-width: 10px;
                border-radius: var(--border-radius-xl);
                border-style: solid;
                overflow: hidden;
                
                left: -10px;
                bottom: -60px;
                border-color: var(--bg-color) transparent transparent transparent;
                transform: rotate(-45deg);
            }
            
            &:hover {
                .card-icon-content {
                    opacity: .6;
                }
            }
        }
        
        & .card-icon-left {
            border-radius:0 0 60px 0;
            float:left;
            margin-left:-30px;
        }
        & .card-icon-right {
            float:right;
            border-radius:0 0 0 60px;
            margin-right:-30px;
        }
        
        & .card-icon-right::before {
            left: -60px;
            transform: rotate(45deg);
        }
        & .card-icon-right::after {
            left:auto;
            right:-10px;
            transform: rotate(45deg);
        }
    }
    
    & :last-child {
        & .card-icon {
            margin-top:0;
            margin-bottom:-30px;
            
            &.card-icon-left {
                border-radius:0 var(--border-radius-xl) 0 0 !important;
                
                &::before {
                    left: -10px;
                    top: -60px;
                    transform: rotate(225deg);
                }
                &::after {
                    left: auto;
                    right:-60px;
                    bottom: -10px;
                    transform: rotate(-135deg);
                }
            }
            
                    
            &.card-icon-right {
                border-radius: var(--border-radius-xl) 0 0 0 !important;
                
                &::before {
                    left: auto;
                    right: -10px;
                    top: -60px;
                    transform: rotate(-225deg);
                }
                &::after {
                    left: -60px;
                    bottom: -10px;
                    transform: rotate(135deg);
                }
            }
        }
    }
    
    @media screen and (max-width: 960px) {
        margin: 0;
        margin-bottom: 20px;
    }
    
}

.section.white .card-icon {
    --bg-color: white;
}



/*----------------------------------------------------------------------------- PORTFOLIO
*/

.portfolio-container {
    position: relative;
    overflow: hidden;
    
    &:before {
        content: "";
        padding-top: 90%;
        float: left;
    }
    
    .mobile-container {
        position: absolute;
        width: 30%;
        right: 5%;
        bottom: 0;
        
        div {
            position: absolute;
            top: 14.3%;
            left: 10.5%;
            width: 77.8%;
            height: 70.4%;
            overflow: auto;
            line-height: 0;
            font-size: 0;
            
            &::-webkit-scrollbar {
                width: 0px;
            }
    
        }
    }
    
    .desktop-container {
        left: 0;
        top: 0;
        
        div {
            position: absolute;
            top: 10.7%;
            left: 7.4%;
            width: 84.3%;
            height: 55.1%;
            overflow: auto;
            line-height: 0;
            font-size: 0;
            
            &::-webkit-scrollbar {
                width: 0px;
            }
        }
    }
}

.portfolio-card {
    
    .portfolio-card__card-image-outer {
        width: 100%;
        aspect-ratio: 3 / 2;
        overflow: hidden;
        border-radius: var(--border-radius-xl);
        
        .portfolio-card__card-image {
            width: 100%;
            aspect-ratio: 3 / 2;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: 0.3s;
        }
    }
    
    .portfolio-card__card-content {
        height: 100px;
        margin: 18px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        
        strong {
            display: block;
            font-size: 1.2rem;
            line-height: 1;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 9px;
        }
        
        p {
            font-size: 1rem;
            line-height: 1.2;
            color: var(--main-color);
        }
    }
    
    
    &:hover {
        box-shadow: 0px 0px 8px 8px rgb(100 142 178 / 10%);
        
        .portfolio-card__card-image {
            transform: scale(1.1);
            z-index: 5;
        }
        
    }
    
}

.post-card {
    
    &.completed {
        filter: grayscale(0.8);
        opacity: .7;
    }
    
    .post-card__card-image-outer {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: var(--border-radius-xl);
        position: relative;
        
        .post-card__card-image{
            width: 100%;
            aspect-ratio: 16 / 9;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: 0.3s;
        }

        .tag_category {
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 20px;
            border-radius: 50px;
            background-color: var(--white-color);
            color: var(--main-color);
            opacity: .95;
            left: 8px;
            bottom: 8px;
            font-size: .9rem;
            box-shadow: var(--box-shadow);

            .tag_category__icon {
                font-size: 0.8rem;
                opacity: .8;

                &.fa-gift {
                    color: var(--green-color);
                }
            }   
                
        }

        .tag_countdown {
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 20px;
            border-radius: 50px;
            background-color: var(--white-color);
            color: var(--main-color);
            opacity: .95;
            right: 8px;
            bottom: 8px;
            font-size: .9rem;
            box-shadow: var(--box-shadow);

            .tag_category__icon {
                font-size: 0.8rem;
                opacity: .8;

                &.completed {
                    display: none;
                }
            }
            
        }
    }

    .post-card__card-date {
        padding: 0 18px;
        margin-top: 18px;
        display: flex;
        justify-content: space-between;
        opacity: .5;
        color: var(--main-color);
        font-size: .9rem;

        .card-date__views {
            display: flex;
            align-items: center;
            gap: 5px;
        }
    }
    
    .post-card__card-content {
        padding: 0 18px 36px 18px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        h3 {
            font-size: 1.2rem;
            line-height: 1;
            font-weight: 700;
            color: var(--main-color);
            margin: 18px 0;
            height: 34px;
            overflow: hidden;
        }
        
        p {
            margin: 0;
            font-size: .9rem;
            line-height: 1.2;
            color: var(--main-color);
        }
    }
    
    
    &:hover {
        box-shadow: 0px 0px 8px 8px rgb(100 142 178 / 10%);
        
        .post-card__card-image {
            transform: scale(1.1);
            z-index: 5;
        }
        
    }
    
}

.privacy-policy {
    .privacy-policy__content {
        padding-right: 2rem;
        text-align: justify;

        h3 {
            text-align: left;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .section {
            padding: 16px 0;
        }
    }

    .pinned {
        max-width: calc(100vw - 80%);
    }

    @media screen and (max-width: 992px) {
        padding-right: 0;
        text-align: left;
    }
}

.table-of-contents a.active {
    padding-left: 12px;
    border-left: 2px solid var(--green-color);
    color: var(--green-color);
}

.table-of-contents a:hover {
    padding-left: 14px;
    border-left: 2px solid var(--blue-color);
}




footer {
    /* margin: 0 1.09vw; */
    background: var(--dark-blue-color);
    color: white;
    padding-top: 60px;
    padding-bottom: 30px;
    /* border-radius: var(--border-radius-xl);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; */
    
    .footer-icon {
        display: inline-block;
        width: 58px;
        height: 58px;
        padding: 5px;
    }
    
    .static, .apk {
        text-align: right;
    }
    
    .footer-copy {
        font-size: 0.9rem;
    }
}

form {
    input {
        &.browser-default{
            display: inline-flex;
            width: 100%;
            font-size: 1rem;
            line-height: 1;
            min-height: 58px;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            outline: none;
            appearance: none;
            background-color: var(--white-color);
            box-shadow: var(--box-shadow);
            text-overflow: ellipsis;
            -webkit-appearance: none;
            -moz-appearance: none;
            -webkit-tap-highlight-color: var(--main-color);
        }
    }
        
    
    textarea {
        display: inline-flex;
        width: 100%;
        min-height: 180px;
        font-size: 1rem;
        padding: 18px 36px;
        border: none;
        border-radius: 8px;
        outline: none;
        appearance: none;
        background-color: var(--white-color);
        box-shadow: var(--box-shadow);
        text-overflow: ellipsis;
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-tap-highlight-color: var(--main-color);
        
        &:focus:not([readonly]) {
            border-bottom: none;
            box-shadow: var(--box-shadow);
        }
    }
}

input[type="text"] {
    margin-bottom: 1.5rem;
}


.contact-section {

    .contact-section__item  {
        display: flex;
        align-items: center;
                
        .contact-section__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 32px;
            width: 32px;
            font-size: 12px;
            color: var(--white-color);
            background-color: var(--green-color);
            border-radius: 6px;
            margin-right: 10px;
        }
    }
    
    
}

.feedback-section {
    .button {
        margin-bottom: 10px;
    }
}



@media only screen and (max-width: 1520px) {
    
    .header-contacts__phone {
        font-size: 1.2rem;
        
        .fa-solid {
            font-size: 1rem;
        }
    }
}

@media only screen and (max-width: 992px) {
    .header-navigation {
        .header-contacts {
            flex-direction: row;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            
            .header-contacts__phone {
                
                .fa-solid {
                    font-size: 1.2rem;
                    color: var(--main-color);
                    padding: 15px;
                    outline: 1px solid #e0e0e0;
                    border-radius: var(--border-radius-m);
                }
            }
            
            .header-contacts__mail {
                .fa-solid {
                    font-size: 1.2rem;
                    color: var(--main-color);
                    padding: 15px;
                    border: 1px solid #e0e0e0;
                    border-radius: var(--border-radius-m);
                }
            }
        }
        
        .button-login {
            min-height: 36px;
            min-width: 36px;
            padding: 14px 24px;
        }
        
        .sidenav-trigger {
            font-size: 1.2rem;
            color: var(--white-color);
            padding: 16px 20px;
            background: var(--blue-color);
            border-radius: var(--border-radius-m);
            display: flex;
            align-items: center;
            line-height: 1;
            height: auto;
            margin: 0;
        }
    }
    
    
    
    .slider {
        top: 40px;
        .slides {
            
            .slider-banner{
                .caption {
                    padding-left: 0;
                }
            }
            
        }
    }
    
    
    .skill-box__number {
        font-size: 3rem;
        margin-right: 20px;
    }
    
    
}

@media only screen and (max-width: 600px) {
    .org-card {
        height: auto;
        
        .org-card__image {
            margin-bottom: 0;
        }
    }
    
    .client-section {
        .client-section__client-name {
            font-size: 1.8rem;
        }
    }

}


#clientsContainer {
    height:620px;
    overflow:hidden;
    transition: all 0.5s;
}
.show-more-clients-btn {cursor:pointer}


.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.mobile-slider, .mac-slider {
    position: relative
}

.mobile-slider__hidden {
    overflow: hidden
}

.mobile-slider__container {
    padding: 120px 0;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    max-width: 408px;
    overflow: initial
}

.mobile-slider__phone {
    position: absolute;
    top: 0;
    left: -4px;
    display: flex;
    max-width: 408px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2
}

.mobile-slider__phone::before {
    content: "";
    position: absolute;
    top: 107px;
    bottom: 102px;
    left: 0px;
    right: 0px;
    border: 33px solid transparent;
    border-image: url("/assets/img/image-border-phone-portfolio-middle.png") 37;
    box-sizing: border-box;
    z-index: 3
}

.mobile-slider__phone-top {
    object-fit: contain
}

.mobile-slider__phone-bottom {
    position: relative;
    left: 2px;
    object-fit: contain
}
.mobile-slider__slide {
    max-width: 360px;
    height: 530px;
    overflow-x: hidden;
    overflow-y: hidden
}


.mobile-slider__slide::-webkit-scrollbar {
    width: 0
}

.mobile-slider__slide.swiper-slide-active {
    overflow-y: scroll
}

.mobile-slider__slide.swiper-slide-active .mobile-slider__image::before {
    opacity: 0
}

.mobile-slider__slide.swiper-slide-active .mobile-slider__name {
    display: none
}

.mobile-slider__slide:not(.swiper-slide-active) .mobile-slider__image {
    height: 90%;
    overflow: hidden
}

.mobile-slider__image {
    position: relative
}

.mobile-slider__image img {
    width: 100%
}

.mobile-slider__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all .3s ease
}

.mobile-slider__name {
    margin-top: 20px;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--main-color);
    font-weight: 500;
}

.mobile-slider__next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 3;
    cursor: pointer;
    width: 120px;
    height: 120px;
    background: var(--white-color);
    opacity: .6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    transition: .5s ease-in-out;
    user-select: none;
}

.mobile-slider__next svg {
    position: relative;
    width: 65px;
    transition: all .3s ease
}

.mobile-slider__next:hover {
    background-color: var(--green-color);
}

.mobile-slider__next:hover svg {
    fill: #fff;
    filter: brightness(10)
}

.mobile-slider__prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(180deg);
    z-index: 3;
    cursor: pointer;
    width: 120px;
    height: 120px;
    background: var(--white-color);
    opacity: .6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    transition: .5s ease-in-out;
    user-select: none;
}

.mobile-slider__prev svg {
    position: relative;
    width: 65px;
    transition: all .3s ease
}

.mobile-slider__prev:hover {
    background-color: var(--green-color);
}
.mobile-slider__prev:hover svg {
    fill: #fff;
    filter: brightness(10)
}

@media(max-width: 1450px) {
    .portfolio-mobile__group-title {
        gap:40px;
        margin-bottom: 80px
    }
}

@media(max-width: 1170px) {
    .portfolio-mobile__wrap {
        padding:40px 0
    }

    .portfolio-mobile__group-title {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
        margin-bottom: 40px
    }

    .mobile-slider__next {
        display: none
    }

    .mobile-slider__next svg {
        width: 35px
    }

    .mobile-slider__prev {
        display: none
    }

    .mobile-slider__prev svg {
        width: 35px
    }
}

@media(max-width: 768px) {
    .mobile-slider__next::before {
        width:20vw;
        height: 100px;
        left: -15px
    }

    .mobile-slider__container {
        padding: 105px 0
    }

    .mobile-slider__slide:not(.swiper-slide-active) .mobile-slider__image {
        height: 100%
    }

    .mobile-slider__name {
        display: none
    }
}

@media(max-width: 500px) {
    .mobile-slider__container {
        padding:82px 0;
        max-width: 270px;
        margin-left: auto
    }

    .mobile-slider__phone {
        max-width: 270px
    }

    .mobile-slider__phone::before {
        top: 80px;
        bottom: 76px;
        border: 20px solid transparent;
        border-image: url("/assets/img/image-border-phone-portfolio-middle.png");
    }

    .mobile-slider__slide {
        max-width: 250px;
        height: 350px
    }
}


.image-cover-container {
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 4px solid var(--green-color);
    border-radius: var(--border-radius-l);
    
    .image-cover-container__blur {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(24px);
        border-radius: var(--border-radius-l);
        overflow: hidden;
    }
    
    .image-cover-container__contain {
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}




.mac-slider .mobile-slider__container {
    padding: 120px 0;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    max-width: 824px;
    overflow: initial
}
.mac-slider .mobile-slider__mobile {
    position: absolute;
    top: 0;
    left: 0px;
    display: flex;
    max-width: 824px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2
}
.mac-slider .mobile-slider__mobile::before {
    content: "";
    position: absolute;
    top: 87px;
    bottom: 163px;
    left: 0px;
    right: 0px;
    border: 33px solid transparent;
    border-image: url("/assets/img/image-mac-border-portfolio-solution-top.png") 37;
    box-sizing: border-box;
    z-index: 3
}
.mac-slider .mobile-slider__mobile-bottom {
    position: relative;
    left: 0px;
    object-fit: contain
}

.mac-slider .mobile-slider__slide {
    max-width: 824px;
}

.mac-slider .mobile-slider__name {
    display:none;
}


@media(max-width: 950px) {
    .mac-slider .mobile-slider__mobile::before {
        border-width:16px;
        top:78px;
        bottom:79px;
    }
    .mac-slider .mobile-slider__slide {
        height: 180px;
    }
    .mac-slider .mobile-slider__container {
        padding: 95px 16px;
    }

    .mac-slider .mobile-slider__container, .mac-slider .mobile-slider__mobile, .mac-slider .mobile-slider__slide {
        max-width:400px;
    }
}



.cookie-container {   
    margin: auto;
    margin-bottom:1.75rem;
    border: 0;
    border-radius: 18px;
    box-shadow: var(--box-shadow);
    padding: 24px;  
    width: 96%;
    max-width: 1440px;
    
    &::backdrop {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .cookie-title {
        color: var(--main-color);
        line-height: 1.25;
        font-size: 1rem;
    }
    
    .cookie-content {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        
        .cookie-text {
            opacity: 0.8;
            font-size: .9rem;
            
            a {
                outline: none;
           }
        }
        
        @media screen and (max-width: 800px) {
            flex-wrap: wrap;
        }
    }
    
}

.owl-carousel4.owl-carousel .owl-stage-outer {
    overflow:visible;
}

.owl-carousel .owl-item {
    opacity: .3;
    
    &.active {
        opacity: 1;
    }
}





.relative {
    position:relative;
    overflow:hidden;
}

.body_background {
    position:fixed;
    z-index:-1;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background:url('/assets/img/background/parallax-bg-1.jpg');

    .particles {
        position:absolute;
        left:0;
        top:0;
        right:0;
        bottom:0;
    }
}

.start-section {
    background: transparent url('/assets/img/parallax-finish.svg') left center / cover no-repeat;

    @media(max-width: 992px) {
        background:none;
    }
}