@import url("fonts.css");

img {
    max-width: 100%;
}

::-moz-selection {
    color: #FFF;
    background: #fc456a;
}

::selection {
    color: #FFF;
    background: #fc456a;
}

.custom-container {
    position: relative;
    width: 1340px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.nav.nav-tabs {
    margin-bottom: 20px;
    border: 0;
}

    .nav.nav-tabs .nav-item {
        margin-right: 2px;
    }

        .nav.nav-tabs .nav-item .nav-link {
            padding: 12px 20px;
            border-radius: 2px;
            border: 0;
            color: #a3a3a3;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
        }

            .nav.nav-tabs .nav-item .nav-link:hover {
                background-color: #02a5f4;
                color: #FFF;
            }

            .nav.nav-tabs .nav-item .nav-link.active {
                background-color: #02a5f4;
                color: #FFF;
            }

.modal .modal-dialog .modal-content {
    border-radius: 0;
}

.form label {
    display: block;
    padding: 0;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.form .form-control {
    width: 100%;
    height: 60px;
    padding: 0 25px;
    border: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .form .form-control:focus {
        outline: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .form .form-control.disabled {
        border-color: #868686;
    }

    .form .form-control:focus {
        outline: 0;
    }

.wpanimation {
    opacity: 0;
}

    .wpanimation.animated {
        opacity: 1;
    }

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/K2M-logo-dark.png) center no-repeat #FFF;
    background-size: 140px 100px;
}

body {
    font-family: "RedHatDisplay-Regular", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    overflow-x: hidden;
}

.dark-theme {
    background-color: #20222E !important;
}

a {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    a:hover {
        text-decoration: none;
    }

    a:active, a:focus {
        outline: 0;
    }

.social .nav-item {
    margin: 0 5px;
}

.social .nav-link {
    width: 32px !important;
    height: 32px !important;
    padding: 0;
    background: #FFF;
    border-radius: 50%;
    color: #CE050B !important;
    line-height: 32px;
    text-align: center;
}

    .social .nav-link i {
        vertical-align: middle;
    }

    .social .nav-link.facebook-f:hover {
        color: #FFF !important;
        background: #3b5999 !important;
    }

    .social .nav-link.twitter:hover {
        color: #FFF !important;
        background: #55acee !important;
    }

    .social .nav-link.instagram:hover {
        color: #FFF !important;
        background: #e4405f !important;
    }

    .social .nav-link.youtube:hover {
        color: #FFF !important;
        background: #cd201f !important;
    }

    .social .nav-link.linkedin-in:hover {
        color: #FFF !important;
        background: #0077B5 !important;
    }

.btnPrimary {
    display: inline-block;
    height: auto;
    width: auto;
    min-width: 120px;
    padding: 15px 30px;
    margin: 0 5px;
    background: #CE050B;
    border: 0;
    border-radius: 10px;
    color: #FFF;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .btnPrimary.gray {
        background: #404040;
    }

    .btnPrimary.red {
        background: #D8232A;
    }

    .btnPrimary img {
        display: block;
        margin: 10px auto;
    }

    .btnPrimary:hover {
        background: #9c0408;
    }

    .btnPrimary:focus, .btnPrimary:active {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 0;
        outline: 0 !important;
    }

    .btnPrimary:disabled {
        background: #9b9b9b;
        cursor: not-allowed;
    }

        .btnPrimary:disabled:hover {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(1, 1, 1, 0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.cookie-disclaimer_content {
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
}

    .cookie-disclaimer_content a {
        text-decoration: underline;
    }

    .cookie-disclaimer_content .btn {
        display: inline-block;
        margin: 0 auto;
        border: 0;
        padding: 10px 40px;
        border-radius: 0;
        background: #CE050B;
        font-size: 14px;
        text-transform: uppercase;
    }

        .cookie-disclaimer_content .btn:hover {
            background: #9c0408;
        }

        .cookie-disclaimer_content .btn:focus, .cookie-disclaimer_content .btn:active {
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            background: #9c0408 !important;
            border: 0;
            outline: 0;
        }

.sidenav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 75%;
    max-width: 100%;
    height: 100vh;
    background: #20222e;
    -webkit-box-shadow: 7px 5px 30px 0px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px 0px rgba(72, 73, 121, 0.15);
    z-index: 9999;
    -webkit-transition: all 300ms cubic-bezier(0.43, 0.18, 0, 0.85);
    transition: all 300ms cubic-bezier(0.43, 0.18, 0, 0.85);
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
}

    .sidenav-wrapper.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .sidenav-wrapper .center-block {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
        text-align: center;
        font-family: Quicksand-Medium;
    }

    .sidenav-wrapper .nav .nav-item .nav-link {
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 3.3px;
        text-transform: uppercase;
    }

        .sidenav-wrapper .nav .nav-item .nav-link:hover {
            color: #FFF;
        }

    .sidenav-wrapper .nav .nav-item.dropdown .dropdown-menu {
        position: relative !important;
        margin: 0 !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        border-radius: 0;
        display: block;
        text-align: center;
        width: 100%;
        background: none;
        border: none;
    }

        .sidenav-wrapper .nav .nav-item.dropdown .dropdown-menu .dropdown-item {
            color: #fff !important;
        }

.sidenavactive {
    overflow-y: hidden;
}

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    top: 0;
}

    header.scrolling {
        background: #20222e;
        border-radius: 0;
    }

    header.yealink.scrolling {
        background: #03866D;
    }

    header.menu-3cx.scrolling {
        background: #333333;
    }

    header.fanvil.scrolling {
        background: #cc2d3a;
    }

    header .top-header {
        background: #CE050B;
        padding: 0;
    }

        header .top-header .nav.links {
            margin-right: 15px;
        }

            header .top-header .nav.links .nav-item {
                border-right: 1px solid rgba(255, 255, 255, 0.3);
            }

                header .top-header .nav.links .nav-item:last-child {
                    border-right: 0;
                }

                header .top-header .nav.links .nav-item .nav-link img {
                    margin-right: 10px;
                    height: 32px;
                    width: auto;
                }

                header .top-header .nav.links .nav-item:first-child {
                    padding-left: 0;
                }

        header .top-header .nav.langs .nav-item {
            padding: .5rem 0;
        }

            header .top-header .nav.langs .nav-item .nav-link {
                width: 30px;
                height: 30px;
                padding: 0;
                border: 2px solid transparent;
                border-radius: 50%;
            }

                header .top-header .nav.langs .nav-item .nav-link img {
                    width: 100%;
                }

                header .top-header .nav.langs .nav-item .nav-link.active, header .top-header .nav.langs .nav-item .nav-link:hover {
                    border-color: #FFF;
                }

        header .top-header .nav.social .nav-item {
            padding: 0;
        }

        header .top-header .nav .nav-item {
            padding: 10px 15px;
        }

            header .top-header .nav .nav-item .nav-link {
                display: -webkit-box;
                display: flex;
                display: -ms-flexbox;
                display: -webkit-flex;
                -webkit-box-align: center;
                align-items: center;
                -ms-flex-align: center !important;
                -webkit-box-pack: center;
                justify-content: center;
                -ms-flex-pack: center !important;
                padding: 0;
                height: 100%;
                color: #fff;
            }

    header .navbar {
        padding: 0;
        min-height: 87px;
    }

    header .navbar-toggler {
        background: none;
        border: 0;
        border-radius: 0;
        z-index: 99999;
    }

        header .navbar-toggler.collapsed .icon:nth-of-type(1), header .navbar-toggler.collapsed .icon:nth-of-type(3) {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        header .navbar-toggler.collapsed .icon:nth-of-type(2) {
            opacity: 1;
            filter: alpha(opacity=100);
        }

        header .navbar-toggler:focus {
            outline: 0;
        }

        header .navbar-toggler:hover {
            background: none !important;
        }

        header .navbar-toggler .icon {
            position: relative;
            display: block;
            height: 1px;
            width: 29px;
            margin: 7px 0;
            background: #20222e;
            opacity: 1;
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            header .navbar-toggler .icon:nth-of-type(1) {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                -webkit-transform-origin: 10% 10%;
                transform-origin: 10% 10%;
            }

            header .navbar-toggler .icon:nth-of-type(2) {
                opacity: 0;
                filter: alpha(opacity=0);
            }

            header .navbar-toggler .icon:nth-of-type(3) {
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transform-origin: 10% 90%;
                transform-origin: 10% 90%;
            }

    header .navbar-nav {
        margin: 0;
        padding: 0;
    }

        header .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
            border: 0;
            display: none;
        }

        header .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            visibility: visible;
            opacity: 1;
            top: 98%;
            z-index: 99;
        }

        header .navbar-nav .nav-item.dropdown .dropdown-menu {
            display: block;
            visibility: hidden;
            opacity: 0;
            top: 125%;
            z-index: -1;
            min-width: 140px;
            padding: 0 0;
            -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            background: #fc456a;
            border: 0;
            border-radius: 3px;
            -webkit-box-shadow: 7px 5px 30px 0px rgba(72, 73, 121, 0.15);
            box-shadow: 7px 5px 30px 0px rgba(72, 73, 121, 0.15);
        }

            header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
                display: block;
                padding: 6px 28px;
                color: #FFF;
                font-weight: 500;
                -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
                transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            }

                header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item a {
                    color: #FFF;
                    font-size: 13px;
                }

                header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active, header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus, header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
                    background: none;
                }

                    header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active::before, header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus::before, header .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover::before {
                        width: 12px;
                        margin-right: 10px;
                        visibility: visible;
                    }

        header .navbar-nav .nav-item.active .nav-link {
            color: #fff;
            font-family: Quicksand-Medium;
        }

            header .navbar-nav .nav-item.active .nav-link:after {
                border-bottom: 4px solid #FC456A;
                border-radius: 100px;
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                width: 50%;
                bottom: 0;
                margin: -2px auto;
            }

        header .navbar-nav .nav-item {
            position: relative;
            margin-right: 50px;
        }

            header .navbar-nav .nav-item.language-nav {
                margin-left: 30px;
            }

            header .navbar-nav .nav-item .nav-link {
                color: #fff;
                text-transform: uppercase;
                padding-bottom: .3rem;
                font-family: Quicksand-Medium;
                font-style: normal;
                font-weight: 500;
                font-size: 12px;
                line-height: 15px;
            }

                header .navbar-nav .nav-item .nav-link:hover {
                    color: #fff;
                }

    header .navbar-search .nav .nav-item .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    header .navbar-search-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        z-index: 999999;
        opacity: 0;
        padding: 0 15px;
        background: #CE050B;
        overflow: hidden;
        -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }

        header .navbar-search-wrapper.active {
            left: 0;
            width: 100%;
            opacity: 1;
        }

        header .navbar-search-wrapper .search-input {
            width: 90%;
            height: 100%;
        }

            header .navbar-search-wrapper .search-input input {
                width: 100%;
                height: 100%;
                background: none;
                border: 0;
                color: #FFF;
                font-size: 24px;
            }

                header .navbar-search-wrapper .search-input input:focus {
                    outline: 0;
                }

                header .navbar-search-wrapper .search-input input::-webkit-input-placeholder {
                    color: #FFF;
                }

                header .navbar-search-wrapper .search-input input:-ms-input-placeholder {
                    color: #FFF;
                }

                header .navbar-search-wrapper .search-input input::-ms-input-placeholder {
                    color: #FFF;
                }

                header .navbar-search-wrapper .search-input input::placeholder {
                    color: #FFF;
                }

        header .navbar-search-wrapper .search-btn {
            height: 100%;
            min-width: 10%;
        }

            header .navbar-search-wrapper .search-btn .btn {
                display: inline-block;
                height: 100%;
                width: 50%;
                border: 0;
                background: none;
                border-radius: 0;
                text-align: center;
            }

                header .navbar-search-wrapper .search-btn .btn:hover {
                    background: #9c0408;
                }

                header .navbar-search-wrapper .search-btn .btn:focus {
                    outline: 0;
                    -webkit-box-shadow: none;
                    box-shadow: none;
                }

                header .navbar-search-wrapper .search-btn .btn img {
                    width: 32px;
                    max-width: 100%;
                }

