
/*========================================================================================================
                                        defolt-css here
 ========================================================================================================*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,700,700i|Roboto:300,300i,400,400i,500,700,900');
* {
    margin: 0;
    padding: 0;
}

body { 
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    color: #242424;
    font-size: 14px;
    font-weight: 400;
        background: #f1f1f1;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

img {
    max-width: 100%;
    height: auto
}

.fix {
    overflow: hidden
}

p {
    margin: 0px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    margin-top: 0px;
    color: #242424;
    font-family: 'Roboto', sans-serif;
}

input:focus,
select:focus {
    outline: none;
}

input,
button {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

button {
    cursor: pointer;
}

a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    color: #242424;
}

a:hover {
    color: #ee81c4;
}

a:active,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

button:focus {
    outline: none;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

:before,
:after {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

div {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.black-opacity {
    position: relative;
    z-index: 9;
}

.black-opacity:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #242424;
    content: "";
    opacity: .65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.ptb-120 {
    padding: 120px 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.bg-1 {
    background: #f4f4f4;
}
.bg-2{
    background: #ee81c4;
}

.bg-fff {
    background: #fff;
}

a#scrollUp {
    position: fixed;
    right: 10px;
    bottom: 20px;
    height: 45px;
    width: 45px;
    background: #ee81c4;
    text-align: center;
    line-height: 45px;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    border: 2px solid #fff;
}

a#scrollUp:hover {
    background: #cc1022;
}

.flex-style {
    display: flex;
    justify-content: center;
    flex-direction: column;
}




/*--------header-area start--------*/
.header-top{
    border-bottom: 1px solid #eaeaea;
    background: #ee81c4;
}
.logo{
    padding: 20px 0px;
}   
.contact-info li{
    padding: 0px;
    position: relative;
    line-height: 20px;
    margin-top: 40px;
}
.contact-info li:first-child{
    padding-left: 0;
    text-align: right;
}
.contact-info li:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    content: "";
    background: #fff;
    height: 100%;
}
.contact-info li span{
    display: block;
    color: white;
}
.contact-info li a{
    color: white;
}
.contact-info li span i{
    margin-right: 5px;
}
.contact-info li:first-child:before{
    display: none;
}
.social-icon{
    padding: 40px 0px;
}
.social-icon li{
    margin-left: 10px;
}
.social-icon li a{
    height: 30px;
    width: 30px;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    border:1px solid #cacaca;
}

.social-icon li.facebook a{
    color: #4267b2;
}
.social-icon li.facebook a:hover{
    background: #4267b2;
}
.social-icon li.twitter a{
    color: #1da1f2;
}
.social-icon li.twitter a:hover{
    background: #1da1f2;
}
.social-icon li.google-plus a{
    color: #dd4e42;
}
.social-icon li.google-plus a:hover{
    background: #dd4e42;
}
.social-icon li.linkedin a{
    color: #0077b5;
}
.social-icon li.linkedin a:hover{
    background: #0077b5;
}
.social-icon li.youtube a{
    color: #ff0000;
}
.social-icon li.youtube a:hover{
    background: #ff0000;
}
.social-icon li a:hover{
    color: #fff;
    border:1px solid #fff;
}
.mainmenu li{
    padding: 0px 20px;
    position: relative;
}
.mainmenu li a{
    display: block;
    padding: 30px 0px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.mainmenu li:hover > a,
.mainmenu li.active > a{
    color: #ee81c4;
}
.mainmenu li > a:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: #ee81c4;
    content: "";
}
.mainmenu li:hover > a:before{
    width: 100%;
}
.mainmenu li > ul{
    position: absolute;
    left: 20px;
    top: 120%;
    width: 250px;
    background: #fff;
    z-index: 99;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
}
.mainmenu li:hover > ul{
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.mainmenu li > ul li{
    padding: 0px;
}
.mainmenu li > ul li a{
    padding: 3px 0px;
    text-transform: capitalize;
    font-weight: 500;
}
.mainmenu li > ul li:hover a{
    padding-left: 5px;
}
.mainmenu li > ul li a:before{
    display: none;
}
.geta_quote{
    padding: 22px 0px;
}
.geta_quote a{
    display: block;
    color: #fff;
    font-weight: 700;
    background: #ee81c4;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
}
/*--------header-area end--------*/

/*--------slider-area start--------*/
.slider-items{
    position: relative;
    z-index: 9;
}
.slider-items:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #242424;
    content: "";
    opacity: .5;
}
.slider-items img{
    visibility: hidden;
}
.slider-content{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.slider-content h2{
    font-size: 80px;
    font-weight: 700;
    line-height: 85px;
    color: #fff;
    margin-bottom: 25px;
}
.slider-content h2 span{
    display: inline-block;
    background: #ee81c4;
    padding: 10px 10px;
}
.slider-content p{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}
.slider-content a{
    padding: 15px 30px;
    background: #ee81c4;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    font-size: 16px;
    border: 2px solid #ee81c4;
}
.slider-content a:hover{
    background: transparent;
    color: #ee81c4;
}
.slider-active .owl-dots{
    position: absolute;
    left: 0;
    bottom: 20px;
    right: 0;
    text-align: center;
    width: 100%;
}
.slider-active .owl-dot{
    height: 5px;
    width: 25px;
    background: #fff;
    display: inline-block;
    margin: 0px 3px;
    border-radius: 5px;
}
.slider-active .owl-dot.active{
    background: #ee81c4;
    width: 30px;
}
/*--------slider-area end--------*/

/*--------featured-area start--------*/
.featured-area{
    padding: 50px 0px 20px;
}
.featured-wrap{
    margin-bottom: 30px;
}
.featured-img {
    overflow: hidden;
}
.featured-img > img{
    width: 100%;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}
.featured-wrap:hover .featured-img > img{
    transform: scale(1.15, 1.15) rotate(-5deg);
    -webkit-transform: scale(1.15, 1.15) rotate(-5deg);
    -moz-transform: scale(1.15, 1.15) rotate(-5deg);
}
.featured-wrap h2{
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0px 10px;
}
/*--------featured-area end--------*/

/*--------about-area start--------*/
.featured-content-area{
    padding: 130px 0;

}
.featured-content-img{
    position: absolute;
    left: 30px;
    top: 100px;
    width: 650px;
}

.featured-content-area-2{
    padding: 130px 0;

}
.featured-content-img-2{
    position: absolute;
    left: 30px;
    top: 100px;
    width: 650px;
}

.featured-content-wrap{
    padding: 30px;
}
.featured-content-wrap h3
{
    text-align: center;
}
.featured-content-wrap h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}
.featured-content-wrap h2 span{
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #ee81c4;
    text-transform: uppercase;
    line-height: 28px;
}
.featured-content-wrap p{
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 40px;
}
.featured-content-wrap a{
    display: inline-block;
    padding: 15px 30px;
    background: #ee81c4;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #ee81c4;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
}
.featured-content-wrap a:hover{
    background: transparent;
    color: #ee81c4;
}
/*--------about-area end--------*/

