/**
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}
/* Colors */
:root {
  --color-primary: #4682B4;
}
body {
  font-family: "Open Sans", sans-serif;
  background: #f7f9ff;
  color: #3d4345;
}
a {
  color: #4682B4;
  text-decoration: none;
}
a:hover {
  color: #f62f0f; 
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 40px 0;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  #main {
    padding: 0;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.sections-bg {
  background-color: #ECF0F3;
}
.section-header {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 70px;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px; 
  padding-bottom: 10px; 
  position: relative; 
  color: #3d4345;
}
.section-header h2::before {
  content: ""; 
  position: absolute; 
  display: block; 
  width: 120px; 
  height: 1px; 
  background: #ddd; 
  bottom: 1px; 
  left: calc(50% - 60px);
}
.section-header h2::after { 
  content: ""; 
  position: absolute; 
  display: block; 
  width: 40px; 
  height: 3px;
  background: #f62f0f; 
  bottom: 0; 
  left: calc(50% - 20px);
}
.title-link {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: right;
}
.title-link a {
  text-decoration: none;
  color: #3d4345;
}
.title-link a:hover {
  text-decoration: none;
  color: #f62f0f;
}
.title-link span {
  font-size: 15px;
  padding-left: 2px;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4682B4;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #f62f0f; 
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}
@media (max-width: 480px) {
  .dropdown-menu {
    width: 100vw !important;
  }
}
.dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}
.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}
.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}
.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}
.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}
@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs nav {
  background-color: #ECF0F3;
  padding: 20px 0;
  margin-top: -11px;
}
.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #3d4345;
}
.breadcrumbs nav ol a {
  color: #4682B4;
  transition: 0.3s;
}
.breadcrumbs nav ol a:hover {
  text-decoration: none;
  color: #fd7e14;
}
.breadcrumbs nav ol li+li {
  padding-left: 10px;
}
.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #f85a40;
  content: "|";
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}
.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {
  #main, #footer {
    margin-left: 300px;
  }
}
@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .toggle-sidebar #main, .toggle-sidebar #footer {
    margin-left: 0;
  }
  .toggle-sidebar .sidebar {
    left: -300px;
  }
}
.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav .nav-item {
  margin-bottom: 5px;
}
.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #f62f0f; 
  transition: 0.3;
  background: #dde8ff;
  padding: 10px 15px;
  border-radius: 4px;
}
.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4682B4;
}
.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}
.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}
.sidebar-nav .nav-link:hover {
  color: #f62f0f; 
  background: #f6f9ff;
}
.sidebar-nav .nav-link:hover i {
  color: #4682B4;
}
.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}
.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}
.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}
.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}
.sidebar-nav .nav-content a:hover, .sidebar-nav .nav-content a.active {
  color: #f62f0f; 
}
.sidebar-nav .nav-content a.active i {
  background-color: #f62f0f; 
}
/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard {
  margin-bottom: 30px;
  }
.dashboard .filter {
  position: absolute;
  right: 0;
  top: 15px;
}
.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}
.dashboard .filter .icon:hover, .dashboard .filter .icon:focus {
  color: #4154f1;
}
.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}
.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}
.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}
/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}
.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}
.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}
.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}
.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}
/* Activity */
.dashboard .activity {
  font-size: 14px;
}
.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}
.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}
.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}
.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}
.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}
.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item + .post-item {
  margin-top: 15px;
}
.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}
.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}
.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}
.dashboard .news h4 a:hover {
  color: #f62f0f;
}
.dashboard .news p {
  font-size: 14px;
  color: #3d4345;
  margin-left: 95px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: #25557C;
  margin-bottom: 10px;
}
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}
.hero h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.hero p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 10px;
  border-radius: 4px;
  transition: 0.3s;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.hero .btn-get-started:hover {
  border-color: #fff;
  background: #f62f0f; 
}
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}
.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
.hero .btn-watch-video:hover i {
  color: #fff;
}
@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}
.hero .icon-boxes {
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #f6f9ff;
  }
}
.hero .icon-box {
  padding: 20px 25px;
  position: relative;
  overflow: hidden;
  background: #5B7A92;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.hero .icon-box .title {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}
.hero .icon-box p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.hero .icon-box  a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.hero .icon-box  a:hover {
  color: #f62f0f; 
}
#hero .animated { 
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {transform: translateY(8px);
} 
100% {transform: translateY(-8px);
}}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}
@media (min-width: 1200px) {
  .logo {
    width: 150px;
  }
}
.logo img {
  max-height: 25px;
  margin-right: 20px;
  margin-left: 20px;
}
.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #465164;
  padding-left: 20px;
  /* Toggle Sidebar Button */
}
.header .toggle-sidebar-btn {
  font-size: 32px;
  margin-left: 0;
  cursor: pointer;
  color: #fff;
}
  
