.project-wrp {
  position: relative;
  overflow: hidden;
  height: 720px;
  margin-top: 60px;

    @include breakpoint (max-md){
        margin-top: 30px;
    }
    
    .project-hover-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;


  .tab-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    transition: all 0.7s;

    &.active {
      transform: scale(1);
      opacity: 1;
    }
  }
}

.project-slider {
  position: relative;
  z-index: 3;
}

.project-items-one {
  display: flex;
  align-items: flex-end;
  height: 706px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.57);
  overflow: hidden;
  position: relative;

  .arrow-icon {
        display: inline-block;
        width: 100px;
        height: 100px;
        line-height: 100px;
        text-align: center;
        background-color: $theme-color;
        color: $white;
        border-radius: 50%;
        font-size: 24px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        @include transition;

        &:hover {
            background-color: $header-color;
        }
  }

  .content {
    padding: 44px 28px;
    transform: translateY(0);
    position: relative;
    @include transition;
    text-align: center;
    background: rgba(9, 48, 46, 0.24);
    backdrop-filter: blur(42px);
    border-radius: 12px;
    bottom: 57px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 30px;

    @include breakpoint (max-lg){
        margin: 0 20px;
        padding: 40px 22px;
        bottom: 30px;
    }

    .title {
      color: $white;
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 10px;

      @include breakpoint (max-xl){
            font-size: 20px;
        }
    }

    p {
        color: $white;
    }
  }

  .hover-content {
    background-color: $white;
    border-radius: 12px;
    text-align: center;
    padding: 45px 30px;
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    @include transition;
    margin: 0 40px;

    @include breakpoint (max-lg){
        margin: 0 20px;
        padding: 40px 28px;
    }

    ul {
        @include flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 10px;

        li {
            color: $theme-color;
            font-weight: 500;
            text-transform: capitalize;

            a {
                color: #206D69;
            }
        }
    }

    .title {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 10px;

        @include breakpoint (max-xl){
            font-size: 20px;
        }

        a {
            background-position: 0 95%;
            background-repeat: no-repeat;
            background-size: 0% 2px;
            display: inline;

            &:hover {
                background-size: 100% 2px;
                background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                color: $theme-color;
            }
        }
    }

    p {
        font-size: 16px;
        font-weight: 500;
        color: #626C74;
        max-width: 320px;
        margin: 0 auto;
    }
  }

  &:hover {
    .arrow-icon {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }
    .content {
        opacity: 0;
        visibility: hidden;
    }

     .hover-content {
        opacity: 1;
        visibility: visible;
        bottom: 57px;

        @include breakpoint (max-lg){
            bottom: 20px;
        }
     }
  }
}
}

.project-section {
    .nav {
        @include flex;
        justify-content: center;
        margin-top: 50px;
        gap: 10px;

        .nav-item {
            .nav-link {
                display: inline-block;
                height: 36px;
                line-height: 36px;
                background-color: $white;
                color: $theme-color;
                font-size: 16px;
                font-weight: 600;
                padding: 0 22px;
                border-radius: 90px;

                &.active {
                    background-color: $theme-color;
                    color: $white;
                }
            }
        }
    }
}


.project-box-items-style-2 {
    background-color: $white;
    padding: 10px;
    border-radius: 12px;
    margin-top: 30px;

    .project-thumb {
        overflow: hidden;
        position: relative;
        border-radius: 12px;
        z-index: 99;

        img {
            @include imgw;
            border-radius: 12px;
            position: relative;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;


            &:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px)
            }
        }

        .circle-icon {
            background-color: $theme-color;
            width: 120px;
            height: 120px;
            line-height: 120px;
            text-align: center;
            border-radius: 50%;
            color: $white;
            display: inline-block;
            font-size: 30px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
            visibility: hidden;
            @include transition;
            z-index: 1;

            &:hover {
                background-color: $header-color;
                color: $white;
            }
        }
    }

    .project-content {
        @include flex;
        justify-content: space-between;
        padding: 20px;

        @include breakpoint (max-sm){
            flex-wrap: wrap;
            gap: 20px;
        }

        h3 {
            font-size: 22px;
            font-weight: 600;
            max-width: 230px;

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;

                &:hover {
                    color: $theme-color;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                }
            }
        }


        .title {
            font-size: 22px;
            font-weight: 600;
            max-width: 230px;

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;

                &:hover {
                    color: $theme-color;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                }
            }
        }

        .sm-text {
            background-color: rgba(29, 139, 138, 0.12);
            width: 128px;
            height: 35px;
            line-height: 35px;
            border-radius: 90px;
            text-align: center;
            color: rgba(29, 139, 138, 1);
            font-weight: 600;

        }
    }

    &:hover {
        .project-thumb {

            img {
                &:first-child {
                    -webkit-transform: translateX(0) scaleX(1);
                    transform: translate(0) scaleX(1);
                    opacity: 1;
                    -webkit-filter: blur(0);
                    filter: blur(0);
                }

                &:nth-child(2) {
                    -webkit-transform: translateX(-50%) scaleX(2);
                    transform: translateX(-50%) scaleX(2);
                    opacity: 0;
                    -webkit-filter: blur(10px);
                    filter: blur(10px);
                }
            }

            .circle-icon {
                opacity: 1;
                visibility: visible;
                transform: translate(-50%, -50%) scale(1);
            }
        }
    }
}