/*--------service-area start--------*/
.service-area{
    padding: 50px 0px 20px;
}
.section-title{
    margin-bottom: 50px;
}
.section-title h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 25px;
}
.service-wrap{
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,.1);
    padding: 70px 25px;
    margin-bottom: 30px;
}
.service-wrap h3{
    font-size: 24px;
    margin-bottom: 15px;
}
.service-wrap p{
    margin-bottom: 15px;
    text-align: justify;
}
.service-wrap a{
    display: inline-block;
    color: #ee81c4;
    font-size: 18px;
    margin-top: 10px;
}
.service-items {
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,.1);
    padding: 30px 20px 35px 80px;
    margin-bottom: 30px;
    position: relative;
}
.service-items:hover{
    box-shadow: 0px 3px 20px rgba(0,0,0,.1);
}
.service-items:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    background: #ee81c4;
    height: 3px;
    content: "";
}
.service-items:hover:before{
    width: 100%;
}
.service-items h3{
    font-size: 24px;
    margin-bottom: 15px;
}
.service-items span{
    position: absolute;
    left: 20px;
    top: 35px;
}
.service-items span:before{
    font-size: 40px;
    color: #ee81c4;
}
/*--------service-area end--------*/

/*--------about-area start--------*/
.about-area{
    padding: 100px 0px;
    overflow: hidden;
    background: url(../images/about/1.png) no-repeat center center / cover;
}
.about-content{
    margin-top: 30px;
}
.about-content h3{
    font-size: 24px;
    font-style: italic;
    line-height: 30px;
    margin-bottom: 25px;
}
.about-content p{
    margin-bottom: 10px;
}
.about-items span{
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
    color: #ee81c4;
    margin-top: 20px;
    margin-bottom: 5px;
}
.about-items p{
    font-size: 13px;
    font-weight: 600;
}
/*--------about-area end--------*/

/*--------testmonial-area start--------*/
.testmonial-area{
    padding: 100px 0px;
}
.test-img img{
    border-radius: 50%;
    width: 100%;
}
.test-content h2{
    font-size: 40px;
    font-style: italic;
    margin-bottom: 0;
}
.test-content li{
    display: inline-block;
    font-size: 18px;
    color: #e2b928;
}
.test-content p{
    margin-top: 30px;
    font-style: italic;
    opacity: .6;
    font-size: 18px;
    line-height: 28px;
    padding-right: 35px;
}
.test-content{
    position: relative;
    z-index: 9;
}
.test-content span{
    position: absolute;
    left: 0px;
    top: 50px;
    font-size: 223px;
    z-index: -9;
    opacity: .1;
}
.test-active .owl-nav div{
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    font-size: 40px;
}
.test-active .owl-nav div:hover{
    color: #ee81c4;
}
.test-active .owl-nav div.owl-next{
    left: auto;
    right: 5%;
}
/*--------testmonial-area end--------*/

/*--------spacial-area start--------*/
.spacial-area{
    padding: 120px 0px;
    //background: url(../images/bg/1.jpg)no-repeat center center / cover;
    background: white;
}
.spacial-area h2{
    font-size: 40px;
    line-height: 45px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
}
.spacial-area ul li{
    margin-bottom: 20px;
    font-style: italic;
    font-size: 18px;
    padding-left: 60px;
    position: relative;
}
.spacial-area ul li:last-child{
    margin-bottom: 0;
}
.spacial-area ul li i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    color: #ee81c4;
    border:1px solid #242424;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    text-align: center;
}
.spacial-area ul li:hover i{
    background: #ee81c4;
    color: #fff;
    border-color: #ee81c4;
}
/*--------spacial-area end--------*/

/*--------resorce-area start --------*/
#chartContainer{
    width: 100%;
    height: 380px;
}
.resorce-info{
    height: 60px;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 2px;
    cursor: pointer;
}
.resorce-info:hover{
    background: #ee81c4;
}
.resorce-info h4{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 20px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.resorce-info p{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.resorce-info:hover h4,
.resorce-info:hover p{
    color: #fff;
}
/*--------resorce-area end --------*/

/*--------expart-area start --------*/
.expart-area{
    position: relative;
    margin: 120px 0px;
}
.expart-wrap{
    padding:10px 0px;
}
.expart-wrap h2{
    font-size: 40px;
    line-height: 45px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
}
.expart-wrap p{
    margin-bottom: 30px;
}
.expart-wrap a{
    display: inline-block;
    padding: 10px 25px;
    background: #ee81c4;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    border:2px solid #ee81c4;
}
.expart-wrap a:hover{
    background: transparent;
    color: #ee81c4;
}
.expart-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 560px;
}
/*--------expart-area end --------*/

/*--------contact-area start --------*/
.contact-area{
    position: relative;
    z-index: 999;
}
.contact-area:before{
    position: absolute;
    right: 0;
    top: 6%;
    width: 60%;
    content: "";
    height: 90%;
    background: #ee81c4;
}

.contact-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 700px;
    z-index: -9;
}
.contact-wrap{
    min-height: 580px;
}
.contact-wrap h2{
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 30px;
    /*color: #fff;*/
}
.contact-wrap input,
.contact-wrap textarea{
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
    /*border: none;*/
    padding-left: 15px;
}
.contact-wrap textarea{
    height: 100px;
}
.contact-wrap button{
    padding: 10px 25px;
    background: #fff;
    text-transform: uppercase;
    color: #ee81c4;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border: 2px solid #fff;
}
.contact-wrap button:hover{
    color: #fff;
    background: #ee81c4;
}
/*--------contact-area end --------*/

/*--------team-area start --------*/
.team-area{
    padding: 120px 0px 90px;
}
.team-wrap{
    margin-bottom: 50px;
    position: relative;
}
.team-img img{
    width: 100%;
}
.team-content{
    position: absolute;
    left: 2.5%;
    width: 95%;
    text-align: center;
    background: #ff8d29;
    bottom: -20px;
    z-index: 99;
    padding: 25px 0px;
}
.team-wrap:hover .team-content{
    background: #ee81c4;
}
.team-content h4{
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
}
.team-content p{
    color: #fff;
    font-style: italic;
    font-size: 13px;
    font-weight: 500;
}
.team-content ul{
    visibility: hidden;
    transform: scaleY(0);
    transform-origin:bottom; 
    -webkit-transform: scaleY(0);
    -webkit-transform-origin:bottom; 
    -moz-transform: scaleY(0);
    -moz-transform-origin:bottom; 
    height: 0;
    transition: height .3s ease-in-out 1s;
    -webkit-transition: height .3s ease-in-out 1s;
    -moz-transition: height .3s ease-in-out 1s;
}
.team-wrap:hover .team-content ul{
    visibility: visible;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    height: auto;
    margin-top: 15px;
}
.team-content ul li{
    display: inline-block;
}
.team-content ul li a{
    display: block;
    height: 25px;
    width: 25px;
    background: #242424;
    color: #fff;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    font-size: 13px;
}
.team-content ul li a:hover{
    background: #fff;
    color: #ff8d29;
}
/*--------team-area end --------*/

/*--------nvestments-area start --------*/
.nvestments-area{
    background: url(../images/bg/3.jpg) no-repeat center center / cover;
    padding: 80px 0px 0px;
}
.nvestments-wrap{
    padding-bottom: 80px;
}
.nvestments-wrap h2{
    font-size: 40px;
    line-height: 45px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
    color: #fff;
}
.nvestments-wrap h2 span{
    color: #ee81c4;
}
.nvestments-wrap p{
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}
.nvestments-wrap ul li{
    display: inline-block;
    margin-right: 25px;
}
.nvestments-wrap ul li:last-child{
    margin-right: 0;
}
.nvestments-wrap ul li a{
    display: block;
    height: 45px;
    width: 160px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 500;
    background: #ee81c4;
    text-align: center;
    border-radius: 3px;
    color: #fff;
}
.nvestments-wrap ul li a:hover{
    background: #fff;
    color: #ee81c4;
}
.nvestments-img{
    position: absolute;
    bottom: 0;
}
/*--------nvestments-area end --------*/

