/*
* ===================================================
*     GENERAL STYLING
* ===================================================
*/
body {
  overflow-x: hidden;
}

body.active {
  padding-top: 90px;
}

a,
i,
span {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover, a:focus,
i:hover,
i:focus,
span:hover,
span:focus {
  text-decoration: none;
}

a i {
  -webkit-transition: none;
  transition: none;
}

ul {
  margin: 0;
  padding: 0;
}

section {
  padding: 20px 0;
}

button,
input {
  outline: none !important;
}

button {
  cursor: pointer;
}

main,
aside {
  padding: 10px 0 10px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li.breadcrumb-item {
  font-weight: 300;
}

.text-content p,
.text-content ul,
.text-content ol,
.text-content blockquote {
  margin-bottom: 2rem;
}

/* Bootstrap Select override styles */
.bootstrap-select.show > .dropdown-menu > .dropdown-menu {
  display: block;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden {
  display: none;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #333;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
  outline: none;
  font-size: 0.95rem;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li a:hover {
  background: #eee;
}

.bootstrap-select > .dropdown-menu {
  margin-top: 70px !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.bootstrap-select > .dropdown-menu::before, .bootstrap-select > .dropdown-menu::after {
  display: none !important;
}

.bootstrap-select .dropdown-menu.inner {
  margin-top: 0 !important;
  -webkit-transform: none !important;
  transform: none !important;
}

/* Specific dropdown styles */
.dropdown .dropdown-menu,
.bootstrap-select .dropdown-menu {
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-top: 15px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  color: #333;
  font-size: 0.9rem;
  min-width: 200px;
  outline: none !important;
}

.dropdown .dropdown-menu a,
.bootstrap-select .dropdown-menu a {
  color: inherit;
}

.dropdown .dropdown-menu a:hover,
.bootstrap-select .dropdown-menu a:hover {
  background: #2b90d9;
  color: #fff;
}

.dropdown .dropdown-menu a,
.bootstrap-select .dropdown-menu a {
  padding: 10px 20px;
}

.dropdown .dropdown-menu::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  position: absolute;
  top: -5px;
  left: 30px;
}

.dropdown .dropdown-menu::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #eee;
  position: absolute;
  top: -8px;
  left: 30px;
}

.dropdown-toggle::after {
  border: none !important;
  content: '\f107';
  vertical-align: baseline;
  font-family: 'FontAwesome';
  font-display: swap;
}

i[class*="icon-"] {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

#style-switch-button {
  z-index: 9999 !important;
}

/*=== Helpers ===*/
.bg-red {
  background: #ff7676 !important;
  color: #fff;
}

.bg-red:hover {
  color: #fff;
}

.bg-blue {
  background: #85b4f2 !important;
  color: #fff;
}

.bg-blue:hover {
  color: #fff;
}

.bg-yellow {
  background: #ffc107 !important;
  color: #fff;
}

.bg-yellow:hover {
  color: #fff;
}

.bg-green {
  background: #54e69d !important;
  color: #fff;
}

.bg-green:hover {
  color: #fff;
}

.bg-orange {
  background: #ffc36d !important;
  color: #fff;
}

.bg-orange:hover {
  color: #fff;
}

.bg-violet {
  background: #796AEE !important;
  color: #fff;
}

.bg-violet:hover {
  color: #fff;
}

.bg-gray {
  background: #e9ecef;
}

.bg-white {
  background: #fff !important;
}

.text-red {
  color: #ff7676;
}

.text-red:hover {
  color: #ff7676;
}

.text-yellow {
  color: #ffc107;
}

.text-yellow:hover {
  color: #ffc107;
}

.text-green {
  color: #54e69d;
}

.text-green:hover {
  color: #54e69d;
}

.text-orange {
  color: #ffc36d;
}

.text-orange:hover {
  color: #ffc36d;
}

.text-violet {
  color: #796AEE;
}

.text-violet:hover {
  color: #796AEE;
}

.text-blue {
  color: #85b4f2;
}

.text-blue:hover {
  color: #85b4f2;
}

.text-gray {
  color: #ccc;
}

.text-gray:hover {
  color: #ccc;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-bold {
  font-weight: 700;
}

.text-small {
  font-size: 0.9rem;
}

.page {
  background: #EEF5F9;
}

.page .text-white {
  color: #fff;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.padding-small {
  padding: 100px 0;
}

.page {
  overflow-x: hidden;
}

.has-shadow, .listing-gallery .item {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1), -1px 0 2px rgba(0, 0, 0, 0.05);
}

.badge-transparent {
  border-radius: 50px;
  background: rgba(126, 126, 126, 0.5);
  padding: 5px 20px;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  display: inline-block;
}

.badge-rounded {
  padding: 5px 20px;
  border-radius: 50px;
  background: #2b90d9;
  color: #fff;
}

.badge {
  font-weight: 300;
}

.btn-template,
.btn-outline-template {
  border-radius: 50px !important;
  font-weight: 300;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.btn-template.has-wide-padding,
.btn-outline-template.has-wide-padding {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.btn.has-wide-padding {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.btn-template:focus {
  color: inherit;
}

.form-control {
  border: 1px solid #ddd;
  background: none;
  border-radius: 0;
}

.form-control:focus {
  border-color: #2b90d9;
}

.form-control::-moz-placeholder {
  color: #aaa;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  font-display: swap;
}

.form-control::-webkit-input-placeholder {
  color: #aaa;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  font-display: swap;
}

.form-control:-ms-input-placeholder {
  color: #aaa;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.9em;
  font-display: swap;
}

.text-primary {
  color: #2b90d9 !important;
}

p.text-hero {
  font-size: 1.2em;
  font-weight: 300;
}

p.text-hero i {
  font-size: 1.2em;
}

p.small-text-hero {
  font-size: 1em;
}

.has-lines {
  position: relative;
  padding-left: 20px;
}

.has-lines::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background: #81bde9;
  position: absolute;
  top: 0;
  left: 0;
}

.has-lines::after {
  content: '';
  display: block;
  width: 3px;
  height: 100%;
  background: #2b90d9;
  position: absolute;
  top: 0;
  left: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #656565;
  display: block;
  font-size: 0.5em;
  font-display: swap;
}

.pagination-template li.page-item {
  margin: 0 5px;
}

.pagination-template a.page-link {
  width: 40px;
  height: 40px;
  line-height: 27px;
  border-radius: 50% !important;
  border: none;
  color: #555;
  text-align: center;
}

.pagination-template a.page-link:hover, .pagination-template a.page-link.active {
  background: #eee;
}

.nav-pills-template {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nav-pills-template a {
  border-radius: 50px;
  margin: 10px;
  border: 1px solid #2b90d9;
}

.nav-pills-template a.active, .nav-pills-template a:hover, .nav-pills-template a:focus {
  background: #2b90d9;
  color: #fff;
}

.nav-pills-template a:first-of-type {
  margin-left: 0;
}

/* General Media Query ------------------------------------- */
@media (max-width: 992px) {
  nav.navbar .navbar-collapse {
    overflow-y: auto;
    max-height: 350px !important;
  }
}


/*
* ==========================================================
*     NAVBAR
* ==========================================================
*/
nav.navbar {
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 9998;
}

nav.navbar a.nav-link {
  color: #333;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

nav.navbar a.nav-link:hover {
  color: #2b90d9;
}

nav.navbar a.nav-link.active {
  font-weight: bold;
}

nav.navbar .navbar-btn {
  font-weight: 300;
}

nav.navbar .navbar-toggler {
  font-size: 1.05em;
  background: none !important;
  border: none !important;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #333;
  padding: 10px 5px;
  cursor: pointer;
  font-display: swap;
}

nav.navbar .navbar-toggler i {
  margin-left: 10px;
}

/* Navbar Media Query  ---------------------------------- */
@media (max-width: 576px) {
  nav.navbar .container {
    width: 100%;
  }
}

@media (max-width: 992px) {
  nav.navbar a.nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  nav.navbar .dropdown .dropdown-menu {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0;
  }
  nav.navbar .dropdown .dropdown-menu::after {
    display: none;
  }
  nav.navbar .dropdown .dropdown-menu::before {
    display: none;
  }
}

/*
* ==========================================================
*     DIVIDER SECTION
* ==========================================================
*/
section.divider {
  color: #fff;
  background-size: cover !important;
}

section.divider p.lead {
  color: #fff;
}

/*
* ==========================================================
*     BLOG SECTION
* ==========================================================
*/

section.blog .post {
  background: #101325;
  height: 400px;
  color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

section.blog .image {
  height: 100%;
}

section.blog img {
  opacity: 0.2;
  height: 100%;
}

section.blog .info {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
}

section.blog .info p {
  color: #ddd;
  font-size: 0.95em;
}

section.blog h3,
section.blog .post-meta {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

section.blog .post-meta {
  text-transform: uppercase;
  font-size: 0.75em;
  margin-bottom: 15px;
}

section.blog a {
  text-decoration: none;
  color: #fff;
}

section.blog a:hover, section.blog a:focus {
  color: #fff;
  text-decoration: none;
}

section.blog a.read-more:hover, section.blog a.read-more:focus {
  color: #2b90d9;
}

section.blog a.read-more {
  margin-top: 15px;
  font-family: "Vidaloka", serif;
  font-display: swap;
}

section.blog .badge {
  position: absolute;
  top: 25px;
  left: 40px;
  letter-spacing: 0.1em;
}

section.blog a.visit-blog {
  margin-top: 30px;
}

/* Services Section Media Query  -------------------------*/
@media (max-width: 992px) {
  section.blog a.visit-blog {
    margin: 30px auto 0 !important;
  }
  section.blog .post {
    margin-bottom: 20px;
  }
}

/*
* ==========================================================
*     404
* ==========================================================
*/
section.error404 {
  color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 140px);
}

@media (max-width: 768px) {
  section.error404 {
    min-height: auto;
  }
}

/*
* ==========================================================
*     FOOTER
* ==========================================================
*/
footer.main-footer {
  padding-top: 10px;
  background: #222;
  color: #959595;
}

footer.main-footer h3 {
  color: #fff;
  margin-bottom: 10px !important;
}

footer.main-footer a,
footer.main-footer p {
  color: inherit;
  font-size: 0.95em;
}

footer.main-footer .contact p {
  margin-bottom: 5px !important;
  color: #959595;
}

footer.main-footer .contact a {
  color: #2b90d9;
}

footer.main-footer .social-menu {
  color: #fff;
  margin-top: 20px;
}

footer.main-footer .social-menu a {
  padding: 0 5px;
}

footer.main-footer .social-menu a:hover {
  color: #2b90d9;
}

footer.main-footer .social-menu i {
  -webkit-transition: none;
  transition: none;
}

footer.main-footer .menus ul {
  margin-right: 30px;
}

footer.main-footer .menus a {
  font-size: 0.9em;
  margin-bottom: 5px;
}

footer.main-footer .menus a:hover {
  color: #2b90d9;
}

footer.main-footer .copyrights {
  padding: 30px;
  background: #1d1d1d;
  margin-top: 1px;
}

footer.main-footer .copyrights p {
  margin-bottom: 0;
}

footer.main-footer .logo {
  margin-bottom: 30px;
}

/* Footer Media Query  -------------------------*/
@media (max-width: 992px) {
  footer.main-footer .about,
  footer.main-footer .site-links {
    margin-bottom: 40px;
  }
}

/* =======================================================
       Blog Pages
   ======================================================= */
.blog-post {
  border: 1px solid #ddd;
  margin-bottom: 40px;
}

.blog-post a:hover {
  text-decoration: none;
  color: inherit;
}

.post-header {
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #000;
  color: #fff;
  z-index: 1;
}

.post-header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#111), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(to top, #111 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0.4s;
  display: block;
  z-index: 2;
}

.post-header .content {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-header .badge {
  position: absolute;
  top: 30px;
  left: 30px;
}

.post-header img.post-thumbnail {
  opacity: 0.8;
}

.post-header a {
  color: inherit;
}

.post-header .author {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.post-header .author img {
  max-width: 55px;
}

.post-header .author .name {
  margin-left: 15px;
  font-size: 0.75em;
  line-height: 1.7em;
}

.post-header .author span {
  display: block;
  color: #ddd;
}

.post-header .author strong {
  font-family: "Vidaloka", serif;
  font-weight: 500;
  font-size: 1.8em;
  font-display: swap;
}

.post-content {
  padding: 30px;
}

.post-content a {
  text-decoration: none;
  color: inherit;
}

.post-content .post-meta {
  font-size: 0.8em;
  color: #777;
  text-transform: uppercase;
}

.post-content p {
  margin: 30px 0;
  line-height: 1.9em;
}

.post-content a.read-more {
  color: #333;
  font-family: "Vidaloka", serif;
  font-display: swap;
}

.post-content a.read-more:hover, .post-content a.read-more:focus {
  text-decoration: none;
  color: #2b90d9;
}

.widget {
  padding: 20px;
  border: 1px solid #ddd;
  margin-bottom: 40px;
}

.widget header {
  margin-bottom: 30px;
}

h4.comments-heading {
  margin-bottom: 2rem;
}

.comment {
  margin-bottom: 2rem;
}

.comment p.posted {
  color: #868e96;
  font-size: 90%;
}

.comment p {
  color: #868e96;
}

.comment-form h4 {
  margin-bottom: 2rem;
}

/*
* ===================================================
*     DETAIL
* ===================================================
*/

.block {
  margin-bottom: 100px;
}

.block:last-child {
  margin-bottom: 0;
}

.block header {
  margin-bottom: 40px;
}

.comment {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.comment:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.comment-header {
  margin: 10px auto;
}

.comment-header .image {
  max-width: 55px;
}

.comment-header .title {
  margin-left: 15px;
  line-height: 1.7em;
}

.comment-header span {
  display: block;
  color: #868e96;
  font-size: 1rem;
}

.comment-header strong {
  font-size: 1.2rem;
  color: #343a40;
}

.comment-header .rate {
  font-size: 0.95em;
  color: #ffc107;
}

.comment-header .rate li {
  padding: 0;
  margin: 0;
}

.comment-body {
  margin-left: 70px;
  font-size: 1em;
  color: #868e96;
}

.comment-body p {
  line-height: 1.7em;
}

.info-window {
  padding: 0;
}

.infobox {
  font-family: "Poppins", sans-serif;
  max-width: 800px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table;
  font-display: swap;
}

@media (max-width: 576px) {
  .infobox {
    max-width: 100%;
  }
}

.infobox .about {
  color: #868e96;
  font-size: 0.875rem;
}

.infobox .details {
  font-size: 0.875rem;
}

.infobox .address {
  font-size: 0.875rem;
}

.infobox i.fa {
  margin-right: 5px;
}

.infobox .text {
  display: table-cell;
  width: 446px;
  padding: 40px 20px 20px 40px;
  vertical-align: top;
}

.infobox h3 {
  margin-top: 0;
}

.infobox h3 a {
  color: #343a40;
}

.infobox h3 a:focus, .infobox h3 a:hover {
  color: #2b90d9;
}

.infobox .image {
  display: table-cell;
  position: relative;
  width: 354px;
  height: 100%;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}

@media (max-width: 576px) {
  .infobox .image {
    display: none;
  }
}

/* ========================================= 
   THEMING OF BOOTSTRAP COMPONENTS           
   ========================================= */
/*
 * 1. NAVBAR
 */
.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 50px;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-brand {
  color: white;
}

.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: white;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

/*
 * 2. BUTTONS
 */
.btn {
  font-weight: normal;
  border: 1px solid transparent;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 50px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(43, 144, 217, 0.25);
  box-shadow: 0 0 0 3px rgba(43, 144, 217, 0.25);
}

.btn:active, .btn.active {
  background-image: none;
}

.btn-primary {
  color: #fff;
  background-color: #2b90d9;
  border-color: #2b90d9;
}

.btn-primary:hover {
  color: #fff;
  background-color: #227bbc;
  border-color: #2074b1;
}

.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(43, 144, 217, 0.5);
  box-shadow: 0 0 0 3px rgba(43, 144, 217, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #2b90d9;
  border-color: #2b90d9;
}

.btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #227bbc;
  background-image: none;
  border-color: #2074b1;
}

.btn-secondary {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #727b84;
  border-color: #6c757d;
}

.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
  box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #868e96;
  border-color: #868e96;
}

.btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #727b84;
  background-image: none;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:active, .btn-success.active,
.show > .btn-success.dropdown-toggle {
  background-color: #218838;
  background-image: none;
  border-color: #1e7e34;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:active, .btn-info.active,
.show > .btn-info.dropdown-toggle {
  background-color: #138496;
  background-image: none;
  border-color: #117a8b;
}

.btn-warning {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #111;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:active, .btn-warning.active,
.show > .btn-warning.dropdown-toggle {
  background-color: #e0a800;
  background-image: none;
  border-color: #d39e00;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:active, .btn-danger.active,
.show > .btn-danger.dropdown-toggle {
  background-color: #c82333;
  background-image: none;
  border-color: #bd2130;
}

.btn-light {
  color: #111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #111;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:active, .btn-light.active,
.show > .btn-light.dropdown-toggle {
  background-color: #e2e6ea;
  background-image: none;
  border-color: #dae0e5;
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:active, .btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  background-color: #23272b;
  background-image: none;
  border-color: #1d2124;
}

.btn-white {
  color: #111;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  color: #111;
  background-color: #ececec;
  border-color: #e6e6e6;
}

.btn-white:focus, .btn-white.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.btn-white.disabled, .btn-white:disabled {
  background-color: #fff;
  border-color: #fff;
}

.btn-white:active, .btn-white.active,
.show > .btn-white.dropdown-toggle {
  background-color: #ececec;
  background-image: none;
  border-color: #e6e6e6;
}

.btn-outline-primary {
  color: #2b90d9;
  background-color: transparent;
  background-image: none;
  border-color: #2b90d9;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #2b90d9;
  border-color: #2b90d9;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(43, 144, 217, 0.5);
  box-shadow: 0 0 0 3px rgba(43, 144, 217, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #2b90d9;
  background-color: transparent;
}

.btn-outline-primary:active, .btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #2b90d9;
  border-color: #2b90d9;
}

.btn-outline-secondary {
  color: #868e96;
  background-color: transparent;
  background-image: none;
  border-color: #868e96;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
  box-shadow: 0 0 0 3px rgba(134, 142, 150, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #868e96;
  background-color: transparent;
}

.btn-outline-secondary:active, .btn-outline-secondary.active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:active, .btn-outline-success.active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:active, .btn-outline-info.active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:active, .btn-outline-warning.active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:active, .btn-outline-danger.active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:active, .btn-outline-light.active,
.show > .btn-outline-light.dropdown-toggle {
  color: #fff;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:active, .btn-outline-dark.active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-white {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}

.btn-outline-white:hover {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white:focus, .btn-outline-white.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.btn-outline-white.disabled, .btn-outline-white:disabled {
  color: #fff;
  background-color: transparent;
}

.btn-outline-white:active, .btn-outline-white.active,
.show > .btn-outline-white.dropdown-toggle {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}

.btn-outline-white:hover {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white:focus, .btn-outline-white.focus {
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.btn-outline-white.disabled, .btn-outline-white:disabled {
  color: #fff;
  background-color: transparent;
}

.btn-outline-white:active, .btn-outline-white.active,
.show > .btn-outline-white.dropdown-toggle {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn-lg {
  padding: 0.5rem 2.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 50px;
}

.btn-sm {
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 50px;
}

/*
 * 3. TYPE  
 */
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  font-display: swap;
}

a {
  color: #2b90d9;
  text-decoration: none;
}

a:focus, a:hover {
  color: #1c669c;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: "Vidaloka", serif;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  font-display: swap;
}

h1,
.h1 {
  font-size: 3.8rem;
}

h2,
.h2 {
  font-size: 2.4rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  border-left: 5px solid #2b90d9;
  font-weight: 300;
}

.blockquote-footer {
  color: #868e96;
}

.blockquote-footer::before {
  content: "\2014 \00A0";
}

.text-primary {
  color: #2b90d9 !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: #2074b1 !important;
}

/*
 * 4. PAGINATION
 */
.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #2b90d9;
  border-color: #2b90d9;
}

.page-item.disabled .page-link {
  color: #868e96;
  background-color: #fff;
  border-color: #ddd;
}

.page-link {
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  color: #2b90d9;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-link:focus, .page-link:hover {
  color: #1c669c;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #ddd;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/*
 * BAR NONE CUSTOM
 */

header {
  padding-bottom: 15px;
}
 
 .bngray {
  background-color: #eee;
}

.bnbanner-outer {
  width: 100%;
  text-align: center;
  padding: 0;
}

.bnbanner-inner {
  display: inline-block;
}

.bnsearch {
  padding: 0 20px;
}

.bnrcube-outer {
  width: 100%;
  text-align: right;
  padding: 0;
}

.bnrcube-inner {
  display: inline-block;
}

h2.bndrinksect  {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #656565;
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  padding-bottom: 5px;
  font-display: swap;
}

ul.bningredients {
  list-style-type: none;
  margin: 0;
  margin-left: 10px;
  padding: 0;
  padding-bottom: 10px;
  line-height: 2;
}