.project-box-items-style-3 {
    margin-top: 30px;
    background-color: $white;
    padding: 10px;
    border-radius: 12px;
    

    .thumb {
        overflow: hidden;
        position: relative;
        border-radius: 12px;

        img {
            @include imgw;
            border-radius: 12px;
            position: relative;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;


            &:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px)
            }
        }
    }

    .content {
        text-align: center;
        margin-top: 30px;
        padding-bottom: 22px;

        span {
            border: 1px solid rgba(29, 139, 138, 0.33);
            border-radius: 90px;
            padding: 8px 15px;
            font-weight: 600;
            font-size: 15px;
            color: $theme-color;
        }

        h3 {
            font-size: 22px;
            margin-top: 20px;

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;

                &:hover {
                    color: $theme-color;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                }
            }
        }
    }

    &.style-2 {
        margin-top: 80px;
    }

    &:hover {
        .thumb {
            img {
                &:first-child {
                    -webkit-transform: translateX(0) scaleX(1);
                    transform: translate(0) scaleX(1);
                    opacity: 1;
                    -webkit-filter: blur(0);
                    filter: blur(0);
                }

                &:nth-child(2) {
                    -webkit-transform: translateX(-50%) scaleX(2);
                    transform: translateX(-50%) scaleX(2);
                    opacity: 0;
                    -webkit-filter: blur(10px);
                    filter: blur(10px);
                }
            }
        }
    }

    &.items-style-7 {
        position: relative;

        .content {
            text-align: left;
            position: relative;

            .icon {
                border: 1px solid rgba(2, 36, 35, 0.2);
                border-radius: 50%;
                color: $theme-color;
                font-size: 15px;
                height: 46px;
                width: 46px;
                line-height: 46px;
                text-align: center;
                position: absolute;
                right: 10px;
                top: 15px;
            }
        }
    }
}

.project-section-5 {
    background-color: $theme-color;
}

.project-box-items-5 {
    margin-top: 30px;

    .content {
         @include breakpoint (max-md){
            text-align: center;
        }
        p {
            color: rgba(255, 255, 255, 0.78);
            font-weight: 500;
        }

        h3 {
            font-size: 22px;
            max-width: 356px;
            margin-top: 6px;

             @include breakpoint (max-xl){
                max-width: initial;
                font-size: 20px;
            }

             @include breakpoint (max-lg){
                font-size: 22px;
            }

             @include breakpoint (max-md){
                font-size: 18px;
            }

            a {
                color: $white;
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;
                
                &:hover {
                    color: $white;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $white 0%, $white 100%);
                }
            }
        }
    }

    .thumb {
        overflow: hidden;
        position: relative;
        border-radius: 12px;
        z-index: 99;
        margin-top: 30px;

         @include breakpoint (max-md){
            height: 400px;
        }

        img {
            @include imgw;
            border-radius: 12px;
            position: relative;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;


            &:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px)
            }
        }
    }

    &:hover {
        .thumb {
            img {
                &:first-child {
                    -webkit-transform: translateX(0) scaleX(1);
                    transform: translate(0) scaleX(1);
                    opacity: 1;
                    -webkit-filter: blur(0);
                    filter: blur(0);
                }

                &:nth-child(2) {
                    -webkit-transform: translateX(-50%) scaleX(2);
                    transform: translateX(-50%) scaleX(2);
                    opacity: 0;
                    -webkit-filter: blur(10px);
                    filter: blur(10px);
                }
            }
        }
    }
}

