Current File : /home/mdkeenpw/public_html/wp-content/themes/logistik/assets/sass/template/sections/_why.scss
/* Why 1 ---------------------------------- */
.video-area {
    position: relative;

    @media(max-width: 1024px) {
        .title-area {
            text-align: center;
        }
    }
}

.video-area-2 {
    position: relative;
    // min-height: 620px;
    padding-bottom: 180px !important;
    z-index: 9;

    @include xl {
        padding-bottom: 120px !important;
    }

    @include md {
        padding-bottom: 80px !important;
    }

    &:before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: -1;
    }
}

.video-content-box {
    max-width: 876px;
    display: block;
    margin: 0 auto;

    &.style2 {
        position: relative;
        z-index: 9;
        max-width: 607px;

    }
}

.video-title {
    font-family: $title-font;
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: $white-color;
    margin-bottom: 0;

    @include md {
        font-size: 40px;
        line-height: 50px;
    }

    @include sm {
        font-size: 20px;
        line-height: 35px;
    }
}

.video-box1 {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: -50%;
    margin-top: -19%;
    min-width: 895px;
    height: 805px;
    z-index: 3;


    @media(min-width: 1922px) {
        margin-right: 0;
        min-width: 100%;
    }

    @media(max-width: 1910px) {
        min-width: 100%;
        margin-right: 0;
    }

    @media(max-width: 1399px) {
        margin-top: -19.6%;
    }

    @include xl {
        margin-top: -22%;
    }

    @include lg {
        margin-top: 0;
        display: none;
    }

    @include md {
        min-width: 100%;
        margin-right: 0;
        height: 100%;
        margin-top: 30px;
    }

    img {
        width: 100%;
        height: 100%;
        min-height: 768px;
        object-fit: cover;
    }

    &:before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);

    }
}

.video-box1,
.video-box2 {
    position: relative;

    img {
        width: 100%;
        min-height: 300px;
        object-fit: cover;
    }

    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        &.border-btn {

            &:before,
            &:after {
                border: 2px solid $gray-color;
                animation: ripple 2s linear infinite;
            }

            i {
                display: inline-block;
                width: var(--icon-size, 120px);
                height: var(--icon-size, 120px);
                line-height: var(--icon-size, 120px);
                text-align: center;
                background-color: transparent;
                color: $gray-color;
                font-size: var(--icon-font-size, 26px);
                border-radius: 50%;
                font-weight: 300;
                z-index: 1;
                transition: all ease 0.4s;

                @include xl {
                    width: var(--icon-size, 80px);
                    height: var(--icon-size, 80px);
                    line-height: var(--icon-size, 80px);
                }
            }

            &:after,
            &:before {
                display: none;
            }
        }

    }
}

.video-play-btn {
    position: absolute;
    top: 26%;
    right: 15%;
    transform: translate(-50%, -50%);
    border: 0;
    width: 90px;
    height: 90px;
    line-height: 92px;
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    border-radius: 50%;
    background: $theme-color;
    margin: 0 auto;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    color: $white-color;

    @media(max-width: 1699px) {
        right: 25%;
    }

    @include xl {
        right: auto;
        left: 10%;
    }



    @include xxl {
        right: 26%;
    }

    @include md {
        left: 50%;
        top: 50%;
    }

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

        i {
            color: $theme-color;
        }

        &:before,
        &:after {
            border: 1px solid $white-color;
        }
    }

    @include sm {
        width: 50px;
        height: 50px;
        line-height: 52px;
        font-size: 14px;
    }

    i {
        // margin-left: 5px; 
        color: $white-color;
    }

    &:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        transition: 0.3;
        border-radius: 50%;
        border: 1px solid $theme-color;
        animation: ripple 2s linear infinite;

    }

    &:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        transition: 0.3;
        border-radius: 50%;
        border: 1px solid $theme-color;
        animation: ripple 2s linear 1s infinite;
    }
}

.white-play-btn {
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 102px;
    border-radius: 50%;
    border: 0;
    background: $white-color;
    color: $theme-color;
    display: inline-block;
    font-size: 24px;
    transition: all 0.4s ease-in-out;

    @include vxs {
        width: 70px;
        height: 70px;
        line-height: 72px;
        font-size: 18px;
    }

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

        i {
            color: $white-color;
        }

        &:before,
        &:after {
            border: 1px solid $theme-color;
        }
    }

    &:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        transition: 0.3;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: ripple 2s linear infinite;

    }

    &:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        left: 0;
        transition: 0.3;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: ripple 2s linear 1s infinite;
    }

    i {
        color: $theme-color;
    }

}

.video-box2 {
    border-radius: 20px;
    margin-left: 50px;

    img {
        border-radius: 20px;
    }
}

.content-box1 {
    background-color: $white-color;
    box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.07);
    padding: 60px 160px 60px 60px;
}

.content-box-bottom {
    padding-left: 60px;
    margin-top: 10px;
}