.header .toggle-sidebar-btn:hover {
  font-size: 32px;
  margin-left: 0;
  cursor: pointer;
  color: #fff;
  content: "x";
}



.header .nav-item {
  padding: 0 20px;
  cursor: pointer;}
.header .nav-item span{
  color: #fff;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}
.header-nav > ul {
  margin: 0;
  padding: 0;
}
/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
.info .img {
  border-radius: 4px;
  overflow: hidden;
}
.info .img img {
  transition: 0.6s;
}
.info .details {
  padding: 5px 25px;
  margin: -55px 10px 0 10px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  position: relative;
  text-align: left;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  margin-bottom: 30px;
}
.info .details h4 {
  font-weight: 500;
  margin: 10px 0 10px 0;
  color: #3d4345;
  font-size: 20px;
  transition: ease-in-out 0.3s;
}
.info .info-item:hover .img img {transform: scale(1.1);
}
/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
  padding: 10px 0;
}
.about .about-img img {
  width: 100%;
}
.about .about-img {
  width: 100%;
}
/*--------------------------------------------------------------
# Card Section
--------------------------------------------------------------*/
.card {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.card h6 {
  margin-left: 5px;
  }
.card p {
  margin-left: 15px;
  margin-bottom: 20px;
  margin-right: 15px;
}
.card-body {
  padding: 10px 10px 10px 10px;
  border-radius: 4px;
}
/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #4682B4;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
.about .play-btn:hover:after {
  border-left: 15px solid #f62f0f;
  transform: scale(20);
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 80px 60px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 60px;
}
.call-to-action h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.call-to-action p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
}
.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #428BCA;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.call-to-action .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
.call-to-action .play-btn:hover:after {
  border-left: 15px solid #f62f0f;
  transform: scale(20);
}
.call-to-action .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.call-to-action .cta-btn:hover {
  background: #4682B4;
  border: 2px solid #f62f0f;
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: -30px;
}
.testimonials .testimonial-wrap {
  padding-left: 10px;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  border: 1px solid #d9d9d9;
  position: relative;
  background: #fff;
  border-radius: 4px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  border-radius: 50px;
  margin-right: 15px;
}
.testimonials .testimonial-item h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: #3d4345;
}
.testimonials .testimonial-item h6 {
  font-size: 16px;
  font-weight: 400;
  color: #3d4345;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #4682B4;
  font-size: 15px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  font-size: 14px;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 5px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4682B4;
}
.testimonials .swiper-pagination :hover {
  background-color: #f62f0f;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  border: 1px solid #d9d9d9;
  padding: 30px;
  border-radius: 4px;
  background: #fff;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .member-info {
  padding-left: 30px;
}
.team .member-info h5 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
  color: #3d4345;
}
.team .member span {
  display: block;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #f62f0f;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  background: #d4ebfd;
  color: #3f617e;
}
.team .member .social a i {
  font-size: 16px;
  margin: 0 2px;
}
.team .member .social a:hover {
  background: #f62f0f;
  color: #fff;
}
.team .member .social a + a {
  margin-left: 8px;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
  margin-top: 60px;
}
.clients img {
  max-width: 55%;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 15px 0;filter: none;
}
.clients img:hover {
  filter: none;
  transform: scale(1.2);
}
@media (max-width: 768px) {
.clients img{max-width: 50%;
}}
/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 30px 0;
}
.stats-counter .img-fluid {
  border-radius: 4px;
}
.stats-counter .stats-item {
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
}
.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
}
.stats-counter .stats-item i {
  font-size: 35px;
  margin-right: 15px;
}
.stats-counter .stats-item span {
  font-size: 30px;
  display: block;
  font-weight: 500;
  color: #4682B4;
  line-height: 30px;
}
.stats-counter .stats-item p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
.stats-counter p {
  margin-top: 10px;
  font-size: 18px;
  text-align: right;
}
/*--------------------------------------------------------------
# Menu Galeri
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}
.menu .nav-link {
  margin: 0 3px;
  padding: 5px 10px;
  transition: 0.3s;
  display: block;
  color: #3d4345;
  border-radius: 4px;
  cursor: pointer;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 2px;
    padding: 4px 8PX;
  }
}
.menu .nav-link h5 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 575px) {
  .menu .nav-link h6 {
    font-size: 16px;
  }
}
.menu .nav-link:hover {
  color: #fff;
  background-color: #f62f0f;
}
.menu .nav-link.active {
  color: #fff;
  background-color: #f62f0f;
}
.menu .tab-content .tab-header h4 {
  font-size: 20px;
  font-weight: 500;
  color: #3d4345;
}
.menu .tab-content .tab-header {
  padding: 40px 0;
}
.menu .tab-content .menu-item .menu-img {
  margin-bottom: 15px;
  border-radius: 4px;
}
.menu .tab-content .menu-item p {
  font-size: 14px;
  font-weight: 500;
  color: #3d4345;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 5px;
}
.menu .tab-content .menu-item h5 {
  font-size: 20px;
  font-weight: 600;
  color: #3d4345;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 5px;
}
/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial {
  background: linear-gradient(rgba(34, 40, 34, 0.8), rgba(34, 40, 34, 0.8)), url("../img/testimonial-bg.jpg") fixed center center;
  background-size: cover;
  padding-top: 10px;
  padding-bottom: 40px;
}
.testimonial .section-header {
  margin-bottom: 40px;
}
.testimonial .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonial .testimonial-item {
	text-align: center;
}
.testimonial .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid #F7FAFD;
  margin: 0 auto;
}
.testimonial .section-header h2 {
  color: #fff;
}
.testimonial .testimonial-item h4 {
  font-size: 24px;
  font-family: "Roboto", sans-serif;  
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonial .testimonial-item h5 {
  font-size: 18px;
  font-family: "Roboto", sans-serif;  
  font-weight: 500;
  color: #fff;
  margin: 0 0 15px 0;
}
.testimonial .testimonial-item p {
  margin: 0 auto 14px auto;
  font-family: "Open Sans", sans-serif; 
  font-size: 16px;
  color: #fff;
}
.testimonial .swiper-pagination {
  margin-top: 5px;
  position: relative;
}
.testimonial .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  border: 1px solid #d9d9d9;
  background-color: #fff;
}
.testimonial .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4682B4;
}
.testimonial .swiper-pagination :hover {
  background-color: #f62f0f; 
}
@media (min-width: 992px) {
  .testimonial .testimonial-item p {
    width: 80%;
}}
/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.contact-bar {
  position: fixed;
  top: 120px;
  z-index: 10;
}
.contact-bar.left {
  left: -40px;
}
.contact-bar.right {
  right: -40px;
}
a {
  text-decoration: none;
}
.cb-link {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 3px;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  color: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 250ms;
     -moz-transition: all 250ms;
          transition: all 250ms;
}
.cb-link:hover {
  color: #dae6f0; 
}
.right .cb-link {
  right: 0;
  border-radius: 4px 0 0 4px;
}
.cb-link .icon {
  margin: 0 !important;
}
.left .cb-link.cb-hidden {
  left: -40px;
}
.right .cb-link.cb-hidden {
  right: -40px;
}
.toggle-bar {
  background: #9d9d9d;
  color: #333;
}
.cb-link.toggle-bar:hover { 
  background: #4682B4;
  color: #fff;
}
/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.tabs-main {
  padding-right: 15px;
  margin-bottom:40px;
}
.accordion-main {
  padding-left: 0;
}
.panel-group .panel-heading {
  cursor: pointer;
  padding: 15px;
  padding-bottom: 5px;
}
.panel-body{
  padding: 15px 20px 3px;
  font-size: 15px;
  color: #788487;
}
.panel-title {
  font-size: 16px;
  font-weight: 500;
  color: #3d4345;
  text-transform: none;
}
.panel-title .num {
  padding-right: 5px;
  font-size: 18px;
  line-height: 0;
}
.panel-group .panel {
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
  border-radius: 4px;
}
.panel-group .panel-body {
  border-top: 1px solid #d9d9d9;
}
#accordion .accordion-toggle:after {
  font-family:"FontAwesome";
  content: "\f106";
  float: right;
  color: #fd7e14;
  font-size: 18px;
}
#accordion .panel-heading.collapsed .accordion-toggle:after {
  content: "\f107";
  color: #3d4345;
}
.collapse.in{display:block}
/*--------------------------------------------------------------
# Category Widget
--------------------------------------------------------------*/
.widget-categories ul.category-list{
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}
.widget-title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 20px;
  margin: 0;
  color: #3d4345;
}
.pull-right {
  display: block;
  width: 38%;
  float: right;
}
.widget-categories ul.category-list  li{
  padding-bottom: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  border-bottom: 1px solid #dedede;
  transition: all 0.3s;
}
.widget-categories ul.category-list  a:hover{
  color: #f62f0f;
  padding-left: 10px;
  transition: all 0.3s;
}
.widget-categories ul.category-list  li a{
  color: #3d4345;
  font-size: 14px;
  transition: all 0.3s;
}
.widget-categories ul.category-list  li:last-child{
  border-bottom: 0;
  font-size: 14px;
}
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  border: 1px solid #d9d9d9;
  padding: 30px;
  height: 100%;
}
.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
.blog .posts-list .title {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  margin: 20px 0 0 0;
}
.blog .posts-list .title a {
  color: #3d4345;
  transition: 0.3s;
}
.blog .posts-list .title a:hover {
  color: #f62f0f;
}
.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #8a8e8f;
}
.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  font-size: 12px;
  padding: 0;
  margin: 0;
}
.blog .posts-list .meta-top ul li + li {
  padding-left: 20px;
}
.blog .posts-list .meta-top i {
  font-size: 14px;
  margin-right: 8px;
  line-height: 0;
  color: #f62f0f;
}
.blog .posts-list .meta-top a {
  color: #8a8e8f;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .posts-list .content {
  margin-top: 10px;
}
.blog .posts-list .read-more a {
  display: inline-block;
  background: #4682b4;
  color: #fff;
  padding: 6px 12px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .posts-list .read-more a:hover {
  background: #f62f0f;
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .entry {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #d9d9d9;
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  color: #3d4345;
  margin: 40px 0 30px 0;
}
.blog .entry .entry-title a {
  color: #1e4356;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #fd7e14;
}
.blog .entry .entry-meta ul li {
  margin-bottom: 5px;
  font-size: 13px;
  color: #3d4345;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-content ol li {
  color: #3d4345;
  font-size: 14px;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 14px;
  margin-right: 8px;
  color: #f62f0f;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #3d4345;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
	line-height: 24px;
	color: #3d4345;
	font-size: 14px;
}
.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #68A4C4;
  color: #fff;

  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #68A4C4;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #d9d9d9;
}
.blog .entry .entry-footer li {
  color: #4c99c1;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #3d4345;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #f62f0f;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  font-size: 14px;
  padding-left: 0;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .side {
  padding: 30px;
  border: 1px solid #d9d9d9;
}
.blog .side .side-title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  margin: 0;
  color: #3d4345;
}
.blog .side .side-item + .side-item {
  margin-top: 50px;
}
.blog .side .recent-posts .post-item {
  display: flex;
}
.blog .side .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .side .recent-posts img {
  width: 110px;
  margin-right: 15px;
}
.blog .side .recent-posts a {
  color: #3d4345;
  font-size: 14px;
}
.blog .side .recent-posts h5 a {
  color: rgba(34, 40, 34, 0.7);
  transition: 0.3s;
}
.blog .side .recent-posts h5 a:hover {
  color: #f62f0f;
}
.blog .side .recent-posts time {
  display: block;
  font-size: 12px;
  color: #8a8e8f;
}
.blog .side .tags {
  margin-bottom: -20px;
}
.blog .side .tags ul {
  list-style: none;
  padding: 0;
}
.blog .side .tags ul li {
  display: inline-block;
}
.blog .side .tags ul a {
  color: #3d4345;
  font-size: 14px;
  padding: 4px 10px;
  margin: 0 4px 6px 0;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
  background-color: #fff;
}
.blog .side .tags ul a:hover {
  color: #fff;
  background: #f62f0f;
}
.blog .side .tags ul a span {
  padding-left: 5px;
  color: #788487;
  font-size: 15px;
}
/* Popular Gallery */
.popular ul.gallery {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 10px -8px;
}
.popular ul.gallery li {
  display: block;
  width: 20%;
  float: left;
  padding: 8px;
  margin-top: -10px;
}
.popular ul.gallery li a {
  display: block;
}
.popular ul.gallery li a img {
  width: 100%;
  transition: border-radius 300ms ease-in;
  -webkit-transition: border-radius 300ms ease-in;
  border-radius: 4px;}
.popular ul.gallery li a img:hover {
  border-radius: 60px;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: #e4e7e9;
  height: 100%;
  padding: 20px;
  border-radius: 2px 0 0 2px;
  border: 1px solid #d9d9d9;
}
.contact .info-item {
  width: 100%;
  background-color: #69a2d3;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 2px;
  color: #fff;
}
.contact .info-item:last-child {
  margin-bottom: 0;
}
.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: #4682B4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item:hover i {
  background: #fff;
  color: #f62f0f;
}
.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 30px;
  border-radius: 0 2px 2px 0;
}
.contact .php-email-form .form-group {
  padding-bottom: 10px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #d9d9d9;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #69a2d3;
  border: 0;
  padding: 10px 25px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #f62f0f;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: 40px;
}
.map iframe {
  width: 100%;
  height: 400px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}
.footer .footer-content {
  background: #485664;
  padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 30px;
  margin-top: -12px;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: -20px;
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}
.footer .footer-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  background: #f62f0f;
  bottom: 0;
  left: 0;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: #fff ;
  font-size: 12px;
  line-height: 1;
}
.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
  color: #f62f0f;
  padding-left: 10px;
}
.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
.footer .footer-content .footer-newsletter p {
  color: #fff;
}
.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #69a2d3;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: #f62f0f;
}
.footer .footer-legal {
  padding: 30px 0;
  background: #243451;
}
.footer-legal .credits {
  padding-top: 4px;
  font-size: 14px;
  color: #fff;
}
.footer .footer-legal .credits a {
  color: #fff;
}
.footer-legal .credits a:hover {
  color: #f62f0f;
}
.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .footer-legal .social-links a:hover {
  background: #f62f0f;
  text-decoration: none;
}
.footer .footer-legal {
 background: #243451;
}
.footer .footer-legal a {
  color: #fff;
}
.footer .footer-legal .copyright a:hover {
  color: #f62f0f;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
