/* BODY */
body {
  border-top: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--main-text-color);
  font-size: 16px;
  background-color: var(--main-bg-color);
}

h1 {
  color: var(--h1);
  font-family: 'Passion One', cursive;
  font-weight: normal;
  font-size: 24px;
}

h2 {
  color: var(--h2);
  font-family: 'Abhaya Libre', serif;
  font-size: 36px;
  font-weight: normal;
}

.top-menu {
  background: var(--top-menu-bar-bg-color);
  color: var(--top-menu-bar-font-color);
  width: 100%;
  height: 48px;
}

.top-menu-items {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 13px;
}

.top-menu-items a {
  color: #fff;
  margin-right: 10px;
}

.top-menu-items a:hover {
  text-decoration: none;
}

.top-menu-right {
  text-align: right;
}

@media (max-width:991px) {
  .top-menu-right {
    text-align: center;
  }
}

@media (max-width:767px) {
  .top-menu-right {
    margin-top: 12px;
  }
}

.top-menu-contact {
  display: inline-block;
  margin-right: 10px;
}

.top-menu-contact i {
  font-size: 20px;
}

.top-menu-contact a {
  color: var(--top-menu-bar-font-color);
  font-weight: bold;
  font-size: 16px;
  transition: 0.5s;
}

.top-menu-contact a:hover {
  text-decoration: none;
}

.top-menu-account {
  display: inline-block;
}

.social-icon {
  display: inline-block;
  margin-top: 7px;
  color: var(--top-menu-bar-bg-color);
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  margin-left: 5px;
  text-align: center;
  line-height: 32px;
  transition: 0.5s;
}

.top-menu .btn-info,
.top-menu .btn-info:hover,
.top-menu .btn-info:focus {
  background-color: none;
  background: none;
  border: 0;
  background-position: 0 -15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  -webkit-box-shadow: none;
  margin-top: -2px;
}

.top-menu-basket {
  display: inline-block;
  background: #fff;
  height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: top;
  line-height: 48px;
}

.top-menu-basket .basket-items {
  display: inline-block;
  background: url('../images/shopping-basket.png') no-repeat;
  width: 32px;
  height: 32px;
  background-size: contain;
  margin-right: 5px;
  text-align: center;
  vertical-align: middle;
}

.top-menu-basket .basket-qty {
  display: block;
  margin-top: -4px;
}

.top-menu-basket .basket-text {
  display: inline-block;
  margin-top: -5px;
}

.top-menu-basket .basket-text a {
  color: var(--main-text-color);
  font-weight: 700;
  transition: 0.5s;
}

.top-menu-basket .basket-text a:hover {
  color: var(--top-menu-bar-bg-color);
  text-decoration: none;
}

.dropdown-menu {
  margin-top: 5px;
  border-radius: 0;
  background-color: var(--dropdown-menu-bg-color);
}

.dropdown-menu>li>a {
  color: var(--dropdown-menu-font-color);
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
  text-decoration: none;
  color: var(--top-menu-bar-bg-color);
  background-color: var(--header-bg-color) !important;
}

#header {
  background-color: var(--header-bg-color);
}