@include lg {
    .video-box2 {
        margin-left: 0;
        margin-top: 30px;
    }

    .content-box-bottom {
        text-align: center;
        padding-left: 0;
    }
}

@include sm {
    .content-box1 {
        padding: 40px;
    }
}

@include xs {
    .content-box1 {
        padding: 40px 20px;
    }
}

/* Video Area ---------------------------------*/
.video-area-two {
    position: relative;
    background-color: $title-color;

}

.video-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    @include md {
        grid-template-columns: repeat(1, 1fr);
    }

    .video-box1 {
        img {
            min-width: 1153px;
            min-height: 100%;

            @media(max-width:1800px) {
                min-width: 100%;
            }
        }
    }
}

.video-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0px;

    @include md {
        padding: 80px 0px;
    }

    .sub-title2 {
        font-size: 20px;
    }

    .sec-title {
        @include xl {
            font-size: 38px;
        }

        @include lg {
            font-size: 30px;
        }
    }

    .sec-desc {
        font-size: 18px;

        @include lg {
            font-size: 16px;
        }
    }
}

.video-area-3 {
    margin-top: -70px;
    padding-top: 180px !important;
    padding-bottom: 180px !important;

    @include md {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }
}

.video-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;

    &.style2 {
        @include xs {
            display: flex;
            gap: 10px;
        }

        @include vxs {
            display: grid;
            gap: 10px 0;
        }
    }

    @include xs {
        display: grid;
        gap: 10px 0;
    }

    .themeholy-btn {
        margin: 0;
    }
}

.choose-sec-2 {
    margin-top: -100px;
}

.choose-image {
    margin-top: -80px;
    position: relative;
    z-index: 9;

    @include xl {
        margin-top: 80px;
    }
}

.choose-counter1 {
    background-color: $theme-color;
    min-width: 346px;
    min-height: 83px;
    transform: rotate(-90deg);
    text-align: center;
    position: absolute;
    right: -10.8%;
    top: 44%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    @include md {
        right: -18.1%;
    }

    @include sm {
        right: -25.7%;
    }

    @include xs {
        right: -21%;
        min-width: 284px;
        min-height: 63px;
    }

    @include vxs {
        right: -32%;
    }


    .counter-title {
        font-family: $title-font;
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 40px;
        margin: 0;
        color: $white-color;
    }

    .counter-text {
        font-weight: 700;
        font-size: 20px;
        line-height: 40px;
        color: $white-color;
        min-width: 160px;
    }
}

.choose-about-wrap {}

.choose-about {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;

    @include lg {
        max-width: 495px;
    }

    &:nth-child(2) {
        .choose-about_icon {
            background-color: $theme-color-2;
        }
    }

    &_icon {
        background-color: $theme-color;
        width: 90px;
        height: 90px;
        line-height: 90px;
        border-radius: 50%;
        padding: 5px;

        img {
            display: block;
            margin: 15px auto;
        }
    }

    &_title {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        color: $title-color;
        margin-bottom: 10px;
    }

    &_text {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: $body-color;
        margin-bottom: 0;
    }
}

/*Request -----------------------------*/
.request-sec {
    position: relative;
    padding: 80px 70px;
    max-width: 1450px;
    background-color: $smoke-color;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    z-index: 9;

    @include lg {
        max-width: 100%;
        padding: 80px 0;
    }

    @include md {
        max-width: 100%;

        .title-area {
            text-align: center;
        }
    }

    // &:before {
    //     content: "";
    //     position: absolute;  
    //     inset: 0;
    //     width: 100%;
    //     height: 100%;
    //     background-color: $smoke-color;
    //     z-index: -1;

    // }
}

.request-form-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;

    @include md {
        display: block;
    }

    .request-quote-form {
        position: relative;
        max-width: 760px;

        @media(max-width: 1399px) {
            max-width: 50%;
        }

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

        .video-button {
            .white-play-btn {
                position: absolute;
                right: -25%;
                top: -12%;
                width: 80px;
                height: 80px;
                line-height: 80px;
                background: $theme-color;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 9;

                @include md {
                    top: -40%;
                    right: -15px;
                }

                @include sm {
                    top: -20%;
                }

                @include sm {
                    top: -30%;
                    right: 35px;
                }

                @include xs { 
                    display: none;
                }

                &:before,
                &:after {
                    border: 1px solid $theme-color;
                    opacity: 0.2;
                }

                i {
                    color: $white-color;
                }

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

                    i {
                        color: $theme-color;
                    }
                }
            }
        }
    }

    .form-group {

        select,
        .form-control,
        .form-select,
        textarea,
        input {
            height: 60px;
            padding: 0 25px 0 25px;
            padding-right: 45px;
            border: 1px solid transparent;
            color: $black-color-2;
            background-color: $white-color;
            border-radius: 0;
            font-size: 16px;
            line-height: 60px;
            width: 100%;
            font-family: $body-font;
            -webkit-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out;
        }

        .nice-select {

            .option {
                color: $title-color;

                &.selected {
                    color: $theme-color !important;
                    background: $theme-color !important;

                    &.focus {
                        color: #fff !important;
                        background: $theme-color !important;
                    }
                }

                &:hover,
                &.focus {
                    background: $theme-color !important;
                    color: #fff !important;
                }
            }

            &.open {
                .list {
                    border-radius: 0;
                    border: 1px solid $white-color;
                    border-bottom: 3px solid $theme-color;
                }
            }
        }
    }

    .request-quote-image {
        position: absolute;
        right: 20px;
        bottom: 0;
        animation: left-right-video-img 4s ease-out infinite;

        @include md {
            display: none;
        }
    }

}