.project-slider-5 {
    margin: 0 30px;
}

.project-details-wrapper {
    .project-details-thumb {
        border-radius: 12px;

        img {
            @include imgw;
            border-radius: 12px;
        }
    }

    .title {
        margin-top: 30px;
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 25px;

        @include breakpoint (max-xxl){
            font-size: 42px;
        }

        @include breakpoint (max-sm){
            font-size: 35px;
        }
    }

    .project-details-thumb-2 {
        margin-top: 30px;

        img {
            @include imgw;
            border-radius: 12px;
        }
    }

    .title-2 {
        margin-top: 40px;
        font-size: 32px;
        font-weight: 600;
    }

    .list-items {
        @include flex;
        gap: 80px;
        margin-top: 30px;

        @include breakpoint (max-xl){
            flex-wrap: wrap;
            gap: 30px;
        }

        ul {
            li {
                font-size: 16px;
                font-weight: 500;
                color: #577D7D;

                &:not(:last-child) {
                    margin-bottom: 20px;
                }

                img {
                    margin-right: 8px;
                }
            }
        }
    }

    .prev-item {
        @include flex;
        justify-content: space-between;
        background-color: $white;
        border-radius: 12px;
        padding: 20px;
        margin-top: 80px;

        @include breakpoint (max-xl) {
           flex-wrap: wrap;
           gap: 20px;
        }

        .prev-left {
            @include flex;
            gap: 20px;

            .thumb {
                img {
                    @include imgw;
                    border-radius: 12px;
                }
            }

            .content {
                .prev-btn {
                    font-weight: 500;
                    font-size: 13px;
                    text-transform: uppercase;
                    color: #8D8D8D;
                    font-family: $body-font;

                    i {
                        margin-right: 5px;
                    }
                }

                p {
                    color: #2F2E35;
                    font-weight: 600;
                    font-size: 18px;
                    font-family: $heading-font;
                }
            }
        }
    }
}

.main-sideber {

    .sideber-thumb-box {

        .project-thumb {
            img {
                @include imgw;
                border-radius: 12px;
            }
        }
    }

    .sideber-box {
        padding: 35px 30px;
        background-color: $white;
        border-radius: 12px;
        margin-top: 30px;

        .title {
            font-size: 22px;
            font-weight: 600;
        }

        .line {
            width: 100px;
            height: 3px;
            background-color: var(--theme);
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .project-categories {
            margin-top: 30px;

            li {
                @include flex;
                gap: 25px;
                font-size: 16px;
                font-weight: 500;
                color: #577D7D;

                span {
                    font-size: 16px;
                    font-weight: 700;
                    color: #1E1E1C;
                }

                &:not(:last-child) {
                    margin-bottom: 30px;
                }

                &:hover {
                    a {
                        color: $theme-color;
                    }
                }
            }
        }

        .social-icon {
            font-size: 20px;
            gap: 10px;
            @include flex;
            margin-top: 30px;

            a {
                color: rgba(97, 96, 103, 1);
                border: 1px solid rgba(156, 156, 222, 0.34);
                width: 42px;
                height: 42px;
                line-height: 42px;
                text-align: center;
                border-radius: 12px;
                @include transition;

                &:hover {
                    background-color: $theme-color;
                    color: $white;
                }
            }
        }
    }

    .sideber-call-box {
        background-color: $theme-color;
        margin-top: 30px;
        border-radius: 12px;
        padding: 40px;

        .title-2 {
            color: $white;
            font-size: 32px;
            font-weight: 600;
            text-align: center;
        }

        p {
            color: $white;
            margin-top: 12px;
            text-align: center
        }

        .bottom-area {
            @include flex;
            gap: 20px;
            margin-top: 30px;
            justify-content: center;

            .content {
                span {
                    font-size: 14px;
                    font-weight: 500;
                    color: $white;
                }

                p {
                    font-size: 18px;
                    font-weight: 700;

                    a {
                        color: $white;
                    }
                }
            }
        }
    }
}


.project-box-items-style-9 {
    margin-top: 30px;

    .thumb {
        overflow: hidden;
        position: relative;
        border-radius: 12px;

        img {
            @include imgw;
            border-radius: 12px;
            position: relative;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;


            &:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px)
            }
        }
    }

    .content {
        margin-top: 18px;

        h3 {
            font-size: 30px;
            margin-bottom: 5px;

            @include breakpoint (max-md){
                font-size: 24px;
            }

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;

                &:hover {
                    color: $theme-color;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                }
            }
        }

        p {
            font-size: 16px;
        }
    }


    &:hover {
        .thumb {
            img {
                &:first-child {
                    -webkit-transform: translateX(0) scaleX(1);
                    transform: translate(0) scaleX(1);
                    opacity: 1;
                    -webkit-filter: blur(0);
                    filter: blur(0);
                }

                &:nth-child(2) {
                    -webkit-transform: translateX(-50%) scaleX(2);
                    transform: translateX(-50%) scaleX(2);
                    opacity: 0;
                    -webkit-filter: blur(10px);
                    filter: blur(10px);
                }
            }
        }
    }
} 