.gp-main-title {
    color: #373535;
    font-size: 28px;
    font-weight: 500;
}

    .gp-main-title span {
        display: block;
        margin-top: 23px;
        color: #CE050B;
        font-size: 18px;
        font-weight: 400;
    }

    .gp-main-title::after {
        display: block;
        width: 72px;
        height: 2px;
        margin: 30px 0;
        background: #CE050B;
        content: "";
    }

    .gp-main-title.center {
        text-align: center;
    }

        .gp-main-title.center::after {
            margin: 30px auto;
        }



.gp-page-header {
    position: relative;
}

    .gp-page-header img {
        width: 100%;
        max-width: 100%;
        min-height: 200px;
        z-index: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .gp-page-header .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .gp-page-header .page-header-content {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        text-align: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        color: #fff;
        z-index: 2;
    }

        .gp-page-header .page-header-content .breadcrumb {
            background: none;
        }

        .gp-page-header .page-header-content .breadcrumb-item::before {
            color: #FFF;
        }

        .gp-page-header .page-header-content .breadcrumb-item:last-child a {
            color: #CE050B;
        }

        .gp-page-header .page-header-content .breadcrumb-item a {
            color: #fff;
        }


footer {
    padding: 40px 0;
    background: #13141C;
    border-radius: 0 0 50px 50px;
}

    footer .footer-contact {
        padding: 10px 0;
        color: #FFF;
        font-family: Montserrat-Regular;
        font-size: 14px;
    }

        footer .footer-contact a {
            color: #FFF;
        }

        footer .footer-contact img {
            margin-right: 15px;
        }

.copyright {
    padding: 10px 0;
}

footer .subscribe {
    margin: 0 auto 50px auto;
}

    footer .subscribe .title {
        color: #FFFFFF;
        font-family: "RedHatDisplay-Bold";
        font-size: 24px;
        display: block;
    }

    footer .subscribe .description {
        color: #A0A0A0;
        font-family: "Montserrat-Light";
        font-size: 12px;
    }

    footer .subscribe .form-group {
        position: relative;
    }

        footer .subscribe .form-group input {
            background: transparent;
            border: 0;
            border-bottom: 1px solid #C4C4C4;
            border-radius: 0;
            color: #A0A0A0;
            padding-right: 50px;
        }

            footer .subscribe .form-group input:focus {
                box-shadow: none;
            }

        footer .subscribe .form-group img {
            position: absolute;
            right: 8px;
            top: 20px;
        }

footer .footer-links {
    display: block;
    margin: 0 auto;
    width: 145px;
}

    footer .footer-links h3, footer .footer-top h3 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 20px;
        line-height: 35px;
        color: #F0C419;
    }

    footer .footer-links .footer-menu {
        font-family: Quicksand-Regular;
        list-style-type: none;
        padding-left: 0;
    }

        footer .footer-links .footer-menu li {
            margin-bottom: 8px;
        }

            footer .footer-links .footer-menu li a {
                margin-bottom: 8px;
                display: block;
                font-family: Quicksand-Regular;
                font-size: 16px;
                line-height: 35px;
                color: #DFDFDD;
            }

