/*  =============================

    Default Values: 

    Font Family                 : Sriracha

    Yellow                      : rgb(243, 185, 7)      (Buttons, Icons, Links, Lines & Backgrounds)
    Steel Gray                  : #41464b               (Headings)
    Blue Bayoux                 : #64707b               (Paragraphs)
    White                       : #ffff                 (Text with Black Backrounds)
    Black                        : #000          
    

=================================*/


/*===================================
                GENERAL
==================================*/
html,
body {
    height: 100%
}

body {
    font-family: "Roboto Condensed", "sans-serif";
}

h3 {
    color: #41464b;
    text-transform: uppercase;
}


/*  =============================
            PARALLAX (Generic)
=================================*/
.bg-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/*  =============================
            ANIMATE 
=================================*/
#home-cover,
#home-heading,
home-btn {
    animation-duration: .5s;
}

#home-cover {
    animation-delay: .1s;
    animation-duration: .5s;
}

#home-heading {
    animation-delay: .5s;
}

#home-btn {
    animation-delay: .1s;
}

/*  =============================
            Home
=================================*/
#home {
    height: 100%;
}

#home-cover {
    height: 100%;
    background-image: url("../img/bgr1.jpg");
}

#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
}

#home-content-box-inner {
    display: table-cell;
    vertical-align: middle;
}

#home-heading h3 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    text-transform: uppercase;
}



/*  =============================
            BUTTONS (Generic)
=================================*/
.btn-general {
    border-color: #fff;
    border-width: 2px;
    border-radius: 0;
    padding: 12px 26 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-white {
    background-color: rgb(75, 80, 85);
    border-color: #fff;
}
.btn-yellow{
    border-color: rgb(243, 185, 7);
    color: rgb(243, 185, 7);
}

.btn-white:hover,
.btn-white:focus {
    background-color: #fff;
    color: #41464b;
}

.btn-blue {
    border-color: rgb(243, 185, 7);
    color: rgb(243, 185, 7);
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: rgb(243, 185, 7);
    color: #fff;
}
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    padding: 3px 15px;
    border-radius: 0;
    display: none;
}
.btn-submit {
    border-color: rgb(243, 185, 7);
    color: rgba(0, 0, 0, 0.1);
}
/*  =============================
            CONTENT (Generic)
=================================*/
.content-box {
    padding: 60px 0 60px 0;
}

.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
}

.content-title-underline {
    width: 30px;
    height: 3px;
    background-color: rgb(243, 185, 7);
    margin: 0 auto 30px auto;
    border-radius: 80px;
}
.content-title h4 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
    padding-top: 200px;
}

/*  =============================
            SERVICES
=================================*/

.service-item {
    padding: 20px 0 20px 0;
    margin-bottom: 20px;
    cursor: pointer;
    margin-left: 170px;
}

.service-item-icon i {
    color: rgb(243, 185, 7);
    float: left;
    padding: 15px;
    margin-right: 25px;
    width: 75px;
    height: 75px;
    text-align: center;
}

.service-item:hover .service-item-icon i {
    color: #fff;
    background-color: rgb(243, 185, 7);
}

.service-item-title h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 21px 0 10px 0;
}

.service-item-desc p {
    margin: 0;
    padding-left: 85px;
}


/**************************************
            ABOUT

***************************************/

#about-bg-diagonal {
    width: 60%;
    height: 700px;
    float: right;
    background-image: url(../img/abouts.jpg);
    border-left: 200px solid #fff;
    border-top: 700px solid transparent;    
 
}
#about-content-box {
    float: left;
    height: 700px;
}

#about-content-box-outer {
    width: 100%;
    height: 100%;
    display: table;
}

#about-content-box-inner {

    display: table-cell;
    vertical-align: middle;

}

#about .content-title h3 {
    text-align: left;
}

#about .content-title-underline {
    margin: 0 0 30px 0;
}

.about-desc p {
    margin-bottom: 30px;
}