/*--------blog-area start --------*/
.blog-area{
    padding: 50px 0px 90px;
}
.blog-wrap{
    margin-bottom: 30px;
}
.blog-wrap:hover{
    box-shadow: 0px 2px 25px rgba(0,0,0,0.1);
}
.blog-content{
    padding: 5px;
    border: 1px solid #e5e5e5;
    border-top: none;
}
.blog-content h3{
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    overflow: hidden;
}
.blog-content ul li{
    display: inline-block;
    opacity: .60;
    font-style: italic;
}
.blog-content ul li:before{
    content: "|";
    margin: 0px 10px;
}
.blog-content ul li:first-child:before{
    display: none;
}
.blog-content p{
    margin-bottom: 20px;
    margin-top: 15px;
}
.blog-content a.readmore{
    font-weight: 600;
    text-transform: uppercase;
}
/*--------blog-area end --------*/

/*--------footer-area start --------*/
.footer-area{
    background: url(../images/bg/4.jpg) no-repeat center center / cover;
    padding-bottom: 50px;
}
.footer-top{
    padding: 100px 0px 70px;
}
.footer-widget{
    margin-bottom: 30px;
}
.footer-widget h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 45px;
    color: #fff;
}
.footer-logo p{
    margin: 40px 0;
    color: #fff;
    font-size: 14px;
}
.footer-logo .form{
    position: relative;
}
.footer-logo input{
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 5px;
    padding: 0px;
    padding-left: 5px;
}
.footer-logo button{
    position: absolute;
    right: 3px;
    top: 5%;
    height: 90%;
    width: 60px;
    background: #ee81c4;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    border-radius: 5px;
}
.footer-menu ul li{
    line-height: 30px;
}
.footer-menu ul li a{
    display: inline-block;
    color: #fff;
}
.footer-menu ul li:hover a{
    color: #ee81c4;
}
.footer-menu ul li a i{
    margin-right: 10px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.footer-menu ul li a:hover i{
    margin-right: 5px;
}
.footer-twitter li{
    margin-bottom: 25px;
    line-height: 20px;
}
.footer-twitter li a{
    color: #fff;
    font-size: 14px;
}
.footer-twitter li a i{
    margin-right: 5px;
    font-size: 16px;
    color: #1da1f2;
}
.footer-contact ul.footer-contact-info li{
    line-height: 20px;
    margin-bottom: 15px;
    color: #fff;
}
.footer-contact ul.footer-contact-info li span{
    color: #ee81c4;
}
.footer-contact h5{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 20px;
}
.footer-contact ul.social-icon{
    padding: 0;
}
.footer-contact ul.social-icon li:first-child{
    margin-left: 0;
}
.footer-bottom{
    padding: 30px 0px;
    border-top: 1px solid #5a5e62;
    text-align: center;
}
.footer-bottom p{
    color: #fff;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
}
.footer-bottom p span{
    color: #ee81c4;
}
/*--------footer-area end --------*/

/*responsive menu*/
.menu {
    height: 40px;
    width: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ee81c4;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 8px;
    margin: 10px 0px;
    z-index: 99999999999;
    position: relative;
}

.menu li {
    height: 2px;
    width: 25px;
    background: #fff;
    margin-bottom: 2px;
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
}

ul.menu.active {
    position: fixed;
    right: 30px;
}

.menu.active li.first {
    -webkit-transform: translateY(4px) rotateZ(-135deg);
    transform: translateY(4px) rotateZ(-135deg);
    background-color: #fff;
}

.menu.active li.second {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.menu.active li.third {
    -webkit-transform: translateY(-4px) rotateZ(135deg);
    transform: translateY(-4px) rotateZ(135deg);
    background-color: #fff;
}

.header-bottom {
    position: relative;
}

.responsive-menu-area {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #ee81c4;
    top: 100%;
    padding: 20px 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform-origin: top;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
}

.responsive-menu-area.active {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.metismenu li {
    margin-bottom: 5px;
}

.metismenu li a {
    color: #fff;
    display: block;
}

.metismenu .has-arrow:after {
    right: 0;
}

.metismenu li>ul {
    padding-left: 20px;
}

/*==============================================
                home2 style here
==============================================*/
.header-area2 .logo{
    padding: 25px 0px 24px;
}
.header-area2 .mainmenu li:hover > a,
.header-area2 .mainmenu li.active > a{
    color: #fff;
}
.header-area2 .mainmenu li > ul li:hover a{
    color: #ee81c4;
}
.header-area2 .mainmenu li a:before,
.header-area2 .mainmenu li.active a:before{
    background: #fff;
    top: auto;
    bottom: 0;
}
.header-area2 .mainmenu li.active a:before{
    width: 100%;
}
.header-area2 .geta_quote a{
    border: 2px solid #fff;
}

.slider-area2 .slider-items{
    height: 840px;
}
.slider-area2 .slider-content{
    padding-bottom: 150px;
}
.slider-area2 .slider-content span{
    display: block;
    background: transparent;
    color: #ee81c4;
    font-style: italic;
    padding: 0;
}
.slider-area2 .slider-content p{
    padding: 0px 150px;
}
.slider-area2 .slider-content ul li{
    display: inline-block;
    margin: 0px 10px;
}
.slider-active .owl-nav div{
    position: absolute;
    left: 50px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
    line-height: 60px;
    font-size: 24px;
    text-align:center;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}
.slider-active .owl-nav div:hover{
    background: #ee81c4;
    color: #fff;
}
.slider-active .owl-nav div.owl-next{
    left: auto;
    right: 50px;
}
.slider-area2 .slider-active .owl-dots{
    display: none;
}
.featured-area.featured-area2{
    margin-top: -250px;
    position: relative;
    z-index: 9;
    padding-bottom: 120px;
}
.featured-wrapper{
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.featured-wrapper .featured-wrap{
    margin-bottom: 0;
}
.featured-content-area2 {
    padding: 0;
}
.featured-content-area2 .featured-content-wrap{
    height: 100%;
}
.expart-area2 .expart-img{
    width: 750px;
    left: 30px;
    z-index: -9;
}
/*------calculate-area start ------*/
.calculate-area{
    padding: 100px 0px;
    background: url(../images/bg/1.jpg)no-repeat center center / cover;
}
.calculate-wrap h2{
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 20px;
}
.calculate-wrap p{
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    padding-right: 10px;
    margin-bottom: 30px;
}
.calculate-wrap ul li{
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.calculate-wrap ul li input,
.calculate-wrap ul li select{
    background: transparent;
    height: 40px;
    width: 50px;
    border: 1px solid #616162;
}
.calculate-wrap ul li input::placeholder{
    opacity: 1;
    color: #242424;
    font-weight: 700;
    text-align: center;
}
.calculate-wrap ul li select{
    width: 90px;
    padding: 0px 15px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    color: #242424;
}
.calculate-wrap ul li p{
    height: 40px;
    border: 1px solid #616162;
    line-height: 40px;
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
    padding: 0px 20px;
    margin-bottom: 0;
    position: relative;
    top: 1px;
}
.nvestments-area2{
    padding: 0px;
}
.nvestments-area2 .contact-wrap {
    min-height: 550px;
}
.resorce-area2 .section-title h2{
    color: #fff;
} 
.header-area2 .menu{
    border: 2px solid #fff;
}
/*------calculate-area end ------*/

/*==============================================
                home3 style here
==============================================*/
.header-area3 .header-bottom{
    position: relative;
    z-index: 9;
    background: #ff8d29;
}
.header-area3 .header-bottom:before{
    position: absolute;
    right: 0;
    top: 0;
    width: 76%;
    height: 100%;
    content: "";
    background: #242424;
}
.header-area3 .logo{
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.header-area3 .logo:before,
.header-area3 .logo:after {
    position: absolute;
    right: -49px;
    top: -8px;
    border-style: solid;
    border-width: 50px;
    border-color: transparent transparent transparent #fff;
    content: "";
    z-index: 9;
}
.header-area3 .logo:after {
    right: -33px;
    top: 0;
    border-width: 42px;
    border-color: transparent transparent transparent #ff8d29;
}
.header-area3 .mainmenu li > a{
    color: #fff;
}
.header-area3 .mainmenu li:hover > a{
    color: #ee81c4;
}
.header-area3 .mainmenu li ul li > a{
    color: #242424;
}
.header-area2 .geta_quote a{
    border: none;
}
.slider-area3 .slider-items{
    height: 700px;
}
.slider-area3 {
    position: relative;
}
.slider-thumbni-area{
    position: absolute;
    bottom: 50px;
    width: 100%;
}
.slider-thumbnil-active .owl-item{
    height: 50px !important;
    width: 50px !important;
}
.slider-area3 .slider-content ul li{
    display: inline-block;
    margin: 0px 5px;
}
.slider-area3 .slider-content h2 span{
    background: transparent;
    padding: 0px;
    font-weight: 400;
    display: block;
}
.slider-area3 .slider-content p{
    font-size: 24px;
    margin-bottom: 35px;
}

.slider-thumbnil-active .item{
    cursor: pointer;
}
.slider-thumbnil-active .owl-item.active{
    border: 1px solid #fff;
}
.featured-area3 .featured-wrap{
    padding: 40px 20px;
    box-shadow: 0px 0px 25px rgba(0,0,0,.05);
}
.featured-area3 .featured-wrap.active,
.featured-area3 .featured-wrap:hover{
    background: #ee81c4;
    color: #fff;
}
.featured-area3 .featured-wrap span:before{
    font-size: 45px;
}
.featured-area3 .featured-wrap:hover h2 a,
.featured-area3 .featured-wrap.active h2 a{
    color: #fff;
}
.service-area2 .service-items{
    padding: 35px 25px;
    z-index: 9;
}
.service-area2 .service-items img{
    margin-bottom: 25px;
}
.service-area2 .service-items:before{
    width: 100%;
    height: 100%;
    background: url(../images/service/icon/7.png) no-repeat center center / cover;
    z-index: -9;
    opacity: 0;
}
.service-area2 .service-items.active:before,
.service-area2 .service-items:hover:before{
    opacity: 1;
}

/*------pricing-area start------*/
.pricing-area{
    padding: 120px 0px 90px;
}
.pricing-menu {
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.pricing-menu li{
    margin: 0px 10px;
}
.pricing-menu li:first-child{
    margin-left: 0;
}
.pricing-menu li:last-child{
    margin-right: 0;
}
.pricing-menu li a{
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    border: 1px solid #c8c8c8;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 5px;
    padding: 0px 40px;
}
.pricing-menu li.buy a,
.pricing-menu li.btc a,
.pricing-menu li a:hover{
    background: #ee81c4;
    color: #fff;
    border-color: #ee81c4;
}

.pricing-menu li select{
    width: 100px;
    height: 45px;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
    font-weight: 600;
}
.pricing-wrap{
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.05);
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}
.pricing-wrap:hover{
    box-shadow: 0px 0px 80px rgba(0,0,0,0.05);
}
.pricing-wrap h4 {
    position: absolute;
    left: -108px;
    top: 30px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    width: 100%;
    height: 50px;
    background: #ee81c4;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 50px;
    margin-bottom: 0;
}
.pricing-wrap h3{
    font-size: 73px;
    font-weight: 500;
    color: #ee81c4;
    margin-bottom: 5px;
}
.pricing-wrap h3 span.doller {
    color: #242424;
    font-size: 40px;
    position: relative;
    top: -20px;
}
.pricing-wrap h3 span.for{
    color: #9fa3a7;
    font-size: 18px;
}
.pricing-wrap p{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 25px;
}
.pricing-wrap button{
    width: 160px;
    height: 45px;
    border: 1px solid #c8c8c8;
    border-radius: 50px;
    background: transparent;
    font-style: italic;
    text-transform: uppercase;
}
.pricing-wrap button:hover{
    background: #ee81c4;
    color: #fff;
    border-color: #ee81c4;
}
/*------pricing-area end------*/

.testmonial-area2{
    padding: 100px 0;
    background: url(../images/bg/1.jpg) no-repeat center center / cover;
}
.test-images{
    width: 60px;
    height: 60px;
    margin-right: 20px;
}
.test-items i{
    color: #ee81c4;
    font-size: 60px;
    margin-bottom: 15px;
}
.test-items p{
    line-height: 30px;
    font-size: 24px;
    color: #000;
    font-style: italic;
    padding-right: 25px;
    margin-bottom: 30px;
}
.test-items h4{
    margin-bottom: 0;
    line-height: 20px;
    font-size: 18px;
    color: #ee81c4;
    font-style: italic;
    margin-top: 10px;
}
.test-items span{
    font-style: italic;
    color: #fff;
    line-height: 20px;
}
.test-active2 {
    padding-bottom: 50px;
}
.test-active2 .owl-dots{
    position: absolute;
    left: 0;
    bottom: 0;
}
.test-active2 .owl-dot{
    background: #8c8c8e;
    height: 2px;
    width: 20px;
    display: inline-block;
    margin-right: 5px;
}
.test-active2 .owl-dot.active{
    background: #ee81c4;
    width: 25px;
}
.calculate-area2{
    padding-bottom: 0;
    background: transparent;
}
.calculate-area2 .calculate-wrap{
    padding-top: 60px;
}

.quote-area{
    padding: 100px 0px;
    background: url(../images/bg/5.jpg) no-repeat center center / cover;
}
.quote-wrap h2{
    color: #fff;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 20px;
}
.quote-wrap p{
    font-style: italic;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}
.quote-wrap{
    height: 100%;
}
.quote-wrap a{
    padding: 10px 30px;
    background: #ee81c4;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    border: 2px solid #ee81c4;
    text-transform: uppercase;
}
.quote-wrap a:hover{
    background: transparent;
    color: #ee81c4;
}
.section-title2 h2{
    color: #fff;
}
.nvestments-area3 {
    padding: 120px 0px;
}
.nvestments-area3 .contact-wrap textarea{
    height: 160px;
}
.nvestments-area3 .contact-wrap{
    min-height: auto;
}

/*---------breadcumb-area start---------*/
.breadcumb-area{
    min-height: 100px;
    background: url(../images/bg/6.jpg) no-repeat center center / cover;
}
.breadcumb-area h2{
    font-size: 28px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}
.breadcumb-area ul li{
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
}
.breadcumb-area ul li a{
    display: block;
    color: #fff;
}
.breadcumb-area ul li span,
.breadcumb-area ul li a:hover{
    color: #ee81c4;
}
/*---------breadcumb-area end---------*/
.calculate-area.calculate-area2.bg-1{
    background: #f5f5f5;
}

.service-page-area{
    padding: 120px 0px 90px;
}
.service-wrappper {
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0px 1px 5px rgba(0,0,0,.1); 
}
.service-wrappper:hover{
    box-shadow: 0px 1px 25px rgba(0,0,0,.1); 
}
.service-contents{
    padding: 25px 30px;
}
.service-contents h3{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
}
.service-contents p{
    font-family: roboto;
}
.service-details {
    background: #fff;
    padding: 25px;
    box-shadow: 0px 0px 20px rgba(0,0,0,.1);
    margin-bottom: 30px;    
}
.service-details h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}
.service-details p{
    margin-bottom: 20px;
}
.service-details ul li{
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}
.service-details ul li i{
    font-size: 24px;
    color: #ee81c4;
    position: absolute;
    left: 0;
    top:0;
}
.service-details-img{
    background: url(../images/service/1.jpg)no-repeat center center / cover;
    height: 100%;
}

/*--------shop-area start--------*/
.shop-area{
    padding: 50px 0px 50px;
}
.shop-wrap{
    margin-bottom: 30px;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,.15);
}
.shop-wrap:hover{
    border-color: #ee81c4;
}
.shop-img{
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: #f4f4f4;
}
.shop-img ul{
    position: absolute;
    left: -100%;
    bottom: 0;
    background: #ee81c4;
    max-width: 100px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 10px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.shop-wrap:hover .shop-img ul{
    left: 2px;
} 
.shop-img ul li{
    padding: 5px 0px;
    border-bottom: 1px solid #fff;
}
.shop-img ul li:last-child{
    border-bottom: none;
}
.shop-img ul li a{
    color: #fff;
}
.shop-content{
    padding: 20px 15px;
}
.shop-content h3{
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    text-transform: capitalize;
}
.shop-content ul{
    overflow: hidden;
    margin-bottom: 15px;
}
.shop-content ul li.pull-left{
    font-size: 14px;
    color: #333;
}
.shop-content ul li.pull-right{
    font-size: 18px;
    font-weight: 500;
    color: #ee81c4;
}
.shop-content ul li i{
    color: #ee81c4;
}
/*--------shop-area end--------*/

/*--------sidebar-area start--------*/
.search-wrap form{
    position: relative;
}
.search-wrap input{
    height: 50px;
    width: 100%;
    border: 1px solid #e5e5e5;
    padding: 0px 50px 0px 15px;
}
.search-wrap button{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #ee81c4;
    color: #fff;
    border: none;
    font-size: 18px;
}
.widget {
    margin-bottom: 45px;
}
.widget h3{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}
.catregory-wrap li{
    line-height: 35px;
    font-size: 16px;
    border-bottom: 1px solid #e5e5e5;
}
.catregory-wrap li:last-child{
    border-bottom: none;
}
.post-wrap ul li{
    margin-bottom: 20px;
    overflow: hidden;
}
.post-img {
    float: left;
    margin-right: 15px;
}
.post-content{
    overflow: hidden;
    padding: 0px;
}
.post-content a{
    display: inline-block;
    font-size: 12px;
    /*font-weight: 500;*/
}
.post-content p{
    color: #cc1022;
    font-style: italic;
    font-size: 10px;
    text-align: right;
}
.sidebar-newsletter p{
    margin-bottom: 20px;
}
.sidebar-newsletter input{
    width: 100%;
    height: 45px;
    background: #e5e5e5;
    border: none;
    padding-left: 10px;
    margin-bottom: 10px;
}
.sidebar-newsletter button{
    border: 2px solid #ee81c4;
    padding: 10px 30px;
    background: #ee81c4;
    color: #fff;
    font-size: 16px;
}
.sidebar-newsletter button:hover{
    background: transparent;
    color: #ee81c4;
}
.tag-wrap ul li{
    display: inline-block;
    margin-bottom: 5px;
}
.tag-wrap ul li a{
    display: block;
    padding: 3px;
    border: 1px solid #e5e5e5;
    opacity: .5;
}
.tag-wrap ul li a:hover{
    border-color: #ee81c4;
    opacity: 1;
    background: #ee81c4;
    color: #fff;
}
.service-wrappper img{
    width: 100%;
}
/*--------sidebar-area end--------*/
.blog-details-area{
    padding: 20px 0px;
}
.blog-details-wrap{
    background: #fff;
    margin-bottom: 50px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.blog-details-wrap img{
    /*width: 100%;*/
}
.blog-details-wrap h3{
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0px;
}
.blog-details-wrap ul{
    margin-bottom: 25px;
}
.blog-details-wrap ul li{
    display: inline-block;
    font-size: 18px;
    font-style: italic;
}
.blog-details-wrap ul li a{
    opacity: .6;
}
.blog-details-wrap ul li:before{
    content: "|";
    margin:0px 10px;
    opacity: .6;
}
.blog-details-wrap ul li:first-child:before{
    display: none;
}
.blog-details-wrap p{
    margin-bottom: 25px;
}
.blog-details-wrap blockquote{
    font-style: italic;
    font-size: 18px;
    color: #ee81c4;
    line-height: 28px;
    margin-bottom: 40px;
    display: block;
}
.blog-details-wrap blockquote i {
    font-size: 40px;
    position: relative;
    top: 20px;
    color: #242424;
    opacity: .1;
}
.comment-form-area{
    background: #fff;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
h3.blog-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 600;
}

ol {
    list-style: none;
}

.comment-wrapper {
    position: relative;
}

.comments-reply {
    margin-top: 10px
}

.comment-wrap {
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    padding: 30px;
}

.comment-theme {
    float: left;
    margin-right: 30px;
}

.comment-main-area {
    overflow: hidden;
}

.comment-image {
    overflow: hidden;
}

.comment-wrap:hover .comment-image {
    border-color: #333;
}

.comment-wrap1 {
    margin-left: 70px;
    position: relative;
}

.comment-wrap2 {
    margin-left: 140px;
    margin-bottom: 0px;
}

.sewl-comments-meta h4 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
}

.sewl-comments-meta span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ee81c4;
    font-weight: 500;
}

.comment-area p {
    margin-bottom: 25px;
}

.comments-reply a {
    position: absolute;
    right: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    top: 0;
}
.comment.even.thread-even.depth-1 {
    margin-top: 40px;
}
.sewl-comment-form {
    margin-top: 50px;
}
.sewl-form-inputs input,
.sewl-form-textarea textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    padding-left: 20px;
    margin-bottom: 30px;
}

.sewl-form-textarea textarea {
    height: 230px;
}

.form-submit input {
    height: 50px;
    width: 180px;
    text-align: center;
    line-height: 50px;
    border: none;
    background: #ee81c4;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.form-submit input:hover {
    background: #333;
}

.blog-active {
    margin-bottom: 50px;
}

.blog-active .blog-details-img {
    margin-bottom: 0px;
}

/*-------contact-area start-------*/
.contact-page-area{
    padding: 120px 0px 70px;
}
.contact-form{
    padding: 30px 20px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.contact-form h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.contact-form h3 span{
    color: #ee81c4;
}
.contact-form p{
    margin-bottom: 30px;
}
.contact-form input,
.contact-form textarea{
    height: 45px;
    width: 100%;
    border: 1px solid #e5e5e5;
    padding-left: 10px;
    margin-bottom: 25px;
}
.contact-form textarea {
    height: 200px;
}
.contact-form button{
    padding: 10px 30px;
    background: #ee81c4;
    color: #fff;
    font-size: 16px;
    border: none;
    border:2px solid #ee81c4;
}
.contact-form button:hover{
    color: #cc1022;
    background: transparent;
}
.contact-page-info{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    padding: 30px 20px;
    margin-bottom: 50px;
}
.contact-page-info h3{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}
.contact-page-info ul li{
    position: relative;
    padding-left: 50px;
    line-height: 35px;
    margin-bottom: 20px;
    font-size: 18px;
}
.contact-page-info ul li i{
    height: 35px;
    width: 35px;
    line-height: 35px;
    color: #fff;
    background: #ee81c4;
    text-align: center;
    position: absolute;
    left: 0;
    border-radius: 50%;
    font-size: 18px;
}
.border-bottom{
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 60px;
    padding-bottom: 60px;
}
#googleMap{
    width: 100%;
    height: 600px;
}
/*-------contact-area end-------*/
aside.floating {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: #ee81c4 ;
    -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    font-size: 1.2em;
}
aside.floating div section.inside>a {
    text-transform: capitalize;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
}
aside.floating div section.inside>a strong {
    font-size: 1.3em;
}
.floating>div>div {
    padding: 10px;
    text-align: center;
    border-right: 1px dotted #ccc;
}
.floating>div>div:last-child {
    border-right: none;
}

.sidebar-area .post-item img
{
    width: 50px;
}


.panel {
    margin-bottom: 18px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.panel-default {
    border-color: #ddd;
}
.panel-body {
    padding: 15px;
}
.panel-body img {
    margin-right: 5px;
}
.img-thumbnail {
    border: none;
    max-width: 100%;
    padding: 1px;
    border: 3px solid #ececec;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.well {
    padding: 8px;
    line-height: 18px;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.page_active {
    background-color: #2293c4;
    border-color: #2293c4;
    color: #fff;
}
.page_number {
    padding: 6px 12px;
    border: 1px solid #ddd;
    color: #02559f;
}
.dieuhuong
{
    padding: 20px;
    display: block;
    float: left;
    width: 100%;
}
.ss1-hotro {
    padding: 0 20px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}
.ss1-hotro p
{
    margin-bottom: 20px;
    font-size: 16px;
    width: 100%;
}
.topbgnew2 h1 a {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    background: #ee81c4;
    width: 472px;
    line-height: 33px;
    color: #fff;
    border-radius: 21px;
    padding-top: 2px;
    margin-bottom: 12px;
    text-align: center;
}
.info_contact {
    display: inline-flex;
    list-style: none;
    text-align: center;
    font-weight: bold;
}
.info_contact .item {
    padding-right: 20px;
}
.info_contact .hotline {
    color: #f00;
}
.info_contact .icon {
    height: 50px;
    .: ;
    padding-left: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 50px;
    font-size: 30px;
    line-height: 50px;
}
.info_contact .facebook {
    color: #0055a5;
}
.info_contact .youtube {
    color: #ec5c42;
}
.jointeam, .jointeam:visited {
    background: #ee81c4;
    padding: 20px;
    color: #fff;
    font-size: 21px;
    border-radius: 36px;
}
.btn_dangky
{
    display: block;
    /*width: 100%;*/
    padding-top: 50px;
    margin: auto;
}

.login-box {
    width: 500px;
    margin: auto;
}
.bg-lavender {
    background-color: #eeeeee;
}
.nv-info {
    border-width: 1px;
    border-style: solid;
    border-color: #dcdcdc;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #f7f7f7;
    color: #333;
    padding: 10px;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.form-control {
    display: block;
    width: 100%;
    height: 42px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
.info_name
{
    display: block;
    width: 100%;
    padding-bottom: 30px;
}
.info_name p
{
    font-size: 24px;
    font-weight: bold;
    padding: 10px 0 10px 0;
}
.info_name span
{
    font-size: 18px;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.news_column {
    padding: 10px;
    width: 100%
}
.entry-item {
    position: relative;
    margin: 2%;
    overflow: hidden;
    cursor: pointer;
}
.entry-item:hover {
    box-shadow: 0px 0px 20px rgba(0,0,0,.15);
}
.entry-thumb {
    overflow: hidden;
    max-height: 110px;
}
.entry-item img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.entry-content {
    background: #fff;
    padding: 25px 0 0;
    border-top: none;
    position: relative;
}
.entry-title {
    font-size: 13px;
    height: 30px;
    overflow: hidden;
    font-weight: 700;
    margin: 0 0 5px;
    padding: 0 5px;
    text-transform: none;
}
.course-price {
    padding: 12px 15px;
}
.course-detail {
    content: "";
    width: 100%;
    display: table;
    border-top: 1px solid #e5e4e9;
    margin: 0;
    padding: 0 15px;
    text-align: center;
}
.course-price .price {
    color: #2c3e50;
    float: left;
    font-weight: 700;
    letter-spacing: 0.5px;
        width: 50%;
}
.course-price .rating {
    float: right;
    padding-top: 2px;
}
.course-price .rating > * {
    color: #f39c12;
    font-size: 14px;
}
.course-detail li:first-child {
    text-align: left;
    width: 40%;
}
.course-detail li {
    border-right: 1px solid #e5e4e9;
    float: left;
    font-size: 12px;
    list-style: outside none none;
    padding: 15px 0;
    text-transform: capitalize;
}
.course-detail li:last-child {
    border: medium none;
    width: 20%;
}

@media (min-width: 992px)
{
    .col-md-8 {
        width: 33.33333333%;
        flex: none;
    }
}

.course-category {
    color: #fff !important;
    background-color: #3498db;
    padding: 3px 5px;
    position: absolute;
    text-align: center;
    top: -10px;
    right: 0;
    border-radius: 5px 0px;
    z-index: 3;
}
.course-author {
    font-size: 10px;
    color: #999;
    float: left;
    display: block;
    padding: 0 15px;
    text-transform: capitalize;
    height: 48px;
    overflow: hidden;
        width: 100%;
}
.course-detail li:nth-child(2) {
    width: 39%;
}

.bodytext {
    word-break: keep-all;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    line-height: 1.7em;
    padding: 10px;
}
figure.center {
    float: none;
    background: transparent;
    margin: 0 auto 10px;
    padding-top: 0;
    text-align: center;
}
figure.article {
    background-color: #939393;
}
figure {
    position: relative;
    padding: 3px;
    display: block;
    margin: 5px 10px 10px 0;
    text-align: center;
}
.table-bordered {
    border: 1px solid #ddd;
}
.section-right-name {
    /* background: #e6e6e6 none repeat scroll 0 0; */
    border-bottom: 1px solid #d5d4d4;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 10px 20px 10px 10px;
    position: relative;
    z-index: 2;
    /* margin-top: 20px; */
    margin-bottom: 10px;
}
.learn-outline-list {
    font-size: 13px;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.learn-lesson-wr {
    color: #4c4c4c;
    display: block;
    padding: 9px 10px 9px 40px;
    position: relative;
}

.learn-outline-item {
    border-bottom: 1px solid #d5d4d4;
    padding: 10px 0 10px 0;
}
.panel-body ul {
    margin: 0;
    padding: 0;
}
.lesson-process-wr {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: block;
    height: 20px;
    left: 20px;
    margin-left: -10px;
    padding: 1px;
    position: absolute;
    top: 17px;
    width: 20px;
    z-index: 1;
}
.lesson-process-percent.percent-100 {
    background-color: #54b551;
    border-radius: 8px;
}

.lesson-process-percent {
    background-color: #fff;
    border-radius: 8px;
    display: block;
    height: 16px;
    text-align: center;
    width: 16px;
}
.scorm-right-action > li {
    float: left;
    margin-right: 15px;
}
.panel-body ul li:last-child {
    margin-bottom: 0;
}
.learn-outline-list .btn {
    padding: 0px 7px;
    font-size: 13px;
}
.learn-lesson-wr .lesson-process-percent .fa, .lesson-process-wr .lesson-process-percent .fa {
    color: #fff;
    display: block;
    font-size: 11px;
    line-height: 16px;
}
.learn-lesson-wr .fa {
    color: #8cbfe1;
    font-size: 14px;
}
.img-thumbnail {
    border: none;
    max-width: 100%;
    padding: 0px;
}
.fl {
    float: left;
}
.section
{
    width: 100%;
}
.learn-outline-item img
{
    margin-left: 40px;
    margin-right: 40px;
}
.scorm-right-name
{
    font-size: 18px;
}

.panel-primary {
    border: 1px solid #0075bd;
}

.panel-primary>.panel-heading {
    background: #0075bd;
    border: 1px solid #fff;
}
.panel-primary>.panel-heading {
    color: #fff;
    background-color: #428bca;
    border-color: #428bca;
}
.panel-heading {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%) !important;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 10px;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.sanpham
{
    width: 100%;
}

.item-menu {
    float: left;
    padding-right: 10px;
    padding-bottom: 5px;
}
.dropdown-menu>li>a {
    min-height: 25px;
    line-height: 25px;
}
.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;

    white-space: nowrap;
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-group li
{
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    cursor: pointer;
    color: #428bca;
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    /*border: 1px solid #ddd;*/
}
.list-group li a
{
    font-size: 16px;
    color: #333;
}

@media (min-width: 992px)
{
    .col-md-12 {
        width: 50% !important;
    }
}

.hide
{
    background: #ccc;
}

.form-group
{
    width: 100%;
}
.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 31px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}
.bold-16
{
    font-weight: bold;
    font-size: 16px;
}
.search_main {
    display: block;
    width: 100%;
    position: relative;
}
.search_1, .search_2 {
    width: 50%;
    float: left;
    padding: 5px;
}
.search_tk {
    padding-bottom: 5px;
}

.choose_data_list
{
    padding-top: 5px !important;
    position: absolute;
    z-index: 999;
}
.choose_data_list li
{
    padding: 5px;
    background: #e9ecef;
    border-radius: 5px;
    border: 1px solid #e9ecef;
    cursor: pointer;
}
.choose_data_list li:hover
{
    border: 1px solid #007bff;
}
.cat_news
{
    height: 72px;
    overflow: hidden;
        text-align: justify;
}
.img_news
{
    height: 200px;
    overflow: hidden;
}
.product_des ul
{
    list-style: outside;
    padding-left: 30px;
}
.btn
{
    font-size: 18px;
    cursor: pointer;
}
.dropdown-menu>li>a
{
    font-size: 18px;
}
.dropdown-toggle::after
{
    display:none;
}

.btn .caret {
    margin-left: 0;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.lecture_previous:hover, .lecture_complete {
    background-color: #ee81c4;
    color: white;
}
.lecture-title.active
{
    background-color: #ee81c445 !important;
}
.product-quantity
{
    border-radius: 5px;
    text-align: center;
}
.product_info li
{
    padding-top: 10px;
}

.lzd-nav-cart {
    display: inline-block;
    height: 38px;
    width: 40px;
    position: relative;
    float: right;
}

.lzd-nav-cart .cart-icon {
    position: absolute;
    background-image: url(../../images/cart.png);
    background-size: cover;
    width: 29px;
    height: 26px;
    left: 50%;
    top: 50%;
    <!-- margin: -12px 0 0 -14px; -->
}

.lzd-nav-cart .cart-num {
    position: absolute;
    background: #ffc107;
    color: #fff;
    top: 30px;
    font-weight: 400;
    right: -15px;
    text-align: center;
    border: 3px solid #ffc107;
    /* font-size: 13px; */
    width: 20px;
    height: 20px;
    line-height: 14px;
    border-radius: 50%;
    display: none;
}

.clear
{
    clear: both;
}

.alert 
{
    padding: 10px;
    border:none;
}

.alert h2
{
    font-size: 16px;
    margin-bottom: 0px;
}

.block-ulti ul li {
    line-height: 30px;
}

.block-ulti i {
    font-size: 18px;
    text-align: center;
    width: 30px;
    margin-right: 5px;
}
.block-ulti p {
    font-weight: bold;
    display: inline;
}

.block-ulti a {
    color: #006aed;
    margin: 30px 0 20px 0;
    display: inline-block;
}

 .btn-coupon {
    color: #464646;
    background-color: #ccc;
}

.block-share {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
}

.block-price {
    width: 100%;
}
.big-price {
    font-size: 32px;
    font-weight: bold;
    float: left;
}
.big-price sup {
    font-size: 16px;
}
.u-detail-tea {
    float: left;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.u-detail-students {
    margin-top: 20px;
    margin-bottom: 20px;
    float: left;
}
.u-sm-right
{
    padding-top: 20px;
}

.block-buy {
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    /* background: #fff; */
    padding: 20px 15px 5px 15px;
    top: -50px;
    position: relative;
}

.product_des
{
    background: #fff;
    padding: 20px;
}
.sidebar-area
{
    background: #fff;
    padding: 10px;
}




/* Hide the images by default */

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.mySlides img
{
    width: 100%;
}

.mySlides img:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  transition: transform .5s ease;
}

.mySlides
{
    height : 230px;
    overflow: hidden;
}

.mySlides_1
{
    max-height : 330px;
    overflow: hidden;
}

.quantity {
    opacity: 1;
    display: inline-block;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1em;
    white-space: nowrap;
    vertical-align: top;
    height: 40px;
}

.is-form, button.is-form, input[type=submit].is-form, input[type=reset].is-form, input[type=button].is-form {
    overflow: hidden;
    position: relative;
    /* background-color: #f9f9f9; */
    text-shadow: 1px 1px 1px #fff;
    color: #666;
    /* border: 1px solid #ddd; */
    padding-left: 20px;
    padding-right: 20px;
    text-transform: none;
    font-weight: 400;
    /* border-right: 0!important; */
    cursor: pointer;
}

.quantity .minus, .quantity .plus {
    padding-left: .5em;
    padding-right: .5em;
}

.slogan
{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #f8f9fa;
    <!-- font-family: cursive; -->
}
.img_news img
{
    width: 100%;
}
.progress
{
    height: auto !important;
}

.progress-bar
{
    border-radius: 50px;
}


.learn-bottom {
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
        position: absolute;
    bottom: 0;
    width: 99%;

}
.ua-btn-bn {
    float: left;
}

.ua-btn-bn a {
    border: 1px solid #000;
    background: #464646;
    color: #cbcbcb;
    padding: 7px 10px;
    margin-right: 15px;
    width: 100px;
    text-align: center;
    display: inline-block;
}
.ua-btn-bn p, .ua-btn-sv p {
    display: inline-block;
}
.ua-btn-bn i {
    width: 14px;
}

.ua-btn-qa-bm a {
    background: #3c3c3c;
    padding: 7px 10px;
    display: inline-block;
    float: left;
    margin: 0 10px;
    color: #fff;
}
.ua-btn-qa-bm p, .ua-btn-ap-rp p {
    display: inline-block;
}
.ua-btn-qa-bm i {
    font-size: 20px;
    margin-left: 5px;
}

.ua-btn-ap-rp {
    display: inline-block;
    float: right;
}

.ua-btn-ap-rp {
    text-align: right;
}
.ua-btn-ap-rp a {
    background: #3c3c3c;
    padding: 7px 10px;
    display: inline-block;
    margin: 0 10px;
    color: #fff !important;
}

.ua-btn-qa-bm p, .ua-btn-ap-rp p {
    display: inline-block;
}
.ua-btn-ap-rp i {
    font-size: 20px;
    margin-left: 5px;
}

.sidenav2 {
    height: 100%;
    width: 350px;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 40px;
    z-index: 99;
}

.sidenav2 .closebtn {
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 36px;
}
.u-video-qa-title {
    position: absolute;
    left: 31%;
    top: 2%;
    font-size: 20px;
    font-weight: bold;
}
.u-video-qa-block {
    padding: 20px;
    display: inline-block;
    width: 100%;
    border: 1px solid #ccc !important;
    margin-top: 10px !important;
    background: #fff;
}
.u-v-q-box {
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
}
.u-v-q-box a {
    padding: 10px 20px;
    background: #f26c4f;
    text-align: center;
    float: right;
    color: #fff;
    margin-top: 10px;
}
.uv-box-qa-an {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.uv-box-qa {
    display: inline-block;
    width: 100%;
}
.uv-box-hv-q {
    display: inline-block;
    width: 100%;
    overflow-wrap: break-word;
}
.uv-box-hv-q p {
    margin: 5px 0;
    display: block;
}
.uv-box-qa a {
    color: #0b9bd5;
    margin: 5px 0;
    display: block;
}
.uv-box-an {
    margin-left: 40px;
}
.uv-box-txt a {
    padding: 5px 15px;
    background: #f26c4f;
    text-align: center;
    float: right;
    color: #fff;
    margin-top: 10px;
}

.uv-box-hv img {
    float: left;
}
.uv-name-hv p, .uv-name-gv p{
    float: left;
    font-weight: bold;
    color: #0f5790;
}

.uv-name-hv span, .uv-name-gv span {
    float: right;
    font-size: 13px;
    color: #92979e;
}

.btn-learn {
    color: #fff !important;
    font-weight: bold;
    background: #f26c4f;
    padding: 15px;
    text-align: center;
    border-radius: 3px;
    margin-right: 10px;
    width: 100%;
    margin-top: 0px !important;
}

#content-video iframe video
{
    width: 100%;
}

@media (max-width: 768px)
{
    .contact-info li:first-child
    {
        text-align: center !important;
    }

    .featured-content-area
    {
        padding: 50px 0px !important;
    }

    .section-title
    {
        margin-bottom: 20px !important;
    }
    .section-title h2, .contact-wrap h2
    {
        font-size: 20px !important;
    }
    .featured-area
    {
        padding: 20px 0px 20px !important;
    }
    .about-area, .testmonial-area, .spacial-area, .contact-area, .blog-area
    {
        padding: 20px 0px !important;
    }
    .blog-wrap
    {
        margin: 5px;
    }

    .mobile-hidden
    {
        display: none !important;
    }

    .mobile-display
    {
        display: table-row !important;
    }
    .table td, .table th
    {
        padding: 2px;
    }
    .mobile-td
    {
        border-top: none !important;
    }
    #hachium-active-course
    {
        min-height: 0px;
    }
    #hachium-active-course h3
    {
        font-size: 18px;
    }
    .breadcumb-area ul li
    {
        font-size: 12px;
    }
    .u-detail-tea, .u-detail-students
    {
            margin: 5px;
    }
    .block-buy
    {
        top: 0px;
    }
    #content-video iframe
    {
        min-height: 0px !important;
    }
    .nav-icon-back p
    {
        display: none !important;
    }
    #menu-list, #lecture-sidebar-left
    {
        display: none ;
    }
    .ua-btn-bn
    {
        width: 40%;
    }
    .ua-btn-ap-rp
    {
        width: 60%;
    }
    .ua-btn-ap-rp a
    {
        float: left;
        padding: 5px 0px 5px 0px;
    }
    .sidenav2
    {
        width: 100%;
    }
    .featured-content-wrap
    {
        padding: 10px;
    }
    .floating>div>div
    {
        padding: 2px;
    }
    aside.floating div section.inside>a strong
    {
        font-size: 16px;
    }
    #shopping-cart
    {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    #shopping-cart table td
    {
        padding: 1px !important;
    }
    .tbl-cart
    {
        font-size: 11px !important;
    }
    #shopping-cart table td
    {
        border-top: 1px solid #ccc;
    }
    #page
    {
        margin: 10px 0 10px 0 !important;
    }
    #orderPrint dt, #orderPrint dd
    {
        width: auto !important;

    }
    #orderPrint dd
    {
        font-weight: 100 !important;
    }
    .profile-main
    {
        margin-top: 10px;
    }

    .cart_mobile
    {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 70%;

    }
    .cart_mobile .contact-info li
    {
        color: #000 !important;
        margin: 0px !important;
        line-height: 20px !important;
        font-size: 11px !important;
    }
    .cart_mobile .social-icon
    {
        padding: 0px !important;
    }
    .cart_mobile .lzd-nav-cart .cart-icon
    {
        top: 30% !important;
    }
    .cart_mobile .lzd-nav-cart .cart-num
    {
        top: 0px !important;
    }
}

.box-normal {
    margin: 0px 0;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
    border: 1px solid #ddd !important;
}

.box-heading-free {
    border-bottom: solid 2px #ee81c4;
    padding-bottom: 1px;
}
.box-normal .nav-tabs > li.active > a {
    background: #ee81c4;
    border-color: #ee81c4;
    color: #fff;
    cursor: pointer;
}
.box-normal .nav-tabs > li > a {
    padding: 7px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    border-color: #fff;
    color: #ee81c4;
    cursor: pointer;
}
.box-normal .box-padd {
    padding: 7px 7px 20px 7px;
}
.le-detail
{
    background: url(http://homeschoolemit.com/images/bia/blue-abstract-acrylic-brush-stroke-textured-background_53876-86373.jpg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 100px;
    padding-right: 100px;
}

.le-detail h3
{
    text-align: center;
    padding-bottom: 30px;
    color: #28a745;
}
.le-img
{
    float: left;
    width: 30%;
}
.le-img img
{
    border-radius: 50%;
    width: 50%;
    float: right;
    margin-right: 20px;
}
.le-content
{
    float: left;
    width: 65%;
    background: white;
    /* margin: 20px; */
    padding: 20px;
    border-radius: 20px;
}
.le-title
{
    border-bottom: 3px solid #28a745;
    /* background-color: white; */
    font-size: 20px;
    line-height: 50px;
}
.le-mota
{
    font-size: 14px;
    line-height: 20px;
}