.navbar-default {
  background: var(--header-bg-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 40px;
}

@media (max-width:991px) {
  .navbar-default {
    margin-top: 0;
  }
}

.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:focus {
  background-color: var(--top-menu-bar-bg-color);
  border-color: var(--top-menu-bar-bg-color);
  transition: 0.5s;
}

.navbar-default .navbar-toggle:hover {
  background-color: var(--main-text-color);
  border-color: var(--main-text-color);
}

.sm-blue a,
.sm-blue a:hover,
.sm-blue a:focus,
.sm-blue a:active,
.sm-blue a.highlighted {
  padding: 16px 10px;
  background: var(--header-bg-color);
  color: var(--menu-color);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-shadow: none;
  transition: 0.5s;
}

.sm-blue a:hover {
  color: var(--menu-hover-color);
}

.sm-blue>li {
  border-left: 0;
}

.sm-blue ul {
  border: 0;
  padding: 7px 0;
  background: var(--dropdown-menu-bg-color);
  /*background: #F3F2ED;*/
  border-radius: 0;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  top: 5px;
}

.sm-blue ul a,
.sm-blue ul a:focus,
.sm-blue ul a:active,
.sm-blue ul a.highlighted {
  border: 0 !important;
  padding: 9px 23px;
  background: var(--dropdown-menu-bg-color);
  color: var(--dropdown-menu-font-color);
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
  transition: 0.5s;
}

.sm-blue ul a:hover {
  color: var(--top-menu-bar-bg-color);
  background: var(--header-bg-color);
}

@media (min-width:991px) {
  .sm-blue a span.sub-arrow {
    top: auto;
    margin-top: 0;
    bottom: 2px;
    left: 50%;
    margin-left: -5px;
    right: auto;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid dashed dashed dashed;
    border-color: var(--main-text-color) transparent transparent transparent;
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
}

#main-menu {
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.carousel-wrapper {
  background: var(--main-text-color);
}

.carousel .item img {
  margin: auto;
}

.carousel-caption {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30%;
  height: 150px;
  /*background: rgba(255, 255, 255, .5);*/
  text-align: left;
  padding: 0;
}

.carousel-caption-inner {
  max-width: 900px;
  margin: auto;
}

.carousel-caption-inner h1,
.carousel-caption-inner span.carousel-title {
  font-size: 52px;
  /*font-family: 'Abhaya Libre', serif;*/
  color: #fff;
  margin: 0;
  margin-top: 30px;
  padding: 0;
  line-height: 1.2;
  max-width: 500px;
  text-shadow: none;
  display: block;
}

@media (max-width:1500px) {
  .carousel-caption {
    top: 25%;
  }
}

@media (max-width:1100px) {
  .carousel-caption {
    top: 20%;
  }

  .carousel-caption-inner h1,
  .carousel-caption-inner span.carousel-title {
    font-size: 42px;
    max-width: 400px;
  }

  .carousel-caption-inner {
    max-width: 800px;
    margin: auto;
  }
}

@media (max-width:900px) {
  .carousel-caption-inner {
    max-width: 700px;
    margin: auto;
  }

  .carousel-caption-inner h1,
  .carousel-caption-inner span.carousel-title {
    font-size: 36px;
    margin-top: 30px;
    padding: 0;
    line-height: 1.2;
    max-width: 350px;
  }
}

@media (max-width:767px) {
  .carousel-caption {
    top: 15%;
  }

  .carousel-caption-inner {
    max-width: 600px;
    margin: auto;
  }

  .carousel-caption-inner h1,
  .carousel-caption-inner span.carousel-title {
    font-size: 32px;
    margin-top: 30px;
    padding: 0;
    line-height: 1.2;
    max-width: 250px;
  }
}

@media (max-width:650px) {
  .carousel-caption {
    /*height: 80px;*/
  }

  .carousel-caption-inner {
    max-width: 500px;
    margin: auto;
  }

  .carousel-caption-inner h1,
  .carousel-caption-inner span.carousel-title {
    font-size: 24px;
    margin-top: 30px;
    padding: 0;
    line-height: 1.2;
    max-width: 200px;
  }
}

@media (max-width:550px) {
  .carousel-caption {
    /*height: 60px;*/
  }

  .carousel-caption-inner {
    max-width: 500px;
    margin: auto;
  }

  .carousel-caption-inner h1,
  .carousel-caption-inner span.carousel-title {
    font-size: 24px;
    margin-top: 20px;
    padding: 0;
    line-height: 1.2;
    max-width: 200px;
  }
}

@media (max-width:500px) {
  .carousel-caption {
    height: 60px;
  }

  .carousel-caption-inner {
    max-width: 400px;
    margin: auto;
  }

  .carousel-caption-inner h1,
  .carousel-caption-inner span.carousel-title {
    font-size: 18px;
    margin-top: 10px;
    padding: 0;
    line-height: 1.2;
    max-width: 200px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
  }
}

@media (max-width:350px) {
  .carousel-caption {
    top: 10%;
  }

}

#footer_wrapper {
  background: var(--top-menu-bar-bg-color);
  color: #fff;
  border-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 2;
}

#footer_wrapper a {
  color: #fff;
}

#footer_wrapper a:hover {
  text-decoration: none;
}

#footer_wrapper_home {
  margin-top: 0;
  background: var(--top-menu-bar-bg-color);
  color: #fff;
  border-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 2;
}

#footer_wrapper_home a {
  color: #fff;
}

#footer_wrapper_home a:hover {
  text-decoration: none;
}

.footer-title {
  text-transform: uppercase;
  display: block;
}

.footer-contact {
  font-family: 'Passion One', cursive;
  font-size: 30px;
  font-weight: normal;
  display: block;
}

.footer-links-menu {
  margin-top: 20px;
  font-size: 16px;
  text-align: right;
}

.footer-logos {
  text-align: center;
}

