@charset "UTF-8";
:root {
  --pricolor: hsl(var(--pricolor-h), var(--pricolor-s), var(--pricolor-l))/*#65bc7b*/;
  --pricolor-h: 135;
  --pricolor-s: 39%;
  --pricolor-l: 57%;
  --grey: #fbfbfb;
  --grey-dark: #eff2f5;
  --text-primary: #3f4e5e;
  --text-primary-dark: #282828;
  --text-primary-light: #7b7b7b;
  --font-family: "Source Sans Pro","Noto Sans", sans-serif;
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans"), local("NotoSans"), url(../fonts/notosans/NotoSans-Regular_dev.woff2) format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans Bold"), local("NotoSans-Bold"), url(../fonts/notosans/NotoSans-Bold_dev.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/sourcesanspro/SourceSansPro-ExtraLight.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/sourcesanspro/SourceSansPro-Light.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/sourcesanspro/SourceSansPro-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/sourcesanspro/SourceSansPro-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/sourcesanspro/SourceSansPro-Bold.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/sourcesanspro/SourceSansPro-Black.woff2) format("woff2");
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--text-primary);
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  padding: 0;
  font-weight: 600;
  color: #555;
}

h3, h4 {
  margin-bottom: 18px;
}

h5, h6 {
  margin-bottom: 10px;
}

a {
  color: var(--pricolor);
}
a:hover, a:focus {
  color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) + 10%));
}

hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

.top-head-notice {
  width: 50%;
  background: #fff;
  color: #46a05c;
  padding: 8px 12px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  border-radius: 8px;
  margin: 0 auto;
  text-align: center;
}

#header-top {
  padding: 5px 0;
  background-color: hsl(var(--pricolor-h), var(--pricolor-s), 45%);
}

.box-contact {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.box-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}
.box-contact a:hover, .box-contact a:focus {
  color: #fff;
}
.box-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-contact ul:last-child {
  margin-bottom: 0;
}
.box-contact ul li {
  position: relative;
  padding: 0 8px;
}
.box-contact ul li:after {
  position: absolute;
  top: 0;
  right: -2px;
  content: "|";
}
.box-contact ul li:last-child:after {
  display: none;
}

.box-social-top {
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-social-top a {
  padding: 2px 4px;
  font-size: 24px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease;
}
.box-social-top a i {
  display: block;
}
.box-social-top a:hover, .box-social-top a:focus {
  color: #fff;
}
.box-social-top p:last-child {
  margin-bottom: 0;
}

#header {
  position: relative;
  z-index: 2000;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
#header .logo {
  padding: 15px 10px;
  display: inline-flex;
  align-items: center;
  text-align: left;
}
#header .logo img {
  margin-right: 15px;
  height: 70px;
  max-height: 70px;
}
#header .logo img:last-child {
  margin-right: 0;
}

.main-content {
  position: relative;
  z-index: 10;
}

.sec-module {
  padding: 70px 0;
}

.content-holder {
  padding: 60px 0;
}
.main-content-wb .content-holder {
  padding-top: 20px;
}
.content-holder #left-sidebar, .content-holder #right-sidebar {
  margin-top: 30px;
}
.content-holder .alert-holder {
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
}
.content-holder .alert-holder h1, .content-holder .alert-holder h2, .content-holder .alert-holder h3 {
  margin-bottom: 25px;
  color: #444;
}
.content-holder .alert-holder img {
  margin-bottom: 30px;
}

#showcase {
  padding: 0;
  background-color: #ddd;
}
#showcase .sc-item {
  position: relative;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#showcase .sc-item.sc-item-content:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
