body {
  font-family: 'Lora', serif;
  background-color: #f8f8f8;
  font-size: 16px;
  color: #1c1c1c;
}

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

.sale_price {
  background-color: #C8000B;
  border-radius: 50%;
  bottom: 50px;
  box-shadow: 2px 3px 25px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  display: none;
  font-size: 34px;
  font-weight: bold;
  height: 70px;
  line-height: 70px;
  position: fixed;
  right: 10px;
  text-align: center;
  width: 70px;
  z-index: 11;
}
.sale_price:hover, .sale_price:focus {
  color: #ffffff;
  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, .button:focus {
  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;
}

.bg-color {
  background-color: #f1f1f1;
}

.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;
}

.navigation {
  border-bottom: 1px solid #ece5e5;
}
.navigation .navbar-brand {
  color: #ffffff;
  position: relative;
}
.navigation .navbar-brand:before {
  background-color: #CA4F55;
  width: 350px;
  left: -170px;
  position: absolute;
  top: -10px;
  bottom: -9px;
  content: "";
  z-index: -1;
  -webkit-transform: skewX(-52deg);
  -moz-transform: skewX(-52deg);
  -ms-transform: skewX(-52deg);
  -o-transform: skewX(-52deg);
  transform: skewX(-52deg);
}
.navigation .navbar-brand:hover, .navigation .navbar-brand:focus {
  color: #ffffff;
}
.navigation.navbar-light .navbar-nav .nav-link {
  color: #1c1c1c;
}

.header {
  height: 500px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
  background: -webkit-linear-gradient(top left, #265196, #CA4F55);
  background: -moz-linear-gradient(top left, #265196, #CA4F55);
  background: linear-gradient(top left, #265196, #CA4F55);
}
.header .header-content {
  align-items: center;
  bottom: 0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.header .header-content h1 {
  font-size: 55px;
  margin: 0;
}
.header .header-content p {
  margin: 30px 0;
  font-size: 22px;
}

.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;
}

.demo-show-column .demo-show-content {
  text-align: center;
  background-color: #ffffff;
  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;
}

.footer {
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 15px 0;
}
.footer a {
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  #navbarNav {
    margin-top: 16px;
  }
}
@media screen and (max-width: 576px) {
  .navigation:before {
    width: 210px;
  }

  .header .header-content h1 {
    font-size: 37px;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    font-size: 27px;
    margin-bottom: 20px;
  }
}