.project-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 135px;

    @include breakpoint(max-xl){
        gap: 10px 60px;
    }

    @include breakpoint(max-lg){
        gap: 10px 30px;
    }

    @include breakpoint(max-md){
        gap: 0;
    }

    .project-item{
        width: calc(50% - 67.5px);

        @include breakpoint(max-xl){
            width: calc(50% - 30px);
        }

        @include breakpoint(max-lg){
            width: calc(50% - 15px);
        }

        @include breakpoint(max-md){
            width: 100%;
        }

        &.full{
            width: 100%;
        }

        .project-box-items-style-6 {
            margin-top: 30px;
            border-radius: 12px;

            .thumb {
                overflow: hidden;
                position: relative;
                border-radius: 12px;

                img {
                    @include imgw;
                    border-radius: 12px;
                    position: relative;
                    display: block;
                    object-fit: cover;
                    -webkit-transition: all 500ms ease;
                    transition: all 500ms ease;

                    &:first-child {
                        position: absolute;
                        left: 0;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        z-index: 1;
                        -webkit-transform: translateX(50%) scaleX(2);
                        transform: translateX(50%) scaleX(2);
                        opacity: 0;
                        -webkit-filter: blur(10px);
                        filter: blur(10px);
                    }
                }
            }

            .content {
                margin-top: 30px;

                @include breakpoint(max-md){
                    margin-top: 20px;
                }

                h3 {
                    font-size: 22px;
                    margin-top: 20px;
                    margin-bottom: 25px;

                    @include breakpoint(max-lg){
                        font-size: 20px;
                        margin-bottom: 20px;
                    }

                    @include breakpoint(max-md){
                        font-size: 18px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                    }

                    a {
                        background-position: 0 95%;
                        background-repeat: no-repeat;
                        background-size: 0% 2px;
                        display: inline;

                        &:hover {
                            color: $theme-color;
                            background-size: 100% 2px;
                            background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                        }
                    }
                }

                .project-date {
                    @include flex;
                    gap: 20px;
                    flex-wrap: wrap;

                    @include breakpoint(max-md){
                        gap: 10px;
                    }

                    li {
                        span {
                            border: 1px solid rgba(29, 139, 138, 0.33);
                            border-radius: 90px;
                            padding: 8px 15px;
                            font-weight: 600;
                            font-size: 15px;
                            color: $theme-color;

                            @include breakpoint(max-md){
                                font-size: 13px;
                                padding: 6px 12px;
                            }
                        }
                    }
                }
            }

            &.style-2 {
                margin-top: 65px;

                @include breakpoint(max-lg){
                    margin-top: 30px;
                }
            }

            &:hover {
                .thumb {
                    img {
                        &:first-child {
                            -webkit-transform: translateX(0) scaleX(1);
                            transform: translateX(0) scaleX(1);
                            opacity: 1;
                            -webkit-filter: blur(0);
                            filter: blur(0);
                        }

                        &:nth-child(2) {
                            -webkit-transform: translateX(-50%) scaleX(2);
                            transform: translateX(-50%) scaleX(2);
                            opacity: 0;
                            -webkit-filter: blur(10px);
                            filter: blur(10px);
                        }
                    }
                }
            }
        }
    }
}