#showcase .sc-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  align-items: center;
}
#showcase .sc-content h1 {
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 44px;
  color: #fff;
}
#showcase .sc-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
#showcase .sc-content p:last-child {
  margin-bottom: 0;
}
#showcase .sc-content .btn-wrapper {
  margin-top: 24px;
}
#showcase .sc-content .btn {
  padding: 12px 30px;
  font-weight: 600;
}
#showcase .sc-content .btn i {
  margin-left: 3px;
  margin-right: -8px;
  font-size: 24px;
  line-height: 1;
}
#showcase.showcase-wn .sc-content {
  padding-bottom: 50px;
}
#showcase .owl-nav {
  z-index: 50;
}
#showcase .owl-nav [class*=owl-] {
  position: absolute;
  top: 0;
  bottom: 0;
  transition: background-color 0.2s ease;
}
#showcase .owl-nav [class*=owl-] i {
  padding: 20px 0;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
#showcase .owl-nav [class*=owl-]:hover, #showcase .owl-nav [class*=owl-]:focus {
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
}
#showcase .owl-nav [class*=owl-]:hover i, #showcase .owl-nav [class*=owl-]:focus i {
  color: rgba(255, 255, 255, 0.9);
}
#showcase .owl-nav .owl-prev {
  left: 0;
}
#showcase .owl-nav .owl-next {
  right: 0;
}

.showcase-content {
  background-color: #f4f4f4;
}

.sidebar-modern > ul, .sidebar-modern > div {
  margin-bottom: 25px;
}

.page-header h1, .page-header h2, .section-header h1, .section-header h2 {
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 52px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text-primary-dark);
}
.bg-main .page-header h1, .bg-main .page-header h2, .bg-main .section-header h1, .bg-main .section-header h2 {
  color: #fff;
}

#footer {
  margin-top: auto;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  background-color: hsl(var(--pricolor-h), 21%, 22%);
}
#footer .footer-top {
  padding-top: 80px;
  padding-bottom: 70px;
}
#footer .footer-top > .container > .row > [class*=col]:not(:last-child) {
  margin-bottom: 40px;
}
#footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .copyright {
  text-align: center;
}
#footer h5 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
}
#footer p:last-child {
  margin-bottom: 0;
}

.box-about .logo-holder {
  margin-bottom: 15px;
}
.box-about .logo {
  max-height: 80px;
}

.box-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 22px;
  line-height: 1;
}
.box-social a {
  margin-right: 5px;
  padding: 5px;
  border-radius: 10px;
  /* background-color: rgba(#fff, 0.1);*/
  transition: all 0.2s ease;
}
.box-social a:hover, .box-social a:focus {
  color: #fff;
}

.page-topbar {
  border-top: 4px solid hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 15%));
}

/*.bg-primary-light {background-color: $bg-light;}*/
.bg-main {
  background: var(--pricolor) url(../images/bg-waves.png) no-repeat center;
}

#notices {
  position: relative;
  margin-bottom: 8px;
}
#notices.notices-alt {
  margin-bottom: 0;
}
#notices.notices-alt .notice-wrapper {
  margin-top: 0;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0;
  text-align: left;
  background: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 5%)) url(../images/bg-waves.png) no-repeat center;
}
#notices.notices-alt .notice-wrapper .nw-title {
  margin-bottom: 0;
  padding: 8px 10px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: hsl(var(--pricolor-h), var(--pricolor-s), 45%);
}
#notices.notices-alt .notice-wrapper .nw-item {
  padding: 9px 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}
#notices.notices-alt .notice-wrapper a {
  color: #fff;
}
#notices.notices-alt .owl-nav {
  top: 6px;
}

.notice-wrapper {
  position: relative;
  z-index: 50;
  margin-top: -80px;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  background: var(--pricolor) url(../images/bg-waves.png) no-repeat center;
}
.notice-wrapper .nw-title {
  margin-bottom: 5px;
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
.notice-wrapper .nw-holder {
  padding-top: 2px;
  padding-bottom: 2px;
  flex-basis: auto;
  flex-grow: 1;
  min-width: 0;
  width: 100%;
}
.notice-wrapper .nw-slider {
  position: static;
}
.notice-wrapper .nw-item {
  color: rgba(255, 255, 255, 0.8);
}
.notice-wrapper .owl-nav {
  position: absolute;
  top: 4px;
  right: 4px;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
}
.notice-wrapper .owl-nav [class*=owl-] {
  margin-left: 2px;
}
.notice-wrapper .owl-nav [class*=owl-] i {
  padding: 4px 2px;
  display: block;
  border-radius: 3px;
  font-size: 24px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  background-color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 10%));
  transition: all 0.2s ease;
}
.notice-wrapper .owl-nav [class*=owl-]:first-child i {
  margin-left: 0;
}
.notice-wrapper .owl-nav [class*=owl-]:focus {
  outline: none;
}
.notice-wrapper .owl-nav [class*=owl-]:hover, .notice-wrapper .owl-nav [class*=owl-]:focus {
  outline: none;
}
.notice-wrapper .owl-nav [class*=owl-]:hover i, .notice-wrapper .owl-nav [class*=owl-]:focus i {
  color: #fff;
  background-color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 15%));
}