footer .footer-top p {
    font-family: Quicksand-Regular;
    font-size: 16px;
    line-height: 25px;
    color: #E5E5E5;
}

footer .footer-bottom {
    border-top: 2px solid #3D4152;
}

    footer .footer-bottom .right {
        text-align: right;
        padding-top: 30px;
    }

        footer .footer-bottom .right a {
            margin-left: 60px;
            cursor: pointer;
        }

    footer .footer-bottom .left {
        font-family: Quicksand-Regular;
        font-size: 14px;
        line-height: 25px;
        color: #505a65;
        padding-top: 30px;
    }

/***** section home-top *******/

.home-top {
    background: url(../images/background.png);
    width: 100%;
    background-size: 100% 100%;
    padding-top: 110px;
    margin-bottom: 50px;
}

    .home-top .left {
        margin-top: 80px;
        margin-bottom: 24px;
    }

        .home-top .left h1 {
            font-family: Quicksand-Bold;
            color: #E5E5E5;
            font-size: 48px;
            line-height: 70px;
            margin-top: 88px;
            margin-bottom: 10px;
        }

            .home-top .left h1 .blue-text {
                /* color: #CB5575; */
                color: #0597d4;
                font-family: Arial, Helvetica, sans-serif;
                font-weight: bold;
            }

            .home-top .left h1 .white-text {
                /* color: #CB5575; */
                color: #fff;
                font-family: Arial, Helvetica, sans-serif;
            }

            .home-top .left h1 .pink-text {
                color: #CB5575;
            }

        .home-top .left p {
            font-family: Quicksand-Bold;
            font-size: 20px;
            line-height: 35px;
            color: #E5E5E5;
        }

        .home-top .left .text-buttons {
            text-align: right;
        }

            .home-top .left .text-buttons .start-button {
                width: 166px;
                height: 54px;
                background: #FC456A;
                color: #fff;
                border-radius: 5px;
                display: inline-block;
                margin-right: 40px;
                margin-top: 40px;
                cursor: pointer;
                font-family: Quicksand-Medium;
                font-size: 20px;
                line-height: 35px;
                text-align: center;
                padding-top: 8px;
            }

            .home-top .left .text-buttons .video-button {
                display: inline-block;
                cursor: pointer;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                box-shadow: 0 0 0 rgba(204,169,44, 0.4);
                animation: pulse 2s infinite;
                position: relative;
                top: 24px;
            }

        .home-top .left .left-buttons {
            text-align: center;
        }

            .home-top .left .left-buttons img {
                width: 13px;
                height: 44px;
                display: block;
                margin: 0 auto;
            }

            .home-top .left .left-buttons .social {
                margin-top: 65px;
            }

                .home-top .left .left-buttons .social a {
                    cursor: pointer;
                    display: block;
                    margin-bottom: 22px;
                }

                    .home-top .left .left-buttons .social a img {
                        width: 18px;
                        height: 18px;
                    }

            .home-top .left .left-buttons span {
                display: block;
                transform: rotate(-90deg);
                color: white;
                text-align: center;
                white-space: nowrap;
                margin-top: 150px;
                margin-bottom: 60px;
                font-family: Rubik-Regular;
                font-size: 10px;
                line-height: 12px;
                letter-spacing: 0.5em;
            }

        .home-top .left .points {
            margin-top: 100px;
            margin-bottom: 80px;
            width: auto;
        }


    .home-top .right {
        margin-top: 80px;
        text-align: right;
        margin-bottom: 24px;
        margin: auto 0;
    }

        .home-top .right img {
        }

    .home-top .point-content {
        margin-top: 60px;
    }

    .home-top .owl-theme .owl-dots .owl-dot.active span,
    .home-top .owl-theme .owl-dots .owl-dot:hover span {
        background: #f0c419;
    }

    .home-top .owl-theme .owl-dots {
        text-align: right;
    }
/***** end section home-top *******/
/***** section services *******/
.home-services {
    margin-top: 65px;
    background: url(../images/icons/K2M.svg);
    height: 700px;
    background-repeat: no-repeat;
    background-position: right bottom;
    margin-bottom: 125px;
}

    .home-services .services-title .left {
        padding-left: 170px;
    }

        .home-services .services-title .left h4 {
            font-family: Rubik-Light;
            font-size: 20px;
            line-height: 24px;
            letter-spacing: 0.2em;
            color: #000000;
            margin-bottom: 24px;
        }

        .home-services .services-title .left h1 {
            font-family: Quicksand-Bold;
            font-size: 48px;
            line-height: 65px;
            letter-spacing: 0.1em;
            color: #000000;
        }

    .home-services .services-title .right img {
        float: right;
    }

    .home-services .services-item {
        margin-left: 150px;
        margin-right: 150px;
        margin-top: 85px;
    }

        .home-services .services-item .top {
            margin-bottom: 100px;
        }

        .home-services .services-item h2 {
            font-family: Quicksand-Bold;
            font-size: 24px;
            line-height: 65px;
            color: #000000;
            margin-bottom: 0;
        }

        .home-services .services-item p {
            font-family: Quicksand-Regular;
            font-size: 18px;
            line-height: 22px;
            color: #41464F;
            min-height: 108px;
        }

        .home-services .services-item img {
            margin-top: 24px;
        }

