/*!
Theme Name: 
Theme URI: 
Author: 
Author URI: 
Description: Description
Version: 2.1
License: GNU General Public License v3 or later
License URI: LICENSE
Text Domain: 
Tags:  
*/
/*---------------------------------------------------
               THEM CSS
----------------------------------------------------*/
@font-face {
    font-family: Avenir-Book;
    src: url(../vendors/fonts/Avenir-Book.ttf);
}

@font-face {
    font-family: Avenir-Light;
    src: url(../vendors/fonts/Avenir-Light.ttf);
}

@font-face {
    font-family: AvenirLTStd-Book;
    src: url(../vendors/fonts/AvenirLTStd-Book.otf);
}

@font-face {
    font-family: AvenirLTStd-Light;
    src: url(../vendors/fonts/AvenirLTStd-Light.otf);
}

@font-face {
    font-family: AvenirLTStd-Roman;
    src: url(../vendors/fonts/AvenirLTStd-Roman.otf);
}

@font-face {
    font-family: Avenir-Roman;
    src: url(../vendors/fonts/Avenir-Roman.ttf);
}

/* css seclector */
::-moz-selection {
    color: #fff;
    background: #e67817;
}

::selection {
    color: #fff;
    background: #e67817;
}

/* end css seclector */
/*back to top button start */
#scroll {
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #e67817;
    border-color: 1px solid #e67817;
    text-indent: -9999px;
    display: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
    -webkit-box-shadow: 0 0px 15px 1px #efeded;
    box-shadow: 0 0px 15px 1px #efeded;
    border-radius: 50px;
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -7px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #fff;
    }

    #scroll:hover {
        opacity: 1;
        filter: "alpha(opacity=0.5)";
        -ms-filter: "alpha(opacity=0.5)";
    }

/*back to top button end*/
.checkbox {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .checkbox:hover input ~ .checkmark {
        background-color: #f3f1f1;
        border: 1px solid #d8d8d8;
    }

    .checkbox input {
        opacity: 0;
        margin-right: 10px;
    }

        .checkbox input:checked ~ .checkmark {
            background-color: #e67817;
            border: 1px solid #e67817;
        }

            .checkbox input:checked ~ .checkmark:after {
                display: block;
            }

    .checkbox .checkmark {
        position: absolute;
        top: -1px;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #fff;
        border-radius: 3px;
        border: 1px solid #d8d8d8;
    }

        .checkbox .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 6px;
            top: 3px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.radio {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radio:hover input ~ .checkmark {
        background-color: #f3f1f1;
        border: 1px solid #d8d8d8;
    }

    .radio input {
        opacity: 0;
        margin-right: 5px;
    }

        .radio input:checked ~ .checkmark {
            background-color: #e67817;
            border: 1px solid #e67817;
        }

            .radio input:checked ~ .checkmark:after {
                display: block;
            }

    .radio .checkmark {
        position: absolute;
        top: 5px;
        left: 0;
        height: 17px;
        width: 17px;
        background-color: #eee;
        border-radius: 50%;
        border: 1px solid #d8d8d8;
    }

        .radio .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 4px;
            top: 4px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: white;
        }

.onof {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

    .onof input {
        opacity: 0;
        width: 0;
        height: 0;
    }

        .onof input:checked + .slider {
            background-color: #e67817;
        }

        .onof input:focus + .slider {
            -webkit-box-shadow: 0 0 1px #2196F3;
            box-shadow: 0 0 1px #2196F3;
        }

        .onof input:checked + .slider:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
        }

    .onof .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
        border-radius: 25px;
    }

        .onof .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 2px;
            bottom: 3px;
            background-color: #fff;
            -webkit-transition: .4s;
            -o-transition: .4s;
            transition: .4s;
            border-radius: 50%;
        }

* {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000;
    letter-spacing: 0.2px;
    width: 100%;
    height: 100%;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 5px;
}

button, .btn:focus, input:focus, textarea:focus, select:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn:focus {
    background: #e67817 !important;
    border-color: #e67817 !important;
    color: #fff !important;
    outline: none;
}

audio:focus, video:focus {
    outline: none;
}

