/*
    DEMO STYLE
*/
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";


body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
    
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    perspective: 1500px;
}


#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #FFFFFF;
    color: #000;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
}

#sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg);
}

#sidebar .sidebar-header {
    padding: 20px;
    text-align: center;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #000000;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
    border-right: 3px solid #6d7fcc; 

}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: blue;
    background: #FFFFFF;
    border-right: 3px solid #6d7fcc;

}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

#noodleSubmenu {
    display: none;
    position: absolute;
    left: 250px;
    top: 170px;
    background-color : white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2000;
}
#noodleMachines:hover #noodleSubmenu {display: block;}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
.inner {
    margin: 0;
}
#content {
    width: 100%;
    padding: 0;
    min-height: 100vh;
    transition: all 0.3s;
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    cursor: pointer;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #555;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}

#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}

.sns_icons {
    margin: 0 30px;
}
.sns_icons a:hover {
    border: 0px !important;
}
.company_info p {
    color: #000000;
    font-size: 0.9em;
    text-align: center;
}

.ppb_title {
    font-weight: 300;
    color: #ffffff;
    margin-bottom : 15px;
}
.ppb_subtitle {
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 2px;
    padding: 10px 0;
}

.ppb_content {
    font-size: 0.95em;
    color: #ffffff;
}

.ppb_content p {
    font-size: 0.95em;
    color: #000000;
}

.service_wrapper {
    /* background-color: #ffffff; */
    padding: 30px;
    min-height: 230px;
}
.service_border {
    width: 90px;
    height: 91px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0);
    background-color: rgba(0,0,0,0);
    transition: 0.3s;
    margin: 10px auto;
}

.service_border:hover {
    background-color: #ffffff;
    border-color: #000;
}

.service_icon { 
    background-color: #cccccc;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    margin: 5px auto;
    transition: 0.5s;
    color: #000000;
    text-align: center;
}

.service_icon:hover { 
    background-color: #000;
    color: #ffffff;
}

.service_icon i{
    margin-top: 24px;
    font-size: 30px;
}

.service_title h3 {
    font-size: 1.1em;
}

.service_content p {
    font-size: 0.8em; 
    color: #000000;
}

.service_border_inline {
    float: left;
}
.service_content_inline {
    margin: 20px 0 20px 10px;
    float: left;
    width: calc(100% - 100px);
}

.image-modal {
    display: none; 
    position: fixed; 
    z-index: 3000; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; 
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.image-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #cccccc;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.image-modal .modal-image {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
}

.testmonial_image_wrapper { 
    margin: 10px auto;
    float: left;
    width: 100px;
    height: 100px;
}

.testmonial_content {
    margin-left: 20px;
    float: left;
    width: calc(100% - 120px);
}

.testmonial_content p {
    color: #000000;
    font-size: 0.9em;
}

.testmonial_content p.testmonial_customer {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testmonial_carousel_content p { 
    color: #000000;
    font-size: 1em;
}
.testmonial_carousel_content p.testimonial_customer {
    letter-spacing: 2px;
    text-transform: uppercase;
}

ol.carousel-indicators li {
    background: #cccccc;
}

ol.carousel-indicators li.active {
    background: #666666;
}

.embed-responsive-10by2 {
    padding-top: 20%;
 }

 .embed-responsive-10by3 {
    padding-top: 30%;
 }

 .img-frame {
     background-color: #ffffff;
 }
 .img-frame .img-hover:hover {
     opacity: 0.6;
 }

/* ---------------------------------------------------
    Footer
----------------------------------------------------- */
footer {
    font-size : 0.9em;    
}

#toTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 2000;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(255,255,255,0.5);
    color: #666666;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }

}