/***** end section services *******/


/***** section project *******/

.home-project {
    background: url(../images/back2.png);
    width: 100%;
    background-size: 100% 100%;
    margin-bottom: 55px;
    height: 100vh;
    position: relative;
    margin-top: 250px;
    /* padding-top: 220px; */
    padding-top: 120px;
}

    .home-project::before {
        content: "";
        background: url(../images/icons/points2.svg);
        height: 298px;
        width: 138px;
        position: absolute;
        top: -80px;
        right: 5%;
        z-index: 4;
    }

    .home-project .right h1 {
        font-family: Quicksand-Bold;
        color: #E5E5E5;
        font-size: 48px;
        line-height: 70px;
        margin-top: 88px;
        margin-bottom: 10px;
    }

        .home-project .right h1 span {
            color: #0597d4;
        }

    .home-project .right p {
        font-family: Quicksand-Medium;
        font-size: 20px;
        line-height: 35px;
        color: #E5E5E5;
    }

    .home-project .right .text-buttons .start-button {
        width: 200px;
        height: 54px;
        background: #0597d4;
        color: #fff;
        border-radius: 5px;
        display: inline-block;
        margin-right: 40px;
        margin-top: 40px;
        cursor: pointer;
        font-family: Quicksand-Medium;
        font-size: 20px;
        line-height: 35px;
        text-align: center;
        padding-top: 8px;
    }

/***** end section project *******/


/****** section references *******/
.home-references {
    margin-top: 65px;
    margin-bottom: 150px;
    height: 350px;
}

    .home-references h2 {
        font-family: Rubik-Regular;
        font-size: 24px;
        line-height: 24px;
        letter-spacing: 0.5em;
        color: #000000;
        margin-bottom: 65px;
    }

    .home-references img {
        width: 150px !important;
    }


/****** end section references *******/



/****** section contact *******/
.home-contact {
    background: url(../images/home-contact-back.svg);
    margin-bottom: 75px;
    background-position: center center;
    max-height: 360px;
    height: 357px;
}

    .home-contact .right img {
        position: absolute;
        top: -60px;
    }

    .home-contact .left {
        padding-left: 170px;
    }

        .home-contact .left img {
            position: absolute;
            top: -160px;
            right: 50px;
        }

        .home-contact .left p {
            font-family: Quicksand-Bold;
            font-size: 18px;
            line-height: 32px;
            color: #E5E5E5;
            margin-top: 20px;
        }

        .home-contact .left .contact-button {
            width: 166px;
            height: 54px;
            background: #FC456A;
            color: #fff;
            border-radius: 5px;
            display: inline-block;
            margin-right: 40px;
            margin-top: 12px;
            cursor: pointer;
            font-family: Quicksand-Medium;
            font-size: 20px;
            line-height: 35px;
            text-align: center;
            padding-top: 8px;
            margin-bottom: 20px;
        }



/****** end section contact *******/



/****** section about-top *******/

.about-top {
    background: url(../images/about-back.png);
    width: 100%;
    background-size: 100% 100%;
    padding-top: 110px;
    margin-bottom: 50px;
    min-height: 95vh;
}

    .about-top h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 72px;
        line-height: 90px;
        color: #3D4152;
        margin-top: 210px;
        margin-bottom: 38px;
    }

        .about-top h1 span {
            color: #FC456A;
        }

    .about-top h3 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
        color: #F0C419;
        margin-bottom: 18px;
        padding-left: 112px;
    }

    .about-top p {
        font-family: Quicksand-Light;
        font-weight: 300;
        font-size: 18px;
        line-height: 22px;
        color: #E8E8E8;
        margin-bottom: 30px;
    }

    .about-top .line-div {
        width: 100%;
        height: 3px;
        background: #3D4152;
    }


/****** end section about-top *******/

/****** section about-description *******/

.about-description {
    /* margin-top: 150px; */
    position: relative;
    /* min-height: 800px; */
    height: 100vh;
}

    .about-description .description-size {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .about-description img {
        float: right;
    }

    .about-description p {
        font-family: Quicksand-Light;
        font-weight: 300;
        font-size: 20px;
        line-height: 33px;
        color: #E8E8E8;
        margin-bottom: 30px;
    }

    .about-description h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 75px;
        line-height: 80px;
        color: #E8E8E8;
        margin-top: 210px;
        margin-bottom: 38px;
    }

        .about-description h1 span {
            color: #FC456A;
        }

    .about-description .left {
        padding-left: 100px;
    }


/****** end section about-description *******/



/****** section about-description-two *******/

.about-description-two {
    margin-top: 150px;
    position: relative;
    min-height: 800px;
}

    .about-description-two .description-size {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .about-description-two img {
        float: left;
    }

    .about-description-two p {
        font-family: Quicksand-Light;
        font-weight: 300;
        font-size: 20px;
        line-height: 33px;
        color: #E8E8E8;
        margin-bottom: 30px;
    }

    .about-description-two h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 75px;
        line-height: 80px;
        color: #E8E8E8;
        margin-top: 210px;
        margin-bottom: 38px;
    }

        .about-description-two h1 span {
            color: #FC456A;
        }

    .about-description-two .right {
        padding-right: 100px;
    }
/****** end section about-description-two *******/

/****** section about-description-three *******/

.about-description-three {
    margin-top: 150px;
    position: relative;
    min-height: 800px;
}

    .about-description-three .description-size {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .about-description-three img {
        float: right;
    }

    .about-description-three p {
        font-family: Quicksand-Light;
        font-weight: 300;
        font-size: 20px;
        line-height: 33px;
        color: #E8E8E8;
        margin-bottom: 30px;
    }

    .about-description-three h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 75px;
        line-height: 80px;
        color: #E8E8E8;
        margin-top: 210px;
        margin-bottom: 38px;
    }

        .about-description-three h1 span {
            color: #FC456A;
        }

    .about-description-three .left {
        padding-left: 100px;
    }

/****** end section about-description-three *******/


/****** section about-lines *******/

.about-lines {
    margin-top: 180px;
    text-align: center;
}

/****** end section about-lines *******/


/****** section about-text *******/

