/* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * Vendor-prefixed and regular ::selection selectors cannot be combined: * https://stackoverflow.com/a/16982510/7133471 * * Customize the background color to match your design. */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:300,400,600,700&display=swap");
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #efefef;
  font-size: 14px;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* * A better looking default horizontal rule */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* * Remove default fieldset styles. */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

/* * Allow only vertical resizing of textareas. */
textarea {
  resize: vertical;
}

p {
  font-size: 16px;
  line-height: 27px;
  color: #777777;
  font-weight: 400;
}

.mr10 {
  margin-right: 10px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.header-top {
  background-color: #00a4a6;
  font-family: 'Poppins', sans-serif;
  padding: 5px 0;
}

.header-top .icons a {
  position: relative;
  z-index: 1;
  font-size: 13px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  display: inline-block;
  color: #fff;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.header-top .icons a:hover {
  color: #333333;
}

.header-top .con {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-top .con li {
  display: inline-block;
  margin-right: 15px;
  padding: 8px 0;
}

.header-top .con li a {
  color: #fff;
}

.header-top .con li a i {
  margin-right: 5px;
}

.header-top .top-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.header-top .top-menu li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  padding: 8px 0;
}

.header-top .top-menu li::before {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 15px;
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header-top .top-menu li a {
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-top .top-menu li a::before {
  background-color: #333;
  opacity: 0;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  height: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-top .top-menu li a:hover::before {
  opacity: 1;
  width: 100%;
}

.header-top .top-menu li a:hover {
  color: #333;
}

.header-top .top-menu li a i {
  margin-right: 5px;
}

.header-main {
  background-color: #fff;
}

@media (max-width: 991px) {
  .header-main {
    padding: 10px 0;
  }
}

.header-main .logo-box {
  margin-top: -48px;
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(72, 127, 255, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(72, 127, 255, 0.2);
  position: relative;
  z-index: 10;
  min-height: 160px;
}

@media (max-width: 991px) {
  .header-main .logo-box {
    margin-top: 10px;
    min-height: 0;
  }
}

.header-main .heading {
  padding: 10px 0 0;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .header-main .heading {
    margin-top: 20px;
  }
}

.header-main .btns-box {
  text-align: right;
}

.header-main .btns-box a {
  padding: 5px;
  width: 160px;
  padding-left: 50px;
  border-radius: 10px;
  height: 50px;
  text-align: left;
  margin: 2px 3px;
  position: relative;
  border: 1px solid rgba(3, 3, 3, 0.36);
  -webkit-transition: .3s all;
  transition: .3s all;
  display: table;
}

.header-main .btns-box a:hover {
  background-color: #00a4a6;
}

.header-main .btns-box a:hover i {
  background-color: #fff;
  color: #00a4a6;
}

.header-main .btns-box a:hover span {
  color: #fff;
}

.header-main .btns-box a i {
  color: white;
  height: 40px;
  width: 40px;
  padding-top: 12px;
  text-align: center;
  background-color: #00a4a6;
  position: absolute;
  left: 5px;
  font-size: 1.2em;
  top: 5px;
  border-radius: 50%;
}

.header-main .btns-box a span {
  margin: 0;
  color: black;
  font-size: 1em;
  font-weight: bold;
  padding: 0px 5px;
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .header-main .btns-box {
    text-align: center;
  }
  .header-main .btns-box a {
    display: inline-block;
  }
}

.banners {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.banners .owl-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.banners .owl-dot {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 2px solid #00a4a6;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.banners .owl-dot.active {
  background-color: #00a4a6;
}

.banners .owl-carousel .owl-item img {
  max-width: none;
  width: 100%;
}

.main-slider .owl-nav {
  width: 80px;
  height: 42px;
  right: 5px;
  bottom: 5px;
  position: absolute;
  z-index: 999;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.main-slider .owl-nav .owl-prev {
  background: #2e567a;
  color: #fff;
  line-height: 22px;
  font-size: 22px;
  border-radius: 3px;
  padding: 10px 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  left: 0px;
  position: absolute;
  top: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.main-slider .owl-nav .owl-next {
  background: #2e567a;
  color: #fff;
  line-height: 22px;
  font-size: 22px;
  padding: 10px 15px;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  right: 0px;
  position: absolute;
  top: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.banners:hover .owl-prev {
  left: 0;
  opacity: 1;
  visibility: visible;
  background-color: #122230;
}

.banners:hover .owl-next {
  right: 0;
  opacity: 1;
  visibility: visible;
  background-color: #122230;
}

.navbar-toggle {
  border-color: #fff;
  cursor: pointer;
}

.navbar-toggle .icon-bar {
  background-color: #fff;
}

.menubar {
  margin: 0 auto;
  background-color: #00a4a6;
  padding: 5px 0;
}

.nav > li > a:focus,
.nav > li > a:hover {
  text-decoration: none;
  background-color: transparent;
  color: #ccc;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: .8em;
}

@media (max-width: 767px) {
  .navbar-nav > li > a {
    padding: 5px 0;
  }
}

.navbar {
  margin-bottom: 0;
  border: 0;
}

.dropdown-menu {
  background-color: #00a4a6;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top: 6px solid transparent;
}

.dropdown-menu > li > a {
  color: white;
  display: block;
  padding: 10px 20px;
  width: 100%;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  color: white;
  text-decoration: none;
  background-color: #102c46;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: transparent;
  color: #00a4a6;
}

@media (min-width: 768px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    border: 0;
    border-bottom: 0;
    border-radius: 0;
  }
  .dropdown-menu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .navbar-nav > li ~ li {
    border-left: 1px solid white;
  }
  .navbar-nav > li > .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 5px solid transparent !important;
  }
  .navbar {
    min-height: 0;
  }
}

.dropdown-header {
  color: #efefef;
}

.location-section {
  background-color: #f4fbfd;
  padding: 30px 0 50px;
}

.location-section .owl-dots {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

.location-section .owl-dot {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 2px solid #00a4a6;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.location-section .owl-dot.active {
  background-color: #00a4a6;
}

.location-section .single-working-info {
  background-color: #fff;
  border: 1px dashed #cdcdcd;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.location-section .single-working-info:hover {
  border: 1px dashed #00a4a6;
}

.location-section .single-working-info i {
  font-size: 40px;
  padding: 20px 0;
}

.location-section .single-working-info h3 {
  border-bottom: 1px dashed #cdcdcd;
  border-top: 1px dashed #cdcdcd;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
  padding: 20px 0;
  text-transform: uppercase;
}

.location-section .single-working-info p {
  margin: 0;
  margin: 15px 0;
  color: #444;
  font-weight: bold;
}

.location-section .single-working-info p span {
  font-weight: 500;
}

.section-title {
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
  position: relative;
  padding: 15px 0 20px;
  margin-bottom: 30px;
}

.section-title::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100px;
  background-color: #00a4a6;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.testimonials {
  position: relative;
  padding: 100px 0px;
  background-color: #f9f9f9;
}

.testimonials.light:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.85);
}

.tow-in-one-section {
  padding: 110px 0px 40px;
}

.testimonials.parallax:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(34, 34, 34, 0.85);
}

.tow-in-one-section .latest-news,
.tow-in-one-section .testimonials,
.tow-in-one-section .about-experts,
.tow-in-one-section .faqs-section {
  padding: 0px 15px;
}

.testimonials .sec-title {
  margin-bottom: 70px;
}

.testimonials .slide-item {
  position: relative;
  margin: 10px;
}

.testimonials .slide-item .upper-content {
  position: relative;
  padding: 30px 40px 25px;
  background: #ffffff;
  border-radius: 3px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.testimonials .slide-item .upper-content:after {
  content: '';
  position: absolute;
  left: 30px;
  top: 100%;
  border: 15px solid transparent;
  border-top: 15px solid #ffffff;
}

.testimonials .slide-item .upper-content .text {
  position: relative;
  line-height: 28px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
}

.testimonials .slide-item .upper-content .rating {
  line-height: 24px;
  font-size: 14px;
  color: #ffaa00;
}

.testimonials .slide-item .upper-content .rating .fa {
  margin-right: 5px;
}

.now-visible {
  position: relative;
}

@media (min-width: 768px) {
  .now-visible {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}

.testimonials .slide-item .lower-content {
  position: relative;
  padding-left: 110px;
  min-height: 70px;
}

.testimonials .slide-item .lower-content .image {
  position: absolute;
  left: 10px;
  top: 0px;
  width: 70px;
}

.testimonials .slide-item .lower-content img {
  display: block;
  width: 100%;
}

.testimonials .slide-item .lower-content .image .social {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 30px;
  height: 30px;
  background: #232323;
  color: #ffffff;
  line-height: 26px;
  font-size: 14px;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.testimonials .slide-item .lower-content .image .social.facebook {
  background: #2682ff;
}

.testimonials .slide-item .lower-content .image .social.twitter {
  background: #05d9ff;
}

.testimonials .slide-item .lower-content .image .social.pinterest {
  background: #d32f2f;
}

.testimonials .slide-item .lower-content h3 {
  position: relative;
  top: 5px;
  font-size: 20px;
  color: #222328;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0px 0px 7px;
}

.testimonials .slide-item .lower-content .designation {
  position: relative;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  text-transform: capitalize;
}

.testimonials .slide-item .lower-content.light h3,
.testimonials .slide-item .lower-content.light .designation {
  color: #ffffff;
}

.slide-item.light .inner-box .content-box .designation,
.slide-item.light .inner-box .content-box p {
  color: #ffffff;
}

.slide-item.light .inner-box .content-box .quote-icon {
  color: #bbbbbb;
  position: absolute;
  right: 20px;
  font-size: 25px;
}

.testimonial-slider .owl-nav {
  position: absolute;
  right: 0;
  top: -90px;
  z-index: 99;
}

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next {
  position: relative;
  height: 40px;
  width: 40px;
  right: 0;
  border: 1px solid;
  text-align: center;
  line-height: 38px;
  font-size: 22px;
  background: #fff;
  margin-left: 10px;
  display: inline-block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.testimonial-slider .owl-prev:hover,
.testimonial-slider .owl-next:hover {
  background: #ffaa00;
  color: #fff;
  border-color: #ffaa00;
}

.testimonial-block {
  position: relative;
  margin-bottom: 25px;
}

.testimonial-block .inner-box {
  position: relative;
  padding-left: 120px;
}

.testimonial-block .inner-box .image-box {
  position: absolute;
  left: 0px;
  top: 0px;
  margin-bottom: 25px;
}

.testimonial-block .inner-box .image-box .image {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-block .inner-box .text {
  position: relative;
  font-size: 16px;
  color: #222222;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.testimonial-block .inner-box .author {
  position: relative;
  color: #ffaa00;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
}

.testimonial-block .inner-box .designation {
  position: relative;
  color: #5a6470;
  font-size: 15px;
  font-style: italic;
}

.quicklinks-section {
  background: url(../images/quicklinks_bg.jpg) no-repeat center center fixed;
  position: relative;
  z-index: 0;
}

.quicklinks-section::after {
  content: "";
  background-color: #041d26;
  opacity: .8;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.quicklinks-section .section-title {
  color: #fff;
}

.quicklinks-section .section-title::after {
  background-color: #fff;
}

.news-slider {
  height: 40px;
  padding-left: 150px;
  position: relative;
  background: #fff;
  z-index: 0;
  overflow: hidden;
  border: 2px solid #00a4a6;
}

.news-slider::before {
  height: 100%;
  width: 150px;
  content: "News Updates";
  position: absolute;
  top: 0;
  left: 0;
  background:#00a4a6;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding-top: 7px;
  z-index: 99;
}

.news-slider::after {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #00a4a6;
  position: absolute;
  content: "";
  left: 150px;
  z-index: 99;
}

@media (max-width: 767px) {
  .news-slider::before {
    height: 100%;
    width: 50px;
    content: "\f1ea";
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    background: #00a4a6;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding-top: 7px;
    z-index: 99;
  }
  .news-slider::after {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #00a4a6;
    position: absolute;
    content: "";
    left: 50px;
    z-index: 99;
  }
}

.news-slider a {
  text-decoration: none;
  color: #000;
  padding: 8px;
  display: inline-block;
}

.form-box {
  padding: 15px;
  min-height: 388px;
}

.form-box input,
.form-box textarea {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  color: #666666;
  min-height: 40px;
}

.form-box .con-submit {
  background-color: #00a4a6;
  text-decoration: none;
  color: white;
  max-width: 120px;
  display: block;
  margin: 5px auto;
  text-align: center;
  padding: 10px 40px;
  -webkit-transition: .3s all;
  transition: .3s all;
  border: 1px solid #00a4a6;
}

.form-box .con-submit:hover {
  color: #00a4a6;
  background-color: transparent;
}

.quick-box {
  background-color: #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.quick-box a.view-all {
  background-color: #00a4a6;
  text-decoration: none;
  color: white;
  max-width: 120px;
  display: block;
  margin: 5px auto;
  text-align: center;
  padding: 10px 0px;
  -webkit-transition: .3s all;
  transition: .3s all;
  border: 1px solid #00a4a6;
}

.quick-box a.view-all:hover {
  color: #00a4a6;
  background-color: transparent;
}

.quick-box .title {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  background-color: #00a4a6;
  text-align-last: center;
  padding: 8px 0;
  font-family: 'Poppins', sans-serif;
}

.quick-box .content {
  background-color: #fff;
  height: 335px;
}

.quick-box .content li {
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  padding-left: 40px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
}

.quick-box .content .nav_links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quick-box .content .nav_links a {
  text-decoration: none;
  color: black;
  position: relative;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.quick-box .content .nav_links a:hover {
  padding-left: 10px;
}

.quick-box .content .nav_links a:before {
  font-family: FontAwesome;
  font-size: 16px;
  font-style: normal;
  margin-right: 5px;
  color: #00a4a6;
  content: "\f14c";
  position: absolute;
  left: -20px;
  top: -2px;
}

/* gallery */
.photo-section {
  background-color: #efefef;
}

.photo-section .owl-dots {
  position: relative;
  margin: 10px auto;
  width: 100%;
  text-align: center;
}

.photo-section .owl-dot {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 2px solid #00a4a6;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.photo-section .owl-dot.active {
  background-color: #00a4a6;
}

.gallery-section {
  height: 100%;
}

.nav_links img {
  max-width: 25px;
  margin-left: 10px;
}

.gallery-section > div {
  margin: 0;
}

.gallery-section > div > div {
  padding: 0;
}

.gallery-section img {
  width: 100%;
}

.gallery-section .block {
  background-color: #d0d0d0;
  display: block;
  text-decoration: none;
}

.gallery-section .content {
  position: relative;
  overflow: hidden;
}

.gallery-section .zoom {
  color: white;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(72, 127, 255, 0.8);
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
}

.zoom_icon .fa {
  font-size: 28px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}

.gallery-section .zoom:hover .zoom_icon .fa {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gallery-section .zoom div {
  margin: 5px 0;
}

.gallery-section .block * {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.gallery-section .block:hover .zoom {
  opacity: 1;
}

.gallery-section .block:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.more_btn {
  display: inline-block;
  font-family: 'ChunkFiveEx';
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px;
  min-width: 225px;
  min-height: 45px;
  margin-top: 45px;
  background-color: #00a4a6;
  color: #fff;
  border: 2px solid transparent;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.more_btn:hover {
  color: #00a4a6;
  background-color: #fff;
  border-color: inherit;
}

.more_btn .fa {
  margin-right: 3px;
}

.section-padding {
  padding: 40px 0;
}

.video-section .owl-dots {
  position: relative;
  bottom: 0;
  text-align: center;
  margin: 15px auto 0;
}

.video-section .owl-dots .owl-dot {
  border-color: #00a4a6;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  background-color: #456d64;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.video-section .owl-dots .owl-dot.active, .video-section .owl-dots .owl-dot:hover {
  background-color: #00a4a6;
}

.video-section .video {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}

.video-section .video img {
  width: 100%;
}

.video-section .video:hover .overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.video-section .video .overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.video-section .video .overlay i {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #00a4a6;
  background-color: #fff;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
            box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
            box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
            box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.footer-top-area {
  background: #111111 none repeat scroll 0 0;
  position: relative;
  color: #cacaca;
}

.footer-top-area::before {
  background-image: url("../images/footer_bg.png");
  content: "";
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  top: -18px;
  width: 100%;
}

.footer-top-area a {
  color: #cacaca;
}

.footer-wid {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .footer-wid {
    padding: 15px 0 !important;
  }
}

.footer-wid .footer-logo {
  background: #fff none repeat scroll 0 0;
  color: #222;
  display: inline-block;
  font-size: 16px;
  margin: 0 0 10px;
  padding: 20px 40px;
  text-transform: uppercase;
}

.footer-wid .footer-wid-title {
  color: #fff;
  font-size: 23px;
  margin: 0 0 25px;
}

.footer-wid ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.footer-wid span {
  display: block;
  font-size: 14px;
  font-weight: 300;
}

.footer-wid .address-info span {
  display: block;
  padding: 4px 0;
}

.footer-wid .single-footer-iem {
  border-bottom: 1px solid #222222;
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 17px;
  padding-bottom: 15px;
}

.footer-wid .single-footer-iem :last-child {
  margin-bottom: 0;
}

.footer-wid .single-footer-iem img {
  float: left;
  margin-right: 10px;
  width: 80px;
}

.footer-wid .single-footer-iem p {
  line-height: 15px;
  margin: 0 0 5px;
}

.footer-wid .single-footer-iem span {
  font-size: 13px;
}

.footer-wid .social-icos li {
  display: inline-block;
  margin-right: 10px;
}

.footer-wid .social-icos li:last-child {
  margin: 0;
}

.footer-wid .social-icos li a {
  background: #222 none repeat scroll 0 0;
  border-radius: 50%;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
  transition: .3s;
  -webkit-transition: .3s;
}

.footer-wid .social-icos li a:hover {
  color: #fff;
}

.footer-wid .opening-hour {
  margin: 15px 0 20px !important;
}

.footer-wid .opening-hour li {
  border-bottom: 1px solid #343434;
  font-size: 13px;
  line-height: 34px;
}

.footer-wid .opening-hour li span {
  color: #989898;
  float: right;
}

.footer-wid.pl-30 {
  padding-left: 30px;
}

.footer-wid.footer-menu {
  text-transform: capitalize;
}

.footer-wid.footer-menu i.fa-chevron-circle-right {
  padding-right: 5px;
}

.footer-wid.footer-menu li {
  line-height: 0;
  margin-bottom: 14px;
}

.footer-wid.footer-menu li :last-child {
  margin-bottom: 0;
}

.footer-wid.footer-menu li a:hover {
  padding-left: 5px;
}

.footer-copyright-area {
  background: #00a4a6 none repeat scroll 0 0;
  color: #fff;
  padding: 15px 0;
}

.footer-copyright-area ul {
  margin: 0;
}

.footer-copyright-area ul li img {
  width: 30px;
}

#back-to-top {
  border: 0 none;
  border-radius: 30px 0px 0px 30px;
  font-size: 16px;
  bottom: 20px;
  -webkit-box-shadow: 0 0 10px #dddddd;
  box-shadow: 0 0 10px #dddddd;
  color: #fff;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  position: fixed;
  right: 0;
  text-align: center;
  text-decoration: none;
  background-color: #00a4a6;
  transition: opacity 0.2s ease-out 0s;
  -webkit-transition: opacity 0.2s ease-out 0s;
  width: 45px;
  z-index: 999999;
  padding-left: 5px;
}

#back-to-top:hover {
  background-color: #222;
  color: #fff;
}

#back-to-top.show {
  opacity: 1;
}

/* Back to top feature */
@media (max-width: 1199px) and (min-width: 992px) {
  .text-md-center {
    text-align: center;
  }
  .footer-wid {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .header-top {
    text-align: center;
  }
  .logo-box {
    max-width: 300px;
    margin: 10px auto;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .logo-box {
    min-height: auto;
  }
}

.selection-section {
  padding: 50px 0;
  background-color: #fff;
}

.our-team {
  text-align: center;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.our-team .pic {
  background: #00a4a6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.our-team .pic img {
  width: 100%;
  height: auto;
}

.our-team .team-content {
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 5px;
  bottom: 5px;
  right: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.our-team:hover .team-content {
  background: white;
}

.our-team .title {
  font-size: 18px;
  padding: 5px 0;
  color: #00a4a6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.our-team .post {
  display: block;
  font-size: 15px;
  padding: 0 0 5px;
  font-weight: 600;
  color: #00a4a6;
  text-transform: capitalize;
  margin: 0 0 5px 0;
}

.selection-slider .owl-dots {
  position: relative;
  margin: 10px auto 5px;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

.selection-slider .owl-dot {
  height: 12px;
  width: 12px;
  border: 2px solid #00a4a6;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.selection-slider .owl-dot.active {
  background-color: #00a4a6;
}

.view-all-btn {
  margin: 5px auto;
  background: #00a4a6;
  color: #fff;
}

.view-all-btn:hover {
  background-color: #aa0f0b;
  color: #fff;
}

.counter-section {
  background: url(../images/quicklinks_bg.jpg) no-repeat center center fixed;
  position: relative;
  z-index: 0;
  padding: 20px 0;
}

.counter-section::after {
  content: "";
  background-color: #041d26;
  opacity: .8;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

.counter-section h4,
.counter-section h3 {
  color: #fff;
}

.counter-section .counter-item {
  margin-top: 30px;
  margin-bottom: 30px;
}

.section-counter .counter-icon i {
  font-size: 35px;
  color: #d32f2f;
}

.section-counter .counter-title {
  font-size: 17px;
}

.counter-icon {
  float: left;
  margin-right: 25px;
}

@media (max-width: 450px) {
  .counter-icon {
    float: none;
    margin: 0 auto 10px;
    text-align: center;
  }
}

.counter-content {
  float: left;
}

@media (max-width: 450px) {
  .counter-content {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
}

.section-counter .counter-nos {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 450px) {
  .section-counter .counter-nos {
    font-size: 28px;
  }
}

.counterup-2 .thumb-summary-wrap {
  background: #fff;
  overflow: hidden;
  padding: 30px 30px 15px;
}

.courses-section {
  background-color: #fff;
  overflow: hidden;
}

.courses-section .courses-slider {
  margin-top: 20px;
  padding: 0 40px;
}

.courses-section .courses-slider .owl-nav {
  top: 40%;
  left: 0;
  width: 100%;
  position: absolute;
}

.courses-section .courses-slider .owl-nav .owl-prev,
.courses-section .courses-slider .owl-nav .owl-next {
  height: 30px;
  width: 30px;
  background-color: #00a4a6;
  color: #fff;
  text-align: center;
  padding-top: 5px;
  position: absolute;
  top: 0;
}

.courses-section .courses-slider .owl-nav .owl-prev:hover,
.courses-section .courses-slider .owl-nav .owl-next:hover {
  background-color: #135194;
}

.courses-section .courses-slider .owl-nav .owl-prev {
  left: 0;
}

.courses-section .courses-slider .owl-nav .owl-next {
  right: 0;
}

.courses-section .courses-slider .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.courses-section .courses-slider .owl-dot {
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 2px solid #00a4a6;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.courses-section .courses-slider .owl-dot.active {
  background-color: #00a4a6;
}

.courses-section .info-item {
  text-align: center;
  display: block;
}

.courses-section .info-item .icon {
  min-height: 70px;
}

.courses-section .info-item .icon img {
  max-width: 92%;
  margin: 0 auto;
}

.courses-section .info-item i {
  font-size: 50px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #2e567a;
  margin-bottom: 30px;
  border: 1px solid #00a4a6;
  line-height: 75px;
}

.courses-section .info-item span {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  color: #2b2b2b;
  display: block;
  padding: 10px 0;
}

.courses-section .info-item .item {
  height: auto;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid lightgray;
  width: 100%;
  margin-bottom: 30px;
}

.courses-section .info-item .item:hover > i {
  color: white;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #00a4a6;
}

.courses-section .hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
          box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}

.courses-section .hvr-underline-from-left::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #00a4a6;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.courses-section .hvr-underline-from-left:hover::before {
  right: 0;
  background: #00a4a6;
}

.page-section p {
  font-size: 14px;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 0;
  color: #fff;
  -webkit-box-shadow: 0 0 0 0;
          box-shadow: 0 0 0 0;
  outline: 0;
  border-color: #00a4a6;
  color: #fff;
  background-color: #00a4a6;
  box-shadow: 0 0 0 0;
  outline: 0;
  margin-bottom: 15px;
}

.page-pic img {
  max-width: 100%;
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*----------------page-wrapper----------------*/
.page-wrapper {
  height: 100vh;
}

.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}

.page-wrapper .theme.sunrise-theme {
  background: #1a1a1a;
}

/*----------------toggeled sidebar----------------*/
.page-wrapper.toggled .sidebar-wrapper {
  left: 0px;
}

@media screen and (min-width: 768px) {
  .page-wrapper.toggled .page-content {
    padding-left: 260px;
  }
}

/*----------------sidebar-wrapper----------------*/
.sidebar-wrapper {
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/
.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/
.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-wrapper .sidebar-brand > a {
  text-transform: uppercase;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
}

/*--------------------sidebar-header----------------------*/
.sidebar-wrapper .sidebar-header {
  padding: 20px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
  float: left;
  width: 60px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
  float: left;
}

.sidebar-wrapper .sidebar-header .user-info > span {
  display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

/*-----------------------sidebar-search------------------------*/
.sidebar-wrapper .sidebar-search > div {
  padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/
.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 8px 30px 8px 20px;
}

.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
  display: inline-block;
  -webkit-animation: swing ease-in-out 0.5s 1 alternate;
          animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  content: "\f111";
  font-family: "FontAwesome";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 8px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  right: 17px;
}

.sidebar-wrapper .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar-wrapper .input-group .input-group-append {
  background: #3a3f48;
  padding-top: 7px;
  padding-right: 10px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

/*--------------------------side-footer------------------------------*/
.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
}

@media (max-width: 767px) {
  .sidebar-footer {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9999;
  }
}

.sidebar-footer > a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}

.sidebar-footer > a .notification {
  position: absolute;
  top: 0;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-animation: sonar 1.5s infinite;
          animation: sonar 1.5s infinite;
}

/*--------------------------page-content-----------------------------*/
.page-wrapper .page-content {
  display: inline-block;
  width: 100%;
  padding-left: 0px;
}

.page-wrapper .page-content {
  overflow-x: hidden;
}

/*------scroll bar---------------------*/
::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/*-----------------------------sunrise-theme-------------------------------------------------*/
.sunrise-theme .sidebar-wrapper {
  background: #252525;
}

.sunrise-theme .sidebar-wrapper .sidebar-header,
.sunrise-theme .sidebar-wrapper .sidebar-search,
.sunrise-theme .sidebar-wrapper .sidebar-menu {
  border-top: 1px solid #3a3f48;
}

.sunrise-theme .sidebar-wrapper .sidebar-search input.search-menu,
.sunrise-theme .sidebar-wrapper .sidebar-search .input-group-text {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sunrise-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.sunrise-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.sunrise-theme .sidebar-wrapper .sidebar-search input.search-menu,
.sunrise-theme .sidebar-wrapper .sidebar-search .input-group-text,
.sunrise-theme .sidebar-wrapper .sidebar-brand > a,
.sunrise-theme .sidebar-wrapper .sidebar-menu ul li a,
.sunrise-theme .sidebar-footer > a {
  color: #fff;
}

.sunrise-theme .sidebar-wrapper .sidebar-menu ul li:hover > a,
.sunrise-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a,
.sunrise-theme .sidebar-wrapper .sidebar-header .user-info,
.sunrise-theme .sidebar-wrapper .sidebar-brand > a:hover,
.sunrise-theme .sidebar-footer > a:hover i {
  color: #fff;
}

.page-wrapper.sunrise-theme.toggled #close-sidebar {
  color: #fff;
}

.page-wrapper.sunrise-theme.toggled #close-sidebar:hover {
  color: #ffffff;
}

.sunrise-theme .sidebar-wrapper ul li:hover a i,
.sunrise-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.sunrise-theme .sidebar-wrapper .sidebar-search input.search-menu:focus + span,
.sunrise-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
  color: #16c7ff;
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}

.sunrise-theme .sidebar-wrapper .sidebar-menu ul li a i,
.sunrise-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.sunrise-theme .sidebar-wrapper .sidebar-search input.search-menu,
.sunrise-theme .sidebar-wrapper .sidebar-search .input-group-text {
  background: #3a3f48;
}

.sunrise-theme .sidebar-wrapper .sidebar-menu .header-menu span {
  color: #6c7b88;
}

.sunrise-theme .sidebar-footer {
  background: #3a3f48;
  -webkit-box-shadow: 0px -1px 5px #282c33;
          box-shadow: 0px -1px 5px #282c33;
  border-top: 1px solid #464a52;
}

.sunrise-theme .sidebar-footer > a:first-child {
  border-left: none;
}

.sunrise-theme .sidebar-footer > a:last-child {
  border-right: none;
}

@media (max-width: 550px) {
  .custom-grid {
    display: block;
    width: 100%;
    clear: both;
  }
  .header-main .heading {
    margin-top: 0%;
  }
  .header-main .btns-box a {
    width: 150px;
  }
}
/*# sourceMappingURL=style.css.map */