@media (max-width:991px) {
  .footer-logos {
    margin-top: 20px;
  }

  .footer-title,
  .footer-contact {
    text-align: center;
  }

  .footer-links-menu {
    text-align: center;
  }
}

.footer-logos a {
  display: inline-block;
  margin-left: 10px;
}

.footer-menu {
  font-size: 12px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  background: var(--copyright-section-bg);
}

.footer-menu a {
  color: #fff;
}

.footer-menu a:hover {
  text-decoration: none;
}

#final_wrapper {
  border: 0;
  background: var(--copyright-section-bg);
}

.footer-social-icons {
  text-align: right;
}

@media (max-width:991px) {

  #copyright,
  .footer-social-icons,
  #footer_wrapper,
  .footer-logos {
    text-align: center;
  }
}

@media (max-width:500px) {
  #footer_wrapper {
    font-size: 14px;
  }
}

.btn-primary,
.btn-default,
.btn-info,
.btn-warning,
.btn-danger,
.btn-success {
  border-radius: 0;
  text-transform: uppercase;
  background: var(--btn-color);
  border-color: var(--btn-color);
  transition: 0.5s;
}

.btn-primary:hover,
.btn-default:hover,
.btn-info:hover,
.btn-warning:hover,
.btn-danger:hover,
.btn-success:hover {
  background: var(--btn-hover-color);
  border-color: var(--btn-hover-color);
}

#sort_menu_wrapper {
  background: var(--top-menu-bar-bg-color);
}