.sec-about {
  padding-bottom: 0;
  text-align: center;
}
.sec-about .text {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}
.sec-about p:last-child {
  margin-bottom: 0;
}

.box-services .section-header {
  text-align: center;
}

.bgrid-item {
  position: relative;
  margin: 10px auto;
  max-width: 400px;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.bgrid-item:before {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.bgrid-item .bgi-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 30px 30px;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
}

a.bgrid-item:hover:before {
  opacity: 1;
}

.box-stats .section-header {
  text-align: center;
}

.stat-item {
  padding: 15px;
  text-align: center;
}
.stat-item .stat-value {
  margin-bottom: 5px;
  font-size: 72px;
  line-height: 76px;
  font-weight: 700;
  color: #fff;
}
.stat-item .stat-title {
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.stat-item .stat-title span {
  display: block;
  font-size: 14px;
  line-height: 18px;
}

.box-test .owl-nav {
  position: static;
  margin-top: 15px;
  text-align: center;
}
.box-test .owl-nav i {
  margin: 0 5px;
  padding: 10px;
  display: block;
  border-radius: 80px;
  font-size: 24px;
  line-height: 1;
  color: var(--text-primary);
  background: #fff;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.box-test .owl-nav button:hover, .box-test .owl-nav button:focus {
  outline: none;
}
.box-test .owl-nav button:hover i, .box-test .owl-nav button:focus i {
  color: #fff;
  background: var(--pricolor);
}
.box-test .owl-prev {
  left: -80px;
}
.box-test .owl-next {
  right: -80px;
}

.bt-item {
  padding-top: 10px;
}
.bt-item .bti-text {
  position: relative;
  z-index: 5;
  padding: 30px 75px 30px 35px;
  border-radius: 3px;
  font-size: 17px;
  line-height: 24px;
  background-color: #f5f5f5;
}
.bt-item .bti-text:before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  content: "󰉾";
  font-size: 80px;
  line-height: 1;
  font-family: "Material Design Icons";
  color: var(--pricolor);
  opacity: 0.8;
}
.bt-item .bti-text p:last-child {
  margin-bottom: 0;
}
.bt-item .bti-details {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bt-item .bti-image {
  margin-right: 10px;
  width: 50px;
  flex-shrink: 0;
  border-radius: 80px;
  overflow: hidden;
}
.bt-item .bti-image img {
  width: 100%;
}
.bt-item .bti-author {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-primary);
}
.bt-item .bti-designation {
  font-size: 14px;
  line-height: 18px;
  color: var(--text-primary-light);
}

.side-content {
  padding: 22px 22px;
  border: 3px solid var(--grey-dark);
  font-size: 16px;
  line-height: 24px;
}
.side-content p:last-child, .side-content ul:last-child {
  margin-bottom: 0;
}

.dropdown-toggle:after {
  content: "󰅀";
  margin-left: 2px;
  margin-right: -4px;
  padding-top: 2px;
  border: none;
  font-size: 20px;
  line-height: 1;
  font-family: "Material Design Icons";
}

.navbar .navbar-collapse .collapse-holder {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-end;
}

.nav-main {
  padding: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.nav-main > li {
  margin-top: 1px;
  margin-bottom: 1px;
}
.nav-main > li > a, .nav-main > li > .btn {
  padding: 9px 18px;
  /*width: 100%;*/
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-primary);
  transition: all 0.2s ease;
}
.nav-main > li > a i, .nav-main > li > .btn i {
  margin-left: -3px;
  margin-right: 5px;
  font-size: 20px;
  line-height: 1;
}
.nav-main > li > a:hover, .nav-main > li > a:focus, .nav-main > li > .btn:hover, .nav-main > li > .btn:focus {
  color: #fff;
  text-decoration: none;
  background-color: var(--pricolor);
}
.nav-main > li.active > a, .nav-main > li.active > .btn {
  color: #fff;
  background-color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 10%));
}
.nav-main .btn:focus {
  box-shadow: none;
}
.nav-main .dropdown-menu {
  min-width: 12rem;
}
.nav-main .dropdown-item {
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.nav-main .dropdown-item:hover, .nav-main .dropdown-item:focus {
  color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 15%));
  background-color: var(--grey-dark);
}
.nav-main .dropdown-item:active, .nav-main .dropdown-item.active {
  color: #fff;
  background: var(--pricolor);
}