/*  =============================
            Work section
=================================*/
.row.no-gutters [class*=col-]{
    padding-left: 0;
    padding-right: 0;
}
.img-wrapper {
    overflow: hidden;
}
.img-wrapper img {
    transition: transform .5s ease;
}
.img-wrapper img:hover {
    transform: scale(1.5)
}


/**************************************
            Brands
***************************************/
.brands {
    padding: 40px 0;
}
.owl-theme .owl-dots .owl-dot span {
    background: rgb(243, 185, 7);
}
.owl-theme .owl-dots .owl-dot span:hover {
    background: rgb(0, 0, 0, 1);
}
.active span {
    background: rgb(0, 0, 0, 1) !important;
}
.owl-dot:hover span {
    background: rgb(0, 0, 0, 1)!important;
}
/*  =============================
            SOCIAL
=================================*/

.social-list {
    padding left: 0;
}

.social-list li {
    list-style: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    margin-top: 10px;
}

.social-icon i {
    font-size: 40px;
}

.icon-gray i {
    color: #64707b;
}
.icon-white i {
    color: #fff;
}

.social-icon i:hover {
    color: rgb(243, 185, 7);
}

/*  =============================
            Contact
=================================*/

footer {
    background-color: #41464b;
    padding-top: 50px;
    border-top: 5px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
#contact-left {
    margin-left: 30px;
}
#contact-right {
    margin-right: 70px;
}
#contact-left h3, #contact-right h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700px;
}
#contact-left p {
    color: #fff;
    margin-bottom: 5px;
}
#contact-info {
    background-image: url("../img/world-map.png");
    background-repeat: no-repeat;
    background-size: contain;
}

address {
    color: #fff; 
}

address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}
form .form-control {
    background: transparent;
    border-radius: 0;
    border-color: #fff;
    font-size: 17px;
    font-weight: 300;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #fff;
}

/*  =============================
            FOOTER
=================================*/

#footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    margin-top: 60px;
}

#footer-copyrights p {
    margin: 0;
    color: #fff;
}

#footer-menu {
    float: left;
    color: #fff;
    font-size: 16px;
    font-weight: 300px;
}
#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#footer-menu ul li {
    display: inline-block;
}
#footer-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin: 0 20px;
    text-decoration: none;
}
#footer-menu a:hover {
    color: rgb(243, 185, 7);
}



/*  =============================
          NAVIGATION
=================================*/

.navbar {
    padding: 20px 0;
    transition: all .5s ease-in-out;
}
.navbar-brand {
    padding: 10px 15px;
}
.pc-top-nav {
    background: rgba(0, 0, 0, 0.7);
    padding: 7px 0;
}
.pc-nav-wrapper {
    padding: 0 85px;
}
.navbar-nav {
    float: right;
}
.navbar-nav > li > a {
    color: rgb(243, 185, 7);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
    background: none;
    color: #fff;
}
.navbar-toggle {
    background-color: rgb(0, 0, 0, 0.1);
    border: 1px solid rgb(243, 185, 7);
    border-radius: 0;
}

.navbar-toggle .icon-bar {
    background-color: rgb(243, 185, 7);
}
#navbar-collapse {
    max-height: none !important;
}
.pc-top-nav ul.navbar-nav > li.active > a {
    color: #fff;
}

/*===================
    Popular Product
=====================*/

.swiper-container {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 300px;
      height: 380px;
      background: #fff;
    }

.swiper-slide .imgBx {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.swiper-slide .imgBx img {
    width: 100%;
}

.swiper-slide .details {
    box-sizing: border-box;
    font-size: 20px;
    padding: 20px;
}
.swiper-slide .details h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    text-align: center;
    line-height: 20px;
}

.swiper-slide .details h3 span {
    font-size: 16px;
    color: #f44336;
}
.swiper-pagination-bullet {
    background: rgb(243, 185, 7) !important;
}
.swiper-pagination-bullet-active {
    background: #000 !important;
}