.about-text {
    /*margin-top: 80px;*/
    background: url(../images/about-text-backgorund.png);
    width: 100%;
    padding-top: 110px;
    margin-bottom: 50px;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

    .about-text p {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 72px;
        line-height: 65px;
        color: #3D4152;
        text-decoration-line: line-through;
    }

    .about-text span {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 72px;
        color: #E3BA1A;
    }

    .about-text .row {
        min-height: 100vh;
    }

    .about-text .left span {
        display: block;
        transform: rotate(-90deg);
        color: white;
        text-align: center;
        white-space: nowrap;
        margin-top: 150px;
        margin-bottom: 60px;
        font-family: Rubik-Regular;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 0.5em;
    }

    .about-text .left {
        text-align: center;
    }
/****** end section about-text *******/



/****** section about-team *******/

.about-team {
    margin-bottom: 180px;
}

    .about-team h1 {
        font-family: Quicksand-Regular;
        font-weight: normal;
        font-size: 58px;
        line-height: 72px;
        color: #FC456A;
        margin-left: 25px;
    }

        .about-team h1 span {
            color: #3D4152;
        }

    .about-team .line-1, .about-team .line-2 {
        position: absolute;
        width: 35px;
        border: 1px solid #BEBFC0;
        transform: rotate(-29.43deg);
    }

    .about-team .line-1 {
        right: 0;
        top: 50%;
    }

    .about-team .line-2 {
        right: 0;
        top: 58%;
    }

    .about-team .team-bottom {
        margin-bottom: 110px;
    }

    .about-team .team-center {
        text-align: center;
    }

        .about-team .team-center .top {
            margin-bottom: 120px;
        }

/****** end section about-team *******/


/****** section section-contact *******/

.section-contact {
    background: url(../images/contact-back.png);
    height: 100vh;
    width: 100%;
    background-size: 100% 100%;
    margin-bottom: 50px;
}

    .section-contact .top {
        height: 100%;
    }

    .section-contact .right {
        background: url(../images/map-color.png) !important;
        background-repeat: no-repeat !important;
        background-position: top right !important;
        background-size: auto 95% !important;
    }

        .section-contact .right .map {
            background: url(../images/map-foto.png);
            position: absolute;
            width: 767px;
            height: 100%;
            background-size: 100% 100%;
            right: 0;
        }

    .section-contact .left h1 {
        margin-top: 180px;
        margin-bottom: 70px;
        margin-left: 145px;
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 58px;
        line-height: 72px;
        color: #E3BA1A;
    }

    .section-contact .left h3 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 30px;
        line-height: 37px;
        color: #E5E5E5;
        margin-left: 68px;
    }

    .section-contact .left p {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
        color: #8C8C8C;
        margin-bottom: 80px;
    }

    .section-contact .left .pin-button {
        cursor: pointer;
    }

    .section-contact .left .contact-margin {
        margin-left: 145px;
    }

    .section-contact .form-arrow {
        display: inline-block;
        text-align: center;
        position: absolute;
        bottom: 85px;
        transform: translateX(50%);
        left: 50%;
    }

        .section-contact .form-arrow span {
            display: block;
            transform: rotate(-90deg);
            color: white;
            text-align: center;
            white-space: nowrap;
            margin-top: 150px;
            margin-bottom: 60px;
            font-family: Rubik-Regular;
            font-size: 10px;
            line-height: 12px;
            letter-spacing: 0.5em;
        }


/****** end section section-contact *******/

/****** section section-project *******/
.section-form {
    margin-top: 140px;
    margin-bottom: 140px;
}

    .section-form h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 58px;
        line-height: 72px;
        color: #000000;
    }

    .section-form input, .section-form textarea {
        border: 0;
        border-bottom: 3px solid #000;
        border-radius: 0;
        background: none;
        font-family: Quicksand-Medium;
        resize: none;
        font-weight: 500;
        font-size: 30px;
        line-height: 30px;
        color: #000000;
        margin-bottom: 55px;
    }

        .section-form input:focus, .section-form textarea:focus {
            box-shadow: none;
            color: #000;
            border-color: #FC456A;
        }

        .section-form input::placeholder, .section-form textarea::placeholder {
            color: #000;
        }

    .section-form a {
        float: right;
        cursor: pointer;
    }

        .section-form a span {
            position: absolute;
            font-family: Quicksand-Medium;
            font-weight: 500;
            font-size: 24px;
            line-height: 30px;
            color: #000000;
        }

        .section-form a img {
            margin-top: 20px;
        }


    .section-form .form-width {
        margin-top: 100px;
        display: block;
        width: 75%;
        margin-bottom: 160px;
    }



.inner-white-logo {
    display: none;
}

.inner-white.scrolling .navbar-brand img {
    display: none;
}

.inner-white.scrolling .navbar-brand .inner-white-logo {
    display: block;
}

header.inner-white .navbar-nav .nav-item .nav-link {
    color: #20222E !important;
}

header.inner-white.scrolling .navbar-nav .nav-item .nav-link {
    color: #fff !important;
}

.section-project-top {
    margin-top: 93px;
    text-align: center;
    background: url(../images/project-top.png);
    padding: 110px 0;
    text-align: center;
    background-size: 100% 100%;
}

    .section-project-top h1 {
        font-family: Quicksand-Bold;
        font-size: 38px;
        line-height: 47px;
        color: #000000;
        margin-bottom: 16px;
    }

    .section-project-top p {
        font-family: Quicksand-Regular;
        font-size: 24px;
        line-height: 30px;
        color: #000000;
        margin-bottom: 32px;
    }

        .section-project-top p span {
            font-family: Quicksand-Bold;
            color: #fc456a;
        }

    .section-project-top a {
        display: inline-block;
        padding: 15px 45px;
        background: #03866D;
        border-radius: 5px;
        font-family: Quicksand-Bold;
        font-size: 20px;
        line-height: 25px;
        color: #FFFFFF;
    }


    .section-project-top + .section-project-item {
        margin-top: 100px;
    }

.section-project-item {
    margin-bottom: 200px;
}

    .section-project-item .small-text {
        font-family: Quicksand-Bold;
        font-size: 16px;
        line-height: 20px;
        color: #03866D;
        margin-bottom: 5px;
    }

    .section-project-item h2 {
        font-family: Quicksand-Bold;
        font-size: 36px;
        line-height: 45px;
        color: #000000;
        margin-bottom: 16px;
    }

    .section-project-item .description {
        font-family: Quicksand-Regular;
        font-size: 14px;
        line-height: 17px;
        color: #000000;
        margin-bottom: 24px;
    }

    .section-project-item ul {
        list-style: none;
    }

        .section-project-item ul li {
            font-family: Quicksand-Regular;
            font-size: 13px;
            line-height: 15px;
            color: #000000;
            margin-bottom: 16px;
            position: relative;
        }

            .section-project-item ul li::before {
                content: "\2022";
                color: #03866D;
                font-weight: bold;
                display: inline-block;
                width: 1em;
                margin-left: -1em;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
                font-size: 24px;
            }

        .section-project-item ul.red-points li::before {
            content: "\2022";
            color: #E00517;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            font-size: 24px;
        }

        .section-project-item ul.blue-points li::before {
            content: "\2022";
            color: #0597D4;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            font-size: 24px;
        }


.section-project-item-videos {
    margin-bottom: 200px;
    text-align: center;
}

    .section-project-item-videos .title {
        font-family: Quicksand-Light;
        font-size: 64px;
        line-height: 80px;
        color: #000000;
        margin-bottom: 30px;
    }

    .section-project-item-videos iframe {
        width: 600px;
        border-radius: 30px;
    }