.form-control {
    font-size: 14px !important;
}

    .form-control:focus {
        border-color: #e67817;
    }

a {
    text-decoration: none;
    color: #e67817;
}

    a:hover {
        text-decoration: none;
    }

.height_auto {
    height: auto !important;
}

.margin_auto {
    margin: 0 auto;
}

.section_padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section_padding_top {
    padding-top: 120px;
}

.section_padding_bottom {
    padding-bottom: 120px;
}

.section_margin {
    margin-top: 120px;
    margin-bottom: 120px;
}

.section_margin_top {
    margin-top: 120px;
}

.section_margin_bottom {
    margin-bottom: 120px;
}

.underline {
    text-decoration: underline;
}

.theme_button {
    background: #e67817 !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 10px 30px;
}

.text_limit {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme_color {
    color: #e67817 !important;
}

.theme_bg {
    background-color: #e67817 !important;
}

/* Main Styles */
/* header css start */
.main_header {
    background: #fff;
    /*
    border-bottom: 1px solid #dedada;
    box-shadow: 0 -18px 22px 6px black;*/
    padding: 10px 0px;
    z-index: 1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}

    .main_header .ak_menu {
        padding: 0;
    }

        .main_header .ak_menu .navbar-brand img {
            width: auto;
            height: 70px;
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

        .main_header .ak_menu .navbar-collapse .navbar-nav {
            padding: 5px 0px;
        }

            .main_header .ak_menu .navbar-collapse .navbar-nav li a {
                padding: 5px 20px !important;
                -webkit-transition: 0.5s;
                -o-transition: 0.5s;
                transition: 0.5s;
                background: transparent;
                font-size: 16px;
                display: block;
                color: #000;
                font-weight: 600;
            }

                .main_header .ak_menu .navbar-collapse .navbar-nav li a:hover, .main_header .ak_menu .navbar-collapse .navbar-nav li a.active {
                    color: #e67817;
                }

            .main_header .ak_menu .navbar-collapse .navbar-nav li .btn {
                background: #e67817;
                color: #fff;
                border-radius: 50px;
                padding: 4px 25px !important;
                margin-top: -2px;
            }

            .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-toggle::after {
                content: "\f107";
                -webkit-font-smoothing: antialiased;
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                line-height: 1;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                border: none;
                margin-left: 2px;
                position: relative;
                top: 5px;
            }

            .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu {
                border-radius: 0;
                min-width: 220px;
                border: none;
                top: 30px;
                padding: 15px 0px 2px 0px;
                background: transparent;
            }

                .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box {
                    background: #fff;
                    border-bottom: 4px solid #e67817;
                    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
                    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
                    /*
							&:before {
								content: "";
								border-style: solid;
								border-width: 10px;
								border-color: transparent #fff transparent transparent;
								position: absolute;
								top: -20px;
								transform: rotate(90deg);
							}*/
                }

                    .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box a {
                        padding: 8px 20px !important;
                        line-height: 25px;
                        border-bottom: 1px solid #efe6e6;
                        font-size: 13px;
                    }

                        .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box a:hover, .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box a.open_menu_active {
                            color: #e67817;
                        }

                        .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box a:last-child {
                            border-bottom: 1px solid transparent;
                        }

                    .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box.dropdown_left {
                        left: 0;
                        right: auto;
                    }

                        .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box.dropdown_left:before {
                            left: 40px;
                        }

                    .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box.dropdown_right {
                        left: auto;
                        right: 0;
                    }

                        .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box.dropdown_right:before {
                            right: 40px;
                        }

    .main_header.affix {
        padding: 5px 0px;
    }

        .main_header.affix .ak_menu {
            padding: 0;
        }

            .main_header.affix .ak_menu .navbar-brand img {
                width: auto;
                height: 70px;
            }

.topbar {
    background: #e67817;
    color: #fff;
    padding: 12px 0px;
    font-size: 14px;
}

    .topbar .right {
        text-align: right;
    }

.social_links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .social_links li {
        display: inline-block;
    }

        .social_links li a {
            color: #fff;
            margin-left: 10px;
        }

.slider_section {
    overflow: hidden;
}

    .slider_section .slider_item .bg_img {
        height: 660px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .slider_section .slider_item .slider_body {
        position: absolute;
        top: 25%;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        left: 0%;
        width: 100%;
    }

        .slider_section .slider_item .slider_body h1 {
            font-size: 80px;
            font-weight: bold;
            color: #fff;
        }

        .slider_section .slider_item .slider_body p {
            color: #fff;
            font-size: 18px;
            margin: 25px 0px 30px 0px;
        }

        .slider_section .slider_item .slider_body .sl_btn {
            color: #fff;
            border-radius: 50px;
            border: 1px solid #e67817;
            padding: 10px 40px;
            display: inline-block;
            background: #e67817;
        }

    .slider_section .owl-nav button {
        position: absolute;
        top: 0%;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        color: #fff !important;
        font-size: 18px !important;
        width: 40px;
        height: 40px;
        line-height: 30px !important;
        text-align: center;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 50px !important;
    }

        .slider_section .owl-nav button:hover, .slider_section .owl-nav button:focus {
            background: rgba(255, 255, 255, 0.2) !important;
            outline: none;
            color: #fff !important;
        }

        .slider_section .owl-nav button.owl-prev {
            left: -100px;
        }

        .slider_section .owl-nav button.owl-next {
            right: -70px;
        }

    .slider_section .owl-carousel .owl-dots {
        margin: 0 !important;
        position: absolute;
        left: 50%;
        bottom: 20px;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }

        .slider_section .owl-carousel .owl-dots .owl-dot {
            outline: none;
        }

            .slider_section .owl-carousel .owl-dots .owl-dot span {
                width: 13px;
                height: 13px;
                border: 1px solid #fff;
                background: transparent;
            }

            .slider_section .owl-carousel .owl-dots .owl-dot.active span {
                border: 1px solid #fff;
                background: #fff;
            }

.title {
    color: #000;
    margin-bottom: 100px;
}

    .title h1 {
        position: relative;
        font-weight: bold;
        font-size: 42px;
    }

    .title span {
        display: block;
        width: 100%;
        position: relative;
    }

        .title span::before {
            content: "";
            background: #dea332;
            width: 120px;
            height: 2px;
            margin: 11px 9px;
            display: inline-block;
            text-align: center;
            position: absolute;
            left: 50%;
            bottom: -25px;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
        }

        .title span::after {
            content: "";
            width: 20px;
            height: 20px;
            margin: 0px auto 0;
            display: block;
            border: solid #fff 5px;
            -webkit-transform: rotate(0);
            -ms-transform: rotate(0);
            transform: rotate(0);
            -webkit-box-shadow: 0 0 0 2px #dea332;
            box-shadow: 0 0 0 2px #dea332;
            background: #e67817;
            border-radius: 100%;
            position: absolute;
            left: 50%;
            bottom: -22px;
        }

.about_section .img_box img {
    width: 100%;
    padding: 0px 50px;
}

.about_section .content_box ul {
    margin: 0px -15px;
}

    .about_section .content_box ul li {
        font-weight: 600;
        margin-bottom: 20px;
    }

        .about_section .content_box ul li i {
            margin-right: 15px;
        }

.service_section {
    background: #f7f7f7;
}

    .service_section .services_box {
        text-align: center;
        margin: 20px 0px;
        border-bottom: 2px solid #e67817;
        border-radius: 50px;
        padding: 30px 15px;
        background: #fff;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

        .service_section .services_box img {
            height: 60px;
        }

        .service_section .services_box h3 {
            font-size: 26px;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        .service_section .services_box p {
            margin-top: 15px;
            font-size: 18px;
            color: #888a8b;
            margin: 0;
        }

        .service_section .services_box i {
            font-size: 54px;
            color: #e67817;
        }

        .service_section .services_box:hover {
            background: #e67817;
            color: #fff;
        }

            .service_section .services_box:hover p, .service_section .services_box:hover h3 {
                color: #fff;
            }

            .service_section .services_box:hover i {
                color: #fff;
            }

.benefits_section .content_box .benefits {
    margin: 25px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .benefits_section .content_box .benefits .icon_box {
        float: left;
        margin-right: 15px;
    }

        .benefits_section .content_box .benefits .icon_box i {
            font-size: 30px;
            color: #e67817;
        }

    .benefits_section .content_box .benefits .content {
        float: left;
    }

        .benefits_section .content_box .benefits .content h5 {
            font-size: 24px;
            font-weight: 600;
        }

        .benefits_section .content_box .benefits .content p {
            margin: 0;
        }

.benefits_section .card_box {
    text-align: center;
    background: #e67817;
    height: 100%;
    color: #fff;
    padding: 88px 50px;
    border-radius: 25px;
}

    .benefits_section .card_box h2 {
        font-weight: bold;
        font-size: 26px;
    }

    .benefits_section .card_box p {
        margin: 15px 0px 20px 0px;
    }

    .benefits_section .card_box .btnshop {
        background: #fff;
        padding: 8px 30px;
        border-radius: 50px;
        font-weight: 600;
    }

.team_section {
    background: #e67817;
}

    .team_section .title {
        color: #fff;
    }

        .team_section .title span::before {
            content: "";
            background: #fff;
        }

        .team_section .title span::after {
            content: "";
            -webkit-box-shadow: 0 0 0 2px #fff;
            box-shadow: 0 0 0 2px #fff;
        }

    .team_section .team_box {
        color: #fff;
        text-align: center;
        margin: 35px 0px 0px 0px;
    }

        .team_section .team_box h5 {
            font-size: 22px;
            font-weight: 600;
            margin: 10px 0px 0px 0px;
        }

        .team_section .team_box h6 {
            margin: 10px 0px 10px 0px;
            color: #dedede;
        }

        .team_section .team_box img {
            width: 150px;
            height: 150px;
            border-radius: 50px;
            -o-object-fit: cover;
            object-fit: cover;
            margin: 0 auto;
            margin-bottom: 15px;
        }

.news_section .slider_item {
    margin: 0px 15px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

    .news_section .slider_item .bg_img {
        width: 100%;
        height: 300px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .news_section .slider_item .slider_body {
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        color: #fff;
        padding: 20px;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

        .news_section .slider_item .slider_body .category {
            background: #e67817;
            display: inline-block;
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 13px;
            color: #fff;
        }

        .news_section .slider_item .slider_body .fix_body {
            position: absolute;
            bottom: 20px;
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

        .news_section .slider_item .slider_body h1 {
            font-size: 24px;
            font-weight: bold;
        }

    .news_section .slider_item:hover .slider_body {
        background-color: rgba(0, 0, 0, 0.4);
    }

        .news_section .slider_item:hover .slider_body .fix_body {
            position: absolute;
            bottom: 50px;
        }

.news_section .owl-carousel {
    margin-top: 25px;
}

    .news_section .owl-carousel .owl-dots .owl-dot {
        outline: none;
    }

        .news_section .owl-carousel .owl-dots .owl-dot span {
            width: 30px;
            height: 6px;
            border: 1px solid #d1d1d1;
            background: #d1d1d1;
        }

        .news_section .owl-carousel .owl-dots .owl-dot.active span {
            border: 1px solid #e67817;
            background: #e67817;
        }

.main_footer {
    background: #292b30;
    color: #fff;
    padding: 70px 0px 0px 0px;
}

    .main_footer .copyright {
        text-align: center;
        padding: 25px 0px;
        border-top: 1px solid #504f4f;
        margin-top: 30px;
    }

    .main_footer h5 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .main_footer .menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .main_footer .menu li a {
            color: #fff;
            line-height: 34px;
            display: block;
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
        }

            .main_footer .menu li a i {
                margin-right: 8px;
            }

            .main_footer .menu li a:hover {
                color: #e67817;
            }

    .main_footer .socia_links {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-top: 20px;
    }

        .main_footer .socia_links li {
            display: inline-block;
        }

            .main_footer .socia_links li a {
                color: #fff;
                display: block;
                width: 40px;
                height: 40px;
                background: #737070;
                text-align: center;
                line-height: 42px;
                border-radius: 50px;
                margin-right: 5px;
                -webkit-transition: 0.5s;
                -o-transition: 0.5s;
                transition: 0.5s;
            }

                .main_footer .socia_links li a:hover {
                    background: #e67817;
                }

.bg1 {
    background: #e67817;
}

.bg2 {
    background: #dea332;
}

.token_section .left_box .token_box {
    margin: 25px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .token_section .left_box .token_box .icon_box {
        float: left;
        margin-right: 15px;
    }

        .token_section .left_box .token_box .icon_box i {
            font-size: 24px;
            color: #e67817;
        }

    .token_section .left_box .token_box .content {
        float: left;
        width: 100%;
    }

        .token_section .left_box .token_box .content h5 {
            font-size: 24px;
            font-weight: 600;
        }

        .token_section .left_box .token_box .content p {
            margin: 0;
        }

.token_section .token_card {
    border-radius: 20px;
    text-align: center;
    min-height: 200px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#e67817), to(#dea332)) !important;
    background: -webkit-linear-gradient(top, #e67817 0%, #dea332 100%) !important;
    background: -o-linear-gradient(top, #e67817 0%, #dea332 100%) !important;
    background: linear-gradient(to bottom, #e67817 0%, #dea332 100%) !important;
    padding: 50px 0px;
    margin: 25px 0px;
}

    .token_section .token_card h2 {
        font-weight: bold;
    }

.token_section .progress {
    height: 20px;
    border-radius: 50px;
}

.logos_section {
    background: #e67817;
}

    .logos_section .title {
        color: #fff;
    }

        .logos_section .title span::before {
            content: "";
            background: #fff;
        }

        .logos_section .title span::after {
            content: "";
            -webkit-box-shadow: 0 0 0 2px #fff;
            box-shadow: 0 0 0 2px #fff;
        }

    .logos_section .slider_item img {
        width: auto;
    }

section {
    display: inline-block;
    width: 100%;
}

.roadmap_section .roadmap-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .roadmap_section .roadmap-items li {
        width: 25%;
        float: left;
        text-align: center;
        margin-top: 24px;
        position: relative;
        z-index: 1;
    }

        .roadmap_section .roadmap-items li:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background-color: #f3bc8b;
            left: 0;
            z-index: -1;
            top: 17px;
        }

        .roadmap_section .roadmap-items li:nth-child(4):after {
            content: '';
            position: absolute;
            width: 100px;
            height: calc(100% + 29px);
            background-color: green;
            top: 17px;
            background: url(../images/rightCircleLine.png) no-repeat center right;
            background-size: auto 100%;
            z-index: -1;
            right: 0;
        }

        .roadmap_section .roadmap-items li:nth-child(5):after {
            content: '';
            position: absolute;
            width: 106px;
            height: calc(100% + 29px);
            background-color: green;
            top: 17px;
            background: url(../images/leftCircleLine.png) no-repeat center right;
            background-size: auto 100%;
            z-index: -1;
            left: -5px;
        }

        .roadmap_section .roadmap-items li:nth-child(1):before {
            left: 150px;
        }

        .roadmap_section .roadmap-items li:nth-child(4):before {
            width: calc(50% + 52px);
        }

        .roadmap_section .roadmap-items li:nth-child(5):before {
            width: calc(50% + 51px);
            left: initial;
            right: 0;
        }

        .roadmap_section .roadmap-items li:nth-child(9):before {
            width: calc(50% + 51px);
            left: initial;
            right: 0;
        }

        .roadmap_section .roadmap-items li:nth-child(8):before {
            width: calc(50% + 52px);
        }

        .roadmap_section .roadmap-items li:last-child:before {
            width: 50%;
        }

        .roadmap_section .roadmap-items li .dot {
            display: block;
            width: 40px;
            height: 40px;
            margin: 0 auto;
            background: url(../images/dot.png) no-repeat center center;
            background-size: 100%;
        }

        .roadmap_section .roadmap-items li .year {
            font-weight: 700;
            font-size: 1.125rem;
            line-height: 18px;
            color: #000000;
            display: block;
            padding: 20px 0 10px 0;
        }

        .roadmap_section .roadmap-items li h6 {
            color: #707173;
            font-size: 0.875rem;
        }

.faq_section .faq_body .card {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ededed;
}

    .faq_section .faq_body .card .card-header {
        background: #f7f7f7;
        padding: 15px 20px;
        border: none;
    }

        .faq_section .faq_body .card .card-header a {
            color: #000;
            font-weight: bold;
            font-size: 18px;
        }

            .faq_section .faq_body .card .card-header a:after {
                content: "\f077";
                -moz-osx-font-smoothing: grayscale;
                -webkit-font-smoothing: antialiased;
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                line-height: 1;
                font-family: "Font Awesome 5 Free";
                float: right;
                position: relative;
                top: 5px;
                color: #969494;
            }

            .faq_section .faq_body .card .card-header a[aria-expanded="true"]:after {
                content: "\f078";
            }

.news_details_section .content_body img {
    width: 100%;
}

.news_details_section .content_body h1 {
    font-weight: bold;
    margin-bottom: 15px;
}

.news_details_section .title_sidebar {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    background: #efefef;
    margin-top: 15px;
}

    .news_details_section .title_sidebar span {
        background: #e67817;
        padding: 8px 15px;
        color: #fff;
        display: inline-block;
        min-width: 130px;
        text-align: center;
    }

.news_details_section .recent_blog_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .news_details_section .recent_blog_list .recent_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px 0px;
        border-bottom: 1px solid #e6e0e0;
    }

        .news_details_section .recent_blog_list .recent_box .upload_img {
            width: 120px;
            height: 90px;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .news_details_section .recent_blog_list .recent_box .body {
            padding-left: 15px;
        }

            .news_details_section .recent_blog_list .recent_box .body .recent_blog_title {
                font-size: 16px;
                font-weight: bold;
                overflow: hidden;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                color: #000;
                line-height: normal;
            }

            .news_details_section .recent_blog_list .recent_box .body .post_dt {
                margin: 4px 0px;
            }

                .news_details_section .recent_blog_list .recent_box .body .post_dt li {
                    display: inline-block;
                }

                    .news_details_section .recent_blog_list .recent_box .body .post_dt li a {
                        color: #000;
                        margin-right: 8px;
                    }

            .news_details_section .recent_blog_list .recent_box .body p {
                overflow: hidden;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                margin: 0;
            }

.news_details_section .category_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .news_details_section .category_list li a {
        color: #000;
        padding: 10px 1px;
        background: #ffffff;
        display: block;
        margin: 1px 0px;
        border-bottom: 1px solid #dadada;
    }

        .news_details_section .category_list li a .category_count {
            float: right;
        }

.contact_section .form_box .form-group input {
    border: 1px solid #dadada;
    height: 45px;
    font-size: 18px !important;
    padding: 0px 15px;
}

.contact_section .form_box .form-group textarea {
    border: 1px solid #dadada;
    font-size: 18px !important;
    padding: 10px 15px;
}

.contact_section .form_box .form-group .submit_btn {
    width: 100%;
    background: #e67817;
    color: #fff;
    padding: 12px 15px;
}

.subscribe_section .subscribe_box {
    border: 1px solid #dea332;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 15px 0px;
}

    .subscribe_section .subscribe_box img {
        height: 79px;
        margin-bottom: 20px;
    }

    .subscribe_section .subscribe_box .subscribe_head {
        text-align: center;
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: 25px;
    }

    .subscribe_section .subscribe_box h1 {
        font-size: 39px;
        font-weight: bold;
        color: #dea332;
        margin-bottom: 25px;
    }

        .subscribe_section .subscribe_box h1 sub {
            bottom: 0;
        }

    .subscribe_section .subscribe_box h3 {
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 35px;
        color: #060606;
        position: relative;
    }

        .subscribe_section .subscribe_box h3::after {
            content: "";
            position: absolute;
            background: #060606;
            width: 60px;
            height: 2px;
            left: 50%;
            bottom: -8px;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .subscribe_section .subscribe_box .plan_btn {
        text-align: center;
        display: block;
        background: #dea332;
        color: #fff;
        border-radius: 10px;
        padding: 10px 5px;
        margin-top: 20px;
    }

    .subscribe_section .subscribe_box ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .subscribe_section .subscribe_box ul li {
            position: relative;
            padding-left: 20px;
            font-size: 16px;
            line-height: 22px;
            margin: 8px 0px;
            color: #888a8b;
        }

            .subscribe_section .subscribe_box ul li::before {
                content: "";
                background: #dea332;
                width: 8px;
                height: 8px;
                display: inline-block;
                text-align: center;
                position: absolute;
                left: 0px;
                border-radius: 5px;
                top: 6px;
            }

/*=======================================================
//////////////RESPONSIVE MEDIA QUERY START///////////////
=======================================================*/
@media (max-width: 767px) {
    .main_header .navbar-toggler {
        cursor: pointer;
        background-color: transparent;
        border: 1px solid transparent;
        color: #000;
        padding: 0px 15px;
    }

    .main_header .navbar-collapse {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        left: -100%;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        display: block;
    }

        .main_header .navbar-collapse .menu_box {
            height: 100vh;
            background: #fff;
            width: 70%;
            float: left;
            overflow: scroll;
            -webkit-box-shadow: 0 0px 10px 2px #252525;
            box-shadow: 0 0px 10px 2px #252525;
        }

            .main_header .navbar-collapse .menu_box .mobile_logo {
                padding: 15px 15px 15px 15px;
                position: relative;
                background: #f1f1f1;
                border-bottom: 1px solid #dad8d8;
            }

                .main_header .navbar-collapse .menu_box .mobile_logo .mobile_close {
                    color: #353535;
                    position: absolute;
                    right: 5px;
                    font-size: 13px;
                    top: 5px;
                    padding: 10px;
                }

            .main_header .navbar-collapse .menu_box .navbar-nav {
                float: left !important;
                width: 100%;
                padding: 0;
                margin: 0;
            }

                .main_header .navbar-collapse .menu_box .navbar-nav li {
                    border-bottom: 1px solid #dad8d8;
                    padding: 8px 0px;
                }

                    .main_header .navbar-collapse .menu_box .navbar-nav li a {
                        padding: 5px 15px !important;
                    }

                .main_header .navbar-collapse .menu_box .navbar-nav .dropdown .dropdown-menu {
                    min-width: 100%;
                    border: none;
                    top: 0px;
                    padding: 0px 0px 0px 0px;
                    background: transparent;
                }

                    .main_header .navbar-collapse .menu_box .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box {
                        border-bottom: none;
                        -webkit-box-shadow: none;
                        box-shadow: none;
                    }

                        .main_header .navbar-collapse .menu_box .navbar-nav .dropdown .dropdown-menu .dropdown-menu-box a {
                            padding: 5px 15px 5px 35px !important;
                            line-height: 28px;
                            border-bottom: none;
                        }

        .main_header .navbar-collapse .hide_box {
            width: 30%;
            height: 100vh;
            float: right;
            background: rgba(0, 0, 0, 0.35);
        }

        .main_header .navbar-collapse.slide_effect {
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
            transition: 0.5s;
            left: 0px;
        }

    .slider_section .slider_item .slider_body h1 {
        font-size: 34px;
    }

    .testimonials_section .content_box_main .testimonials_slider {
        margin-left: 0;
    }

    .testimonials_section .owl-nav button.owl-prev {
        left: 15px;
        top: -50px;
    }

    .testimonials_section .owl-nav button.owl-next {
        right: -30px;
        top: -50px;
    }

    .testimonials_section .icon {
        position: relative;
        text-align: center;
        margin: 0 auto;
        display: block;
        margin-bottom: 15px;
    }

    .main_header.affix .navbar-toggler {
        color: #000;
    }

    .aboutus_section .img_box img {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 50px;
    }

    .testimonials_section .content_box_main .testimonials_row .testimonials_box p {
        font-size: 15px;
        margin-top: 15px;
    }

    .main_footer .widgets {
        margin-top: 15px;
    }

    .main_header .ak_menu .navbar-collapse .navbar-nav li a {
        color: #000;
    }

    .main_header .navbar-collapse .menu_box .mobile_logo .main_logo {
        display: none;
    }

    .main_header .navbar-collapse .menu_box .mobile_logo .scroll_logo {
        display: inline-block;
        height: 33px;
    }

    .about_section .img_box img {
        margin-bottom: 30px;
    }

    .roadmap_section .roadmap-items li {
        width: 100%;
        overflow: hidden;
    }

        .roadmap_section .roadmap-items li:before, .roadmap_section .roadmap-items li:after {
            display: none;
        }

    .main_header.affix .ak_menu .navbar-brand img {
        width: auto;
        height: 50px;
    }

    .section_padding {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main_header .ak_menu .navbar-collapse .navbar-nav li a {
        padding: 5px 15px !important;
    }

    .slider_section .slider_item .slider_body h1 {
        font-size: 40px;
    }

    .about_section .img_box img {
        padding: 0px 0px;
    }

    .howitwork_section .img_box img {
        padding: 0px 0px;
    }

    .roadmap_section .roadmap-items li:nth-child(1):before {
        left: 80px;
    }

    .roadmap_section .roadmap-items li {
        font-size: 10px;
    }

        .roadmap_section .roadmap-items li .year {
            font-size: 16px;
        }

        .roadmap_section .roadmap-items li:nth-child(4):after {
            right: -30px;
        }

    .news_details_section .recent_blog_list .recent_box .upload_img {
        width: 90px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .roadmap_section .roadmap-items li:nth-child(1):before {
        left: 120px;
    }

    .roadmap_section .roadmap-items {
        padding: 0px 50px;
    }

        .roadmap_section .roadmap-items li:nth-child(4):after {
            right: -47px;
        }

        .roadmap_section .roadmap-items li:nth-child(5):after {
            width: 117px;
            left: -60px;
        }
}

@media only screen and (max-width: 5520px) and (min-width: 768px) {
    .main_header .ak_menu .navbar-collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
        visibility: visible !important;
    }

        .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown .dropdown-menu {
            -webkit-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            visibility: hidden;
            display: block;
            opacity: 0;
            z-index: 0;
            -webkit-transform: translateY(30px);
            -ms-transform: translateY(30px);
            transform: translateY(30px);
        }

        .main_header .ak_menu .navbar-collapse .navbar-nav .dropdown:hover .dropdown-menu {
            visibility: inherit;
            opacity: 1;
            -webkit-transform: translateY(0px);
            -ms-transform: translateY(0px);
            transform: translateY(0px);
            z-index: 999;
        }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1279px) {
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 576px) {
    .plan_popup .modal-dialog {
        max-width: 400px;
        margin: 1.75rem auto;
    }
}

/*=======================================================
//////////////RESPONSIVE MEDIA QUERY END///////////////
=======================================================*/



.plan_popup .modal-content {
    border-radius: 10px;
    border: none;
}

    .plan_popup .modal-content .modal-body .title_modal {
        text-align: center;
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .plan_popup .modal-content .modal-body .close {
        position: absolute;
        right: -10px;
        top: -15px;
        font-weight: normal;
        width: 30px;
        height: 30px;
        text-align: center;
        background: #e67817 !important;
        border-radius: 50px;
        opacity: 1;
        color: #fff;
        text-shadow: none;
        font-style: inherit;
        font-size: 18px;
    }

    .plan_popup .modal-content .modal-body .form-group .form-control {
        border: 1px solid #cecaca;
        height: 45px;
        font-size: 16px !important;
    }

    .plan_popup .modal-content .modal-body .form-group .btn_submit {
        background: #e67817;
        color: #fff;
        width: 100%;
        padding: 10px 0px;
    }


.services_box .project1 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project1.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project2 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project2.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project3 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project3.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project4 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project4.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project5 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project5.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project6 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project6.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project7 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project7.jpg) no-repeat center center;
    background-size: 100%;
}



.services_box .project8 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project8.jpg) no-repeat center center;
    background-size: 100%;
}

.services_box .project9 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project9.png) no-repeat center center;
    background-size: 100%;
}

.services_box .project10 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project10.png) no-repeat center center;
    background-size: 100%;
}

.services_box .project11 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project11.png) no-repeat center center;
    background-size: 100%;
}

.services_box .project12 {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 25px;
    background: url(../images/Project12.png) no-repeat center center;
    background-size: 100%;
}
