/*-----------------------------------------------------------------------------------

    Template Name: Sotare - Software Landing Page Bootstrap 4 Template.
    Template URI: http://devitems.com/preview/sotare
    Description: Sotare - Software Landing Page.
    Author: devitems
    Author URI: http://devitems.com/
    Version: 1.0

-----------------------------------------------------------------------------------
    
    CSS INDEX
    =========================================
	
    01. Theme default CSS
        - Common Classes
        - Section Padding
    02. Element 
        - Section Title Css
    03. Mobile Menu Css
    04. Header Css
	    - Main Menu Css
    05. Hero Css
    06. About Area Css
    07. Feature Area Css
    08. Slider Screenshort Css
    09. Priceing Area Css
    10. Subscribe Area Css
    11. Faequently Css
    12. Testimonial Area Css
    13. Team  Area Css
    14. Contact Area Css
    15. Footer Area Css
    16. Coming Soon Css
    
-----------------------------------------------------------------------------------*/
/* transition */
/* flex */
/* transform */
/* opacity */
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
/*-- Common Style --*/
*, *::after, *::before {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    /* background-color: #fff;*/
    line-height: 28px;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    visibility: visible;
    font-family: "SF Pro Display Medium";
    color: #333;
}

.bg-home {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    color: #383838;
    font-family: "SF Pro Display Regular" margin-top: 0;
}

h1 {
    line-height: 1;
    font-weight: 800;
}