.nav-top {
  margin-bottom: 7px;
  padding: 0;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.nav-top > li {
  margin-top: 1px;
  margin-bottom: 1px;
}
.nav-top a, .nav-top .btn {
  padding: 9px 18px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-primary);
  transition: background-color 0.2s ease;
}
.nav-top a i, .nav-top .btn i {
  margin-left: -3px;
  margin-right: 5px;
  font-size: 20px;
  line-height: 1;
}
.nav-top a:hover, .nav-top a:focus, .nav-top .btn:hover, .nav-top .btn:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav-top .btn-highlight {
  color: var(--pricolor);
  box-shadow: inset 0 0 0 2px var(--pricolor);
  transition: all 0.2s ease;
}
.nav-top .btn-highlight:hover, .nav-top .btn-highlight:focus {
  color: #fff;
  background-color: var(--pricolor);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  position: relative;
}
.footer-links li a {
  position: relative;
  padding: 4px 0 4px 22px;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer-links li a:before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "󰅂";
  font-size: 20px;
  line-height: 1;
  font-family: "Material Design Icons";
  color: var(--pricolor);
}
.footer-links li a:hover, .footer-links li a:focus {
  color: #fff;
}

.side-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.side-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.side-menu > li {
  padding: 2px;
  border-bottom: 1px solid #e5e5e5;
}
.side-menu > li:last-child {
  border-bottom: none;
}
.side-menu .side-link {
  padding: 14px 20px 14px;
  display: flex;
  border-radius: 3px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s ease;
}
.side-menu .side-link i {
  margin-right: 5px;
  font-size: 19px;
  line-height: 1;
}
.side-menu .side-link:hover, .side-menu .side-link:focus, .side-menu .side-link.active-child {
  text-decoration: none;
  color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 15%));
  box-shadow: none;
  background: hsl(var(--pricolor-h), var(--pricolor-s), 90%);
}
.side-menu .side-link.active {
  color: #fff;
  background: var(--pricolor);
}
.side-menu .side-link.active:hover, .side-menu .side-link.active:focus {
  color: #fff;
  background: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) + 10%));
}
.side-menu .side-submenu {
  padding: 0 10px;
}
.side-menu .side-submenu .side-link {
  padding-top: 10px;
  padding-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
}
.side-menu .btn-dropdown {
  position: relative;
  padding-right: 25px;
  width: 100%;
  justify-content: flex-start;
  border: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text-primary);
}
.side-menu .btn-dropdown:after {
  position: absolute;
  top: 50%;
  right: 5px;
  content: "󰅀";
  margin-top: -11px;
  font-family: "Material Design Icons";
  font-size: 22px;
  line-height: 1;
  transform: rotate3d(0, 0, 1, 180deg);
  transition: all 0.2s ease;
}
.side-menu .btn-dropdown.collapsed:after {
  transform: rotate3d(0, 0, 1, 0deg);
}
.side-menu .btn-dropdown.active-child {
  text-decoration: none;
  color: var(--pricolor);
  box-shadow: none;
}

.btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.btn-lg {
  padding: 10px 30px;
}

.btn-long {
  padding: 8px 30px;
}

.btn-main {
  border: none;
  color: #fff;
  background-color: var(--pricolor);
}
.btn-main:hover, .btn-main:focus {
  color: #fff;
  background-color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 10%));
}

.btn-white {
  border: none;
  color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) + 10%));
  background-color: #fff;
}
.btn-white:hover, .btn-white:focus {
  color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) + 10%));
  background-color: rgba(255, 255, 255, 0.8);
}

#breadcrumbs {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}
#breadcrumbs > span {
  display: flex;
  align-items: center;
}
#breadcrumbs > span:first-child a:before {
  content: "󰚡";
  margin-right: 5px;
  font-size: 18px;
  line-height: 1;
  font-family: "Material Design Icons";
}
#breadcrumbs > span:last-child span[itemprop=name] {
  padding: 4px 9px 3px;
  display: flex;
  color: var(--text-primary);
}
#breadcrumbs a {
  padding: 4px 9px 3px;
  display: flex;
  align-items: center;
  border-radius: 3px;
  color: hsl(var(--pricolor-h), var(--pricolor-s), calc(var(--pricolor-l) - 15%));
  transition: all 0.2s ease;
}
#breadcrumbs a + i {
  padding-top: 2px;
  font-size: 20px;
  line-height: 1;
  /* color: rgba(#fff, 0.5);*/
}
#breadcrumbs a:hover, #breadcrumbs a:focus {
  text-decoration: none;
  background-color: var(--grey-dark);
}

.badge-highlight {
  margin-top: -5px;
  margin-left: 3px;
  padding: 4px 10px;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  background-color: red;
}

@media (min-width: 768px) {
  .box-contact ul {
    justify-content: flex-start;
  }

  .box-social-top {
    justify-content: flex-end;
  }

  #footer .footer-top > .container > .row > [class*=col]:last-child, #footer .footer-top > .container > .row > [class*=col]:nth-last-child(2) {
    margin-bottom: 0;
  }

  .notice-wrapper {
    padding: 30px 50px;
  }
}
@media (min-width: 992px) {
  .content-holder #left-sidebar, .content-holder #right-sidebar {
    margin-top: 0;
  }
  .content-holder .content-ls {
    padding-left: 30px;
  }
  .content-holder .content-rs {
    padding-right: 30px;
  }

  #showcase .sc-item {
    height: 620px;
  }
  #showcase .sc-content h1 {
    font-size: 48px;
    line-height: 54px;
  }
  #showcase .sc-content p {
    font-size: 18px;
    line-height: 28px;
  }
  #showcase .owl-nav [class*=owl-] i {
    padding-left: 10px;
    padding-right: 10px;
  }

  #footer .footer-top > .container > .row > [class*=col]:not(:last-child) {
    margin-bottom: 0;
  }

  #notices.notices-alt .notice-wrapper {
    flex-direction: row;
  }
  #notices.notices-alt .notice-wrapper .nw-title {
    width: 180px;
  }
  #notices.notices-alt .notice-wrapper .nw-item {
    padding-right: 70px;
    text-align: left;
  }
  #notices.notices-alt .notice-wrapper.notice-single .nw-item {
    padding-right: 15px;
  }

  .notice-wrapper {
    padding: 40px 80px;
  }
}
@media (min-width: 1200px) {
  .nav-main {
    justify-content: flex-end;
  }
  .nav-main > li > a, .nav-main > li > .btn {
    margin-left: 2px;
  }

  .nav-top {
    justify-content: flex-end;
  }
  .nav-top > li > a, .nav-top > li > .btn {
    margin-left: 2px;
  }
}
@media (min-width: 1300px) {
  .box-test .owl-nav {
    margin-top: 0;
  }
  .box-test .owl-nav i {
    margin: 0;
  }
  .box-test .owl-nav button {
    position: absolute;
    top: 50%;
    margin-top: -40px;
  }
}/*# sourceMappingURL=template.css.map */