.project-thumb-box-items-10 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;

    @include breakpoint (max-lg){
        height: 500px;

        img {
            object-fit: cover;
        }
    }

    img {
        @include imgw;
        border-radius: 12px;
        transition-delay: .1s;
        transition-timing-function: ease-in-out;
        transition-duration: .7s;
        transition-property: all;
    }

    .project-content {
        @include flex;
        justify-content: space-between;
        border-radius: 12px;
        background: $white;
        padding: 18px 20px;
        position: absolute;
        bottom: -100px;
        left: 30px;
        right: 30px;
        line-height: 1;
        opacity: 0;
        visibility: hidden;
        @include transition;

        @include breakpoint (max-xl){
            flex-wrap: wrap;
            gap: 20px;
            padding: 25px;
        }

        .text-items {
            h3 {
                margin-bottom: 15px;
                font-size: 22px;
                font-weight: 600;

                a {
                    background-position: 0 95%;
                    background-repeat: no-repeat;
                    background-size: 0% 2px;
                    display: inline;
                
                    &:hover {
                        color: $theme-color;
                        background-size: 100% 2px;
                        background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                    }
                }
            }

            .sm-text {
                background-color: rgba(29, 139, 138, 0.12);
                text-align: center;
                border-radius: 90px;
                color: rgba(29, 139, 138, 1);
                font-weight: 600;
                padding: 12px 22px;
                line-height: 1;
                display: inline-block;
            }
        }

        .circle-icon {
            background-color: $theme-color;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            color: $white;
            font-size: 20px;

            &:hover {
                background-color: $header-color;
                color: $white;
            }
        }
    }

    &:hover {
        .project-content {
            opacity: 1;
            visibility: visible;
            bottom: 30px;
        }

        img {
            transform: scale(1.1) rotate(2deg);
        }
    }
}


.project-section-10 {
    margin: 0 20px;
}



.project-wrapper-11 {
    margin-left: 112px;
    margin-right: -22%;

    @include breakpoint (max-lg){
        margin: 0 18px;
    }
}

.project-box-items-11 {
    margin-top: 30px;
    border-radius: 12px;

    &.style-2 {
        .content {
             border-bottom-left-radius: 0 !important;
            border-bottom-right-radius: 0 !important;
        }

        .thumb {
            border-radius: 0px 0px 12px 12px;

            img {
                 border-radius: 0px 0px 12px 12px;
            }
        }
    }

    .thumb {
        overflow: hidden;
        position: relative;
        border-radius: 12px 12px 0px 0px;
        z-index: 99;

        img {
            @include imgw;
            border-radius: 12px 12px 0px 0px;
            position: relative;
            display: block;
            object-fit: cover;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;


            &:first-child {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                -webkit-transform: translateX(50%) scaleX(2);
                transform: translate(50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px)
            }
        }
    }

    .content {
        padding: 40px 30px;
        border-radius: 12px;
        background-color: $white;

        .title {
            font-size: 30px;
            font-weight: 600;

            @include breakpoint (max-xl){
                font-size: 24px;
            }

            a {
                background-position: 0 95%;
                background-repeat: no-repeat;
                background-size: 0% 2px;
                display: inline;
                
                &:hover {
                    color: $theme-color;
                    background-size: 100% 2px;
                    background-image: linear-gradient(180deg, $theme-color 0%, $theme-color 100%);
                }
            }
        }

        .number-area {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;

             @include breakpoint (max-xl){
                gap: 20px;
                display: grid;
                margin-top: 20px;
            }

            span {
                font-size: 18px;
                font-weight: 500;
                font-family: $body-font;

                 @include breakpoint (max-xl){
                    font-size: 16px;
                }
            }

            p {
                max-width: 390px;
                font-size: 18px;
                font-weight: 500;
                font-family: $body-font;

                 @include breakpoint (max-xl){
                    font-size: 16px;
                }
            }
        }
    }

    &:hover {
        .thumb {
            img {
                &:first-child {
                    -webkit-transform: translateX(0) scaleX(1);
                    transform: translate(0) scaleX(1);
                    opacity: 1;
                    -webkit-filter: blur(0);
                    filter: blur(0);
                }

                &:nth-child(2) {
                    -webkit-transform: translateX(-50%) scaleX(2);
                    transform: translateX(-50%) scaleX(2);
                    opacity: 0;
                    -webkit-filter: blur(10px);
                    filter: blur(10px);
                }
            }
        }
    }
}