h2 {
    font-size: 30px;
    line-height: 36px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

h5 {
    font-size: 15px;
    line-height: 18px;
}

h6 {
    font-size: 12px;
    line-height: 14px;
}

p:last-child {
    margin-bottom: 0;
}

p {
    font-family: "SF Pro Display Regular"
}

a, button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a, button, img, input, span {
    transition: all 0.3s ease 0s;
}

*:focus {
    outline: none !important;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #1c8cb3;
}

button, input[type="submit"] {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

/*-- 
    - Common Classes
-----------------------------------------*/
.fix {
    overflow: hidden;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

@media only screen and (max-width: 767px) {
    .container {
        width: 450px;
    }
}

@media only screen and (max-width: 479px) {
    .container {
        width: 350px;
    }
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.container-fluid {
    max-width: 1830px;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
}

.border-t-one {
    border-top: 1px solid #e5e5e5;
}

/*-- 
    - Background color
-----------------------------------------*/
.bg-white {
    background-color: #ffffff;
}

.bg-light-grey {
    background-color: #f6fafb;
}

.bg-grey {
    background: #F6F6F6;
}

.bg-black {
    background: #1D1D1D;
}

.theme-color {
    background: #1c8cb3;
}

/*-- 
    - color
-----------------------------------------*/
.c-blue {
    color: #1c8cb3;
}

/*-- 
    - Input Placeholder
-----------------------------------------*/
input:-moz-placeholder, textarea:-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*-- 
    Scroll Up 
-----------------------------------------*/
#scrollUp {
    width: 40px;
    height: 40px;
    background-color: #1d5dad;
    color: #ffffff;
    right: 35px;
    bottom: 90px;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
}

    #scrollUp i {
        display: block;
        line-height: 40px;
        font-size: 24px;
    }

    #scrollUp:hover i {
        animation-name: fadeInUp;
        animation-duration: 1s;
        animation-fill-mode: both;
        animation-iteration-count: infinite;
    }

/*-- 
    - Main Wrapper
-----------------------------------------*/
.main-wrapper.header-transparent {
    padding: 0 !important;
    margin: 0 !important;
}

/*-- 
    - Section Padding
-------------------------------------*/
.section-ptb {
    padding: 100px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-ptb {
        padding: 80px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-ptb {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-ptb {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 479px) {
    .section-ptb {
        padding: 60px 0;
    }
}

.section-pt {
    padding-top: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pt {
        padding-top: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt {
        padding-top: 60px;
    }
}

.section-pt-70 {
    padding-top: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pt-70 {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt-70 {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt-70 {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt-70 {
        padding-top: 30px;
    }
}

.section-pb {
    padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pb {
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb {
        padding-bottom: 60px;
    }
}

.section-pb-70 {
    padding-bottom: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pb-70 {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb-70 {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb-70 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb-70 {
        padding-bottom: 30px;
    }
}

/*-- Margin top --*/
.mt--5 {
    margin-top: 5px;
}

.mt--10 {
    margin-top: 10px;
}

.mt--15 {
    margin-top: 15px;
}

.mt--20 {
    margin-top: 20px;
}

.mt--25 {
    margin-top: 25px;
}

.mt--30 {
    margin-top: 30px;
}

.mt--35 {
    margin-top: 35px;
}

.mt--40 {
    margin-top: 40px;
}

.mt--45 {
    margin-top: 45px;
}

.mt--50 {
    margin-top: 50px;
}

.mt--55 {
    margin-top: 55px;
}

.mt--60 {
    margin-top: 60px;
}

.mt--65 {
    margin-top: 65px;
}

.mt--70 {
    margin-top: 70px;
}

.mt--75 {
    margin-top: 75px;
}

.mt--80 {
    margin-top: 80px;
}

.mt--85 {
    margin-top: 85px;
}

.mt--90 {
    margin-top: 90px;
}

.mt--95 {
    margin-top: 95px;
}

.mt--100 {
    margin-top: 100px;
}

/*-- Margin Bottom --*/
.mb--5 {
    margin-bottom: 5px;
}

.mb--10 {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px;
}

.mb--20 {
    margin-bottom: 20px;
}

.mb--25 {
    margin-bottom: 25px;
}

.mb--30 {
    margin-bottom: 30px;
}

.mb--35 {
    margin-bottom: 35px;
}

.mb--40 {
    margin-bottom: 40px;
}

.mb--45 {
    margin-bottom: 45px;
}

.mb--50 {
    margin-bottom: 50px;
}

.mb--55 {
    margin-bottom: 55px;
}

.mb--60 {
    margin-bottom: 60px;
}

.mb--65 {
    margin-bottom: 65px;
}

.mb--70 {
    margin-bottom: 70px;
}

.mb--75 {
    margin-bottom: 75px;
}

.mb--80 {
    margin-bottom: 80px;
}

.mb--85 {
    margin-bottom: 85px;
}

.mb--90 {
    margin-bottom: 90px;
}

.mb--95 {
    margin-bottom: 95px;
}

.mb--100 {
    margin-bottom: 100px;
}

/*-- padding top --*/
.pt--5 {
    padding-top: 5px;
}

.pt--10 {
    padding-top: 10px;
}

.pt--15 {
    padding-top: 15px;
}

.pt--20 {
    padding-top: 20px;
}

.pt--25 {
    padding-top: 25px;
}

.pt--30 {
    padding-top: 30px;
}

.pt--35 {
    padding-top: 35px;
}

.pt--40 {
    padding-top: 40px;
}

.pt--45 {
    padding-top: 45px;
}

.pt--50 {
    padding-top: 50px;
}

.pt--55 {
    padding-top: 55px;
}

.pt--60 {
    padding-top: 60px;
}

.pt--65 {
    padding-top: 65px;
}

.pt--70 {
    padding-top: 70px;
}

.pt--75 {
    padding-top: 75px;
}

.pt--80 {
    padding-top: 80px;
}

.pt--85 {
    padding-top: 85px;
}

.pt--90 {
    padding-top: 90px;
}

.pt--95 {
    padding-top: 95px;
}

.pt--100 {
    padding-top: 100px;
}

/*-- padding Bottom --*/
.pb--5 {
    padding-bottom: 5px;
}

.pb--10 {
    padding-bottom: 10px;
}

.pb--15 {
    padding-bottom: 15px;
}

.pb--20 {
    padding-bottom: 20px;
}

.pb--25 {
    padding-bottom: 25px;
}

.pb--30 {
    padding-bottom: 30px;
}

.pb--35 {
    padding-bottom: 35px;
}

.pb--40 {
    padding-bottom: 40px;
}

.pb--45 {
    padding-bottom: 45px;
}

.pb--50 {
    padding-bottom: 50px;
}

.pb--55 {
    padding-bottom: 55px;
}

.pb--60 {
    padding-bottom: 60px;
}

.pb--65 {
    padding-bottom: 65px;
}

.pb--70 {
    padding-bottom: 70px;
}

.pb--75 {
    padding-bottom: 75px;
}

.pb--80 {
    padding-bottom: 80px;
}

.pb--85 {
    padding-bottom: 85px;
}

.pb--90 {
    padding-bottom: 90px;
}

.pb--95 {
    padding-bottom: 95px;
}

.pb--100 {
    padding-bottom: 100px;
}

.plr-40 {
    padding: 0 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .plr-40 {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .plr-40 {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 479px) {
    .plr-40 {
        padding: 15px;
    }
}

.plr-30 {
    padding: 0 30px;
}

@media only screen and (max-width: 767px) {
    .plr-30 {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 479px) {
    .plr-30 {
        padding: 15px;
    }
}

body.box-body {
    background: #F6F6F6;
}

.container-box {
    max-width: 1251px;
    position: relative;
    background: #fff;
    margin: 0 auto;
}

.container-box-inner {
    padding: 40px 0;
    margin: 0 0 -40px 0;
}

/*--
    02. Element
-------------------------*/
/*--
    - Section Title Css
-------------------------------*/
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .section-title {
        margin-bottom: 50px;
    }
}

.section-title h2 {
    font-size: 30px;
    margin-top: -4px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #1c8cb3;
}

    .section-title h2 span {
        color: #333;
        font-weight: 300;
    }

@media only screen and (max-width: 767px) {
    .section-title h2 {
        font-size: 26px;
    }
}

.section-title p {
    font-size: 16px;
}

.section-title.text-black h2 {
    color: #fff;
}

.section-title.text-black p {
    color: #fff;
}

.about-title h4 {
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-title h2 {
    font-size: 30px;
    margin-top: -4px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #1c8cb3;
}

    .about-title h2 span {
        color: #333;
        font-weight: 300;
    }

/*-- 
   03. Mobile Menu Css
-------------------------*/
.mobile-menu {
    float: left;
    width: 100% !important;
    position: relative !important;
}

    .mobile-menu .mean-bar {
        position: relative;
        /*---- Mean Nav ----*/
    }

        .mobile-menu .mean-bar .meanmenu-reveal {
            position: absolute;
            top: -53px;
            color: #000;
        }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mobile-menu .mean-bar .meanmenu-reveal {
        top: -45px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-menu .mean-bar .meanmenu-reveal {
        top: -40px;
    }
}

.mobile-menu .mean-bar .meanmenu-reveal span {
    position: relative;
    /*---- Menu Open ----*/
    /*---- Menu Close ----*/
}

    .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar {
        height: 2px;
        width: 26px;
        background-color: #2062a8;
        display: block;
        margin: 8px 0;
    }

        .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before, .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #2062a8;
        }

        .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before {
            top: -8px;
        }

        .mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
            bottom: -8px;
        }

    .mobile-menu .mean-bar .meanmenu-reveal span.menu-close {
        height: 2px;
        width: 26px;
        background-color: transparent;
        display: block;
        margin: 8px 0;
    }

        .mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before, .mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000000;
        }

        .mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before {
            top: 0;
            transform: rotate(45deg);
        }

        .mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
            bottom: 0;
            transform: rotate(-45deg);
        }

.mobile-menu .mean-bar .mean-nav {
    background-color: #ddd;
}

    .mobile-menu .mean-bar .mean-nav > ul {
        margin-bottom: 30px;
        border: 1px solid #eeeeee;
        border-top: 0px solid transparent;
        overflow-x: hidden;
    }

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .mobile-menu .mean-bar .mean-nav > ul {
        max-height: 320px;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 479px) {
    .mobile-menu .mean-bar .mean-nav > ul {
        max-height: 320px;
        overflow-y: auto;
    }
}

.mobile-menu .mean-bar .mean-nav > ul li {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    /*---- Sub Menu & Mega Menu ----*/
}

    .mobile-menu .mean-bar .mean-nav > ul li a {
        font-size: 13px;
        display: block;
        color: #000000;
        font-weight: 600;
        font-family: "SF Pro Display Regular" text-transform: uppercase;
        line-height: 44px;
        position: relative;
        border-top: 1px solid #eeeeee;
        padding: 0 40px 0 20px;
        /*---- Menu Expand For Sub Menu ----*/
    }

        .mobile-menu .mean-bar .mean-nav > ul li a:hover {
            color: #1c8cb3;
            padding-left: 25px;
        }

        .mobile-menu .mean-bar .mean-nav > ul li a.mean-expand {
            border: 1px solid #eeeeee;
            font-family: "SF Pro Display Regular" position: absolute;
            right: -1px;
            top: 0;
            font-size: 20px !important;
            color: #fff;
            line-height: 44px;
            height: 46px;
            width: 40px;
            text-align: center;
            padding: 0;
        }

            .mobile-menu .mean-bar .mean-nav > ul li a.mean-expand.mean-clicked {
                line-height: 40px;
            }

    .mobile-menu .mean-bar .mean-nav > ul li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu, .mobile-menu .mean-bar .mean-nav > ul li ul {
        position: static;
        background-color: #222;
        margin: 0;
        padding: 0 !important;
        width: 100%;
        box-shadow: none;
        margin: 0;
        display: none;
        float: left;
        width: 100%;
    }

        .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li, .mobile-menu .mean-bar .mean-nav > ul li ul li {
            padding: 0;
            margin: 0;
            flex: 0 0 100%;
            border-right: 0px solid transparent;
            width: 100%;
            display: block !important;
            float: left;
            width: 100%;
        }

            .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li a {
                font-size: 12px;
            }

                .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li a::before, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li a::before, .mobile-menu .mean-bar .mean-nav > ul li ul li a::before {
                    display: none;
                }

            .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li ul {
                background-color: rgba(0, 0, 0, 0.04);
            }

                .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul li a {
                    border-top: 1px solid #dddddd;
                }

                    .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul li a.mean-expand {
                        border: 1px solid #dddddd;
                    }

                .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul {
                    background-color: rgba(0, 0, 0, 0.05);
                }

                    .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu li a, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul li a {
                        border-top: 1px solid #eeeeee;
                    }

                        .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .sub-menu li ul ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li .mega-menu li ul ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li .sub-menu ul li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul .sub-menu li a.mean-expand, .mobile-menu .mean-bar .mean-nav > ul li ul li ul ul li a.mean-expand {
                            border: 1px solid #eeeeee;
                        }

/*--
    03. Header Css
--------------------------------------*/
.logo {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.inner-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.is-sticky .inner-header {
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.is-sticky .logo {
    margin-top: 12px;
}

@media only screen and (max-width: 767px) {
    .is-sticky .logo {
        margin-top: 2px;
    }
}

.is-sticky .main-menu ul li {
    padding: 25px 0;
}

/*--
   - Main Menu Css
-----------------------*/
.main-menu {
    display: flex;
    justify-content: flex-end;
}

    .main-menu ul li {
        margin-right: 25px;
        padding: 40px 0;
        display: inline-block;
    }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-menu ul li {
        margin-right: 18px;
    }
}

.main-menu ul li a {
    padding: 5px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    font-family: "SF Pro Display Medium";
    text-transform: uppercase;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    .main-menu ul li a::before {
        background: #2062A8;
        content: "";
        height: 3px;
        position: absolute;
        bottom: 0;
        width: 0;
        transition: 0.5s;
    }

.main-menu ul li:hover > a::before {
    width: 50%;
}

/*   .main-menu ul li a::before {
        content: "";
        background: #333;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        position: absolute;
        bottom: -2px;
        left: 0%;
        opacity: 0;
        -ms-filter: 0;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        margin: 0 2px;
    }

    .main-menu ul li a::after {
        content: "";
        background: #333;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        position: absolute;
        bottom: -2px;
        right: 0%;
        opacity: 0;
        -ms-filter: 0;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        margin: 0 2px;
    }
*/
.main-menu ul li:last-child {
    margin-right: 0;
}

.main-menu ul li:hover > a {
    color: #2062A8;
}

    .main-menu ul li:hover > a::before {
        visibility: visible;
        opacity: 1;
        -ms-filter: 1;
        left: 25%;
        background: #2062A8;
    }

/*.main-menu ul li:hover > a::after {
        visibility: visible;
        opacity: 1;
        -ms-filter: 1;*/
/*  right: 50%;*/
/*background: #1c8cb3;
    }*/

.main-menu ul li.active a {
    color: #2062A8;
}

    .main-menu ul li.active a::before {
        visibility: visible;
        opacity: 1;
        -ms-filter: 1;
        left: 50%;
        background: #1c8cb3;
    }

/*    .main-menu ul li.active a::after {
        visibility: visible;
        opacity: 1;
        -ms-filter: 1;
        right: 50%;
        background: #1c8cb3;
    }*/

.header-top-2 .main-menu ul li a {
    color: #ffffff;
}

    .header-top-2 .main-menu ul li a::before {
        background: #ffffff;
    }

    .header-top-2 .main-menu ul li a::after {
        background: #ffffff;
    }

.is-sticky .header-top-2 {
    background: #1c8cb3;
}

/*--
    05. Hero Css
--------------------------------*/
.slider-btn {
    padding: 10px 28px;
    border-radius: 4px;
    margin: 0 0px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.theme-btn {
    background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-family: "SF Pro Display Medium";
    font-weight: normal;
}

    .theme-btn:hover {
        color: #ffffff;
    }

.white-btn {
    border: 2px solid #1c8cb3;
    color: #1c8cb3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

    .white-btn:hover {
        background: #1c8cb3;
        border: 2px solid #1c8cb3;
        color: #ffffff;
    }

.hero-slider-1 .single-slide {
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 950px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-1 .single-slide {
        height: 750px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-1 .single-slide {
        height: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-1 .single-slide {
        height: 440px;
        background-position: 50% 0;
    }
}

.hero-slider-1 .slider-text-info {
    margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
    .hero-slider-1 .slider-text-info {
        margin-bottom: 0px;
        margin-top: 40px;
    }
}

.hero-slider-1 .slider-text-info h1 {
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 50px;
}

    .hero-slider-1 .slider-text-info h1 span {
        font-weight: 300;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-1 .slider-text-info h1 {
        font-size: 32px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-1 .slider-text-info h1 {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 34px;
    }
}

.hero-slider-1 .slider-text-info .slider-button {
    margin-top: 30px;
}

.hero-slider-1 .slider-text-info.text-white h4 {
    color: #ffffff;
}

.hero-slider-1 .slider-text-info.text-white h1 {
    color: #ffffff;
}

.hero-slider-1 .slider-text-info.text-white .white-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

    .hero-slider-1 .slider-text-info.text-white .white-btn:hover {
        background: #1c8cb3;
        border: 2px solid #1c8cb3;
        color: #ffffff;
    }

.hero-slider-2 {
    position: relative;
}

    .hero-slider-2 .single-slide {
        align-items: center;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        height: 900px;
        position: relative;
    }

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-slider-2 .single-slide {
        height: 800px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-2 .single-slide {
        height: 750px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-2 .single-slide {
        height: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-2 .single-slide {
        height: 440px;
    }
}

.hero-slider-2 .slider-text-info {
    margin-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-2 .slider-text-info {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-2 .slider-text-info {
        margin-bottom: 0px;
        margin-top: 30px;
    }
}

.hero-slider-2 .slider-text-info h1 {
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 50px;
}

    .hero-slider-2 .slider-text-info h1 span {
        font-weight: 300;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-2 .slider-text-info h1 {
        font-size: 32px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-2 .slider-text-info h1 {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 34px;
    }
}

.hero-slider-2 .slider-text-info .slider-button {
    margin-top: 30px;
}

    .hero-slider-2 .slider-text-info .slider-button .slider-btn {
        margin: 0 8px 0 0;
    }

.hero-slider-2 .slider-text-info.text-white h4 {
    color: #ffffff;
}

.hero-slider-2 .slider-text-info.text-white h1 {
    color: #ffffff;
}

.hero-slider-2 .slider-text-info.text-white .white-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

    .hero-slider-2 .slider-text-info.text-white .white-btn:hover {
        background: #1c8cb3;
        border: 2px solid #1c8cb3;
        color: #ffffff;
    }

.slider-bottom {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-bottom {
        bottom: 15%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-bottom {
        bottom: 15%;
    }
}

@media only screen and (max-width: 767px) {
    .slider-bottom {
        bottom: 6%;
    }
}

.slider-bottom .slider-bottom-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

    .slider-bottom .slider-bottom-inner .social-link ul li {
        display: inline-block;
        margin-right: 20px;
    }

        .slider-bottom .slider-bottom-inner .social-link ul li a {
            color: #fff;
        }

            .slider-bottom .slider-bottom-inner .social-link ul li a:hover {
                color: #333;
            }

.hero-slider-3 .single-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-slider-3 .single-slide {
        height: 900px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-3 .single-slide {
        height: 800px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-3 .single-slide {
        height: 650px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-3 .single-slide {
        height: 505px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slider-3 .single-slide {
        height: 460px;
    }
}

.hero-slider-3 .slider-text-info {
    margin-top: 200px;
    margin-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-3 .slider-text-info {
        margin-top: 178px;
        margin-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-3 .slider-text-info {
        margin-top: 150px;
        margin-bottom: 72px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-3 .slider-text-info {
        margin-top: 125px;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 479px) {
    .hero-slider-3 .slider-text-info {
        margin-top: 120px;
        margin-bottom: 60px;
    }
}

.hero-slider-3 .slider-text-info h1 {
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 50px;
}

    .hero-slider-3 .slider-text-info h1 span {
        font-weight: 300;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-3 .slider-text-info h1 {
        font-size: 32px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-3 .slider-text-info h1 {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 34px;
    }
}

.hero-slider-3 .slider-text-info .slider-button {
    margin-top: 30px;
}

.hero-slider-3 .slider-text-info.text-white h4 {
    color: #ffffff;
}

.hero-slider-3 .slider-text-info.text-white h1 {
    color: #ffffff;
}

.hero-slider-4 .single-slide {
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 900px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .hero-slider-4 .single-slide {
        height: 800px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-4 .single-slide {
        height: 750px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-4 .single-slide {
        height: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-4 .single-slide {
        height: 640px;
    }
}

.hero-slider-4 .slider-text-info {
    margin-top: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-4 .slider-text-info {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-4 .slider-text-info {
        margin-top: 20px;
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-4 .slider-text-info {
        margin-bottom: 30px;
        margin-top: 40px;
    }
}

.hero-slider-4 .slider-text-info h1 {
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 50px;
}

    .hero-slider-4 .slider-text-info h1 span {
        font-weight: 300;
    }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-slider-4 .slider-text-info h1 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-slider-4 .slider-text-info h1 {
        font-size: 25px;
        line-height: 42px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-slider-4 .slider-text-info h1 {
        font-size: 24px;
        letter-spacing: 0px;
        line-height: 34px;
    }
}

.hero-slider-4 .slider-text-info .slider-button {
    margin-top: 30px;
}

.hero-slider-4 .slider-text-info.text-white h4 {
    color: #ffffff;
}

.hero-slider-4 .slider-text-info.text-white h1 {
    color: #ffffff;
}

/*--
   06. About Area Css
-------------------------*/
.about-more-btn {
    position: relative;
    padding: 0 75px 0 0;
}

    .about-more-btn::after {
        position: absolute;
        background: #1c8cb3;
        content: "";
        right: 0;
        top: 8px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 4px solid #a4e4eb;
    }

    .about-more-btn::before {
        position: absolute;
        background: #1c8cb3;
        content: "";
        right: 0px;
        top: 14px;
        width: 60px;
        height: 1px;
    }

    .about-more-btn:hover::after {
        border: 4px solid #47e3f3;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-content-inner {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content-inner {
        margin-top: 30px;
    }
}

.project-count-area .counter {
    margin-top: 30px;
}

    .project-count-area .counter h3 {
        font-weight: 600;
        font-size: 30px;
    }

.video-btn {
    background: #fff;
    display: inline-block;
    width: 55px;
    height: 55px;
    position: relative;
    text-align: center;
    font-size: 20px;
    color: #4ac4f3;
    float: left;
    border-radius: 100%;
    line-height: 55px;
    z-index: 3;
}

    .video-btn i {
        margin-left: 4px;
    }

.about-image .about-video-button {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
}

.about-image .video-animation {
    position: absolute;
    width: 14rem;
    height: 14rem;
    left: -82px;
    top: -82px;
    z-index: 1;
    float: right;
}

    .about-image .video-animation .animation {
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(0, 0, 0, 0.2);
        background-clip: border-box;
        opacity: 0;
        border-radius: 50%;
        background-clip: padding-box;
        animation: waves 3s ease-in-out infinite;
        animation-delay: 0s;
    }

        .about-image .video-animation .animation.animation-1 {
            animation-delay: 0.5s;
        }

        .about-image .video-animation .animation.animation-2 {
            animation-delay: 1.5s;
        }

        .about-image .video-animation .animation.animation-3 {
            animation-delay: 2.5s;
        }

@-webkit-keyframes waves {
    0% {
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

@keyframes waves {
    0% {
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: scale(0.7, 0.7);
        opacity: 0;
    }
}
/*--
    07. Feature Area Css
-------------------------*/
.signle-feature {
    margin-bottom: 30px;
    text-align: center;
}

    .signle-feature .feature-icon {
        font-size: 48px;
        background: linear-gradient(to top, #30CFD0 0%, #330867 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .signle-feature .feature-content {
        margin-top: 20px;
    }

        .signle-feature .feature-content h3 {
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .signle-feature .feature-content p {
            font-size: 14px;
        }

.feature-area-inner-four .single-feature {
    padding: 50px 30px;
    transition: all 0.4s ease-in-out;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 380px;
}

    .feature-area-inner-four .single-feature .feature-icon {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .feature-area-inner-four .single-feature .feature-text h3 {
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .feature-area-inner-four .single-feature .feature-text p {
        font-size: 14px;
        margin-top: 15px;
    }

    .feature-area-inner-four .single-feature.active::after {
        opacity: 1;
    }

    .feature-area-inner-four .single-feature.active .feature-icon {
        color: #fff;
    }

    .feature-area-inner-four .single-feature.active .feature-text h3 {
        color: #fff;
    }

    .feature-area-inner-four .single-feature.active .feature-text p {
        color: #fff;
    }

    .feature-area-inner-four .single-feature::after {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        content: "";
        -webkit-transition: opacity 1s;
        transition: opacity 1s;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        background: rgba(0, 0, 0, 0.1) linear-gradient(to bottom, rgba(7, 82, 150, 0.6) 0%, #1c8cb3 100%) repeat scroll 0 0;
    }

    .feature-area-inner-four .single-feature:hover:after {
        opacity: 1;
    }

    .feature-area-inner-four .single-feature:hover .feature-icon {
        color: #fff;
    }

    .feature-area-inner-four .single-feature:hover .feature-text h3 {
        color: #fff;
    }

    .feature-area-inner-four .single-feature:hover .feature-text p {
        color: #fff;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-two-warp .feature-right-image {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-two-warp .feature-right-image {
        margin-bottom: 30px;
    }
}

.feature-two-warp .feature-two-inner-wrap {
    padding-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feature-two-warp .feature-two-inner-wrap {
        padding-left: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-two-warp .feature-two-inner-wrap {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-two-warp .feature-two-inner-wrap {
        padding-left: 0px;
    }
}

.feature-two-warp .single-feature {
    margin-bottom: 20px;
    display: flex;
}

    .feature-two-warp .single-feature:last-child {
        margin-bottom: 0;
    }

    .feature-two-warp .single-feature span {
        display: inline-block;
        font-size: 22px;
        width: 56px;
        height: 56px;
        background: #1c8cb3;
        border-radius: 50%;
        color: #fff;
        line-height: 56px;
        text-align: center;
        position: relative;
    }

    .feature-two-warp .single-feature .feature-info {
        margin-left: 15px;
    }

        .feature-two-warp .single-feature .feature-info h3 {
            font-size: 18px;
        }

/*--
    08. Slider Screenshort Css
----------------------------*/
.slider-screenshort {
    margin-top: -260px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-screenshort {
        margin-top: -170px;
    }
}

@media only screen and (max-width: 767px) {
    .slider-screenshort {
        margin-top: 60px;
    }
}

.slider-screenshot-active {
    padding: 0 15px;
}

.slick-slide {
    min-height: 85px;
}

.slider-screenshot-active .slick-slide {
    padding: 140px 0;
    transition: all 0.5s ease 0s;
}

    .slider-screenshot-active .slick-slide .singel-screenshot {
        transition: all 0.5s ease 0s;
        position: inherit;
    }

    .slider-screenshot-active .slick-slide.slick-active {
        z-index: 99;
    }

        .slider-screenshot-active .slick-slide.slick-active .singel-screenshot {
            transform: scale(1.8);
        }

    .slider-screenshot-active .slick-slide.slick-center {
        z-index: 999;
    }

        .slider-screenshot-active .slick-slide.slick-center .singel-screenshot {
            transform: scale(2.4);
        }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-screenshot-active .slick-slide {
        padding: 64px 0;
    }

        .slider-screenshot-active .slick-slide.slick-active .singel-screenshot {
            transform: scale(1.5);
        }

        .slider-screenshot-active .slick-slide.slick-center .singel-screenshot {
            transform: scale(2);
        }
}

@media only screen and (max-width: 767px) {
    .slider-screenshot-active .slick-slide {
        padding: 50px 0;
    }
}

.screenshot-center-active .slick-dots {
    margin-top: 40px;
    text-align: center;
}

    .screenshot-center-active .slick-dots li {
        display: inline-block;
        margin: 0 12px;
        position: relative;
        line-height: 0;
    }

        .screenshot-center-active .slick-dots li::after {
            position: absolute;
            content: "";
            background: #1c8cb3;
            top: 5px;
            left: 0;
            width: 40px;
            height: 2px;
        }

        .screenshot-center-active .slick-dots li:last-child::after {
            display: none;
        }

        .screenshot-center-active .slick-dots li button {
            border: 2px solid #1c8cb3;
            width: 10px;
            height: 10px;
            padding: 0;
            border-radius: 50%;
            background: #1c8cb3;
            text-indent: -9999px;
            position: relative;
        }

            .screenshot-center-active .slick-dots li button::after {
                position: absolute;
                content: "";
                background: rgba(1, 193, 206, 0.3);
                top: -5px;
                left: -5px;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                z-index: 999;
            }

        .screenshot-center-active .slick-dots li.slick-active button {
            background: #1c8cb3;
        }

            .screenshot-center-active .slick-dots li.slick-active button::after {
                position: absolute;
                content: "";
                background: rgba(1, 193, 206, 0.5);
                top: -5px;
                left: -5px;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                z-index: 999;
            }

/*--
   09. Priceing Area Css
----------------------*/
.priceing-bg {
    background: url(../images/priceing/01.png);
    background-size: cover;
}

.single-price-package {
    padding: 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

    .single-price-package:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-price-package {
        padding: 40px;
    }
}

.single-price-package .price-title h4 {
    font-size: 16px;
}

.single-price-package .price-title h2 {
    font-size: 24px;
    line-height: 28px;
}

.single-price-package .price-list {
    margin-bottom: 40px;
    margin-top: 40px;
}

    .single-price-package .price-list ul li {
        margin-bottom: 10px;
    }

        .single-price-package .price-list ul li:last-child {
            margin-bottom: 0;
        }

.single-price-package .price-btn .button {
    padding: 8px 30px;
    border-radius: 30px;
    border: 2px solid #1c8cb3;
    color: #1c8cb3;
    background: transparent;
    transition: all 0.4s ease-in-out;
}

    .single-price-package .price-btn .button:hover {
        color: #ffffff;
        background: #1c8cb3;
    }

.single-price-package.active .price-btn .button {
    border: 2px solid #1c8cb3;
    color: #ffffff;
    background: #1c8cb3;
}

    .single-price-package.active .price-btn .button:hover {
        color: #1c8cb3;
        background: #ffffff;
    }

.single-price-package.active-table .price-title h4 {
    color: #ffffff;
}

.single-price-package.active-table .price-title h2 {
    color: #ffffff;
}

.single-price-package.active-table .price-list ul li {
    color: #ffffff;
}

.single-price-package.active-table .price-btn .button {
    border: 2px solid #ffffff;
    color: #1c8cb3;
    background: #ffffff;
}

    .single-price-package.active-table .price-btn .button:hover {
        border: 2px solid #333;
        color: #ffffff;
        background: #333;
    }

/*--
    10. Subscribe Area Css
---------------------------------*/
.subscribe-bg {
    background: url(../images/bg/01.jpg);
    background-position: bottom;
}

.subscribe-bg-2 {
    background: url(../images/bg/02.jpg);
    background-position: bottom;
}

.subscribe-title {
    margin-bottom: 40px;
}

    .subscribe-title h2 {
        color: #ffffff;
        font-weight: 400;
    }

    .subscribe-title p {
        color: #ffffff;
    }

.subscribe-form-area .subscribe-form-inner {
    position: relative;
}

    .subscribe-form-area .subscribe-form-inner::before {
        background: url(../images/icon/subscribe-b.png);
        background-size: cover;
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        width: 100%;
        height: 1px;
    }

    .subscribe-form-area .subscribe-form-inner input {
        width: 100%;
        background: transparent;
        border: none;
        color: #ffffff;
        padding: 10px 40px 10px 10px;
        position: relative;
        font-size: 14px;
    }

        .subscribe-form-area .subscribe-form-inner input::placeholder {
            color: #ffffff;
        }

        .subscribe-form-area .subscribe-form-inner input::-webkit-input-placeholder {
            color: #ffffff;
        }

        .subscribe-form-area .subscribe-form-inner input::-moz-placeholder {
            color: #ffffff;
        }

        .subscribe-form-area .subscribe-form-inner input::-ms-input-placeholder {
            color: #ffffff;
        }

    .subscribe-form-area .subscribe-form-inner .subscribe-btn {
        background: transparent;
        position: absolute;
        right: 0;
        top: 0;
        border: none;
        color: #ffffff;
        padding: 10px 15px;
        font-size: 18px;
    }

/*--
    11. Faequently Css
-------------------------------*/
.question-content-wrap {
    margin-top: 30px;
}

.faequently-accordion h4 {
    position: relative;
    font-size: 20px;
    padding: 0 0 0 30px;
    margin-bottom: 16px;
    position: relative;
}

    .faequently-accordion h4::after {
        background: #01c1ce;
        content: "";
        position: absolute;
        left: 4px;
        top: 9px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .faequently-accordion h4::before {
        background: rgba(1, 193, 206, 0.1);
        content: "";
        position: absolute;
        left: 0px;
        top: 5px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        padding: 8px;
    }

    .faequently-accordion h4 a {
        font-size: 18px;
    }

    .faequently-accordion h4.open {
        position: relative;
        width: auto;
    }

        .faequently-accordion h4.open::after {
            background: #01c1ce;
            content: "";
            position: absolute;
            left: 4px;
            top: 9px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .faequently-accordion h4.open::before {
            background: rgba(1, 193, 206, 0.4);
            content: "";
            position: absolute;
            left: 0px;
            top: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            padding: 8px;
        }

.faequently-description {
    padding: 0px 0 15px 30px;
}

/*-- 
    12. Testimonial Area Css
-----------------*/
.single-testimonial .client-say {
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    height: 170px;
    background: rgba(0, 0, 0, 0.1) linear-gradient(to bottom, rgba(7, 82, 150, 0.6) 0%, #1c8cb3 100%) repeat scroll 0 0;
    background-size: cover;
    position: relative;
    font-size: 14px;
    text-align: justify;
}

    .single-testimonial .client-say::after {
        position: absolute;
        content: "";
        bottom: -45px;
        left: 65px;
        border-top: 50px solid #1c8cb3;
        border-right: 0 solid transparent;
        border-left: 35px solid transparent;
        border-bottom: 0 solid transparent;
        z-index: 99;
        transform: rotate(-12deg);
    }

.single-testimonial .client-author {
    bottom: 0;
    margin-top: 10px;
    padding-left: 10px;
}

    .single-testimonial .client-author h4 {
        color: #333;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .single-testimonial .client-author p {
        color: #333;
        font-size: 14px;
    }

.testimonial-active .slick-dots {
    margin-top: 40px;
    text-align: center;
}

    .testimonial-active .slick-dots li {
        display: inline-block;
        margin: 0 15px;
        position: relative;
        line-height: 0;
    }

        .testimonial-active .slick-dots li::after {
            position: absolute;
            content: "";
            background: #1c8cb3;
            top: 5px;
            left: 0;
            width: 40px;
            height: 2px;
        }

        .testimonial-active .slick-dots li:last-child::after {
            display: none;
        }

        .testimonial-active .slick-dots li button {
            border: 2px solid #1c8cb3;
            width: 10px;
            height: 10px;
            padding: 0;
            border-radius: 50%;
            background: #1c8cb3;
            text-indent: -9999px;
            position: relative;
        }

            .testimonial-active .slick-dots li button::after {
                position: absolute;
                content: "";
                background: rgba(1, 193, 206, 0.3);
                top: -5px;
                left: -5px;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                z-index: 999;
            }

        .testimonial-active .slick-dots li.slick-active button {
            background: #1c8cb3;
        }

            .testimonial-active .slick-dots li.slick-active button::after {
                position: absolute;
                content: "";
                background: rgba(1, 193, 206, 0.5);
                top: -5px;
                left: -5px;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                z-index: 999;
            }

.testimonial-active.center-testimonial .single-testimonial .client-say {
    color: #333;
    background: rgba(0, 0, 0, 0.1) linear-gradient(to bottom, rgba(221, 221, 221, 0.6) 0%, #F6F6F6 100%) repeat scroll 0 0;
}

    .testimonial-active.center-testimonial .single-testimonial .client-say::after {
        border-top: 50px solid #F6F6F6;
    }

.testimonial-active.center-testimonial .single-testimonial .client-author h4 {
    color: #333;
}

.testimonial-active.center-testimonial .single-testimonial .client-author p {
    color: #333;
}

.testimonial-active.center-testimonial .slick-slide.slick-center .testimonial-content .client-say {
    color: #fff;
    background: rgba(0, 0, 0, 0.1) linear-gradient(to bottom, rgb(17 55 92) 0%, #13506d 100%) repeat scroll 0 0;
}

    .testimonial-active.center-testimonial .slick-slide.slick-center .testimonial-content .client-say::after {
        border-top: 50px solid #13506d;
    }

/*--
    13. Team  Area Css
------------------------*/
.single-team {
    border: 1px solid #ddd;
    box-shadow: 0px 0px 5px 5px rgba(15, 9, 128, 0.035), 5px 12px 30px 5px rgba(15, 9, 128, 0.05);
}

    .single-team .team-imgae {
        position: relative;
    }

        .single-team .team-imgae img {
            width: 100%;
        }

        .single-team .team-imgae::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background: rgba(0, 0, 0, 0.1) linear-gradient(to bottom, rgba(7, 82, 150, 0.6) 0%, #1c8cb3 100%) repeat scroll 0 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: all 0.4s ease-in-out;
        }

        .single-team .team-imgae .social-link {
            position: absolute;
            bottom: 0;
            left: 0;
            text-align: center;
            color: #fff;
            transition: all 0.3s ease-in-out;
            width: 100%;
            opacity: 0;
        }

            .single-team .team-imgae .social-link a {
                font-size: 14px;
                margin: 0 5px;
                border: 1px solid #fff;
                width: 34px;
                border-radius: 50%;
                height: 34px;
                line-height: 34px;
            }

                .single-team .team-imgae .social-link a:hover.facebook:hover {
                    background: #3B5998;
                    border: 1px solid #3B5998;
                    color: #fff;
                }

                .single-team .team-imgae .social-link a:hover.twitter:hover {
                    background: #00ACEE;
                    border: 1px solid #00ACEE;
                    color: #fff;
                }

                .single-team .team-imgae .social-link a:hover.google-plus:hover {
                    background: #DD4C48;
                    border: 1px solid #DD4C48;
                    color: #fff;
                }

                .single-team .team-imgae .social-link a:hover.vimeo:hover {
                    background: #1AB7EA;
                    border: 1px solid #1AB7EA;
                    color: #fff;
                }

                .single-team .team-imgae .social-link a:hover.dribbble:hover {
                    background: #E2324D;
                    border: 1px solid #E2324D;
                    color: #fff;
                }

    .single-team .team-info {
        background: #fff;
        text-align: center;
        padding: 10px 0;
    }

        .single-team .team-info h3 {
            font-weight: 500;
            font-size: 20px;
            margin: 0 0 5px 0;
        }

        .single-team .team-info p {
            font-size: 14px;
            margin-bottom: 4px;
            line-height: 20px;
            text-transform: capitalize;
        }

    .single-team:hover .team-imgae::before {
        opacity: 1;
    }

    .single-team:hover .social-link {
        bottom: 20px;
        opacity: 1;
    }

.team {
    margin-bottom: 30px;
}

    .team ul.social-network {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: center;
    }

    .team .thumb {
        position: relative;
        overflow: hidden;
    }

.team-5 {
    text-align: center;
}

    .team-5 .thumb {
        display: inline-block;
    }

    .team-5 .team-hover-action {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        text-align: center;
    }

        .team-5 .team-hover-action::before {
            position: absolute;
            content: "";
            background: rgba(0, 0, 0, 0.1) linear-gradient(to bottom, rgba(7, 82, 150, 0.6) 0%, #1c8cb3 100%) repeat scroll 0 0;
            width: auto;
            height: auto;
            border-radius: 100%;
            left: 10px;
            top: 10px;
            bottom: 10px;
            right: 10px;
            opacity: 0;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

        .team-5 .team-hover-action .hover-action {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            text-align: center;
        }

            .team-5 .team-hover-action .hover-action h4 {
                font-size: 16px;
                margin-bottom: 13px;
                font-weight: 500;
                text-transform: uppercase;
                -webkit-transform: translateX(100%);
                -moz-transform: translateX(100%);
                -ms-transform: translateX(100%);
                -o-transform: translateX(100%);
                transform: translateX(100%);
                -webkit-transition: all 0.35s ease-in-out;
                -moz-transition: all 0.35s ease-in-out;
                transition: all 0.35s ease-in-out;
            }

                .team-5 .team-hover-action .hover-action h4 a {
                    color: #ffffff;
                    font-size: 16px;
                }

            .team-5 .team-hover-action .hover-action ul.social-network {
                -webkit-transform: translateX(-100%);
                -moz-transform: translateX(-100%);
                -ms-transform: translateX(-100%);
                -o-transform: translateX(-100%);
                transform: translateX(-100%);
                -webkit-transition: all 0.35s ease-in-out;
                -moz-transition: all 0.35s ease-in-out;
                transition: all 0.35s ease-in-out;
            }

    .team-5:hover .team-hover-action::before {
        opacity: 1;
    }

    .team-5:hover .team-hover-action .hover-action h4 {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .team-5:hover .team-hover-action .hover-action ul.social-network {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

/*-
    Social Service Style One
-----------------------------*/
.social-net-1 {
    margin-bottom: 8px;
}

    .social-net-1 li {
        margin: 0 10px;
    }

        .social-net-1 li a {
            color: #fff;
            font-size: 14px;
            display: block;
            background: transparent;
        }

            .social-net-1 li a.facebook:hover {
                color: #3B5998;
                background: transparent;
            }

            .social-net-1 li a.twitter:hover {
                color: #00ACEE;
                background: transparent;
            }

            .social-net-1 li a.google-plus:hover {
                color: #DD4C48;
                background: transparent;
            }

            .social-net-1 li a.vimeo:hover {
                color: #1AB7EA;
                background: transparent;
            }

            .social-net-1 li a.dribbble:hover {
                color: #E2324D;
                background: transparent;
            }

/*--
   14. Contact Area Css
-------------------------*/
.contact-information {
    background: #1c8cb3;
    padding: 60px;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-information {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-information {
        padding: 30px;
    }
}

.contact-title h2 {
    font-size: 30px;
    margin-top: -4px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #ffffff;
}

    .contact-title h2 span {
        color: #fff;
        font-weight: 300;
    }

.contact-title p {
    color: #ffffff;
}

.contact-address {
    padding: 20px 0 0 0;
}

    .contact-address ul li {
        color: #fff;
        display: flex;
        margin-bottom: 20px;
    }

        .contact-address ul li a:hover {
            color: #333;
        }

        .contact-address ul li:last-child {
            margin-bottom: 0;
        }

@media only screen and (max-width: 479px) {
    .contact-address ul li {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-address ul li i {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #1c8cb3;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
}

@media only screen and (max-width: 767px) {
    .contact-address ul li i {
        margin-bottom: 10px;
    }
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 8px 12px;
    border-radius: 0px;
}

input:focus {
    outline: none;
}

.form-control:focus {
    outline: noe;
    box-shadow: none;
    border-color: #1c8cb3;
}

.contact-form-area {
    padding: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-form-area {
        padding: 60px 0 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form-area {
        padding: 60px 0 0 0;
    }
}

.contact-form-area input {
    color: #333;
}

.contact-form-area textarea {
    height: 120px;
}

.contact-form-area .submit-form {
    margin-bottom: 0;
}

    .contact-form-area .submit-form .button {
        border: none;
        font-size: 16px;
        padding: 10px 40px;
        text-transform: uppercase;
        font-weight: 500;
        background: #1c8cb3;
        color: #fff;
        border-radius: 30px;
    }

        .contact-form-area .submit-form .button:hover {
            background: #333;
            color: #fff;
        }

.form-messege {
    margin-bottom: 0;
    margin-top: 3px;
    font-size: 14px;
}

    .form-messege.error {
        color: red;
        font-style: italic;
    }

    .form-messege.success {
        color: #008000;
        font-style: italic;
    }

/*--
    15. Footer Area Css
-------------------------------*/
.footer-bg {
    background: url(../images/bg/footer-bg.jpg);
    background-size: cover;
}

.footer-top {
    color: #ffffff;
}

    .footer-top .footer-logo {
        margin-top: 30px;
    }

    .footer-top .footer-list {
        margin-top: 30px;
    }


        .footer-top .footer-list a {
            margin: 0 0 10px 0;
            font-family: "SF Pro Display Regular";
        }

            .footer-top .footer-list a:hover {
                color: #fff;
                text-decoration: underline;
            }

        .footer-top .footer-list ul li {
            margin-bottom: 10px;
        }

            .footer-top .footer-list ul li:last-child {
                margin-bottom: 0;
            }

.footer-address {
    margin-top: 30px;
}

    .footer-address .footer-info {
        margin-bottom: 15px;
    }

        .footer-address .footer-info p {
            margin: 0;
        }

            .footer-address .footer-info p a:hover {
                color: #333;
            }

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-bottom {
        text-align: center;
    }
}

.footer-bottom .social-link ul li {
    display: inline-block;
    margin-right: 10px;
}

    .footer-bottom .social-link ul li a {
        display: block;
        color: #ffffff;
        font-size: 16px;
    }

        .footer-bottom .social-link ul li a:hover {
            color: #1c8cb3;
        }

.footer-bottom .copy-right {
    color: #ffffff;
    float: right;
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-bottom .copy-right {
        float: inherit;
        text-align: center;
        margin-top: 10px;
    }
}

/*--
    16. Coming Soon Css
-------------------------------*/
.mt-110 {
    margin-top: 110px;
}

.height-100vh {
    min-height: 100vh;
}

.comming-soon-area {
    padding: 60px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .comming-soon-area {
        padding: 40px 0;
    }
}

.comming-soon-area .comming-soon-wrap {
    position: relative;
    z-index: 99;
}

    .comming-soon-area .comming-soon-wrap .comming-soon-top {
        margin: 0 0 54px;
    }

@media only screen and (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top {
        margin: 0 0 30px;
    }
}

.comming-soon-area .comming-soon-wrap .comming-soon-top > h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 12px;
    line-height: 1;
    margin: 58px 0 41px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > h3 {
        margin: 29px 0 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > h3 {
        margin: 40px 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > h3 {
        letter-spacing: 6px;
        margin: 30px 0 20px;
    }
}

@media only screen and (max-width: 479px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > h3 {
        letter-spacing: 4px;
        margin: 30px 0 20px;
    }
}

.comming-soon-area .comming-soon-wrap .comming-soon-top > p {
    color: #fff;
    font-size: 16px;
    width: 66%;
    margin: 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > p {
        width: 85%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > p {
        width: 82%;
    }
}

@media only screen and (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top > p {
        width: 98%;
    }
}

.comming-soon-area.overlay {
    position: relative;
}

    .comming-soon-area.overlay:before {
        background-color: #000;
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.7;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 9;
    }

.subscribe-area {
    position: relative;
    z-index: 99;
}

    .subscribe-area > h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 3px;
        margin: 0 0 14px;
    }

@media only screen and (max-width: 767px) {
    .subscribe-area > h4 {
        letter-spacing: 2px;
    }
}

.subscribe-area .subscribe-form > form {
    position: relative;
}

    .subscribe-area .subscribe-form > form .mc-news {
        display: none;
    }

    .subscribe-area .subscribe-form > form .clear {
        position: absolute;
        top: 0;
        right: 0;
    }

        .subscribe-area .subscribe-form > form .clear input {
            background: transparent none repeat scroll 0 0;
            border: medium none;
            border-radius: 50px;
            color: #e0e0e0;
            cursor: pointer;
            font-weight: 700;
            padding: 2px 40px 2px 30px;
            width: auto;
        }

@media only screen and (max-width: 767px) {
    .subscribe-area .subscribe-form > form .clear input {
        padding: 2px 25px 2px 18px;
    }
}

.subscribe-area .subscribe-form > form .clear:hover input {
    color: #8f9495;
}

.subscribe-area .subscribe-form > form .clear:before {
    background: #fff none repeat scroll 0 0;
    content: "";
    height: 35px;
    position: absolute;
    top: 10px;
    transition: all 0.3s ease 0s;
    width: 2px;
    left: 0;
}

@media only screen and (max-width: 479px) {
    .subscribe-area .subscribe-form > form .clear:before {
        height: 29px;
    }
}

.subscribe-area .subscribe-form > form input {
    background: transparent;
    border: 1px solid #eceff8;
    color: #fff;
    font-size: 14px;
    height: 55px;
    padding: 2px 146px 2px 40px;
    width: 100%;
    font-weight: 300;
    border-radius: 50px;
}

    .subscribe-area .subscribe-form > form input::-moz-placeholder {
        color: #fff !important;
        opacity: 1;
    }

    .subscribe-area .subscribe-form > form input::-webkit-input-placeholder {
        color: #fff !important;
        opacity: 1;
    }

@media only screen and (max-width: 767px) {
    .subscribe-area .subscribe-form > form input {
        padding: 2px 117px 2px 20px;
        height: 50px;
    }
}

.subscribe-area.mt-110 {
    margin-top: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .subscribe-area.mt-110 {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .subscribe-area.mt-110 {
        margin-top: 50px;
    }
}

.DateCountdown {
    position: relative;
}

    .DateCountdown .time_circles {
        display: flex;
        flex-wrap: wrap;
    }

        .DateCountdown .time_circles canvas {
            width: 100% !important;
            height: auto !important;
            position: absolute;
            left: 0;
            top: 0;
        }

        .DateCountdown .time_circles > div {
            margin-top: 86px;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex: 1 0 25%;
            position: static;
            width: 25% !important;
            z-index: 99;
        }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .DateCountdown .time_circles > div {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .DateCountdown .time_circles > div {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .DateCountdown .time_circles > div {
        margin-top: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .DateCountdown .time_circles > div {
        margin-top: 0px;
    }
}

.DateCountdown .time_circles > div > h4 {
    color: #fff;
    font-size: 18px !important;
    font-weight: 400;
    margin: 89px 0 0;
    order: 2;
    padding: 0;
    text-align: center;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .DateCountdown .time_circles > div > h4 {
        margin: 64px 0 0;
    }
}

@media only screen and (max-width: 479px) {
    .DateCountdown .time_circles > div > h4 {
        font-size: 16px !important;
        margin: 25px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .DateCountdown .time_circles > div > h4 {
        font-size: 16px !important;
        margin: 50px 0 0;
    }
}

.DateCountdown .time_circles > div > span {
    color: #fff;
    display: block;
    font-size: 60px !important;
    font-weight: 400;
    line-height: 47px !important;
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .DateCountdown .time_circles > div > span {
        font-size: 50px !important;
    }
}

@media only screen and (max-width: 767px) {
    .DateCountdown .time_circles > div > span {
        font-size: 30px !important;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 479px) {
    .DateCountdown .time_circles > div > span {
        font-size: 26px !important;
        margin-top: 12px;
    }
}

/*# sourceMappingURL=style.css.map */


/* 34.1. RESET-GUTTER */
.reset-gutter {
    margin-left: 0;
    margin-right: 0;
}

    .reset-gutter > [class*='col-'] {
        padding-left: 0;
        padding-right: 0;
    }

/*------------------------------------*\
    10. PRICING TABLE AREA
\*------------------------------------*/
.pricing-table {
    padding: 80px 0;
}

    .pricing-table .pricing-table-item:first-child {
        font-weight: 700;
    }

    .pricing-table .pricing--content {
        border-top: 1px solid #e9e9e9;
    }

.pricing-table-item .pt-features li strong {
    display: none;
}

.pricing-table .pt-footer a.btn-custom {
    padding-left: 20px;
    padding-right: 20px;
}


/* 9.2. PRICING ITEM */
.pricing--item {
    padding: 0 15px 2px;
}

.pricing--content {
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14);
}

.pt-head {
    color: #fff;
    background-color: #1c8cb3;
    text-align: center;
    border-bottom: 2px solid #fffef7;
    margin: 0 0 10px 0;
}

.pt-head-empty {
    background-color: transparent;
}

.pt-head .caption {
    display: inline-block;
    margin-bottom: 0;
    padding: 15px 0 7px;
    border-bottom: 1px solid #fcea12;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.pt-price-tag {
    margin-top: 15px;
    padding-bottom: 9px;
    font-size: 20px;
    font-weight: 700;
}

    .pt-price-tag span {
        font-size: 15px;
        font-weight: 500;
    }

.pt-plan {
    position: relative;
    padding: 20px 0 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

    .pt-plan:before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        opacity: 0.2;
    }

.pt-features {
    text-align: center;
}

    .pt-features ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .pt-features ul li {
            color: #1c8cb3;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(0,0,0,.05);
            font-size: 14px;
            font-weight: bold;
        }

.pt-footer {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

    .pt-footer a.btn-custom {
        padding-top: 10px;
        padding-bottom: 10px;
    }


.pricing-table .pricing-table-list td i.icofont-ui-check {
    color: #8BC34A;
}

.pricing-table .pricing-table-list td i.icofont-ui-close {
    color: #f3746f;
}

.pricing-table .pricing-table-list td img {
    width: 35px;
    height: 35px;
}

.recommender-img {
    width: 80px;
    margin-top: 10px;
}

    .recommender-img img {
        margin: 0 auto;
        border-radius: 50%;
        border: 1px solid #1c8cb3;
        padding: 5px;
        max-width: 80px;
        height: 80px;
    }

.testimonial-form {
    display: flex;
    padding: 35px 0 0 70px;
}

.pt-top {
    margin-top: 135px;
}

.social-link i {
    font-size: 30px;
}

.footer-info i {
    font-size: 20px;
    margin: 0 10px 0 0;
}

.footer-top h3 {
    font-size: 22px;
    margin: 0;
    padding: 0;
    color: #fff;
}

.about-content-inner .single-feature {
    display: flex;
    margin-top: 20px;
}

.feature-img {
    display: contents;
}

    .feature-img img {
        width: 100%;
        height: auto;
    }

.pricing-table-item .slider-btn {
    min-width: 180px;
}

.btn-blue {
    background: #1c8cb3;
    color: #fff;
}



.text-logo {
    color: #fcea12 !important;
    font-weight: 500 !important;
}


.affix {
    position: fixed;
    top: 100px;
    z-index: 99;
}

.tel a.line-hot {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.tel {
    background: #1f8cb3 !important;
    color: #fff !important;
    min-height: 62px;
    text-align: center;
    font-size: 16px;
    float: left;
    padding: 10px 10px 10px 10px;
}

    .tel a, .tel i {
        color: #fff;
        font-size: 16px;
    }

.right-hotline {
    float: right;
}

.tel:before {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    right: -15px;
    border-top: 40px solid transparent;
    border-left: 15px solid #1f8cb3;
    border-bottom: 40px solid transparent;
}



/* pricing table */
.pricing-table {
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
    width: 100%;
}

    .pricing-table td {
        padding: 0px;
        border: 1px solid #d6d6d6;
    }

    .pricing-table .pricing-table-list td {
        padding: 10px 8px;
        font-weight: 500;
        text-align: center;
        font-size: 14px;
        background: #F9F9F9;
        border: 1px solid #d6d6d6;
    }

    .pricing-table .pricing-table-list tr {
        border: 1px solid #d6d6d6;
    }

    .pricing-table .pricing-table-list .glyphicon-ok {
        color: #68AF27;
    }

    .pricing-table .pricing-table-list .glyphicon-remove {
        color: #C22439;
    }

    .pricing-table .pricing-table-list td:first-child {
        font-weight: 600;
        text-align: left;
        font-size: 14px;
        color: #1c8cb3;
    }

    .pricing-table .pricing-table-list:nth-child(2n) td {
        background: #F2F2F2;
    }

    .pricing-table .pricing-table-text h2 {
        font-size: 35px;
        font-weight: 300;
        line-height: 33px;
        margin: 0px;
        padding: 0px;
        text-align: center;
        color: #009AD7;
    }

    .pricing-table .pricing-table-text p {
        font-size: 12px;
        font-weight: 400;
        text-align: center;
        color: #666;
        margin-top: 10px;
    }

    .pricing-table .pricing-table-item {
        color: #333;
    }

        .pricing-table .pricing-table-item .pricing-table-item-head {
            padding: 10px 5px;
            text-align: center;
            background: #fff;
        }

            .pricing-table .pricing-table-item .pricing-table-item-head p {
                font-size: 17px;
                font-weight: 600;
                line-height: 21px;
                margin-top: 10px;
                margin-bottom: 0px;
            }

            .pricing-table .pricing-table-item .pricing-table-item-head span {
                font-size: 11px;
                font-weight: 400;
            }

        .pricing-table .pricing-table-item .pricing-table-item-price {
            padding: 0px 10px;
            text-align: center;
            background: #FFF;
            color: #d81718;
        }

            .pricing-table .pricing-table-item .pricing-table-item-price p {
                font-size: 25px;
                font-weight: 500;
                line-height: 36px;
                margin-bottom: 0px;
            }

                .pricing-table .pricing-table-item .pricing-table-item-price p span {
                    font-size: 12px;
                    font-weight: 300;
                }

            .pricing-table .pricing-table-item .pricing-table-item-price > span {
                font-size: 12px;
                font-weight: 400;
                color: #009AD7
            }

        .pricing-table .pricing-table-item .pricing-table-item-purchase {
            padding: 10px 5px;
            background: #FFF;
        }

            .pricing-table .pricing-table-item .pricing-table-item-purchase .btn {
                text-transform: uppercase;
                margin-bottom: 0px;
            }
/* eof pricing table */

.btn-success {
    color: #fff;
    background-color: #d81718;
    border-color: #ca1112;
}

    .btn-success:hover {
        color: #fff;
        background-color: #941111;
        border-color: #5d0808;
    }

    .btn-success:not([disabled]):not(.disabled).active, .btn-success:not([disabled]):not(.disabled):active, .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #d81718;
        border-color: #ca1112;
        box-shadow: 0 0 0 0.2rem rgb(216, 23, 24);
    }

.table-30 {
    width: 30%;
}

.table-17 {
    width: 17.5%;
}

.page-cover {
    /*height: 289px;*/
    -webkit-background-size: cover;
    background-size: cover;
    background: no-repeat scroll center center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}



    .page-cover .row {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }

    .page-cover .page-title {
        font-size: 36px;
        font-weight: 300;
        margin: 0;
        text-transform: capitalize;
    }

        .page-cover .page-title:after {
            content: '';
            display: block;
            height: 2px;
            width: 47px;
            margin-top: 5px;
        }


.page-cover {
    padding: 200px 0px 0px;
    margin: 100px 0 30px 0;
}

.bg-page {
    /*  background-color: transparent;
    opacity: 0.5;
    filter: alpha(opacity=50);*/
    width: 100%;
    display: block;
    padding: 15px 0;
}


/*---css-Ã„â€˜iÃ¡Â»Âu-hÃ†Â°Ã¡Â»â€ºng---*/
.page_info ul {
    width: 100%;
    padding: 0px;
    margin: 0px 0 0 0;
}

.breadcrum li {
    display: inline;
    color: #333;
}

    .breadcrum li a {
        color: #333;
        display: inline-flex;
    }

    .breadcrum li i {
        color: #333;
    }

    .breadcrum li:first-child i {
        margin: 0 10px 0 0;
    }


/* Featured Box */

.crmnt-chucnang {
    margin: 0 0 50px 0;
}

    .crmnt-chucnang h2 {
        color: #323333;
        font-size: 20px;
    }

    .crmnt-chucnang p.lead {
        font-size: 16px;
        font-weight: normal;
        color: #323333;
    }


.featured-box {
    background: #F5F5F5;
    background: -webkit-linear-gradient( top, #FFF 1%, #fcfcfc 98%) repeat scroll 0 0 rgba(0, 0, 0, 0);
    background: linear-gradient(to bottom, #FFF 1%, #fcfcfc 98%) repeat scroll 0 0 rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #DFDFDF;
    border-left: 1px solid #ECECEC;
    border-radius: 8px;
    border-right: 1px solid #ECECEC;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    min-height: 100px;
    position: relative;
    text-align: center;
    z-index: 1;
}

    .featured-box h4 {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -0.7px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .featured-box .box-content {
        border-radius: 8px;
        border-top: 1px solid #CCC;
        border-top-width: 4px;
        padding: 30px 30px 10px 30px;
        position: relative;
        top: -1px;
    }

    .featured-box .learn-more {
        display: block;
        margin-top: 10px;
    }

.featured-box-primary .icon-featured {
    background-color: #0088cc;
}

    .featured-box-primary .icon-featured:after {
        border-color: #0088cc;
    }

.featured-box-primary h4 {
    color: #0088cc;
}

.featured-box-primary .box-content {
    border-top-color: #0088cc;
}


.icon-featured {
    display: inline-block;
    font-size: 0;
    margin: 15px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #FFF;
    font-size: 40px;
    line-height: 110px;
}


.featured-box-primary p {
    color: #777;
    line-height: 24px;
    margin: 0 0 20px;
    text-align: justify;
}

.featured-box-effect-1 .icon-featured:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 3px #FFF;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(1);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(1);
    opacity: 0;
}


.icon-featured:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}


.lnk-primary {
    color: #0088cc !important;
}
/* Featured Boxes */
.featured-boxes .featured-box {
    margin-bottom: 30px;
    margin-top: 45px;
}

.box-content img {
    margin: 0 0 15px 0;
    height: 90px;
}

.font-16 {
    font-size: 16px;
}


/*----Menu-Detail----*/
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.widget_categories > ul li:last-child {
    border-bottom: 0px;
    ;
}


.panel-group .panel {
    margin-bottom: 0;
    overflow: hidden;
}

.panel-default {
    border-color: #fff;
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

    .panel-title > a {
        color: inherit;
    }

.panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top-color: #ddd;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
    border-top: 1px solid #ddd;
}

.panel-body {
    padding: 0px;
}

.widget-menu ul li {
    list-style: none;
    display: inline-block;
    width: 100%;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.widget_categories > ul {
    margin-bottom: 0;
    background: #F7F7F7;
}

    .widget_categories > ul li {
        padding: 9px 0 11px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

.widget_categories ul li a {
    line-height: 26px;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    float: left;
    width: 100%;
}

    .widget_categories ul li a:hover, .widget_categories ul li a.active {
        color: #1E8DB2;
    }

    .widget_categories ul li a::before {
        content: "\f105";
        font-family: 'FontAwesome';
        padding-right: 10px;
    }


    .widget_categories ul li a:hover::before, .widget_categories ul li a.active::before {
        color: #1E8DB2;
    }


.panel-title > a img {
    max-width: 25px;
    margin: 0 10px 0 0;
}

.text_ita {
    background: #f2f2f2;
    padding: 20px 25px 30px;
}

    .text_ita p {
        font-style: italic;
        font-size: 18px;
    }

.text_ita {
    border-left: 6px solid #1c8cb3;
}

.m-t-60 {
    margin-top: 60px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.itemBody h1 {
    font-size: 20px;
    font-weight: bold;
    color: #1c8cb3;
    line-height: normal;
    width: 100%;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.itemBody img {
    vertical-align: middle;
    text-align: center;
    margin: 0 auto;
    display: block;
    padding: 0 0 15px 0;
}

.itemBody {
    text-align: justify;
}

.panel-crmnt {
    background: #1f8cb3 !important;
    color: #fff !important;
}

.mad-panel {
    margin: 0 0 30px 0 !important;
}

.bg-menu-crmnt {
    background: #f2fcff !important;
}

/*---Detail-Blog----*/


.news_image {
    margin-bottom: 30px;
    position: relative;
}

.latest_page_box img {
    vertical-align: middle;
    margin-right: 10px;
    width: 100%;
    height: 250px;
}

.latest_page_box > p {
    display: inline-block;
    font-size: 16px;
}

.latest_page_box > h3 {
    margin: 0px 0 0px;
    font-size: 20px;
}

.latest_page_box > p {
    display: inline-block;
    font-size: 15px;
    text-align: justify;
}

.btn-dark {
    border: 1px solid transparent;
    padding: 15px 36px;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    position: 0;
    overflow: hidden;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s !important;
    background: #0a0a0a;
    color: #fff;
}

.input-append {
    border: 1px solid #d5dadf;
    display: block;
    height: 47px;
    line-height: 43px;
    width: 100%;
    border-radius: 5px;
    background: #fff;
}

.input-medium.search-query {
    background: transparent;
    border: 0 none;
    display: inline-block;
    padding-left: 15px;
    width: 80%;
}

.add-on {
    background: transparent;
    border: medium none;
    float: right;
    font-size: 18px;
    padding-right: 15px;
    padding-top: 7px;
}

.icon-icons185 {
    font-size: 24px;
    color: #1c1c1c;
}

.left-sidebar-crm .media {
    border-bottom: 1px solid #cfcfcf;
    margin: 0 0 15px 0;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-t-20 {
    padding-top: 20px;
}

.left-sidebar-crm .media-body > p {
    margin-top: -7px;
    margin-bottom: 10px;
    font-size: 15px;
}

.left-sidebar-crm .media-heading > a {
    font-size: 16px;
    color: #111111;
}


.p-t-60 {
    padding-top: 60px;
}

.p-t-30 {
    padding-top: 30px;
}

.news_border {
    background: #cfcfcf;
    height: 1px;
    margin: 30px 0;
    width: 100%;
}


.media-left img {
    width: 80px;
    height: 80px;
    margin: 0 10px 0 0;
}

.title-left-crmnt {
    color: #202736;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

    .title-left-crmnt:before {
        position: absolute;
        content: " ";
        width: 40px;
        height: 2px;
        background-color: #288feb;
        bottom: 0px;
    }

.left-sidebar-crm .media:last-child {
    border-bottom: 0px;
}


/* product tags */
.products_tags {
    width: 100%;
    padding: 0;
    float: left;
    margin: 0px;
}

    .products_tags ul.tags {
        width: 100%;
        padding: 0;
        float: left;
        margin: 0px;
    }

    .products_tags .tags li {
        padding: 0;
        float: left;
        margin: 0px;
    }

        .products_tags .tags li a {
            float: left;
            padding: 5px 12px;
            margin: 0 6px 6px 0;
            color: #111;
            border-radius: 2px;
            border: 1px solid #cfcfcf;
        }

            .products_tags .tags li a:hover {
                color: #fff;
                background-color: #1f8cb3;
            }

/* 1.6. PAGINATION */
.page-nation {
    width: 100%;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination {
    display: block;
    margin: 0;
    border-radius: 0;
    font-size: 0;
    line-height: 0;
}

    .pagination > li {
        display: inline-block;
    }

        .pagination > li > a,
        .pagination > li > span {
            color: #303030;
            font-size: 14px;
            line-height: 20px;
            transition: color .25s, background-color .25s ease-in-out, border-color .25s;
        }

            .pagination > li > a:hover,
            .pagination > li > a:focus,
            .pagination > li.active > a,
            .pagination > li.active > a:hover,
            .pagination > li.active > a:hover,
            .pagination > li > span:hover,
            .pagination > li > span:focus,
            .pagination > li.active > span,
            .pagination > li.active > span:hover,
            .pagination > li.active > span:hover {
                color: #fff;
                background: #2062A8;
                border-color: #18799c;
            }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            border-radius: 0;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-radius: 0;
        }


.btn-primary {
    color: #fff;
    background-color: #1f8cb3;
    border-color: #18799c;
}


    .btn-primary:hover {
        color: #fff;
        background-color: #069fd6;
        border-color: #018abb;
    }

    .btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #069fd6;
        border-color: #018abb;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
    }



/* our team */
.our_team_box {
    width: 100%;
    float: left;
}

.itemAuthorLatest_detail_box {
    width: 100%;
    display: flex;
    border-bottom: 4px solid #ebebeb;
    margin: 35px 0 20px 0;
    color: #1f8cb3;
}

    .itemAuthorLatest_detail_box h2 {
        padding: 0 0 0px 0;
        margin: 0 0 -4px 0;
        border-bottom: 4px solid #1f8cb3;
        align-items: center;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: bold;
    }

.our_team_box ul {
    margin: 0;
    padding: 7px 0 0 0px;
    float: left;
    width: 180px;
}

.our_team_box li {
    margin: 0;
    padding: 0;
    line-height: 18px;
    list-style-type: none;
    color: #a9a9a9;
}

    .our_team_box li a {
        margin: 7px 5px 0 0;
        padding: 0;
        float: left;
    }

.our_team_box img.teammempic {
    width: 100%;
    height: 120px;
    margin: 0px;
    padding: 0;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
}

    .our_team_box img.teammempic:hover {
        width: 100%;
        margin: 0px;
        padding: 0;
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }

.our_team_box li a img:hover {
    margin: 0px;
    padding: 0;
    opacity: 0.7;
    filter: alpha(opacity=10);
}

.our_team_box li strong {
    font-size: 13px;
    color: #454545;
    display: block;
}

    .our_team_box li strong i {
        color: #999;
        font-size: 11px;
        font-style: normal;
    }

.our_team_box .boxleft {
    margin: 0 0 30px 0;
}

.our_team_box .cont-area {
    float: left;
    font-size: 14px;
    color: #727272;
    width: 100%;
}

.our_team_box .boxright {
    width: 180px;
    float: right;
    margin: 0px;
}

.our_team_box li a i {
    color: #dadada;
}

.title-link-crm {
    font-weight: bold;
}

figcaption {
    position: absolute;
    background-color: #555555;
    color: #fff;
    bottom: 0;
    position: absolute;
    bottom: 0;
    padding: 15px;
    font-size: 16px;
    min-width: 100%;
    box-sizing: border-box;
    letter-spacing: .5px;
    line-height: 28px;
}

#example span {
    font-size: 50px;
    position: absolute;
    top: 50%;
    height: 0;
    margin-top: -30px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.text-content-slider {
    color: #fff;
    font-size: 16px !important;
    margin-top: 0px !important;
    position: relative !important;
}

.slide {
    position: relative;
}

.slide__caption {
    bottom: 10px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
    background-color: #555555;
    font-size: 6px !important;
    line-height: 10px;
    padding: 5px;
    color: #fff;
    display: inline-grid;
    opacity: 0.7;
    filter: alpha(opacity=70); /* For IE8 and earlier */
}

    .slide__caption span:first-child {
        color: #ffb300;
        margin-top: 0px !important;
        position: relative !important;
        margin-bottom: 0px !important;
        font-weight: bold;
        font-size: 7px !important;
    }

.mobile-dis {
    display: block;
}

.desktop-dis {
    display: none;
}

colgroup:nth-child(1) {
    width: 30%;
    border: 0 none;
}

colgroup:nth-child(2) {
    width: 17%;
    border: 1px solid #ccc;
}

colgroup:nth-child(3) {
    width: 17%;
    border: 5px solid #1f8cb3;
}

colgroup:nth-child(4) {
    width: 17%;
    border: 1px solid #ccc;
}

colgroup:nth-child(5) {
    width: 17%;
    border: 1px solid #ccc;
}


/*----báº£ng giÃ¡----*/
/*section 33*/
.section_holder33 {
    width: 100%;
    padding: 0px 0 40px 0;
    margin: 0px;
    display: flex;
}

/*----Thanh toÃ¡n----*/
.call-out {
    margin: 0;
    padding: 0 15px;
}

    .call-out h2 {
        position: relative;
        margin-top: -7px;
        margin-bottom: 40px;
        font-weight: 700;
        font-size: 28px;
        line-height: 28px;
        text-align: center;
        text-transform: uppercase;
    }

        .call-out h2:before {
            content: " ";
            position: absolute;
            bottom: -15px;
            left: 50%;
            width: 50px;
            height: 2px;
            background-color: #1f8cb3;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

    .call-out .subtitle-text {
        font-size: 15px;
        font-weight: 500;
        line-height: 30px;
    }

.aligncenter, img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.row-main h3 {
    font-size: 18px;
}

.col-inner h3 {
    color: #ff0000;
}


/*----LiÃªn há»‡-----*/
/**/
/* defaults */
/**/
.sky-form {
    margin: 0;
    outline: none;
}

    .sky-form fieldset {
        display: block;
        padding: 0px 0px 5px;
        border: none;
        background: none;
    }



    .sky-form .col-6 {
        width: 50%;
    }

    .sky-form .col {
        float: left;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

    .sky-form section {
        margin-bottom: 20px;
    }

    .sky-form .label {
        border-radius: 0;
        font-size: 100%;
        text-align: left;
        white-space: normal;
        color: inherit;
    }

    .sky-form .label {
        display: block;
        margin-bottom: 6px;
        line-height: 19px;
        font-weight: 500;
    }

    .sky-form .input, .sky-form .select, .sky-form .textarea, .sky-form .radio, .sky-form .checkbox, .sky-form .toggle, .sky-form .button {
        position: relative;
        display: block;
    }

    .sky-form .icon-append, .sky-form .icon-prepend {
        color: #ccc;
    }

    .sky-form .input input, .sky-form .select select, .sky-form .textarea textarea, .sky-form .radio i, .sky-form .checkbox i, .sky-form .toggle i, .sky-form .icon-append, .sky-form .icon-prepend {
        border-color: #d3d3d3;
        transition: border-color 0.3s;
        -o-transition: border-color 0.3s;
        -ms-transition: border-color 0.3s;
        -moz-transition: border-color 0.3s;
        -webkit-transition: border-color 0.3s;
    }

    .sky-form .icon-append {
        right: 5px;
        padding-left: 3px;
        border-left-width: 1px;
        border-left-style: solid;
    }

    .sky-form .icon-append, .sky-form .icon-prepend {
        position: absolute;
        top: 5px;
        width: 29px;
        height: 29px;
        font-size: 15px;
        line-height: 29px;
        text-align: center;
    }

    .sky-form .input .icon-append + input, .sky-form .textarea .icon-append + textarea {
        padding-right: 46px;
    }

    .sky-form .input input, .sky-form .select select, .sky-form .textarea textarea {
        display: block;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        height: 39px;
        padding: 8px 10px;
        outline: none;
        border-width: 1px;
        border-style: solid;
        border-radius: 0;
        background: #fff;
        font: 15px/19px 'Open Sans', Helvetica, Arial, sans-serif;
        color: #404040;
        appearance: normal;
        -moz-appearance: none;
        -webkit-appearance: none;
    }



.address_info h3 {
    font-size: 20px;
}

.address_info p i.fa {
    font-size: 20px;
    border: 1px solid #737373;
    width: 35px;
    padding: 5px 0;
    margin-right: 10px;
    text-align: center;
}

.sky-form .textarea textarea {
    height: auto;
    /* resize: none; */
}

.map-crmnt {
    margin: 30px 0 0 0;
}

.sky-form .button {
    float: left;
    height: 39px;
    overflow: hidden;
    margin: 0px 0 0 0px;
    padding: 0 25px;
    outline: none;
    border: 0;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.sky-form .button {
    background-color: #1c8cb3;
    padding: 7px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

/*---Login----*/
.crmnt-signup {
    padding: 50px 0px 0px;
    margin: 100px 0 30px 0;
}

.register h3 {
    border-bottom: 1px solid #D5DBE1;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: left;
    line-height: 35px;
    margin-top: 0;
    font-weight: bold;
    font-size: 23px !important;
}

.register p {
    margin: 20px 0 20px 0;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.register-heading {
    color: #333;
    margin: 0 0 30px 0;
    display: inline-block;
    padding: 0 30px 10px 0;
    border-bottom: 3px solid #1d8cb3;
    text-align: center;
}

.input1 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.sky-form .input1 input {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 80%;
    height: 39px;
    padding: 8px 10px;
    outline: none;
    border-width: 1px;
    border-style: solid;
    border-radius: 0;
    background: #fff;
    font: 15px/19px 'Open Sans', Helvetica, Arial, sans-serif;
    color: #404040;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.sky-form .input1 input {
    border-color: #d3d3d3;
    transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}


.jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
}

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 300;
    }

.text-xs-center {
    text-align: center;
}

.icon-check-tc {
    color: #1c8cb3;
}

    .icon-check-tc i {
        font-size: 50px;
    }

.hotline-text a {
    color: #1c8cb3;
    font-weight: 400;
}

.thank-u {
    font-weight: 400;
}

.red {
    color: #d81718;
}

.text-link-crm {
    font-size: 18px;
    color: #d81718;
}

.captcha {
    width: 60%;
    float: left;
}

.dis-desktop {
    display: none;
}


/*--landing-page---*/
.banner-area,
.banner-area div {
    height: 100%;
}

    .banner-area.auto-height,
    .banner-area.auto-height div {
        height: auto;
        min-height: 100%;
    }

    .banner-area .box-cell {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
    }

    .banner-area .box-table {
        display: table;
        width: 100%;
    }

    .banner-area .box-cell,
    .banner-area .box-cell div {
        height: auto;
    }

.banner-area {
    position: relative;
    overflow: hidden;
}

    .banner-area .wavesshape {
        bottom: -2px;
        left: 0;
        position: absolute;
        right: 0;
        top: auto;
        width: 100%;
    }

        .banner-area .wavesshape.shape {
            bottom: -50px;
        }

    .banner-area .content {
        overflow: hidden;
        position: relative;
        z-index: 9;
    }

    .banner-area.wavesshape {
        position: relative;
        z-index: 1;
    }

    .banner-area.triangle-shadow {
        position: relative;
        z-index: 1;
    }

        .banner-area.triangle-shadow::before {
            border-bottom: 0 solid transparent;
            border-right: 100vw solid #fff;
            border-top: 80px solid transparent;
            bottom: 0;
            content: "";
            height: 0;
            left: 0;
            position: absolute;
            width: 100%;
            z-index: 101;
        }

    .banner-area.shadow-inner .content {
        padding: 30px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .banner-area.content-double .double-items {
        align-items: top;
        align-self: center;
        display: flex;
        justify-content: center;
        vertical-align: middle;
    }

    .banner-area .banner-carousel .owl-item.center img {
        transform: scale(1);
    }

    .banner-area .banner-carousel .owl-item img {
        transform: scale(0.9);
    }

    .banner-area .simple-video {
        position: relative;
        margin: 55px 0 0 0;
    }

        .banner-area .simple-video .video-play-button {
            bottom: inherit;
            float: left;
            left: 0;
            margin-left: 30px;
            position: relative;
            top: 8px;
            transform: inherit;
            font-size: 20px;
            padding: 0;
        }

        .banner-area .simple-video a {
            float: left;
            text-align: center;
        }

        .banner-area .simple-video .content {
            overflow: inherit;
        }

        .banner-area .simple-video .video-play-button::after {
            height: 60px;
            width: 60px;
        }

        .banner-area .simple-video .video-play-button::before {
            height: 60px;
            width: 60px;
        }

        .banner-area .simple-video .video-play-button i {
            line-height: 40px;
        }

    .banner-area.shadow-inner .content::after {
        background: #1c1c1c none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.5;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    .banner-area.inc-dots .carousel-indicators {
        bottom: inherit;
        display: inline-block;
        left: auto;
        margin: -40px 0 0;
        position: absolute;
        right: 20px;
        top: 50%;
        width: auto;
    }

        .banner-area.inc-dots .carousel-indicators li {
            border: 3px solid #ffffff;
            display: block;
            height: 20px;
            margin: 10px 0;
            width: 20px;
        }

            .banner-area.inc-dots .carousel-indicators li.active,
            .banner-area.inc-dots .carousel-indicators li:hover {
                background: #1f8cb3 none repeat scroll 0 0;
            }

    .banner-area.large-font .content h1 {
        font-size: 80px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    .banner-area.text-center p {
        padding: 0 10%;
    }

    .banner-area .content span {
        color: #1f8cb3;
        font-weight: 700;
    }

    .banner-area.text-light.shadow.theme-hard .content span {
        color: #232323;
    }

    .banner-area.banner-top-padding .double-items {
        margin-top: -60px;
    }

    .banner-area.text-dark .content span {
        color: #ffffff;
    }

    .banner-area.large-font h4 {
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .banner-area.middle-text.heading-uppercase .content h1 {
        font-size: 80px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .banner-area.small-text .content h1 {
        font-size: 50px;
        font-weight: 500;
        margin-bottom: 25px;
        text-transform: capitalize;
    }

    .banner-area.normal-text .content h1 {
        font-size: 36px;
        font-weight: 500;
        margin-bottom: 25px;
        text-transform: capitalize;
    }

    .banner-area.normal-text .content a {
        margin-top: 15px;
    }

    .banner-area .banner-carousel {
        cursor: w-resize;
    }

        .banner-area .banner-carousel .owl-dots {
            margin-top: 20px !important;
        }

            .banner-area .banner-carousel .owl-dots .owl-dot span {
                background: #ffffff none repeat scroll 0 0;
                border: 3px solid #e7e7e7;
                height: 20px;
                width: 20px;
                -webkit-transition: all 0.35s ease-in-out;
                -moz-transition: all 0.35s ease-in-out;
                -ms-transition: all 0.35s ease-in-out;
                -o-transition: all 0.35s ease-in-out;
                transition: all 0.35s ease-in-out;
            }

            .banner-area .banner-carousel .owl-dots .owl-dot.active span,
            .banner-area .banner-carousel .owl-dots .owl-dot:hover span {
                border-color: #1f8cb3;
            }

    .banner-area.small-text .content p {
        margin-bottom: 30px;
    }

    .banner-area.middle-text .content h4 {
        line-height: 30px;
    }

    .banner-area.middle-text .content h2 {
        color: #1f8cb3;
        font-weight: 500;
        text-transform: capitalize;
    }

    .banner-area.middle-text .content h1 {
        font-size: 80px;
        font-weight: 500;
        line-height: 1;
        margin-bottom: 25px;
        text-transform: capitalize;
    }

    .banner-area.middle-text .content a {
        margin-left: 3px;
        margin-right: 3px;
        margin-top: 10px;
    }

    .banner-area .content a {
        margin: 0 3px;
    }

    .banner-area.version-3 .content h1 {
        font-size: 80px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .banner-area.version-3 .content h3 {
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .banner-area .right-info {
        text-align: center;
    }

    .banner-area.auto-height .double-items {
        overflow: hidden;
        padding-top: 160px;
    }

    .banner-area.auto-height.sticky-nav .double-items {
        padding-top: 90px;
    }

    .banner-area.auto-height .double-items .banner-carousel,
    .banner-area.auto-height .double-items .banner {
        margin-top: 50px;
    }

    .banner-area .carousel-control {
        font-size: 40px;
        height: 50px;
        line-height: 50px;
        padding: 0;
        position: absolute;
        top: 50%;
        width: 50px;
        margin-top: -25px;
        background: transparent;
        opacity: 1;
        z-index: 1;
    }

        .banner-area .carousel-control.shadow {
            background: transparent none repeat scroll 0 0;
            font-size: 20px;
            height: 50px;
            line-height: 50px;
            margin-top: -25px;
            opacity: 1;
            padding: 0;
            position: absolute;
            top: 50%;
            width: 50px;
            z-index: 1;
            color: #ffffff;
            text-shadow: inherit;
        }

            .banner-area .carousel-control.shadow::after {
                background: #232323 none repeat scroll 0 0;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
                content: "";
                height: 100%;
                left: 0;
                opacity: 0.5;
                position: absolute;
                top: 0;
                width: 100%;
                z-index: -1;
            }

        .banner-area .carousel-control.left {
            left: -50px;
        }

    .banner-area:hover .carousel-control.left {
        left: 0;
    }

    .banner-area.typed-text.small-text .content h2 {
        display: block;
        margin-bottom: 30px;
    }

    .banner-area:hover .carousel-control.shadow.left {
        left: 20px;
    }

    .banner-area .carousel-control.right {
        right: -50px;
    }

    .banner-area:hover .carousel-control.right {
        right: 0;
    }

    .banner-area:hover .carousel-control.shadow.right {
        right: 20px;
    }

    /* Animation delays */
    .banner-area .item h1:first-child,
    .banner-area .item h2:first-child,
    .banner-area .item h3:first-child,
    .banner-area .item h4:first-child,
    .banner-area .item h5:first-child,
    .banner-area .item h6:first-child {
        animation-delay: .5s;
    }

    .banner-area .item h1:nth-child(2),
    .banner-area .item h2:nth-child(2),
    .banner-area .item h3:nth-child(2),
    .banner-area .item h4:nth-child(2),
    .banner-area .item h5:nth-child(2),
    .banner-area .item h6:nth-child(2) {
        animation-delay: .7s;
    }

.carousel-caption h1:nth-child(3),
.carousel-caption h2:nth-child(3),
.carousel-caption h3:nth-child(3),
.carousel-caption h4:nth-child(3),
.carousel-caption h5:nth-child(3),
.carousel-caption h6:nth-child(3) {
    animation-delay: .9s;
}

.banner-area .item p {
    animation-delay: .5s;
}

.banner-area .item a,
.banner-area .item button {
    animation-delay: .7s;
}

.bg-theme-small {
    background-color: #edf5ff;
}

.page-cover-new {
    padding: 30px 0px;
    margin: 100px 0 30px 0;
}

.choseus-items .info h2 {
    font-weight: 500;
    line-height: 1.3;
    margin-top: -5px;
    margin-bottom: 25px;
    text-align: left;
}

.choseus-items .info ul li {
    display: block;
    position: relative;
    z-index: 1;
    padding-left: 25px;
    margin-bottom: 15px;
}

    .choseus-items .info ul li i {
        position: absolute;
        left: 0;
        top: -4px;
        font-size: 20px;
        color: #1f8cb3;
    }

    .choseus-items .info ul li:last-child {
        margin: 0;
    }

.default-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.site-heading h2 {
    display: inline-block;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.site-heading.clean h2 {
    padding-bottom: 0;
}

    .site-heading.clean h2 span {
        color: #1f8cb3;
    }

.site-heading h2 span {
    color: #1f8cb3;
}

.site-heading.barber h2 span {
    color: #bc9355;
}

.site-heading p {
    margin: 0;
}

.site-heading.clean h2::after,
.site-heading.clean h2::before {
    display: none;
}

.site-heading h2::before {
    background: #1f8cb3 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    width: 50px;
}
/* ============================================================== 
     # Features 
=================================================================== */

.features-area.bottom-small {
    padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
    padding-bottom: 30px;
}

.features-area .item .icon {
    display: table-cell;
    vertical-align: top;
}

.features-area .item .info {
    display: table-cell;
    padding-left: 25px;
    vertical-align: top;
}

.features-area .item .icon i {
    background: #edf5ff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #232323;
    display: inline-block;
    font-size: 50px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    width: 100px;
}

.features-area .item .info h4 {
    font-weight: 500;
    text-transform: capitalize;
}

.features-area .item .info p {
    margin: 0;
}

.features-area .equal-height {
    margin-bottom: 50px;
}

.features-area.cell-items .features-thumb,
.features-area.cell-items .features-items {
    display: table-cell;
    float: none;
    vertical-align: middle;
}

.features-area.cell-items .features-thumb {
    padding-right: 35px;
}

.features-area.cell-items .features-items .equal-height {
    margin-bottom: 0;
    margin-top: 50px;
}

    .features-area.cell-items .features-items .equal-height:first-child,
    .features-area.cell-items .features-items .equal-height:nth-child(2) {
        margin-top: 0;
    }

.features-area.features-list .features-items h2 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
}

.features-area.features-list .features-items li {
    color: #666666;
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

    .features-area.features-list .features-items li:last-child {
        margin: 0;
    }

    .features-area.features-list .features-items li i {
        background: #1f8cb3 none repeat scroll 0 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        color: #ffffff;
        float: left;
        font-size: 12px;
        height: 30px;
        line-height: 30px;
        margin-right: 15px;
        margin-top: 5px;
        position: relative;
        text-align: center;
        width: 30px;
        z-index: 1;
    }

        .features-area.features-list .features-items li i::after {
            background: #1f8cb3 none repeat scroll 0 0;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            content: "";
            height: 40px;
            left: 0;
            margin-left: -5px;
            margin-top: -5px;
            opacity: 0.5;
            position: absolute;
            top: 0;
            width: 40px;
            z-index: -1;
        }

.features-area.features-list .features-thumb {
    padding-right: 35px;
}

.features-area.features-list .features-items li .icon {
    display: table-cell;
    vertical-align: top;
}

.features-area.features-list .features-items li .info {
    display: table-cell;
    padding-left: 5px;
    vertical-align: top;
}

    .features-area.features-list .features-items li .info h4 {
        margin-bottom: 10px;
    }

.features-area.features-list .features-items ul {
    margin-top: 30px;
    padding-right: 50px;
}

.features-area.features-list .features-items li .info p {
    color: #666666;
    margin: 0;
}

.features-area.features-list .features-item.reverse .features-thumb {
    float: right;
    padding-right: 15px;
}

.features-area.features-list .features-item.reverse .features-items {
    padding-left: 15px;
}

.features-area.features-list .features-item {
    margin-top: 80px;
    overflow: hidden;
}

    .features-area.features-list .features-item:first-child {
        margin: 0;
    }

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
}

    .site-heading h2::after {
        background: #232323 none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 2px;
        left: 50%;
        margin-left: -40px;
        position: absolute;
        width: 25px;
    }

.col-lg-offset-2 {
    margin-left: 16.66666667%;
}

/* ============================================================== 
     # Pricing Table 
=================================================================== */
.pricing-item {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pricing-header h4 {
    font-weight: 400;
    text-transform: uppercase;
    color: #232323;
}

.pricing-header h2 {
    color: #232323;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0;
}

.color-yellow .pricing-header h2 {
    color: #ff9800;
}

.pricing-header h2 sup {
    font-size: 24px;
    font-weight: 500;
    margin-right: 5px;
    text-transform: none;
}

.pricing-header h2 sub {
    font-size: 18px;
    font-weight: 400;
    margin-left: -5px;
}

.pricing-item .pricing-header span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-header {
    background: #edf5ff none repeat scroll 0 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 35px;
    padding: 30px !important;
}

.pricing-item .footer {
    padding: 30px;
}

.pricing-item li {
    font-family: 'Roboto', sans-serif;
    line-height: 40px;
    padding: 0 30px;
    text-transform: capitalize;
}

.pricing-area .pricing-item.active .pricing-header {
    background: #1f8cb3 none repeat scroll 0 0;
}

.pricing-area.color-yellow .pricing-item.active .pricing-header {
    background: #ff9800 none repeat scroll 0 0;
}

.pricing-area .pricing-item.active .pricing-header h2,
.pricing-area .pricing-item.active .pricing-header h4,
.pricing-area .pricing-item.active .pricing-header span {
    color: #ffffff;
}

    .pricing-area .pricing-item.active .pricing-header span.badge {
        background: #ffffff none repeat scroll 0 0;
        color: #232323;
    }

.pricing-item li i {
    color: #1f8cb3;
    margin-right: 5px;
}

    .pricing-item li i.fa-times {
        color: #e22626;
    }

.pricing-simple {
    display: inline-flex;
    width: 100%;
}

.btn-theme.border {
    background-color: transparent;
    color: #1f8cb3 !important;
    border: 2px solid #1f8cb3 !important;
}

    .btn-theme.border:hover {
        background-color: #1f8cb3;
        color: #ffffff !important;
        border: 2px solid #1f8cb3 !important;
    }

.btn-theme {
    background-color: #1f8cb3;
    color: #ffffff !important;
    border: 2px solid #1f8cb3 !important;
}

.btn-main.circle {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.btn-sm {
    padding: 12px 40px;
    font-size: 12px;
}

.btn-main {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    letter-spacing: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.section-title1 {
    position: relative;
}

    .section-title1 .title {
        letter-spacing: 0.5px;
        font-size: 26px !important;
    }


.feature.feature-transition {
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.feature.serve-one .icons {
    height: 42px;
    width: 42px;
    line-height: 42px;
}

    .feature.serve-one .icons i {
        color: #fff;
        font-size: 20px;
    }

.feature.serve-one .content .title {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature .icon {
    height: 62px;
    width: 62px;
    line-height: 62px;
}

    .feature .icon .feature-icon {
        stroke-width: 1.5;
    }

.feature:hover.feature-transition {
    -webkit-box-shadow: 0 0 3px rgba(22, 28, 45, 0.15);
    box-shadow: 0 0 3px rgba(22, 28, 45, 0.15);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.feature:hover .icon {
    background-color: #00c9a7;
}

    .feature:hover .icon .feature-icon {
        color: #ffffff !important;
    }

.feature .icon,
.feature.serve-one .icons {
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    background: #1f8cb3;
}

.overflow-hidden {
    overflow: hidden !important;
}

.section-title1 ul li i {
    color: #1f8cb3;
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important;
}

.feature-section .icon {
    width: 50px;
    height: 50px;
}

.feature-section .icon-shape {
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 0.25rem;
}

.feature-section .icon-color-1 {
    background-color: #c6e6fd;
    color: #63b0e3;
}

.feature-section h5 {
    margin: 0 0 1rem;
    font-weight: 500;
    font-size: 18px;
    color: #383838;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.feature-section p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: "SF Pro Display Regular";
    line-height: 24px;
}

.feature-section .icon-text {
    text-align: justify;
}

.feature-section i {
    color: #000;
}

.feature-section .icon i {
    line-height: 50px;
    font-size: 22px;
    color: #383838;
}

.sign-in-l {
    float: right;
    position: relative;
    color: #fff;
    margin: 31px 0 0 10px;
    padding: 0px;
    display: inline-table;
}

    .sign-in-l .slider-btn {
        padding: 5px 10px;
    }

.is-sticky .sign-in-l {
    margin: 18px 0 0 10px;
}

.feature-new {
    margin-top: -400px;
    position: sticky;
}

.double-items {
    margin-bottom: 350px;
}

    .double-items h2 {
        font-size: 36px;
        font-weight: 500;
        margin-bottom: 25px;
        text-transform: capitalize;
        text-align: center;
        line-height: 45px;
    }

    .double-items h1 {
        font-size: 36px;
        font-weight: 500;
        margin-bottom: 25px;
        text-transform: capitalize;
    }

    .double-items h2 span {
        color: #1f8cb3;
        font-weight: 700;
    }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feature-new {
        margin-top: -330px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-new {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .feature-new {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .feature-new {
        margin-top: 30px;
    }
}

.content-white h2 {
    color: #fff;
}

.content-white.info ul li {
    color: #fff;
}

.choseus-items .info ul li h2 {
    color: #333;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0px;
    margin-top: 0px;
    text-transform: capitalize;
    text-align: left;
}




.content-white.info ul li i {
    color: #fff;
}

.content-white.info ul li h2 {
    color: #fff;
}

.content-white h1 span {
    color: #fff;
}

.content-bg-nt {
    background: #ffffffb0;
    padding: 30px 15px;
    border-radius: 8px;
}

.text-link-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0px 0;
}
    /*
.text-link-banner a {
  color: #d81718;
  text-decoration: underline;
  text-transform: uppercase;
  
}

*/


    .text-link-banner i {
        margin: 0 5px 0 0;
        font-size: 18px;
    }

.arrow1 {
    animation: mymove 1s ease-in-out infinite;
    margin-left: 9px;
}



@keyframes mymove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 0)
    }

    100% {
        transform: translate(0, 0)
    }
}

.title-niemtin {
    display: inline-block;
    text-align: center;
}

    .title-niemtin h1 {
        font-size: 24px;
        line-height: 30px;
        text-transform: capitalize;
        margin: 0 0 0 15px;
        color: #2c6db3;
        text-shadow: 1px 1px 1px #FFF, 1px 1px 1px #FFF, 1px 1px 1px #FFF, 1px 1px 2px #000;
    }

    .title-niemtin span {
        text-transform: uppercase;
    }

.section-pbt-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.about-area p {
    text-align: justify;
}

/*--css new--*/
.content-new {
    padding-top: 550px;
}

.is-sticky .sign-in-new {
    margin: 15px 0 0 10px;
}

.banner-area-content {
    max-width: 935px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bgForm-card {
    background: #FFFFFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    color: #000000;
    height: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 38px 38px 38px;
    font-family: "SF Pro Display Medium";
    line-height: 24px;
    font-size: 18px;
}

.box-icon {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -25px;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    z-index: 1;
    background: linear-gradient(90deg, #2062A8 0%, #1A4CC7 100%);
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .box-icon span {
        font-family: "SF Pro Display Bold";
        font-size: 20px
    }

.btn-main {
    background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #ffffff;
    margin: 0 8px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
    font-family: "SF Pro Display Bold";
    padding: 14px 29px;
}

    .btn-main:hover {
        color: #ffffff;
    }

.btn-main-border {
    background: #FFFFFF;
    border: 1px solid #1D60A7;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #1C5CAC;
    margin: 0 0 0 8px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
    font-family: "SF Pro Display Bold";
    padding: 14px 29px;
}

    .btn-main-border:hover {
        color: #1C5CAC;
    }

.sign-in-new {
    float: right;
    position: relative;
    color: #fff;
    margin: 31px 0 0 10px;
    padding: 0px;
    display: flex;
    align-items: flex-start;
}

.title-slide-main {
    font-size: 64px;
    color: #DEEBFA;
    font-family: "SF Pro Display Bold";
    text-transform: uppercase;
    margin-bottom: 15px;
}

.title-slide1 {
    font-size: 44px;
    color: #434242;
    font-family: "SF Pro Display Bold";
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title-slide2 {
    font-size: 44px;
    color: #2062A8;
    font-family: "SF Pro Display Bold";
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-slider {
    padding-top: 85px;
}


.feature-new-main {
    margin-top: 330px;
}

.our-mission-left {
    text-align: center;
    position: relative;
    z-index: 1;
}

.our-mission-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .our-mission-content .shape {
        position: absolute;
        left: -15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .our-mission-content .content {
        max-width: 568px;
        margin-left: auto;
    }

    .our-mission-content .content1 {
        max-width: 570px;
        margin-right: auto;
    }

.content-main {
    padding-top: 100px;
    /*   padding-top:30px;*/
}

.our-mission-area {
    width: 100%;
    display: flex
}

.text-title-main {
    display: flex;
    align-items: center;
    text-align: center
}

    .text-title-main .title-slide1, .text-title-main .title-slide2 {
        font-size: 36px
    }

    .text-title-main .title-slide1 {
        margin-bottom: 15px;
    }

.about-area .container-fluid, .our-mission-area .container-fluid {
    max-width: 1920px;
}

.single-what-we-do-box {
    margin-bottom: 30px;
    position: relative;
    padding-left: 105px;
    padding-right: 15px;
}

    .single-what-we-do-box .icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 80px;
        height: 80px;
        border-radius: 5px;
        color: #ff5d22;
        text-align: center;
        font-size: 55px;
        transition: .5s;
    }

    .single-what-we-do-box h3 {
        margin-bottom: 10px;
        font-size: 18px;
        text-align: left;
        font-family: "SF Pro Display Bold";
        color: #434242
    }

    .single-what-we-do-box p {
        margin-bottom: 12px;
        text-align: left;
        font-family: "SF Pro Display Regular";
        color: #434242
    }

.our-mission-area {
    margin-bottom: 30px;
}

.how-its-work-content .inner-box .single-item {
    position: relative;
    z-index: 1;
    padding-left: 40px;
    padding-bottom: 30px;
    text-align: left;
}

.how-its-work-content .inner-box {
    margin-top: 35px;
}

    .how-its-work-content .inner-box .single-item:before {
        content: "";
        position: absolute;
        top: 10px;
        width: 1px;
        height: 100%;
        /*  background-color: #ff5d22;*/
        z-index: -1;
        left: 15px;
        border: 1px dashed #C8C5C5;
    }

    .how-its-work-content .inner-box .single-item:after {
        /*   content: "\EA17";*/
        position: absolute;
        left: 26px;
        color: #ff5d22;
        bottom: 10px;
        /*  animation: fade-down 1.5s linear infinite;*/
        font-family: boxicons !important;
        font-size: 30px;
    }

    .how-its-work-content .inner-box .single-item:last-child:before {
        display: none;
    }

    .how-its-work-content .inner-box .single-item:last-child:after {
        display: none;
    }

.count-dot {
    width: 15px;
    height: 15px;
    position: absolute;
    left: 8px;
    top: 5px;
    line-height: 65px;
    text-align: center;
    color: #ff5d22;
    border-radius: 50%;
    background: #4871d0;
    /*  background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);*/
    /* opacity: 0.8;*/
    /* box-shadow: 0 0 0 7px #edf1fe;*/
    font-size: 30px;
    font-weight: 800;
    font-style: italic;
}

.contnet-aboutNT {
    margin: 60px 0 0 0;
}

.projects-area {
    background-image: url('../images/ImageNew/bg-product.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 0 95px 0;
}

.bg-form-product {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    padding: 30px 15px;
}

.left-product {
    font-family: "SF Pro Display Medium";
    font-size: 18px;
    color: #434242 !important;
    margin: 0 0 10px 0 !important;
}

    .left-product img {
        width: 50px;
    }

.right-product {
    margin-left: 5px;
}

.list-product {
    padding: 0px;
    margin: 0px;
}

    .list-product li {
        color: #434242 !important;
        font-family: "SF Pro Display Regular";
        font-size: 16px;
        margin: 0 0 15px 0;
        display: flex;
        line-height: 20px;
    }

        .list-product li:last-child {
            margin: 0 !important;
        }


        .list-product li i {
            color: #B1B1B1;
            margin-right: 5px;
        }

.bg-form-product {
    height: 300px;
    margin-bottom: 60px;
}

.price-block {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-align: left;
}

.title-box h5 {
    color: #434242;
    font-family: "SF Pro Display Bold";
    font-size: 22px;
    margin: 0 0 20px 0;
}

.title-box .text {
    color: #434242;
    font-family: "SF Pro Display Regular";
    line-height: 24px;
    min-height: 72px;
}

.title-box .price {
    margin-bottom: 10px;
    min-height: 62px;
}

    .title-box .price span {
        color: #2062A8;
        font-size: 24px;
        font-family: "SF Pro Display Bold";
    }

        .title-box .price span span {
            font-family: "SF Pro Display Medium";
            font-size: 16px;
            color: #434242;
            text-transform: uppercase;
        }

.price-block .inner-box {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    padding: 30px;
}

    .price-block .inner-box .title-box {
        position: relative;
        z-index: 1;
    }

.title-top {
    margin: 140px 0 60px 0;
}

.title-top1 {
    margin: 0px 0 60px 0;
}

.title-top2 {
    margin: 0px 0 60px 0;
}


.pricing-features-new {
    padding: 0px 0 0 0;
    text-align: left;
    border-top: 1px dashed #2062A8;
    margin-top: 15px;
    padding-top: 15px;
}

    .pricing-features-new ul {
        margin: 0;
        padding: 0;
    }

        .pricing-features-new ul li {
            list-style-type: none;
            display: flex;
            line-height: 24px;
            font-family: "SF Pro Display Regular";
            font-size: 16px;
            color: #434242 !important;
            border-bottom: 1px solid #DEE0E1;
            padding-bottom: 10px;
            padding-top: 10px;
            padding-left: 5px;
        }

            .pricing-features-new ul li span {
                margin: 0 0 0 15px;
            }

            .pricing-features-new ul li i {
                color: #E4E4E4;
                font-size: 23px;
                width: 23px;
                min-width: 23px;
                display: inline-flex;
            }

            .pricing-features-new ul li.active {
                background: #E8EFFB;
                border-radius: 4px;
                display: flex;
                align-items: center;
                font-family: "SF Pro Display Medium";
            }

            .pricing-features-new ul li.activeTop {
                background: #E8EFFB;
                border-radius: 4px;
                display: flex;
                align-items: center;
                font-family: "SF Pro Display Medium";
                margin-bottom: 10px;
            }

            .pricing-features-new ul li.end {
                display: flex;
                justify-content: space-between;
                padding-left: 0px;
                color: #1D60A7 !important;
            }

                .pricing-features-new ul li.end span {
                    margin: 0;
                }

            .pricing-features-new ul li.link {
                display: flex;
                align-items: center;
                padding: 20px 0;
            }

                .pricing-features-new ul li.link span {
                    margin: 0;
                }

                .pricing-features-new ul li.link a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #2062A8;
                    width: 100%;
                }

                .pricing-features-new ul li.link i {
                    color: #2062A8;
                    margin: 0 5px 0 0;
                }

.priceFooter {
    color: #1D60A7;
    font-family: "SF Pro Display Bold";
    font-size: 20px;
    text-align: center;
    margin: 15px 0 0 0;
}

.bottom-support {
    margin: 30px 0 0 0;
}

    .bottom-support span {
        text-align: left;
        display: flex;
        color: #1D60A7;
        font-family: "SF Pro Display Medium";
        margin-bottom: 15px;
    }

    .bottom-support .img-app {
        display: flex;
        justify-content: space-between;
    }

        .bottom-support .img-app img {
            width: 145px;
        }

.btn-price-main {
    background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: block;
    color: #ffffff !important;
    padding: 15px 0;
    margin: 15px 0 0 0;
    text-transform: uppercase;
    text-align: center;
}

.price-blue .inner-box {
    background: #2062A8;
    padding-bottom: 55px;
}

    .price-blue .inner-box .pricing-features-new {
        border-top: 1px dashed #fff;
    }

.price-blue .title-box .text {
    color: #fff
}

.price-blue .title-box h5 {
    color: #fff
}

.price-blue .title-box .price span {
    color: #BAD8F8;
}

    .price-blue .title-box .price span span {
        color: #fff
    }

.price-blue .pricing-features-new ul li {
    color: #fff !important;
    border-bottom: 1px solid #4973A0 !important;
}

    .price-blue .pricing-features-new ul li.activeTop {
        background: #337ABB;
    }

    .price-blue .pricing-features-new ul li.end {
        color: #BDF3FF !important;
    }

    .price-blue .pricing-features-new ul li.link a {
        color: #fff !important;
    }

    .price-blue .pricing-features-new ul li.link i {
        color: #fff !important;
    }

.price-blue .priceFooter {
    color: #B2F1FF;
}

.price-blue .btn-price-main {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    display: block;
    color: #2062A8 !important;
    padding: 15px 0;
    margin: 15px 0 0 0;
    text-transform: uppercase;
}

.price-blue .bottom-support span {
    color: #B2F1FF;
}

.projects-question {
    background-image: url('../images/ImageNew/Img_dot.png');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 0 0px 0;
    margin-top: 110px;
}

.question-new {
    background: #FFFFFF;
    border: 1px solid #B6CBE1;
    border-radius: 10px;
}

.circ-icon {
    background: #C1D9F2;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: inline-flex;
}

    .circ-icon i {
        color: #2062A8 !important;
        padding: 3px 0 0 1px !important;
    }

/*tab*/
.projects-question .collapse.in {
    display: block;
}

.panel-title a {
    display: block;
    position: relative;
    padding: 10px 60px 10px 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #6d7194;
}

.drop-accordion .panel-default {
    overflow: hidden;
    box-shadow: none;
    background: #FFFFFF;
    border: 1px solid #B6CBE1;
    border-radius: 10px;
    border-left-width: 3px;
    border-left-color: #1D60A7;
    margin: 0 0 15px 0;
}

.drop-accordion .panel-heading {
    overflow: hidden;
    margin-bottom: 5px;
    padding: 0;
    border: 0px;
    background: none;
    border-radius: 0;
}

.leaf-ui .drop-accordion .panel-heading,
.circlus-ui .drop-accordion .panel-heading {
    border-radius: 4px;
}

.panel-title a {
    display: block;
    position: relative;
    padding: 10px 60px 10px 30px;
    font-family: "SF Pro Display Medium";
    font-size: 16px;
    line-height: 20px;
    color: #434242;
    text-align: left;
}

.panel-title span {
}

.panel-title .expand-icon-wrap {
    position: absolute;
    right: 15px;
    top: 4px;
    bottom: 0;
    border-left: 0px solid #d9d7d7;
    font-size: 24px;
    line-height: 46px;
    color: #03C6FE;
}

.expand-icon-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.panel-title i {
    padding: 0 18px;
    vertical-align: middle;
}

.panel-title i {
    color: #C1D9F2;
}

.panel-title .expand-icon:before {
    content: "\f055";
}

.drop-accordion .panel-body {
    position: relative;
    border: 0px solid #d9d7d7;
    border-top: 0px !important;
    padding: 0 30px 15px 30px;
    text-align: left;
    color: #434242;
    font-family: "SF Pro Display Regular";
    line-height: 20px;
}

.circlus-ui .drop-accordion .panel-body,
.leaf-ui .drop-accordion .panel-body {
    border-radius: 4px;
}

.panel-body-icon {
    width: 75px;
    float: left;
    padding: 10px;
}

    .panel-body-icon i {
        font-size: 45px;
        color: #03C6FE;
    }

/*.drop-accordion .tab-collapsed {
    border: transparent;
    background: #03C6FE;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}*/

/*.tab-collapsed a {
    color: #fff;
}*/

.tab-collapsed .expand-icon-wrap {
    border-color: #fff;
    color: #fff;
}

.tab-collapsed .expand-icon:before {
    content: "\f056";
}
/*question*/
.action {
    display: block;
    margin: 100px auto;
    width: 100%;
    text-align: center;
}

    .action a {
        display: inline-block;
        padding: 5px 10px;
        background: #f30;
        color: #fff;
        text-decoration: none;
    }

        .action a:hover {
            background: #000;
        }

.slick-dots {
    bottom: -45px;
    width: 100%;
    list-style: none;
    text-align: center;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 20px;
            height: 20px;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: 0;
            background: 0 0;
        }


            .slick-dots li button:before {
                font-size: 30px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: #000;
            }

.slick-dots, .slick-next, .slick-prev {
    position: absolute;
    display: block;
    padding: 0;
}

.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px\9;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0;
}

.slick-prev {
    left: -25px;
}

    .slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
        color: transparent;
        outline: 0;
        background: 0 0;
    }

    .slick-next:before, .slick-prev:before {
        font-size: 24px !important;
        line-height: 1;
        color: #2062A8;
    }

    .slick-prev:before {
        content: "\FB0D";
        display: inline-block;
        font: normal normal normal 24px/1 "Material Design Icons";
        font-size: inherit;
        text-rendering: auto;
        line-height: inherit;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
        opacity: 1;
    }

.slick-next:before, [dir=rtl] .slick-prev:before {
    content: "\FB0F";
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: inherit;
    text-rendering: auto;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-next {
    right: -25px;
}

.testimonial-block {
    position: relative;
}

    .testimonial-block .inner-box {
        position: relative;
        0px 0px 80px border-radius: 8px;
        background-color: transparent;
    }

        .testimonial-block .inner-box .upper-box {
            position: relative;
        }

            .testimonial-block .inner-box .upper-box h5 {
                margin: 30px 0 0 0;
                font-family: "SF Pro Display Medium";
                font-size: 18px;
                color: #2062A8;
                text-align: left;
                line-height: 28px;
            }

            .testimonial-block .inner-box .upper-box .upper-inner {
                position: relative;
                padding-top: 60px;
                min-height: 85px;
                padding-left: 210px;
            }

        .testimonial-block .inner-box .text {
            position: relative;
            color: #434242;
            font-size: 16px;
            line-height: 1.9em;
            margin-top: 30px;
            text-align: left;
        }

.slick-slider {
    margin: 30px 0 0 0;
}

.slick-current .author {
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    border: 0px;
}

.testimonial-block .inner-box .quote {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 80px;
    line-height: 1em;
    color: #e5e5f7;
}

    .testimonial-block .inner-box .quote img {
        width: 110px;
    }

.author {
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    border-radius: 8px;
    padding: 10px 15px;
    position: relative;
    min-height: 70px;
}

    .author .image {
        position: absolute;
        left: 10px;
        top: 10px;
        width: 46px;
        height: 46px;
        overflow: hidden;
    }

        .author .image img {
            position: relative;
            width: 100%;
            display: block;
            border-radius: 50%;
        }

.text-slider {
    display: block;
    text-align: left;
    padding: 0 0 0 50px;
    line-height: 20px;
}

.title-main-slider {
    color: #434242;
    font-size: 14px;
    font-family: "SF Pro Display Regular";
    display: block;
}

.title-nomal-slider {
    color: #2062A8;
    font-family: "SF Pro Display Medium";
    font-size: 16px;
    display: block;
}
/*footer*/
.footer-bg {
    background: url('../images/ImageNew/bg-footer.png');
    background-size: cover;
}

.footer-top h3 {
    font-size: 22px;
    font-family: "SF Pro Display Bold";
}


.footer-bg .section-pt-70 {
    padding-top: 170px;
}

.footer-bottom .copy-right {
    float: left;
}

.list-contact {
    display: flex;
}

.icon-bg-footer {
    width: 31px;
    height: 31px;
    border-radius: 50px;
    background: #B3D6FB;
    display: inline-block;
    margin: 0 10px 15px 0;
    min-width: 31px;
}

    .icon-bg-footer i {
        line-height: 31px;
        margin: 0px;
        color: #2062A8;
        padding: 0 0 0 6px;
    }

.our-customer {
    padding-bottom: 60px;
    position: relative;
}

    .our-customer .shape {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        z-index: -1;
    }

    .our-customer .our-mission-content .shape {
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .our-customer .our-mission-content .content {
        max-width: 743px;
        margin-left: auto;
    }

    .our-customer .our-mission-content .content1 {
        max-width: 412px;
        margin-right: auto;
    }

.text-detail-customer {
    max-width: 650px;
    text-align: center;
    display: inline-block;
}

.our-customer .content-main {
    padding-top: 0px;
}

.main-menu ul li.dis-desktop {
    display: none;
}

.desktop-dis-price {
    display: none;
}

.modal-new {
    background: #FFFFFF;
    border-radius: 6px;
}

    .modal-new .modal-header {
        border-bottom: 1px solid #E2EBF2;
        margin: 0 15px;
        text-align: center;
        display: inline-block;
        padding: 25px 15px;
    }

        .modal-new .modal-header h5 {
            font-family: "SF Pro Display Medium";
            margin: 0px;
            padding: 0px;
            color: #2062A8;
            font-size: 18px;
        }

        .modal-new .modal-header .close {
            padding: 0;
            margin: -23px -15px -15px auto;
        }

        .modal-new .modal-header button {
            background: #B1B1B1;
            border-radius: 50%;
            /* padding: 5px !important; */
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


            .modal-new .modal-header button i {
                color: #ffffff;
                font-size: 23px
            }

    .modal-new .modal-body h5 {
        font-size: 16px;
        font-family: "SF Pro Display Regular";
        color: #000000;
    }

    .modal-new .truycaptencuahang {
        background: none;
        border: 0px;
        line-height: 48px;
        height: 48px;
        padding-left: 15px;
        width: calc(100% - 190px);
    }

    .modal-new .lgn span {
        background: #F1F6FA;
        padding: 14.5px;
        width: 190px;
        margin-left: -4px;
        margin: 5px 0 5px -4px;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        color: #2062A8;
        font-size: 16px;
        border: 0px;
        font-family: "SF Pro Display Regular";
        border-left: 1px solid #B1B1B1;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .modal-new .modal-footer {
        border: 0px;
        padding: 0 0 30px 0 !important;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

.button-modal {
    background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);
    border-radius: 6px;
    padding: 10px 37px;
    font-family: "SF Pro Display Medium";
    font-size: 16px;
    color: #fff;
}

    .button-modal:hover {
        color: #fff;
    }

.input-form {
    height: 48px;
    background: #F1F6FA;
    border-radius: 6px;
    display: flex;
}

.modal-600 {
    max-width: 600px;
    margin: 30px auto;
}

/*trang trong*/
.page-title-area {
    position: relative;
    z-index: 1;
    background-image: url('../images/ImageNew/tinhNang.png');
    padding-top: 170px;
    padding-bottom: 0px;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    /*height: 665px;*/
    height: 600px;
    width: 100%;
}

.page-title-detail {
    height: auto;
}

    .page-title-detail .section-pb {
        padding: 0 0 50px 0;
    }

.crmnt-detail .itemBody h1 {
    font-size: 20px;
    font-weight: normal;
    line-height: normal;
    width: 100%;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    color: #1C5EAA;
    font-family: "SF Pro Display Medium";
}

.section-pb {
    padding: 0 0 100px 0;
}

.page-title {
    color: #1C5EAA;
    text-transform: capitalize;
    font-family: "SF Pro Display Medium";
}

.button-TN {
    display: flex;
    justify-content: flex-end;
}

.text-link-tn {
    text-decoration-line: underline;
    color: #2062A8;
    font-style: italic;
    margin: 10px px 0 0 0;
}

.boxesNew {
    margin-top: 30px;
}

    .boxesNew .bg-form-product {
        height: 355px;
        margin-bottom: 30px;
        position: relative;
    }

    .boxesNew p:last-child {
        position: absolute;
        bottom: 30px;
        left: 30%;
    }




    .boxesNew .list-product li {
        display: block;
    }

.bgNew {
    position: relative;
    z-index: 1;
    background-image: url('../images/ImageNew/wave-bg-7-1%201.png');
    padding-top: 0px;
    padding-bottom: 100px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
}

.page-title {
    text-align: left;
}

.breadcrum {
    display: flex;
    align-items: center;
}

    .breadcrum li a {
        color: #434242;
        font-family: "SF Pro Display Regular"
    }

        .breadcrum li a h5 {
            color: #434242;
            font-family: "SF Pro Display Regular";
            margin: 0px;
            padding: 0px;
        }

    .breadcrum li {
        color: #434242;
        font-family: "SF Pro Display Regular";
        display: flex;
        align-items: center;
    }

        .breadcrum li i {
            color: #434242;
            margin: 2px 5px 0 5px;
        }

        .breadcrum li img {
            width: 18px;
            margin: 0 10px 0 0;
        }

.bg {
    display: flex;
    justify-content: flex-end;
}

.title-page-detail {
    color: #2062A8 !important;
    font-size: 18px !important;
    font-family: "SF Pro Display Medium";
    margin: 0 0 15px 0;
}

.right-new {
    background: #F1F6FA;
    border-radius: 4px;
    padding: 30px;
}

    .right-new .title-left-crmnt {
        color: #2062A8;
        text-transform: inherit;
        font-weight: normal;
        font-family: "SF Pro Display Medium";
        margin: 0 0 30px 0;
        padding: 0px 0px 0 15px;
        border-left: 2px solid #2062A8;
        line-height: initial;
        font-size: 18px;
    }


        .right-new .title-left-crmnt:before {
            display: none;
        }

    .right-new .input-append {
        background: #FFFFFF;
        border: 1px solid #E7E5E5;
        border-radius: 4px
    }

    .right-new .add-on {
        background: #2062A8;
        border-radius: 4px;
        display: flex;
        height: 86%;
        margin: 3px;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
    }

        .right-new .add-on i {
            color: #fff;
        }

    .right-new .media-left img {
        width: 100px;
        height: 85px;
        margin: 0 20px 0 0;
    }

    .right-new .left-sidebar-crm .media-heading > a {
        color: #434242;
        font-family: "SF Pro Display Regular";
        font-weight: normal;
    }

    .right-new .left-sidebar-crm .media {
        border-bottom: 1px solid #cfcfcf;
        margin: 0 0 15px 0;
        padding: 0 0 15px 0;
    }

        .right-new .left-sidebar-crm .media:last-child {
            border-bottom: 0px;
        }

    .right-new .left-sidebar-crm .media-body > p {
        display: flex;
        align-items: center;
        color: #434242;
        font-size: 14px;
        font-family: "SF Pro Display Regular";
    }

    .right-new .time-small img {
        margin: 0 5px 0 0;
    }

.left-new .latest_page_box {
    margin: 0 0 30px 0;
}

    .left-new .latest_page_box img {
        vertical-align: middle;
        margin-right: 5px;
        width: auto;
        height: auto;
    }

    .left-new .latest_page_box .news_image img {
        width: 100%;
        height: 260px;
    }

    .left-new .latest_page_box > p {
        display: flex;
        color: #434242;
        font-size: 16px;
        font-family: "SF Pro Display Regular";
        align-items: center;
        line-height: 20px;
    }

        .left-new .latest_page_box > p.time-small {
            font-size: 14px;
        }

.left-new .news_image {
    margin-bottom: 15px;
    position: relative;
}

.news-out {
    margin: 0 0 30px 0;
}

    .news-out .news_image img {
        width: 100% !important;
        height: 350px !important;
    }

.latest_page_box > h3 {
    color: #434242;
    font-family: "SF Pro Display Medium";
    font-size: 18px;
}

.form-left-contact {
    background: #FFFFFF !important;
    border: 1px solid #DBD7D7 !important;
    box-shadow: 6px 4px 8px rgba(0, 0, 0, 0.09);
    border-radius: 6px;
    padding: 30px !important;
}

    .form-left-contact .form-control, .form-left-contact .textarea textarea {
        background: #F1F6FA !important;
        border-radius: 6px !important;
        height: 58px !important
    }

.btn-main1 {
    background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
    border-radius: 6px;
    color: #ffffff;
    margin: 0 8px;
    font-size: 15px;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    font-family: "SF Pro Display Medium";
    padding: 14px 29px;
}

.form-left-contact .btn-main1 {
    border: 0px;
}

.title-footer {
    font-family: "SF Pro Display Medium";
    color: #2062A8;
    text-transform: uppercase;
    font-size: 18px;
}

.title-small-footer {
    color: #434242;
    font-family: "SF Pro Display Medium";
}

.text-company {
    color: #2062A8;
    font-family: "SF Pro Display Medium";
    font-size: 18px;
}

.address_info .icon-bg-footer, .crmnt-signup .icon-bg-footer {
    background: linear-gradient(90deg, #1D60A7 0%, #1A4CC7 100%);
    margin: 0 15px 0px 0;
}

    .address_info .icon-bg-footer i {
        color: #fff;
        margin: 0px 0 0 2px;
    }

.address_info .list-contact, .crmnt-signup .list-contact {
    font-family: "SF Pro Display Medium";
    line-height: 22px;
    display: flex;
    align-items: center;
}

.address_info p i.fa {
    width: auto;
    border: 0px;
    padding: 2px 0 0 9px;
    margin: 0px;
}

.crmnt-signup .icon-bg-footer {
    color: #FFFFFF;
    font-family: "SF Pro Display Medium";
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
}

.alignTop {
    display: flex;
    align-items: flex-start !important;
}


.input-sign {
    background: #F1F6FA !important;
    border-radius: 6px !important;
    height: 58px !important;
    display: flex;
    align-items: center;
}

    .input-sign input {
        border-width: 0px !important;
        background: none !important;
    }

    .input-sign .text-link-crm {
        color: #2062A8;
        font-weight: normal;
        font-family: "SF Pro Display Regular";
        font-size: 16px;
        border-left: 1px solid #B1B1B1;
        padding-left: 15px;
        padding-right: 10px;
    }


.left-news {
    background: #F1F6FA;
    border-radius: 4px;
    padding: 15px 30px 0;
}

    .left-news .panel {
        background-color: transparent;
        border-bottom: 1px solid #D7D7D7;
        border-left: 0px;
        border-top: 0px;
        border-right: 0px;
        margin: 0 0 15px 0;
        padding: 0 0 15px 0;
    }

        .left-news .panel:last-child {
            border-bottom: 0px;
        }

    .left-news .panel-heading {
        padding: 0px 0;
    }

    .left-news .panel-default > .panel-heading {
        background-color: transparent;
        border: 0px;
    }

    .left-news .widget_categories > ul li {
        padding: 0;
        border-bottom: 0px;
        margin: 0 0 5px 10px;
    }

        .left-news .widget_categories > ul li a {
            color: #434242 !important;
            font-family: "SF Pro Display Regular";
            font-size: 16px;
        }




    .left-news .widget_categories > ul {
        margin-bottom: 0;
        background: transparent;
        margin-top: 5px;
    }

    .left-news .panel-title {
        color: #2062A8;
        font-size: 18px;
        font-family: "SF Pro Display Medium";
    }

        .left-news .panel-title > a img {
            max-width: 100%;
            width: 38px;
        }

        .left-news .panel-title a {
            padding: 10px 0px 10px 0px;
            color: #2062A8 !important;
            font-size: 18px;
            font-family: "SF Pro Display Medium";
        }

    .left-news .widget_categories ul li a:hover::before, .left-news .widget_categories ul li a.active::before {
        color: #B1B1B1;
    }

    .left-news .widget_categories ul li a::before {
        content: "\FB10";
        display: inline-block;
        font: normal normal normal 24px/1 "Material Design Icons";
        font-size: 16px;
        text-rendering: auto;
        color: #B1B1B1;
        line-height: inherit;
        -webkit-font-smoothing: antialiased;
    }

    .left-news .panel-group .panel-heading + .panel-collapse .panel-body {
        border: 0px;
    }

    .left-news .widget_categories ul li a:hover, .left-news .widget_categories ul li a.active {
        color: #1c5eaa !important;
    }

.text_ita {
    border-left: 6px solid #1c5cad;
}

.btn-mobile {
    background: linear-gradient(232.39deg, #EF8A0F 10.52%, #FF593D 86.57%);
    border-radius: 0px 20px 0px 0px;
    padding: 15px 45px;
    color: #FFFFFF;
    font-size: 18px;
    font-family: "SF Pro Display Medium";
}

.news-aligin .itemAuthorLatest_detail_box {
    border-bottom: 0px;
    color: #2062A8;
    text-transform: inherit;
    font-weight: normal;
    font-family: "SF Pro Display Medium";
    line-height: initial;
    font-size: 18px;
    margin: 40px 0 0 0;
}


    .news-aligin .itemAuthorLatest_detail_box h2 {
        border-bottom: 0px;
        color: #2062A8;
        text-transform: inherit;
        font-weight: normal;
        font-family: "SF Pro Display Medium";
        margin: 0 0 30px 0;
        padding: 0px 0px 0 15px;
        border-left: 2px solid #2062A8;
        line-height: initial;
        font-size: 18px;
    }

.news-aligin img.teammempic {
    height: 150px;
}

.news-aligin .title-link-crm {
    color: #434242;
    font-family: "SF Pro Display Regular";
    font-weight: normal;
    margin: 10px 0 0 0;
    display: inline-flex;
}


.news-aligin .time-small {
    display: flex;
    align-items: center;
    color: #434242;
    font-size: 14px;
    font-family: "SF Pro Display Regular";
    margin-bottom: 0;
}

    .news-aligin .time-small img {
        margin: 0 5px 0 0;
    }

.DetailList {
    margin: 0 0 0 30px;
    padding: 0;
    list-style: disc;
    font-size: 26px;
}

    .DetailList li {
        font-size: 16px;
        font-family: "SF Pro Display Regular";
    }

.DetailLink {
    border: 1px solid #d3d5d7;
    background-color: #e6e6e67a;
    padding: 10px;
    margin: 15px 0;
}

    .DetailLink .title {
        text-align: center;
        font-size: 18px;
        margin-bottom: 0.5rem;
        font-family: "SF Pro Display Regular";
        color: #434242;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .DetailLink .title i {
            font-size: 24px;
            line-height: initial;
        }


    .DetailLink ul {
        padding: 0;
        margin: 0;
        overflow: hidden;
        -webkit-transition: .5s;
        transition: .5s;
    }

        .DetailLink ul li {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            list-style: none;
            color: #2062A8;
            padding-bottom: 0.6rem;
        }

            .DetailLink ul li a {
                cursor: pointer;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 16px;
                line-height: 1.3333;
                font-family: "SF Pro Display Regular";
            }

                .DetailLink ul li a:hover {
                    color: #0e4c8e;
                }

.time-small-detail {
    display: flex;
    align-items: center;
    color: #434242;
    font-size: 14px;
    font-family: "SF Pro Display Regular";
}

    .time-small-detail img {
        vertical-align: middle;
        text-align: center;
        margin: 0 10px 0 0;
        display: block;
        padding: 0;
    }

.btn-main-ograne {
    background: linear-gradient(232.39deg, #FFA231 10.52%, #FF593D 86.57%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #ffffff;
    margin: 0 0 0 15px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
    font-family: "SF Pro Display Bold";
    padding: 14px 29px;
}

    .btn-main-ograne:hover {
        color: #ffffff;
    }

.btn-main-border-black {
    background: #FFFFFF;
    border: 1px solid #434242;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #434242;
    margin: 0 0 0 15px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
    font-family: "SF Pro Display Bold";
    padding: 14px 29px;
}

    .btn-main-border-black:hover {
        color: #434242;
    }

.crmnt-signup {
    padding: 0px 0px 0px;
    margin: 0px 0 30px 0;
}

.crmnt-detail .itemBody a {
    color: #076db6 !important;
}

    .crmnt-detail .itemBody a span {
        color: #076db6 !important;
    }

    .crmnt-detail .itemBody a:hover {
        text-decoration: underline;
    }


.news-mission {
    margin: 60px 0 90px;
}

    .news-mission img {
        width: 100%;
        height: 252px;
        border-radius: 8px;
    }

    .news-mission .our_team_box .boxleft {
        display: grid;
    }

    .news-mission .title-link-crm {
        color: #2062A8;
        font-family: "SF Pro Display Regular";
        font-weight: normal;
        text-align: left;
        margin: 10px 0 0 0;
    }

    .news-mission .time-small {
        display: flex;
        align-items: center;
        color: #434242;
        font-size: 14px;
        font-family: "SF Pro Display Regular";
        margin-bottom: 0;
    }

        .news-mission .time-small img {
            margin: 0 5px 0 0;
            height: auto !important;
            width: auto !important;
            border-radius: 0px !important;
        }

    .news-mission p.contentNews {
        text-align: left;
        margin: 5px 0 5px 0;
    }

    .news-mission .our_team_box {
        margin-top: 30px;
    }

    .news-mission .news-link {
        text-align: left;
    }

        .news-mission .news-link a {
            color: #2062A8;
            text-align: left;
            text-decoration: underline;
        }

h1.page-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: normal;
}

p {
    width: 100%;
}

/*LandingPage*/
.container-landing label {
    margin-bottom: 0px;
    font-family: "SF Pro Display Bold";
    color: #1D1D1F
}

    .container-landing label span {
        color: #F24E1E
    }

.container-landing input {
    border-radius: 8px;
    border: 1px solid #CCC;
    background: #FFF;
    color: #1D1D1F
}


    .container-landing input::placeholder {
        color: #999999;
        font-family: "SF Pro Display Regular";
    }


.form-header-top {
    margin: 15px 0;
}

.top-logo {
    display: flex;
    align-items: center;
    justify-content: center
}

.masthead-landingpage {
    border-top: 1px solid #E4E4E7;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-image: url('../images/LandingPage/Main.png');
    width: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


.form-dangKy-Landing {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 36px 0px rgba(44, 62, 72, 0.20);
    padding: 30px 30px;
}

.title-dangky {
    font-family: "SF Pro Display Bold";
    color: #1D1D1F;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
}

    .title-dangky span {
        color: #FF6B00;
    }


.footer-dky {
    display: grid;
    width: 100%;
    margin: 30px 0 0 0
}

.btn-landing {
    border-radius: 6px;
    background: linear-gradient(170deg, #45CAFF 0.02%, #0146AD 127.05%);
    border: 0px;
    padding: 10px 30px
}

    .btn-landing img {
        width: 16px;
        margin-right: 5px;
    }

.title-button-top {
    border-radius: 9999px;
    border: 1px solid #A1A1AA;
    background: rgba(255, 255, 255, 0.75);
    display: inline-block;
    padding: 5px 10px;
    font-family: "SF Pro Display Medium";
    margin-bottom: 30px;
}

    .title-button-top span {
        font-family: "SF Pro Display Bold";
    }

.title-landing {
    font-family: "SF Pro Display Bold";
    font-size: 50px;
    line-height: 60px;
    text-transform: capitalize
}

    .title-landing span {
        background: linear-gradient(180deg, #43D2FF 4.34%, #005BAE 26.48%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: normal;
    }

.list-text {
    margin: 25px 0 0 0;
    padding: 0px;
}

    .list-text li {
        display: flex;
        align-items: flex-start;
        line-height: initial;
        margin-bottom: 15px;
        font-family: "SF Pro Display Regular";
        line-height: 24px;
        font-size: 18px;
    }



        .list-text li img {
            width: 30px;
            height: auto;
            margin-right: 10px;
        }

.landing-about {
    padding: 30px 0
}

.title-contain-landing {
    font-family: "SF Pro Display Bold";
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #BEBEBE;
    padding: 0px 0 10px 0;
    margin: 0 0 10px 0;
}

.form-about-landing {
    margin: 60px 0 0 0;
}

.contain-about-landing {
    margin: 0px;
    padding: 0px;
}

    .contain-about-landing li {
        list-style-type: disc;
        margin: 15px 0px 15px 20px;
        font-family: "SF Pro Display Regular";
    }

.item-landing {
    margin: 0 0 30px 0;
}

.button-main-lading {
    display: flex;
    justify-content: center
}

.customer-landing {
    margin: 60px 0 0 0;
}

.bg-landing-customer {
    border-top: 1px solid #E4E4E7;
    padding-top: 2rem;
    padding-bottom: 5rem;
    background-image: url('../images/LandingPage/bg-customer.png');
    width: 100%;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.form-customer-landing {
    /*  display: table;
    flex-direction: column;
    margin: 0 auto;*/
    display: inline-block;
    width: 100%;
}

.numer-customer {
    background: #fff;
    box-shadow: 0px 4px 36px 0px rgba(44, 62, 72, 0.20);
    border-radius: 8px;
    padding: 15px;
}

    .numer-customer img {
        width: 30px;
        height: auto;
        margin-right: 15px;
    }

.number-landing {
    display: flex;
    flex-wrap: nowrap;
    font-family: "SF Pro Display Bold";
    color: #1D1D1F;
    font-size: 24px;
}

.left-number {
    display: flex;
    align-items: center;
}

.text-number {
    margin: 0 auto;
    display: table;
    padding-top: 15px
}

.text-title-new {
    text-align: center;
    margin: 30px 0 30px 0;
    font-family: "SF Pro Display Bold";
    color: #1D1D1F;
    font-size: 40px;
    line-height: 50px;
}

    .text-title-new span {
        background: linear-gradient(180deg, #01C2FF 76.24%, #0065AE 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
    }

        .text-title-new span::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -18px;
            background: url('../images/LandingPage/Vector.png');
            width: 100%;
            height: 27px;
            transform: rotate(0);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: top right;
        }

.landing-news {
    padding: 30px 0
}


.text-title-new1 {
    text-align: center;
    margin: 30px 0 30px 0;
    font-family: "SF Pro Display Bold";
    color: #1D1D1F;
    font-size: 30px;
    line-height: 50px;
}

    .text-title-new1 span {
        position: relative;
    }

        .text-title-new1 span::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -18px;
            background: url('../images/LandingPage/Vector.png');
            width: 100%;
            height: 27px;
            transform: rotate(0);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: top right;
        }

.form-new-landing {
    background: #fff;
    box-shadow: 0px 4px 36px 0px rgba(44, 62, 72, 0.20);
    border-radius: 8px;
    padding: 0px;
    margin: 30px 0;
    min-height: 380px
}

.title-news-landing {
    color: #1D1D1F;
    font-family: "SF Pro Display Bold";
}

.containe-news-landing {
    padding: 15px 15px;
}

.fotter-new-landing {
    padding: 30px 0 0 0
}

    .fotter-new-landing .footer .footer-top .footer-info {
        margin-bottom: 30px;
    }

        .fotter-new-landing .footer .footer-top .footer-info .logo {
            line-height: 0;
            margin-bottom: 15px;
        }

            .fotter-new-landing .footer .footer-top .footer-info .logo img {
                margin-right: 6px;
                width: 245px;
                height: auto;
            }

            .fotter-new-landing .footer .footer-top .footer-info .logo span {
                font-size: 30px;
                font-weight: 700;
                letter-spacing: 1px;
                color: #012970;
                font-family: "Inter", sans-serif;
                margin-top: 3px;
            }

        .fotter-new-landing .footer .footer-top .footer-info p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 0;
            font-family: "Inter", sans-serif;
            color: #fff;
        }

    .fotter-new-landing .footer .footer-top .social-links a {
        font-size: 20px;
        display: inline-block;
        color: rgba(1, 41, 112, 0.5);
        line-height: 0;
        margin-right: 10px;
        transition: 0.3s;
    }

    .fotter-new-landing .footer .footer-top .social-links img {
        width: 35px;
        height: 35px;
    }

    .fotter-new-landing .footer .footer-top .social-links a:hover {
        color: #012970;
    }

    .fotter-new-landing .footer .footer-top h4 {
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 12px;
        text-align: left
    }

    .fotter-new-landing .footer .footer-top .footer-links {
        margin-bottom: 30px;
    }

    .fotter-new-landing .footer .footer-top .footer-links-mobile {
        margin-bottom: 0px !important;
    }

    .fotter-new-landing .footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .fotter-new-landing .footer .footer-top .footer-links ul i {
            padding-right: 2px;
            color: #d0d4fc;
            font-size: 12px;
            line-height: 0;
        }

        .fotter-new-landing .footer .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            .fotter-new-landing .footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }

        .fotter-new-landing .footer .footer-top .footer-links ul a {
            color: #979797;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
        }

            .fotter-new-landing .footer .footer-top .footer-links ul a:hover {
                color: #fff;
            }

    .fotter-new-landing .footer .footer-top .footer-contact {
        margin-top: 30px;
    }

        .fotter-new-landing .footer .footer-top .footer-contact p {
            line-height: 26px;
            color: #979797;
            text-align: left;
            margin-bottom: 0px;
        }

    .fotter-new-landing .footer .copyright {
        text-align: center;
        padding-top: 30px;
        color: #fff;
        border-top: 1px solid #455154;
    }

        .fotter-new-landing .footer .copyright span {
            font-family: "SF Pro Display Bold";
        }

    .fotter-new-landing .footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #012970;
    }


    .fotter-new-landing .footer {
        background: #0b2239;
        padding: 0 0 30px 0;
        font-size: 14px;
    }

.g-4, .gy-4 {
    padding-top: 30px;
}

.fotter-new-landing .footer-textWhite {
    color: #fff;
}

.fotter-new-landing .footer-hotline {
    color: #f2724b;
}


.order-new-lg-1 {
    order: 1;
}

.order-new-lg-2 {
    order: 2;
}


.form-slider-landing {
    background: #fff;
    /*   box-shadow: 0px 4px 36px 0px rgba(44, 62, 72, 0.20);*/
    border-radius: 8px;
    padding: 15px;
}

    .form-slider-landing h5 {
        font-family: "SF Pro Display Bold";
        margin-top: 15px;
    }

.form-1 {
    display: inline-flex
}


.our-mission-content-landing {
    display: grid;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center
}

    .our-mission-content-landing .content {
        max-width: 568px;
        margin-left: auto;
    }

.popup-landing .modal-content {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 36px 0px rgba(44, 62, 72, 0.20);
}

.popup-landing .modal-header {
    border-bottom: 0px;
    display: block;
    padding-bottom: 0px;
    padding-top: 30px;
}

.popup-landing .form-dangKy-Landing {
    border-radius: 0px;
    background: #FFF;
    box-shadow: none;
    padding: 10px 30px
}

.disText {
    display: none;
}

.showText {
    display: block !important;
}

.disText1 {
    display: none;
}

.showText1 {
    display: block !important;
}


.border-red1 {
    outline: none;
    border-color: red !important;
    box-shadow: 0 0 3px red;
    -moz-box-shadow: 0 0 3px red;
    -webkit-box-shadow: 0 0 3px red;
}

.disText2 {
    display: none;
}

.showText2 {
    display: block !important;
}


.border-red1 {
    outline: none;
    border-color: red !important;
    box-shadow: 0 0 3px red;
    -moz-box-shadow: 0 0 3px red;
    -webkit-box-shadow: 0 0 3px red;
}

.border-red2 {
    outline: none;
    border-color: red !important;
    box-shadow: 0 0 3px red;
    -moz-box-shadow: 0 0 3px red;
    -webkit-box-shadow: 0 0 3px red;
}

.border-red3 {
    outline: none;
    border-color: red !important;
    box-shadow: 0 0 3px red;
    -moz-box-shadow: 0 0 3px red;
    -webkit-box-shadow: 0 0 3px red;
}

.border-red4 {
    outline: none;
    border-color: red !important;
    box-shadow: 0 0 3px red;
    -moz-box-shadow: 0 0 3px red;
    -webkit-box-shadow: 0 0 3px red;
}

.disText3 {
    display: none;
}

.showText3 {
    display: block !important;
}


.disText4 {
    display: none;
}

.showText4 {
    display: block !important;
}

.mucluc {
    position: sticky;
    top: 200px;
}

.anchor-target {
    scroll-margin-top: 100px;
}

.itemBody ul {
    margin: 0 !important;
    padding: 0 !important;
}

.itemBody ul li {
    margin-left: 40px ;
}

.menuMucLuc {
    margin-left: 0px;
}

/* /// */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  width: 64px;
  height: 64px;
}

.content1 {
  position: relative;
}

/* Lớp nền phủ toàn màn */
.video-popup {
  display: none; /* ✅ luôn ẩn mặc định */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Thêm class này khi cần hiển thị */
.video-popup.active {
  display: flex;
}
/* Hộp popup nền trắng */
.video-popup-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video iframe nằm gọn trong nền trắng */
.video-popup-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

/* Nút đóng */
.video-popup .close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s ease;
}

.video-popup .close:hover {
  color: #ff0000;
}

.video-popup .close {
  position: absolute;
  top: -20px; /* Di chuyển lên trên khỏi khung trắng */
  right: -20px; /* Di chuyển ra ngoài khỏi khung trắng */
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6); /* nền đen mờ */
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  z-index: 10000;
  transition: background-color 0.3s ease;
}

.video-popup .close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Phần tử cha của ảnh nên có position: relative */
.image-container {
  position: relative;
  display: inline-block; /* hoặc block tùy mục đích */
}

/* Nút play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 78px;
  width: 78px;
  font-size: 30px;
  line-height: 76px;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  text-align: center;
  overflow: visible;
}

/* hiệu ứng pulse toả ra */
.play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
  pointer-events: none; /* để không chắn nút */
}

/* keyframes pulse */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* keyframes pulse với tiền tố -webkit- */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.play-icon {
    position: absolute;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    right: 0;
    left: 0;
    text-align: center
}

.play-icon i {
    height: 72px;
    -webkit-text-stroke: 2px #2f55d4;
    -webkit-text-fill-color: transparent;
    width: 72px;
    font-size: 25px;
    line-height: 76px;
    display: inline-block;
    background-color: #fff
}

.play-icon i:hover {
    -webkit-text-stroke: 2px #2f55d4;
    -webkit-text-fill-color: #2f55d4
}





.testimonial-active.testimonial-activeNew .slick-dots {
    margin-top: 0px !important;
    text-align: center;
    margin-bottom: 0px !important;
    bottom: -20px;

}

.testimonial-active.slick-single .slick-dots {
  display: none !important;
}

