/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

@media (max-width: 800px) {
  img:hover{
    transform: scale(1.5);
    transition: transform .4s ease-out, offset-path .4s cubic-bezier(.77,-1.17,.75,.84),box-shadow .3s, z-index .3s;
  }
}

*::selection {
  background-color: #FF875F;
  color: #2f2b2f;
}


p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #fff;
}

.img-fuild-grid {
  max-width: 50%;
  height: auto;
}
.img-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.img-col {
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}
.img-col img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .img-col {
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .img-col {
    flex: 100%;
    max-width: 100%;
  }
}

a,
a:hover,
a:focus {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#top_nav {
    background-color: #464146 !important;
    color: #fff;
    position: fixed;
    border-radius: 5px;
  width: 100%;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  margin-right: 40px;
}

.nav-item, .nav-link{
  color: #9315b7 !important;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.btn-info {
  background-color: #FF875F!important;
  border-color: #a95539!important;
  color: #464146;
}
.btn-info:hover {
  background-color: #a95539!important;
  border-color: #FF875F!important;
}
.btn-info:focus{
  box-shadow: 0 0 0 0.2rem rgba(169, 85, 57, .5)!important;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.line-light {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #525151;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #a95539;
    color: #464146;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #FF875F;
}

.shift {
  padding-left: 20px;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #464146;
}

#sidebar ul p {
    color: #464146;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: #e1dfe1;
}

#sidebar ul li a:hover {
    color: #464146;
    background: #FF875F;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #464146;
    background: #FF875F;
}

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;
    background: #a95539;
}

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: #FF875F;
    color: #2f2b2f !important;
}

a.support,
a.support:hover {
    background: #ff7fc3 !important;
    color: #2f2b2f !important;
}

a.article,
a.article:hover {
    background: #2f2b2f !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    background-color: #2f2b2f;
    color: #fff;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
}