.section-project-next {
    border-top: 2px solid rgb(32 34 46 / 5%);
    border-bottom: 2px solid rgb(32 34 46 / 5%);
    margin-bottom: 150px;
    padding: 110px 0;
}

    .section-project-next h2 {
        font-family: Quicksand-Bold;
        font-size: 64px;
        line-height: 80px;
        color: #000000;
        width: 420px;
        display: block;
        margin: 0 auto;
    }

    .section-project-next a.button {
        width: 220px;
        display: block;
        margin: 30px auto 0 auto;
        font-family: Quicksand-Bold;
        font-size: 20px;
        line-height: 25px;
        color: #FFFFFF !important;
        background: #0597D4;
        border-radius: 5px;
        text-align: center;
        padding: 15px 0;
        cursor: pointer;
    }



/****** end section section-project *******/


/******  section section-references *******/

.section-references {
    margin-top: 150px;
    min-height: 500px;
}

    .section-references h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 0.05em;
        color: #000000;
        margin-bottom: 60px;
    }

.references-categories {
    margin-bottom: 50px;
    text-align: center;
}

.section-references .references-categories .categories-button {
    border: 2px solid #343a40;
    border-radius: 30px;
    padding: 7px 24px;
    font-family: Quicksand-Bold;
    margin-left: 20px;
    cursor: pointer;
}

/****** end section section-references *******/

/******  section section-faq *******/

.section-faq {
    margin-top: 150px;
    margin-bottom: 80px;
}

    .section-faq h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 0.05em;
        color: #000000;
        margin-bottom: 60px;
    }

    .section-faq .faq-item {
        border-bottom: 1px solid #d1e2f1;
    }

    .section-faq .custom-container .faq-item:last-child {
        border-bottom: 0;
    }

    .section-faq .faq-item .title {
        font-size: 24px;
        line-height: 29px;
        color: #4e5861;
        cursor: pointer;
        font-family: Quicksand-Medium;
        margin-bottom: 14px;
    }

    .section-faq .faq-item .content-text p {
        font-size: 18px;
        line-height: 22px;
        text-align: justify;
        color: #516e88;
        font-family: Montserrat-Regular;
    }

    .section-faq .faq-item .title img {
        margin-left: 4px;
        float: right;
    }

    .section-faq .faq-item .content-text {
        margin-top: 25px;
        display: none;
    }
/****** end section section-faq *******/



/******  section section-blog *******/

