*{
    padding: 0;
    margin: 0;
}

body{
    /*font-family: 'Lato', sans-serif;*/
    /*font-family: 'cambria', sans-serif;*/
    /*background: #f7f5f5;*/
    /*font-family: 'Kreon', serif;*/
	font-family: 'myriad pro';
    color: #252525;
}






/*Start Navbar CSS
====================================================================*/

#menu{
    z-index: 1; 
    position: absolute; 
    width: 100%;
}

.navbar-brand > img {
    padding: 10px;
    width: 150px;
}

.navbar-brand > img {
    padding: 0px;
    width: 130px;
}

.navbar-brand {
    padding: 0px;
}

@media only screen and (min-width: 768px) {
    .navbar {
        background-color: #fff;
        border: none;
        border-radius: 0;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar-brand > img {
        padding: 5px;
        width: 165px;
    }

    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: 0;
    }

    .navbar-default .navbar-nav > li > a {
        color: #000;
        padding: 24px 20px;
        text-transform: uppercase;
        font-weight: 600;
    }


}

.navbar-default .navbar-nav > li > a {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    background-color: #F37E00;
    color: #fff;
    /*transition: color 0.1s ease;*/
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    background-color: #F37E00;
    color: #fff;
}

.dropdown-menu > li > a {
    padding: 8px 20px;
}

.social-header-icon {
    margin-bottom: 0;
    padding-top: 18px;
    text-align: right;
}

.social-header-icon li {
    padding: 0px 2px;
}

.social-header-icon li a img {
    width: 30px;
}

@media only screen and (max-width: 768px) {
    .social-header-icon {
        margin-bottom: 10px;
    }
}

/*End Navbar CSS =====================================================*/






/*Start Index Page CSS
=====================================================================*/

.parallax-backg-img{
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px 67px;
}

.parallax-title {
    color: #fff;
    font-size: 50px;
    margin: 0;
    padding-top: 17%;
    text-align: center;
}

.parallax-title kbd {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 30px;
}


.form-control, .likeBtn{
    border-radius: 3px;
}

.singleImage{
    padding-top: 15px;
    padding-bottom: 15px;
}

.aslThumbnail {
    border: 1px solid #f6f3f3;
    border-radius: 0;
}

.aslThumbnail:hover{
    /*box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);*/
    /*transition: .3s ease;*/

}

.aslThumbnail a img:hover{
    opacity: 0.85;
}

.caption p {
    /* margin-bottom: 0; */
    padding-top: 5px;
    /* font-size: 18px; */
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
}


/*End Index Page CSS ===================================================*/






/*Start footer CSS
====================================================================*/

footer {
    background: #fff none repeat scroll 0 0;
    padding-top: 40px;
}

.h4-title {
    color: #2b3b4f;
    margin-top: 0;
    padding-bottom: 0px;
    font-size: 16px;
    font-weight: bold;
}

.dbllogo {
    width: 85px;
    margin-left: 10px;
}

.ftr_menu{
    list-style: none;
}

.ftr_menu li{}

.ftr_menu li a {
    color: #000;
    font-size: 14px;
    /*font-family: calibri;*/
    /*text-transform: capitalize;*/
}

.social-icon li a img{
    width: 40px;
}



.copyright-text {
    border-top: 1px dotted #ddd;
    padding-bottom: 20px;
    margin-top: 30px;
    text-align: center;
    padding-top: 30px;
}


#topBtn {
    display: none;  /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 10px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #F37E00; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    text-decoration: none;
}

#topBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
    transition: .5s ease;
}

/*End footer CSS ====================================================*/




/*Start Home Page CSS ==================================================*/

.homeMiddleTT{
    position: relative;
}

.imageTT:hover{
    /*opacity: 0.5; */
}
.middleTextOptTT{
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    transition: .5s ease;
    /* background-color: #008CBA;*/
    /* background-color:rgba(0,140,186,0.5); */
    /*opacity: 0.5;*/
    background-color:rgba(0,0,0,0.3); /* black bacground */
}