/*feature --------------------------------------------*/
.feature-area {
    position: relative;
    overflow: hidden;
    z-index: 1;

    @include md {
        padding-top: 300px !important;
    }

    &:before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.88);
        z-index: -1;
    }
}

.feature-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    &.style2 {
        @include lg {
            grid-template-columns: repeat(4, 1fr);
        }

        @include md {
            grid-template-columns: repeat(2, 1fr);
        }

        @include xs {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    @include xl {
        gap: 20px;
    }

    @include lg {
        grid-template-columns: repeat(2, 1fr);
    }

    @include xs {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature-grid {

    background: $white-color;
    padding: 40px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);

    &.style2 {
        position: relative;
        background-color: $theme-color-2;
        padding: 50px 30px 25px 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        z-index: 2;
        transition: all 0.4s ease-in-out;

        &:before {
            content: "";
            height: 100%;
            width: 0;
            background-color: $white-color;
            position: absolute;
            left: 0;
            top: 0;
            z-index: -1;
            transition: 0.4s ease-in-out;
        }

        @include xl {
            padding: 40px 20px 20px 20px;
        }

        @include md {
            padding: 25px;
        }

        &:hover {
            .feature-grid {
                &_title {
                    color: $title-color;
                }

                &_text {
                    color: $body-color;
                }
            }
        }

        .feature-grid {

            &_icon {
                position: absolute;
                top: -20%;
                left: 50%;
                transform: translate(calc(-50% + 0px), calc(-50% + 25px));
                background-color: $theme-color;
                width: 80px;
                height: 80px;
                line-height: 80px;
                border-radius: 50%;
                margin-bottom: 20px;

                @include md {
                    position: relative;
                    top: 15px;

                }
            }

            &_title {
                color: $white-color;

                @include lg {
                    font-size: 18px;
                    line-height: 28px;
                }
            }

            &_text {
                color: $white-color;

            }
        }

        &:hover {
            &:before {
                width: 100%;
            }
        }
    }

    @include xl {
        padding: 30px;
    }

    @include md {
        text-align: center;
    }

    &_icon {
        margin-bottom: 20px;
    }

    &_title {
        font-weight: 700;
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;

        @include md {
            font-size: 20px;
            line-height: 28px;
        }
    }

    &_text {
        margin-bottom: 0;
    }
}

.feature-tab-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 34px;

    @include sm {
        display: block;
    }

    .feature-image {
        // min-width: 410px;

        // @include xl {
        //     min-width: 100%; 
        // }

        img {
            min-width: 410px;

            @include xl {
                min-width: 100%;
            }

            @include sm {
                margin-top: 30px;
            }
        }
    }
}

.feature-icon-list {
    margin-left: 1px;

    ul {
        padding: 0;
        margin: 0;

        li {
            list-style: none;
            font-family: $title-font;
            color: $title-color;
            font-weight: 500;
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 8px;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 10px;

            i {
                color: var(--theme-color);
                font-size: 20px;
            }
        }
    }
}

/* client ----------------------- */
.client-table-wrapper {
    border-bottom: 1px solid $border-color;
    border-left: 1px solid $border-color; 
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    @include lg {
        grid-template-columns: repeat(3, 1fr);
    }
    @include md { 
        grid-template-columns: repeat(2, 1fr);   
    }

    .client-image {
        padding: 80px 75px;
        border-right: 1px solid $border-color;  
        border-top: 1px solid $border-color;  
        text-align: center; 
        @include lg {
            padding: 40px 35px; 
        }
        @include sm {
            padding: 30px;   
        }

    }
}

.client-area {
    border: 1px solid rgba(18, 18, 18, 0.15);
    margin-bottom: 0;

    td,
    th {
        padding: 80px 75px;

        @include lg {
            padding: 40px 35px;
        }

        @include sm {
            padding: 25px;
        }

        @include xs {
            padding: 20px;
        }

        @include vxs {
            padding: 10px;
        }
    }

}

/* nesletter area -----------------------------*/
.newsletter-area {
    padding: 45px 60px;

    @include lg {
        padding: 40px;
    }

    @include md {
        padding: 30px;
    }
}

.choose-area {
    position: relative;
    z-index: 9;

    .choose-shape {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;

    }

}