.home-page-section1 {
  margin-bottom: 40px;
  position: relative;
  background: var(--top-menu-bar-bg-color);
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-page-section1 a {
  display: block;
  transition: 0.5s;
}

.home-page-section1 a h3 {
  transition: 0.5s;
}

.home-page-section1 a:hover {
  text-decoration: none;
}

.home-page-section1 a h3:hover {
  text-decoration: none;
  color: var(--btn-hover-color);
}

.home-page-section1 .img-outer {
  height: 100px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.home-page-section1 .section-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.home-page-section1 img {
  transition: 0.5s;
}

.home-page-section1 img:hover {
  filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(401%) hue-rotate(69deg) brightness(108%) contrast(91%);
}

.home-page-section1 h3 {
  font-size: 30px;
  color: #fff;
  font-family: 'Passion One', cursive;
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 0;
}

.home-page-section2 {
  margin-top: 80px;
  margin-bottom: 160px;
  position: relative;
}

.home-page-section2 h2 {
  font-size: 18px;
  color: var(--top-menu-bar-bg-color);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: bold;
}

.home-page-section2 h3 {
  font-size: 40px;
  color: var(--main-text-color);
  font-family: 'Passion One', cursive;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 30px;
}

.home-page-section2 .section-img {
  height: 500px;
  width: 600px;
  position: absolute;
  background-size: cover;
  background-position: center;
}

.home-page-section2 .readmore:after {
  font-family: FontAwesome;
  content: " \f061";
}

.home-page-section2 .readmore {
  background: #fff;
  color: var(--top-menu-bar-bg-color);
  font-family: 'Passion One', cursive;
  text-transform: uppercase;
  padding: 0;
  font-size: 20px;
  transition: 0.5s;
}

.home-page-section2 .readmore:hover {
  color: var(--main-text-color);
}

@media (max-width:1300px) {
  .home-page-section2 .section-img {
    height: 500px;
    width: 500px;
    right: 15px;
  }
}

@media (max-width:991px) {
  .home-page-section2 img {
    margin-top: 20px;
  }
}

.home-page-section3 {
  margin-top: 40px;
  /*margin-bottom: 40px;*/
  padding-top: 40px;
  padding-bottom: 40px;
  background: #F2F2F2;
}

.home-page-section3 .titles {
  margin-bottom: 40px;
}

.home-page-section3 h2 {
  font-size: 20px;
  color: var(--h2);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.home-page-section3 h3 {
  font-size: 40px;
  color: var(--h1);
  font-family: 'Passion One', cursive;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 10px;
}

.home-page-section3 .image {
  min-width: 200px;
  width: 200px;
  height: 200px;
  margin: auto;
  position: relative;
  background: var(--menu-color);
  border-radius: 50%;
}

.home-page-section3 .image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.home-page-section3 .image a img:hover {
  opacity: .5
}

.home-page-section3 .image:hover:before {
  font-family: FontAwesome;
  content: "\f061";
  color: #fff;
  text-align: center;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
}

.home-page-section3 .section-background {
  background: #fff;
  min-height: 500px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  box-shadow: 5px 10px 18px #888888;
  margin-bottom: 20px;
}

.home-page-section3 .section-background h2 {
  font-size: 30px;
  color: var(--h1);
  font-family: 'Passion One', cursive;
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: none;
}

.home-page-section3 .section-background h3 {
  font-size: 14px;
  color: var(--main-text-color);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.home-page-section3 .section-background p {
  padding-left: 20px;
  padding-right: 20px;
}

.home-page-section3 .section-background p.price {
  font-size: 14px;
  color: var(--menu-color);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: bold;
}

.home-page-section3 .link-section {
  text-align: center;
  margin-top: 20px;
}

.home-page-section3 .readmore:after {
  font-family: FontAwesome;
  content: " \f061";
}

.home-page-section3 .readmore {
  /*background: #fff;*/
  color: var(--top-menu-bar-bg-color);
  font-family: 'Passion One', cursive;
  text-transform: uppercase;
  padding: 0;
  font-size: 20px;
  transition: 0.5s;
}

.home-page-section3 .readmore:hover {
  color: var(--main-text-color);
}

.home-page-section4 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 650px;
  /*position: relative;*/
}

.home-page-section4 .cta-section {
  background: var(--main-text-color);
  padding: 20px 40px;
  margin-top: 100px;
}

.home-page-section4 .cta-section h2 {
  color: #fff;
  font-family: 'Passion One', cursive;
}

.home-page-section4 .cta-section p {
  color: #fff;
}

.home-page-section4 .readmore:after {
  font-family: FontAwesome;
  content: " \f061";
}

.home-page-section4 .readmore {
  background: #fff;
  color: var(--top-menu-bar-bg-color);
  font-family: 'Passion One', cursive;
  text-transform: uppercase;
  padding: 0;
  font-size: 20px;
  transition: 0.5s;
  border-radius: 0;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
}

.home-page-section4 .readmore:hover {
  color: var(--main-text-color);
}

@media (max-width:991px) {
  .home-page-section4 .cta-section {
    margin-top: 50px;
  }

  .home-page-section4 .cta-section h2 {
    font-size: 26px;
  }

  .home-page-section4 .cta-section p {
    font-size: 14px;
  }
}

@media (max-width:767px) {
  .home-page-section4 {
    background-position: center top;
    position: relative;
  }

  .home-page-section4 .cta-section {
    /*margin-top: 20px;*/
    position: relative;
    top: 320px;
    line-height: 1.2;
    padding: 20px;
  }

  .home-page-section4 .cta-section h2 {
    font-size: 22px;
    margin-top: 0;
  }

  .home-page-section4 .cta-section p {
    font-size: 12px;
  }
}

@media (max-width:320px) {

  .home-page-section4 .cta-section {
    /*margin-top: 20px;*/
    position: relative;
    top: 250px;
    line-height: 1.2;
    padding: 20px;
  }
}

.home-page-section5 {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #FFF;
}

.home-page-section5 .titles {
  margin-bottom: 40px;
  text-align: center;
}

.home-page-section5 h2 {
  font-size: 20px;
  color: var(--h2);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.home-page-section5 h3 {
  font-size: 40px;
  color: var(--h1);
  font-family: 'Passion One', cursive;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 10px;
}

.home-page-section5 .blog-image {
  width: 90%;
  height: 550px;
  background-size: cover;
  background-position: center;
  margin: 0 auto 20px auto;
  position: relative;
}

.home-page-section5 .blog-image .blog-text {
  position: absolute;
  bottom: 20px;
  left: -20px;
  right: 20px;
  background: var(--main-text-color);
  padding: 20px;
  color: #fff;
  text-align: center;
}

.home-page-section5 .blog-image .blog-text .blog-title {
  font-family: 'Passion One', cursive;
  font-size: 26px;
}

.home-page-section5 .blog-image .blog-text .readmore:after {
  font-family: FontAwesome;
  content: " \f061";
}

.home-page-section5 .blog-image .blog-text .readmore {
  /*background: #fff;*/
  color: #fff;
  font-family: 'Passion One', cursive;
  text-transform: uppercase;
  padding: 0;
  font-size: 20px;
  transition: 0.5s;
}

.home-page-section5 .blog-image .blog-text .readmore:hover {
  color: var(--top-menu-bar-bg-color);
}

.home-page-section5 .link-section {
  text-align: center;
  margin-top: 20px;
}

.home-page-section5 .readmore:after {
  font-family: FontAwesome;
  content: " \f061";
}

.home-page-section5 .readmore {
  /*background: #fff;*/
  color: var(--top-menu-bar-bg-color);
  font-family: 'Passion One', cursive;
  text-transform: uppercase;
  padding: 0;
  font-size: 20px;
  transition: 0.5s;
}

.home-page-section5 .readmore:hover {
  color: var(--main-text-color);
}

.home-page-section6 {
  background: #F2F2F2;
  width: 100%;
  min-height: 250px;
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 30px;
  color: var(--main-text-color);
  line-height: 1.2;
  font-family: 'Passion One', cursive;
}

@media (max-width:991px) {
  .home-page-section6 {
    background-position: left;
    font-size: 30px;
  }
}

@media (max-width:767px) {
  .home-page-section6 {
    background-position: left;
    font-size: 30px;
    height: 600px;
    padding-top: 50px;
  }
}

@media (max-width:479px) {
  .home-page-section6 {
    background-position: left;
    font-size: 20px;
    height: 400px;
    padding-top: 50px;
  }
}

.home-page-section6 .name {
  font-size: 20px;
  color: var(--top-menu-bar-bg-color);
  text-transform: uppercase;
  margin-top: 40px;
  font-family: 'Nunito', sans-serif;
}

.home-page-section6 .owl-theme .owl-nav[class*="owl-"] {
  display: block;
}

.home-page-section6 .owl-prev {
  width: 45px;
  height: 100px;
  position: absolute;
  top: 0%;
  left: -90px;
  display: block !important;
  border: 0px solid black;
}

.home-page-section6 .owl-next {
  width: 45px;
  height: 100px;
  position: absolute;
  top: 0%;
  right: -80px;
  display: block !important;
  border: 0px solid black;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background: none !important;
}

@media (max-width:1650px) {
  .owl-carousel .owl-nav {
    display: none !important;
  }
}

.home-page-section6 .owl-prev i,
.home-page-section6 .owl-next i {
  /*transform: scale(1, 6);*/
  font-size: 40px;
}

.home-page-section7 {
  background: #F2F2F2;
  text-align: center;
  padding-bottom: 40px;
}

.home-page-section8 {
  width: 100%;
  height: 750px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.home-page-section8 .overlay {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(242, 242, 242);
  background: linear-gradient(180deg, rgba(242, 242, 242, 1) 50%, rgba(86, 190, 181, 0) 100%);
}

.home-page-section8 .cta-form {
  background: var(--main-text-color);
  color: #fff;
  padding: 20px;
  /*position: absolute;*/
  margin-top: 250px;
}

.home-page-section8 .cta-form .title {
  display: block;
  font-family: 'Passion One', cursive;
  font-size: 30px;
}

.home-page-section8 .cta-form .textinput {
  background: #393939;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
}

.home-page-section8 .cta-form .sendbtn {
  background: #fff;
  border-radius: 0;
  color: var(--btn-color);
  width: 150px;
  font-weight: bold;
  font-family: 'Passion One', cursive;
  font-size: 20px;
  text-transform: uppercase;
}

label {
  color: var(--h1);
}

.form_header {
  background-color: var(--h1);
}

.border_top {
  border-top: 1px solid var(--h1);
}

.heading,
legend {
  background-color: var(--h1);
}

.my-account-title {
  color: var(--h1);
}

.alert-info {
  background: var(--top-menu-bar-bg-color);
  border-color: var(--top-menu-bar-bg-color);
  color: #fff;
}

.alert-info h1 {
  color: #fff;
}

h4#myModalLabel {
  color: var(--h1);
}

.course-menu {
  background: #f1f1f1;
  border: 1px solid #d1d1d1;
  padding: 10px;
}

/* ONLINE PORTAL */
.portal-category-header {
  margin-top: 20px;
  margin-bottom: 20px;
  background: var(--menu-color);
  color: #fff;
  text-align: center;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  border-radius: 20px;
}

.portal-details {
  font-size: 14px;
  text-align: center;
}

.portal-details a {
  margin-top: 20px;
  margin-bottom: 20px;
}

.portal-file {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--light-blue);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.portal-file .file-title {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
}

.portal-file .file-desc {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 12px;
}

.portal-file img {
  max-height: 220px;
}

/* page sections */
.page-section {
  margin-top: 20px;
  margin-bottom: 0px;
}

.page-section-price {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

.page-section-button {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.page-section-product-wrapper {
  margin-top: 15px;
  padding: 20px 40px;
  border: 1px solid var(--top-menu-bar-bg-color);
  border-radius: 15px;
}

.page-section-product-name {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}