/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html,
body {
  background-color: #272727;
}
.home-page {
    height: 100%;
}
body {
  display: -ms-flexbox;
  /* display: flex; */
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
  /* overflow: hidden; */
  position: relative;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: 0.25rem 11px;
  font-weight: 400;
  /* color: rgba(255, 255, 255, .5); */
  background-color: transparent;
  border-bottom: .25rem solid transparent;
  text-transform: uppercase;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  /* border-bottom-color: rgba(255, 255, 255, .25); */
  color: #3C3B38;
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #3C3B38;
  color: #C2A88A !important;
  /* border-bottom-color: #fff; */
}
.navbar-dark .navbar-nav .nav-link{
  color: #fff;
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
  color: #C2A88A !important;
}


@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}

.home-page .home, .contact-page .home {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  min-height: 100vh;
  /* position: absolute; */
  margin-top: -196px;
  background-position-x: center !important;
}
.houses .home, .constructions .home {
  margin-top: -240px;
}
.contact-page .home{
  min-height: 60vh;
  max-height: 80vh;
  position: relative;
}
.contact-page .home:after {
  content: "";
  position: absolute;
  background: linear-gradient(transparent -20%, rgb(39, 39, 39) 100%);
  width: 100%;
  height:100%;
  top: 0;
  left: 0;
}
.logo {
    width: 200px;
    z-index: 5;
}
.content {
  width: calc(100% - 200px);
}
.after-logo{
    width: 150px;
}
.color-2b {
    background-color: #2B2B2B;
}
.after-logo h3, .project .vertical {
    transform: rotate(-90deg);
    transform-origin: 0 0;
    position: absolute;
    bottom: 160px;
    left: 90px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    width: 325px;
}
.project .vertical {
  left: 25px;
  color: #fff;
  z-index: 1;
  font-weight: 600;
  bottom: 0;
}
.home-title {
    letter-spacing: 10px;
}
.home-text {
    font-size: 1rem;
    font-weight: 600;
}
.btn-chelsea {
    background-color: #3C3B38;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.about, .projects, .contact {
    background-color: #272727;
}
.about p {
    color: rgb(170, 166, 166);
}
.chelsea-brown, .btn:hover {
    color: #C2A88A !important;
}
.btn-chelsea:hover {
    color: #272727 !important;
}
.project {
    min-height: 880px;
    background-size: cover;
    /* background-color: rgba(0, 0, 0, .5); */
    /* opacity: .5; */
    overflow: hidden;
}
.project:before {
  content: ' ';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center !important;
  background: rgba(0, 0, 0, .5);
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.project.one:before {
    background-image: url('../images/a1.webp');
}
.project.second:before {
  background-image: url('../images/a2.webp');
}
.project.three:before {
  background-image: url('../images/a3.webp');
}
.project.four:before {
  background-image: url('../images/a4.webp');
}
.project:hover:before {
  webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.project:hover {
  cursor: pointer;
}
.project:after {
   content:
   "";
   position:
   absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: rgba(0, 0, 0, .5);
}
.project h5 {
    z-index: 1;
    position: relative;
}
/* .project:hover h5 {
  letter-spacing: 10px;
} */

.contact input, .contact textarea {
    background-color: #323232;
    color: #fff;
    border: none;
    border-radius: 8px;
}
.contact textarea {
    height: 120px;
}
.contact-info span {
    font-size: 20px;
    color: rgb(170, 166, 166);
}
.btn-chelsea-brown {
    background-color: #C6A57D;
    color: #fff;
}
header {
    /* transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out; */
    transition: 0.3s ease-in-out;
    z-index: 4;
}
header.fixed {
    position: fixed !important;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    padding: 20px !important;
    width: 100% !important;
    top: 0;
}

header.fixed .ml-5 {
    margin-left: 0 !important;
}

header.fixed .nav-masthead .active {
    color: #fff !important;
    text-decoration: underline;
}

.about-page .section-title {
    font-size: 50px;
}

.about-page .home p {
    font-size: 20px;
    color: rgb(170, 166, 166);
}
.about-page header.fixed {
    background: #313131;
}
.about-page header.fixed .nav-masthead .active {
    color: #C2A88A !important;
    text-decoration: none;
}
.font-16 {
    font-size: 16px !important;
}

#about .container:after {
  content: "About";
  position: absolute;
  top: 60px;
  left: 40px;
  font-size: 170px;
  z-index: 0;
  font-weight: 700;
  opacity: 0.04;
}
.div-text {
    z-index: 3;
}
.after-logo i {
    position: absolute;
    left: 90px;
    color: #9e9e9e;
}
.after-logo i.facebook {
    bottom: 60px;
}
.after-logo i.instagram {
    bottom: 15px;
}

.after-logo hr {
    position: absolute;
    bottom: 115px;
    width: 40px;
    background: #9e9e9e;
    transform: rotate(90deg);
    left: 75px;
}
.nav-logo {
    width: 100px;
}
.z-4 {
  z-index: 4; 
}
.h-100vh {
  height: 100vh;
}
.head-text {
  position: relative;
  top: calc(100vh - 330px);
  bottom: 0;
  background: #00000050;
  padding-right: 20px !important;
}
.fixed .inner {
  margin-left: 0 !important;
}
.nav-item {
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 500px) {
  #about .container:after {
      left: 20px;
      font-size: 105px;
  }
  header.fixed {
    display: none !important;
  }
  .logo {
    width: 60px;
  }
  .nav-logo {
    width: 50px;
  }
  .after-logo h3, .project .vertical, .after-logo i {
    left: 25px;
  }
  .after-logo hr {
    left: 10px;
  }
  .home-title {
    font-size: 1.5rem;
  }
  .home-text {
    font-size: .8rem;
  }
  .contact textarea {
    width: 100%;
  }
  .contact-info span,
  .about-page .home p {
    font-size: 1rem;
  }
  masthead {
    display: none !important;
  }
  .home-page .home, .contact-page .home {
    margin-top: 0;
    overflow-x: hidden;
  }
  header nav {
    display: block !important;
    width: 100%;
  }
  header .inner {
    position: absolute;
    top: 0;
    left:0;
    
  }
  .contact-page header .inner {
    height: 58px;
    background: rgba(0, 0, 0, .4);
    z-index: 3;
  }
  header nav .navbar-collapse{
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    /* background-color: #2B2B2B; */
    /* height: auto; */
    width: 100%;
    padding: 4rem 1rem 4rem 4rem;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    left: 0;
    position: absolute;
    top: 0;
    z-index: 3;
  }
  header nav .navbar-collapse.show, 
  header nav .navbar-collapse.in {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .navbar-toggler {
    z-index: 5;
    position: absolute;
    right: 10px;
  }
  .head-text {
    top: calc(100vh - 450px);
  }
  .contact-page .color-2b, .about-page .color-2b {
    background-color: transparent;
  }
  .scale::before {
    transform: scale(1.2);
  }
  .home-page .home {
    background: url(../images/slider-img-mob.webp) !important;
  }
}

.home-slide-video {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
}

@media screen and (min-width: 500px) {
  .contact-page header {
    position: relative;
  }
  .home-slide-video {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1300px !important;
  }
}
.bg-37 {
  background-color: #373737;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #C2A88A;
  color: #fff !important;
}

.dropdown-menu {
  padding: 0;
}
.dropdown-item {
  padding-top: 6px;
  padding-bottom: 6px;
}

.gallery .gallery-item img{
  height: 215px;
  object-fit: cover;
}
.gallery .middle-image img{
  object-fit: cover;
}
.gallery-image {
  width: 100%;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

/* width */
.overflow-x-scroll::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

/* Track */
.overflow-x-scroll::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.overflow-x-scroll::-webkit-scrollbar-thumb {
  background: #C2A88A; 
}

/* Handle on hover */
.overflow-x-scroll::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.tab-menu {
  border: 1px solid #ddd;
  background: #373737;
}
.tab-content {
  border: 1px solid #ddd;
  /* background: #C2A88A; */
  background: #373737;
}
.tab-content>.active {
    display: block;
    /* background: #C2A88A; */
    background: #373737;
    padding: 15px;
    font-size: 18px;
}
.nav-sidebar {
  width: 100%;
  /* padding: 30px 0; */
  
}
.nav-sidebar li{
  /* padding: 6px 10px; */
  width: 100%
}

.nav-sidebar a {
  color: #fff;
  -webkit-transition: all 0.08s linear;
  -moz-transition: all 0.08s linear;
  -o-transition: all 0.08s linear;
  transition: all 0.08s linear;
  padding: 6px 10px;
  display: block;
}
.nav-sidebar a.active {
  cursor: default;
  /* background-color: #0b56a8;  */
  color: #fff;
  /* background: #C2A88A; */
  background: #272727;
  position: relative;
}
.nav-sidebar a.active:after {
  content: "";
  position: absolute;
  right: -2px;
  height: 100%;
  width: 7px;
  /* background: #C2A88A; */
  background: #1e1e1e;
  z-index: 3;
  top: 0;
}

.nav-sidebar .text-overflow a,
.nav-sidebar .text-overflow .media-body {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; 
}

.btn-blog {
  color: #ffffff;
  background-color: #E50000;
  border-color: #E50000;
  border-radius:0;
  margin-bottom:10px
}
.btn-blog:hover,
.btn-blog:focus,
.btn-blog:active,
.btn-blog.active,
.open .dropdown-toggle.btn-blog {
  color: white;
  background-color:#0b56a8;
  border-color: #0b56a8;
}

/* .house .nav-tabs>li.active>a, .house .nav-tabs>li.active>a:hover, .house .nav-tabs>li.active>a:focus {
  color: #C2A88A !important;
} */

.nav-tabs>li>a {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
  color: #C2A88A !important;
  background-color: #222222;
  border: 1px solid #464545;
  border-bottom-color: transparent;
  cursor: default;
}

.collapse.in {
  display: block;
}/* 
.collapse:not(.show) {
  display: none !important;
} */

/* header:not(.fixed) ul.navbar-nav, header:not(.fixed) span {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
} */

body:before {
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, #333, transparent);
  top: 0;
  left: 0;
  height: 30%;
  z-index: 2;
}

.navbar-nav .dropdown-menu {
  background: rgba(0, 0, 0, 0.5);
}

.navbar-nav .dropdown-menu a {
  color: #fff;
}
.navbar-nav .dropdown-item:hover {
  color: #16181b;
}

.panel {
  margin-bottom: 21px;
  background-color: #303030;
  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-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #464545;
  border-top: 1px solid #464545;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #464545;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 21px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #464545;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #464545;
}
.panel-default {
  border-color: #464545;
}
.panel-default > .panel-heading {
  color: #ffffff;
  background-color: #303030;
  border-color: #464545;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #464545;
}
.panel-default > .panel-heading .badge {
  color: #303030;
  background-color: #ffffff;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #464545;
}
.panel-primary {
  border-color: #375a7f;
}
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #375a7f;
  border-color: #375a7f;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #375a7f;
}
.panel-primary > .panel-heading .badge {
  color: #375a7f;
  background-color: #ffffff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #375a7f;
}
.panel-success {
  border-color: #00bc8c;
}
.panel-success > .panel-heading {
  color: #ffffff;
  background-color: #00bc8c;
  border-color: #00bc8c;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #00bc8c;
}
.panel-success > .panel-heading .badge {
  color: #00bc8c;
  background-color: #ffffff;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #00bc8c;
}
.panel-info {
  border-color: #3498db;
}
.panel-info > .panel-heading {
  color: #ffffff;
  background-color: #3498db;
  border-color: #3498db;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #3498db;
}
.panel-info > .panel-heading .badge {
  color: #3498db;
  background-color: #ffffff;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #3498db;
}
.panel-warning {
  border-color: #f39c12;
}
.panel-warning > .panel-heading {
  color: #ffffff;
  background-color: #f39c12;
  border-color: #f39c12;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #f39c12;
}
.panel-warning > .panel-heading .badge {
  color: #f39c12;
  background-color: #ffffff;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #f39c12;
}
.panel-danger {
  border-color: #e74c3c;
}
.panel-danger > .panel-heading {
  color: #ffffff;
  background-color: #e74c3c;
  border-color: #e74c3c;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e74c3c;
}
.panel-danger > .panel-heading .badge {
  color: #e74c3c;
  background-color: #ffffff;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #e74c3c;
}

.lang-switch {
  line-height: 2;
}

