/*==================================
=            common css            =
==================================*/
body {
  font-size: 16px;
  font-family: 'Lora', serif;
  color: #1c1c1c;
}

a {
  color: #1c1c1c;
}
a:hover {
  color: #ea9a1f;
  text-decoration: none;
}
a:focus {
  outline: 0;
}

.button {
  background-color: #ffffff;
  border-radius: 40px;
  border: 2px solid #ffffff;
  color: #1c1c1c;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
  padding: 10px 40px;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
  min-width: 200px;
}
.button:hover {
  background-color: #265196;
  color: #ffffff;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

.main-panel-container {
  min-height: calc(100vh - 63px);
  padding-left: 0;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
  width: 100%;
}

.section-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.section-heading::after {
  background-color: #265196;
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 70px;
}

.section {
  padding: 80px 0;
}

/*=====  End of common css  ======*/
/*==================================
=            nvagiation            =
==================================*/
.demo-7 {
  background-color: transparent;
  border-bottom: 1px solid transparent;
  z-index: 9999;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.demo-7.sticky {
  background-color: #202020;
  border-color: #202020;
  box-shadow: 1px 2px 4px #202020;
}
.demo-7.sticky .navbar-brand {
  color: #1c1c1c;
}
.demo-7.sticky #mega-canvas-link span {
  background-color: #fff;
}

.navbar-brand {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}

.navbar-toggler:focus {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

#mega-canvas-link span {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin-top: 3px;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

/*=====  End of nvagiation  ======*/
.banner {
  height: 550px;
  background-size: cover;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.55);
  background-blend-mode: color;
}

/*===============================
=            sidebar            =
===============================*/
#sidebar {
  background-color: #202020;
  bottom: 0;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 20px;
  padding-top: 20px;
  position: fixed;
  right: -100%;
  top: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  width: 100%;
  z-index: 9999;
}
#sidebar.active {
  -webkit-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  right: 0;
}
#sidebar .sidebar-nav .nav-item {
  position: relative;
  text-align: center;
}
#sidebar .sidebar-nav .nav-item a {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Montserrat-Bold';
}
#sidebar .sidebar-nav {
  height: 100%;
  width: 100%;
}

/*=====  End of sidebar  ======*/
/*========================================
=            featured section            =
========================================*/
.feature-column {
  font-size: 14px;
  padding: 20px 15px;
  box-shadow: 1px 2px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  position: relative;
}
.feature-column::before {
  border-top: 3px solid #265196;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  width: 0;
}
.feature-column:hover::before {
  -webkit-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  width: 100%;
}
.feature-column .icon {
  background-color: #265196;
  border-radius: 50%;
  -webkit-box-shadow: 4px 3px 26px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 4px 3px 26px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 4px 3px 26px rgba(0, 0, 0, 0.22);
  -o-box-shadow: 4px 3px 26px rgba(0, 0, 0, 0.22);
  box-shadow: 4px 3px 26px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  font-size: 25px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  width: 60px;
}
.feature-column h3 {
  font-size: 18px;
  margin: 30px  0 20px;
  font-weight: 600;
}

/*=====  End of featured section  ======*/
/*=========================================
=            demo show section            =
=========================================*/
.demo-show-column .demo-show-content {
  text-align: center;
  background-color: #fff;
  padding: 20px 10px;
}
.demo-show-column .demo-show-content .demo-button {
  background-color: #265196;
  border-radius: 40px;
  border: 2px solid #265196;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 6px 20px;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}
.demo-show-column .demo-show-content .demo-button:hover {
  background-color: #ffffff;
  color: #1c1c1c;
  -webkit-transition: 0.3s linear all;
  -moz-transition: 0.3s linear all;
  -ms-transition: 0.3s linear all;
  -o-transition: 0.3s linear all;
  transition: 0.3s linear all;
}

/*=====  End of demo show section  ======*/
/*=====================================
=            media queries            =
=====================================*/
@media screen and (max-width: 576px) {
  .content-wrapper h1 {
    font-size: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    font-size: 27px;
    margin-bottom: 20px;
  }
}
/*=====  End of media queries  ======*/