.homeMiddleTT:hover .middleTextOptTT{
    height: 100%;
}
.textOptTT{
    white-space: nowrap; 
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.captionHeadTextOpt{
    display: block;
    font-size: 24px;
    text-align: center;
    color: #fff;
}
.captionDescTextOpt{
    text-align: center;
    display: block;
    font-size: 20px;
    color: #fff;
}

/*End Home Page CSS ===================================================*/




/*start help support css ============================================*/

.help_support {
    background: #0078D7;
    color: #fff;
    padding: 30px 0;
}

.help-support .lead {
    margin-bottom: 7px;
    padding-top: 10px;
}

.signUp-group {
    padding-bottom: 10px;
    padding-top: 16px;
}

.signUp-group .input-group-btn button{
    background: #7EBC36;
    color: #fff;  
    border: 1px solid #7EBC36;
}

.support_txt {
    margin-top: 10px;
    font-weight: 300;
    /*text-transform: capitalize;*/
}

/*end help support css ============================================*/




/*Start About Page CSS ===============================================*/

.about_banner_title {
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding-top: 7%;
    font-size: 50px;
    padding-bottom: 10%;
}

.single_part_show {
    padding: 10px;
    font-family: cambria;
}

.single_part_show h3 {
    padding-top: 8%;
    padding-bottom: 2%;
    font-family: cambria;
}

.about{
    padding-top: 3%;
}


.about-div {
    background: #fff;
    padding: 20px;
}

.about_title {
    padding-bottom: 5%;
}

.about_para{
    text-align: justify;
}

.font-icon {
    padding-top: 10px;
}

.asl_list{padding-top: 30px;}
.asl_list li{padding-bottom: 10px;}

.asl_list2{padding-left: 50px; padding-bottom: 10px;}
.asl_list2 li{padding-bottom: 10px; }

.apparel-from-bd li {
    list-style: outside none square;
    margin-left: 30px;
    padding-bottom: 3px;
}

.ul_list{text-align: justify}
.ul_list li{
    list-style: outside none square;
    margin-left: 20px;
    padding-bottom: 3px;
}

.apparel-price {
    list-style: none;
    margin-left: 15px;
}

/*End About Page CSS ===============================================*/





/*Start Contact page CSS =============================================*/

.contact_h2_title {
    /*font-family: cambria;*/
    padding-bottom:30px;
    margin-top: 0px;
}

.btn-group-lg > .btn, .btn-lg {
    border-radius: 0px;
}

.contact-div {
    background: #fff none repeat scroll 0 0;
    padding: 20px 20px;
}

.form-control:focus {
    box-shadow: none;
}

.address h6{
    color: #2B3B4F;
}



div.wpcf7-mail-sent-ok {
    border: 0px solid #398f14; 
}

div.wpcf7-response-output {
    border: 0px solid #ff0000; 
}

.asl_contact_form{
    padding: 5px 20px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: 0px solid #ddd; 
}

.nav-tabs {
    border-bottom: 0px solid #ddd; 
}

.nav-tabs > li > a {
    border-radius: 0px 0px 0 0;
}

.nav-tabs > li > a {
    border: 0px solid transparent;
}

.asl_nab_tab {
    padding-bottom: 30px;
    padding-top: 10px;
}
.asl_nab_tab li{}
.asl_nab_tab li a {
    background: #2b2c34;
    color: #fff;
    width: 160px;
    font-size: 16px;
    text-align: center;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    background: #0d73bb;
    color: #fff;
}

.nav-tabs > li > a:hover {
    background: #0d73bb;
}

.address h6 {
    color: #2B3B4F;
    font-size: 15px;
    font-weight: 300;
}

.btn_sbmt {
    border-radius: 24px;
}


/*End Contact Page CSS ===============================================*/






/*Start Site Map CSS
=============================================*/

.sitemap_nenu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sitemap_nenu li {

}

.sitemap_nenu li h4{
    padding-top: 10px;
}

.sitemap_nenu li a{
    padding-left: 20px;
    padding-bottom: 3px;
    font-size: 15px;
}

/*End Site Map CSS
===============================================*/





/*Start : Board of Directors CSS
==============================================================================*/

.thumbnail a{
    text-decoration: none;
}

.board-section{
    padding-top: 20px;
}

.caption h4{
    margin-bottom: 0px;
    font-weight: bold;
}

/*End : Board of Directors CSS
==============================================================================*/






/*Start : Company profile CSS
==============================================================================*/

.profile-section {
    padding-top: 20px;
    padding-bottom: 35px;
}

.buyer-list{padding: 0; margin: 0; list-style: none;}
.buyer-list li {
    display: inline;
    padding-right: 10px;
}

.buyer-list li img {
    width: 12%;
    padding-bottom: 10px;
}

/*End : Company profile CSS
==============================================================================*/






/*Start News & Events CSS
=======================================================*/



.newsHeading p {
    font-size: 22px;
    color: #2D3E52;
    padding: 10px 5px 0px 5px;
    line-height: 30px;
    font-weight: bold;
}

.newsDetails p {
    color: #000;
    text-align: justify;
    padding: 5px 5px 5px 5px;;
}

.readMoreBtn {
    font-size: 16px;
    padding: 6px;
    font-weight: bold !important;
    /*	border: 1px solid orange;
            border-radius: 20px;*/
}

.newsTitle {
    margin-top: 5px;
    padding-bottom: 9px;
    /*background: #F37E00;*/
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 7px;
    /*color: #fff;*/
    font-weight: ;
}

.single-news {
    border: none;
    padding: 10px 20px;
}

@media only screen and (min-width: 768px) {
    /*    .thumbSize{
            width: 350px;
            height: 190px !important;
        }*/

    .newsThumbnail {
        border: 0px solid #f6f3f3;
        padding: 20px;
        height: 435px;
    }
}

.thumbSize:hover {
    opacity: 0.5 !important;
    transition: all .6s ease;
}

.showCategory {
    /*margin-top: 109px;*/
    padding: 15px 20px;
    background: #fff;
    border-radius: 5px;
}

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

.showCategory ul li {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.showCategory ul li:last-child{
    border-bottom: 0px solid #ddd;
}

.showCategory ul li a {
    text-decoration: none;
    font-size: 16px;
}

.showCategory ul li a:hover{
    font-weight: bold;
}

.single-news .thumbnail a > img, .thumbnail > img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

.showCategory .form-inline .form-control {
    width: 180px;
    border-radius: 5px;
}

.newsThumbnail  a img{
    max-width: 370px;
    max-height: 200px;
}


/* End News & Events CSS
=======================================================*/






/*Start blog page css
==========================================*/

.blogTitle {
    text-align: left;
    border-bottom: 1px solid orange;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 2px 0 0;
    border: 1px solid #eee;
    line-height: 1;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    background: #fff !important;
    font-size: 20px;
}

.page-numbers.current, a.page-numbers:hover {
    background: #3b60c9 !important;
    color: #fff;
    text-decoration: none;
}

/*End blog page css
=====================================================*/







/*RESPONSIVE VIEW CSS*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-default .navbar-nav > li > a {
        padding: 24px 13px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .thufmbSize {
        width: 300px !important;
    }
}

@media only screen and (max-width: 767px) {
    .thufmbSize {
        width: 300px !important;
    }
}

@media only screen and (max-width: 740px) {
    .ftr_info{
        padding-top: 20px !important;
        padding-left: 20px !important;
    }

    .ftr_ul{
        padding-left: 20px !important;
    }
}