.section-blog {
    margin-top: 150px;
    margin-bottom: 80px;
}

    .section-blog h1 {
        font-family: Quicksand-Medium;
        font-weight: 500;
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 0.05em;
        color: #fff;
        margin-bottom: 60px;
    }

    .section-blog .blog-line {
        background: #FC456A;
        width: 6px;
        height: 44px;
        border-radius: 30px;
        float: left;
        margin-right: 12px;
        margin-top: 8px;
    }

    .section-blog .blog-item {
        margin-bottom: 100px;
    }

        .section-blog .blog-item .img {
            background-size: cover !important;
            background-position: center center !important;
            height: 275px;
            width: 100%;
            margin-bottom: 16px;
            background-repeat: no-repeat !important;
            border-radius: 30px;
        }

        .section-blog .blog-item .left {
            float: left;
            width: 100px;
            text-align: center;
            border-right: 3px solid #FC456A;
        }

            .section-blog .blog-item .left span:nth-child(1) {
                font-family: Quicksand-Regular;
                font-size: 33px;
                line-height: 41px;
                letter-spacing: 0.05em;
                color: #E5E5E5;
                display: block;
            }

            .section-blog .blog-item .left span:nth-child(2) {
                font-family: Quicksand-Regular;
                font-size: 18px;
                line-height: 22px;
                letter-spacing: 0.05em;
                color: #F2F4FF;
                display: block;
            }

        .section-blog .blog-item .right {
            float: left;
            padding: 0 15px;
            width: calc(100% - 100px);
        }

            .section-blog .blog-item .right .title {
                font-family: Quicksand-Light;
                font-size: 20px;
                line-height: 25px;
                letter-spacing: 0.05em;
                color: #FFFFFF;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

        .section-blog .blog-item .content {
            margin-top: 16px;
            height: 51px;
            margin-bottom: 8px;
        }

            .section-blog .blog-item .content * {
                font-family: Quicksand-Regular;
                font-size: 14px;
                line-height: 17px;
                letter-spacing: 0.05em;
                color: #495059;
                margin-bottom: 0;
            }

        .section-blog .blog-item .button {
            float: right;
            background: #03866D;
            border-radius: 5px;
            font-family: Quicksand-Regular;
            font-size: 18px;
            line-height: 22px;
            letter-spacing: 0.05em;
            color: #FFFFFF;
            padding: 6px 38px;
        }

/****** end section section-blog *******/

/******  section section-blog-detay *******/

.section-blog-detail {
    margin-top: 110px;
    padding-top: 50px;
    margin-bottom: 110px;
}

    .section-blog-detail .img {
        border-radius: 30px;
        margin-bottom: 70px;
    }

    .section-blog-detail .date {
        background: #3D4152;
        font-family: Quicksand-Light;
        font-size: 18px;
        line-height: 22px;
        color: #FFFFFF;
        padding: 4px 16px;
        display: inline-block;
        margin-right: 40px;
    }

    .section-blog-detail .social-link {
        margin-right: 24px;
    }

    .section-blog-detail .points {
        position: absolute;
        right: -40px;
        top: -120px;
        z-index: -1;
    }

    .section-blog-detail .title {
        font-family: Quicksand-Medium;
        font-size: 55px;
        line-height: 69px;
        letter-spacing: 0.05em;
        color: #20222E;
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .section-blog-detail .content {
        column-count: 2;
    }

        .section-blog-detail .content * {
            font-family: Quicksand-Regular;
            font-size: 14px;
            line-height: 17px;
            text-align: justify;
            letter-spacing: 0.05em;
            color: #495059;
        }

.section-blog-other {
    margin-bottom: 110px;
}

    .section-blog-other .blog-other-content {
        border: 1px solid #E5E5E5;
        padding: 15px;
    }

        .section-blog-other .blog-other-content .section-title {
            font-family: Quicksand-Regular;
            font-size: 20px;
            line-height: 25px;
            text-align: justify;
            letter-spacing: 0.05em;
            color: #000000;
            margin-bottom: 25px;
        }

        .section-blog-other .blog-other-content .blog-other-item {
        }

            .section-blog-other .blog-other-content .blog-other-item .left {
                border-radius: 30px;
                width: 200px;
                height: 150px;
                background-size: cover !important;
                background-position: center !important;
                float: left;
            }

            .section-blog-other .blog-other-content .blog-other-item .right {
                float: left;
                width: calc(100% - 200px);
                padding: 0 40px;
            }

                .section-blog-other .blog-other-content .blog-other-item .right .title {
                    font-family: Quicksand-Medium;
                    font-size: 22px;
                    line-height: 27px;
                    letter-spacing: 0.05em;
                    color: #20222E;
                    margin-bottom: 20px;
                }

                .section-blog-other .blog-other-content .blog-other-item .right .button {
                    background: #FC456A;
                    border-radius: 30px;
                    font-family: Quicksand-Light;
                    font-size: 16px;
                    line-height: 20px;
                    color: #FFFFFF;
                    padding: 5px 0;
                    width: 155px;
                    text-align: center;
                    float: right;
                }

/****** end section section-blog-detay *******/


/****** section section-products *******/

.section-products {
    margin-top: 110px;
    padding-top: 50px;
    margin-bottom: 110px;
}

    .section-products .column {
        padding-left: 0;
        padding-right: 0;
        margin-right: 10px;
        margin-bottom: 30px;
    }

    .section-products h1 {
        margin-bottom: 80px;
    }

    .section-products .products-link {
        cursor: pointer;
        height: 330px;
        width: 100%;
    }

        .section-products .products-link .products-item {
            background: linear-gradient(0deg, rgba(86, 86, 86, 0.5), rgba(86, 86, 86, 0.5)), url(../images/products.jpg);
            width: 100%;
            height: 330px;
            background-size: cover !important;
            background-position: center center !important;
            position: relative;
            border-radius: 30px;
        }

            .section-products .products-link .products-item h2 {
                font-family: Quicksand-Medium;
                font-size: 40px;
                line-height: 50px;
                color: #FFFFFF;
                position: absolute;
                bottom: 80px;
                left: 50%;
                transform: translateX(-50%);
                text-transform: capitalize;
            }

                .section-products .products-link .products-item h2[data-cat="Fanvil"] {
                    background: rgba(224, 5, 23, 0.52);
                    width: 100%;
                }

                .section-products .products-link .products-item h2[data-cat="Yealink"] {
                    background: rgba(63, 166, 131, 0.52);
                    width: 100%;
                }

            .section-products .products-link .products-item .list-button {
                background: #232530;
                padding: 10px 15px;
                border-radius: 30px;
                color: #fff;
                cursor: pointer;
                position: absolute;
                bottom: 16px;
                left: 50%;
                transform: translateX(-50%);
            }

                .section-products .products-link .products-item .list-button img {
                }


/****** end section section-products *******/

/****** section section-products-detail *******/

.section-products-detail {
    margin-top: 110px;
    padding-top: 50px;
    margin-bottom: 110px;
}

    .section-products-detail h1 {
        font-family: Quicksand-Bold;
        font-size: 48px;
        line-height: 57px;
        color: #3D4152;
        margin-bottom: 20px;
    }

    .section-products-detail span {
        font-family: Quicksand-Medium;
        font-size: 18px;
        line-height: 22px;
        color: #3D4152;
    }

    .section-products-detail p {
        font-family: Quicksand-Regular;
        font-size: 14px;
        line-height: 17px;
        color: #3D4152;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .section-products-detail .faq-item {
        border-bottom: 1px solid #d1e2f1;
    }

    .section-products-detail .custom-container .faq-item:last-child {
        border-bottom: 0;
    }

    .section-products-detail .faq-item .title img {
        margin-left: 4px;
        float: right;
    }

    .section-products-detail .faq-item .title {
        font-size: 18px;
        line-height: 22px;
        color: #3D4152;
        cursor: pointer;
        font-family: Quicksand-Medium;
        margin-bottom: 14px;
    }

    .section-products-detail .faq-item .content-text p {
        font-size: 18px;
        line-height: 22px;
        text-align: justify;
        color: #516e88;
        font-family: Montserrat-Regular;
    }

    .section-products-detail .faq-item .content-text .technical,
    .section-products-detail .faq-item .content-text .documents,
    .section-products-detail .faq-item .content-text .firmware {
        margin-left: 40px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

        .section-products-detail .faq-item .content-text .technical img {
            margin-right: 40px;
            width: 40px;
        }

        .section-products-detail .faq-item .content-text .documents .pdf-button,
        .section-products-detail .faq-item .content-text .firmware .down-button {
            cursor: pointer;
        }

            .section-products-detail .faq-item .content-text .documents .pdf-button img,
            .section-products-detail .faq-item .content-text .firmware .down-button img {
                float: left;
                margin-right: 15px;
            }

    .section-products-detail .faq-item .content-text {
        margin-top: 25px;
        display: none;
    }

    .section-products-detail .owl-carousel .owl-item img {
        display: block;
         width: auto; 
        margin: 0 auto;
    }

/****** end section section-products-detail *******/



/****** section section-products-list *******/

.section-products-list-top {
    margin-top: 93px;
    padding: 110px 0;
    text-align: center;
}

    .section-products-list-top h1 {
        font-family: Quicksand-Bold;
        font-size: 38px;
        line-height: 47px;
        color: #000000;
        margin-bottom: 16px;
    }

    .section-products-list-top p {
        font-family: Quicksand-Regular;
        font-size: 24px;
        line-height: 30px;
        color: #000000;
        margin-bottom: 32px;
    }

    .section-products-list-top a {
        display: inline-block;
        padding: 15px 45px;
        background: #03866D;
        border-radius: 5px;
        font-family: Quicksand-Bold;
        font-size: 20px;
        line-height: 25px;
        color: #FFFFFF;
    }

    .section-products-list-top img {
        max-height: 300px;
        border-radius: 30px;
    }

.section-products-list {
    margin-bottom: 150px;
}

    .section-products-list h1 {
        font-family: Quicksand-Medium;
        font-size: 38px;
        line-height: 47px;
        color: #000000;
    }

    .section-products-list .selected-category-breadcrumb {
        margin-bottom: 80px;
        display: inline-block;
        list-style-type: none;
        position: relative;
    }

        .section-products-list .selected-category-breadcrumb::before {
            content: "";
            background: url('/assets/images/icons/branch.svg');
            height: 24px;
            width: 24px;
            background-size: contain;
            position: absolute;
            left: 10px;
        }

        .section-products-list .selected-category-breadcrumb li {
            display: inline-block;
            font-family: Quicksand-Light;
            font-size: 18px;
            line-height: 22px;
            color: #000000;
        }

            .section-products-list .selected-category-breadcrumb li:after {
                content: ">";
                padding: 0 5px;
                color: #848383;
                font-family: Quicksand-Light;
                font-size: 22px;
                margin-left: 5px;
            }

            .section-products-list .selected-category-breadcrumb li:last-child:after {
                display: none;
            }

            .section-products-list .selected-category-breadcrumb li a {
                color: #000000;
            }

    .section-products-list .products-list-item {
        box-shadow: 5px 5px 20px rgba(115, 151, 218, 0.16);
        border-radius: 25px;
        padding: 20px;
        margin-bottom: 20px;
    }

        .section-products-list .products-list-item .right-column {
            padding-left: 50px;
        }

        .section-products-list .products-list-item .category {
            display: inline-block;
            list-style-type: none;
            margin-bottom: 0;
            padding-left: 0;
        }

            .section-products-list .products-list-item .category li, .section-products-list .products-list-item .category li a{
                display: inline-block;
                font-family: Quicksand-Light;
                font-size: 18px;
                line-height: 22px;
                color: #000000;
            }

                .section-products-list .products-list-item .category li:after {
                    content: ">";
                    padding: 0 5px;
                    color: #848383;
                    font-family: Quicksand-Light;
                    font-size: 22px;
                    margin-left: 5px;
                }

                .section-products-list .products-list-item .category li:last-child:after {
                    display: none;
                }


        .section-products-list .products-list-item .title {
            margin-top: 10px;
            font-family: Quicksand-Medium;
            font-size: 28px;
            line-height: 35px;
            color: #000000;
            margin-bottom: 20px;
            display: block;
        }

        .section-products-list .products-list-item .sub-title {
            font-family: Quicksand-Regular;
            font-size: 14px;
            line-height: 17px;
            color: #000000;
        }

        .section-products-list .products-list-item .property {
            display: inline-block;
            list-style-type: none;
            margin-bottom: 0;
            padding-left: 0;
        }

            .section-products-list .products-list-item .property li {
                display: inline-block;
                margin-right: 30px;
            }
                .section-products-list .products-list-item .property li img {
                    width: 40px;
                }

        .section-products-list .products-list-item .grey {
            font-family: Quicksand-Bold;
            font-size: 16px;
            line-height: 20px;
            color: #8C8C8C;
        }

        .section-products-list .products-list-item .button {
            margin-top: 10px;
            float: right;
            background: #FC456A;
            border-radius: 5px;
            font-family: Quicksand-Medium;
            font-size: 20px;
            line-height: 20px;
            color: #FFFFFF;
            padding: 6px 24px;
        }

    .section-products-list .filter {
    }

        .section-products-list .filter .filter-item {
            margin-bottom: 40px;
        }

            .section-products-list .filter .filter-item .title {
                font-family: Quicksand-Medium;
                font-size: 20px;
                line-height: 25px;
                color: #000000;
                margin-bottom: 20px;
            }

            .section-products-list .filter .filter-item ul {
                list-style-type: none;
                margin-bottom: 0;
                padding-left: 15px;
            }

                .section-products-list .filter .filter-item ul li {
                    margin-bottom: 5px;
                    display: block;
                }

                    .section-products-list .filter .filter-item ul li a {
                        margin-bottom: 5px;
                        font-family: Quicksand-Light;
                        font-size: 18px;
                        line-height: 22px;
                        color: #000000;
                        display: block;
                        cursor: pointer;
                        text-transform: capitalize;
                    }


            .section-products-list .filter .filter-item .button {
                background: #F0C419;
                border-radius: 5px;
                display: block;
                text-align: Center;
                font-family: Quicksand-Medium;
                font-size: 20px;
                line-height: 20px;
                color: #FFFFFF;
                padding: 8px 0;
                cursor: pointer;
            }

            .section-products-list .filter .filter-item.seperator {
                border-top: 2px solid #ccc;
                padding-top: 30px;
            }

                .section-products-list .filter .filter-item.seperator input {
                    margin-bottom: 15px;
                }
/****** end section section-products-list *******/




@media (max-width: 1200px) {
    header .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .gp-main-slider .item img {
        min-height: 475px;
    }

    .gp-main-slider .item .slider-content .title {
        font-size: 28px;
    }

    .gp-main-slider .item .slider-content .desc {
        font-size: 20px;
    }

    .gp-main-about .about-box-wrapper .box-item .head .title {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    header .top-header .nav .nav-item .nav-link {
        font-size: 12px;
    }

    header .navbar-brand img {
        width: 150px;
    }

    header .navbar-nav .nav-item .nav-link {
        padding-left: .3rem;
        padding-right: .3rem;
        font-size: 13px;
    }

    footer .footer-contact {
        font-size: 14px;
    }

    .gp-main-slider .item img {
        min-height: 475px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .gp-main-slider .item .slider-content .title {
        font-size: 28px;
    }

    .gp-main-slider .item .slider-content .desc {
        font-size: 20px;
    }

    .gp-main-about .about-box-wrapper .box-item .head .title {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    header .top-header .nav.social {
        display: none;
    }

    footer {
        padding: 20px 0;
    }

    .gp-main-about .about-box-wrapper .box-item .head .title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    header .top-header .nav.links .nav-item .nav-link img {
        height: 22px;
    }

    header .top-header .nav.langs .nav-item .nav-link {
        height: 22px;
        width: 22px;
    }

    .gp-page-header .page-header-content h1 {
        font-size: 24px;
    }

    .gp-page-content {
        padding: 50px 0;
    }

    .copyright {
        text-align: center;
    }

        .copyright .copy {
            margin-bottom: 10px;
        }
}

@media (max-width: 675px) {
    header .top-header .nav.links .nav-item {
        padding-left: 10px;
        padding-right: 10px;
    }

        header .top-header .nav.links .nav-item .nav-link img {
            margin-right: 0;
        }

        header .top-header .nav.links .nav-item .nav-link span {
            display: none;
        }
}

@media (max-width: 575px) {
    header .navbar-search .nav .nav-item .nav-link img {
        width: 42px;
    }
}
/*# sourceMappingURL=layout.css.map */

.language-nav .dropdown-menu {
    min-width: 75px;
}





.video-overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 6; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.video-overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.video-overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

    /* When you mouse over the navigation links, change their color */
    .video-overlay a:hover, .video-overlay a:focus {
        color: #f1f1f1;
    }

/* Position the close button (top right corner) */
.video-overlay .video-overlay-closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

.inner-white.scrolling .navbar-toggler .icon {
    background: #fff;
}

.dark-theme .navbar-toggler span {
    background: #fff;
}

.index-theme.navbar-toggler span {
    background: #FC456A;
}

.dark-theme .sidenav-wrapper {
    background: #FC456A;
}

.category-breadcrumb {
    list-style-type: none;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
}

    .category-breadcrumb li {
        float: left;
        color: #848383;
        font-family: Quicksand-Regular;
        padding: 0 4px;
    }

        .category-breadcrumb li:first-child {
            padding-left: 0;
        }

        .category-breadcrumb li a {
            color: #848383;
            font-family: Quicksand-Regular;
        }

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 13px 20px rgba(204,169,44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 13px 20px rgba(204,169,44, 0);
        box-shadow: 0 0 13px 20px rgba(204,169,44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
}

#referencesSlider img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 1s ease;
}

    #referencesSlider img:hover {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }
