/*-----------------------------------------------------------------------------------

    Theme Name: Builder - Construction and Architecture Template
    Description: Construction and Architecture Template
    Author: Chitrakoot Web
    Version: 1.0

-----------------------------------------------------------------------------------*/
/* ----------------------------------

    01. Common styles
    02. Listing styles
    03. Button styles
    04. Navigation
    05. Main banner area
    06. Page title
    07. About
    08. Why Us
    09. Story Video
    10. Others
    11. Owl carousel
    12. Portfolio
    13. Pages
    14. Team
    15. Testimonial
    16. Accordion
    17. Contact Info
    18. Animation
    19. Card Styles
    20. Footer  
    
---------------------------------- */
/* ===================================
    Common styles
====================================== */
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%; }
  #preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #c42025;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }
  #preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #c42025;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s; }

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0; }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1; }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1; }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0; } }
/* theme color and basic options */
a:hover, a:active {
  color: #c42025;
  text-decoration: none; }

.theme-overlay[data-overlay-dark]:before, .theme-overlay-180[data-overlay-dark]:before, .theme-overlay-90[data-overlay-dark]:before, .bg-theme-90, .bg-theme-solid, .theme-overlay-solid[data-overlay-dark]:before {
  background: #c42025; }

.text-primary {
  color: #c42025 !important; }

.text-secondary {
  color: #c6c5c5 !important; }

.bg-primary {
  background-color: #c42025 !important; }

.bg-secondary {
  background-color: #1E2023 !important; }

.border-primary {
  border-color: #c42025 !important; }

.theme-overlay[data-overlay-dark]:before {
  background: #1E2023; }

.white-hover:hover {
  color: #fff !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.box-shadow2 {
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1); }

.vw-90 {
  width: 100vw; }

.transform-rotate {
  transform: rotate(180deg); }

.form-control {
  height: auto; }

/* scroll to top */
.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  background: #000;
  border: 1px solid #2a2a2a;
  width: 35px;
  height: 35px;
  line-height: 30px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all 0.3s ease; }
  .scroll-to-top i {
    color: #fff; }
  .scroll-to-top:hover {
    color: #1E2023;
    background: #fff; }
    .scroll-to-top:hover i {
      color: #1E2023; }
  .scroll-to-top:visited {
    color: #1E2023;
    text-decoration: none; }

/*section-heading*/
.section-heading1 .subheading {
  text-transform: uppercase;
  font-weight: 700;
  display: block; }
  .section-heading1 .subheading:before {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 7px;
    height: 7px;
    top: -1px;
    content: "";
    left: 1px;
    margin-right: 15px;
    background-color: #c42025; }

/* ===================================
    Listing styles
====================================== */
/* list-style1 */
.list-style1 {
  padding-left: 0;
  list-style: none; }
  .list-style1 li {
    padding-left: 30px;
    color: #1E2023;
    font-weight: 400;
    position: relative;
    margin-bottom: 8px; }
    .list-style1 li:last-child {
      margin-bottom: 0; }
    .list-style1 li:before {
      content: '\e64d';
      font-weight: 600;
      font-family: 'themify';
      color: #c42025;
      position: absolute;
      left: 0;
      font-size: 17px; }

@media screen and (max-width: 575px) {
  .list-style1 li {
    font-size: 15px;
    line-height: 25px;
    padding-left: 25px; }
    .list-style1 li:before {
      font-size: 13px; } }
/* list-style2 */
.list-style2 li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px; }
  .list-style2 li:last-child {
    margin-bottom: 0; }
  .list-style2 li:before {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 7px;
    height: 7px;
    top: 10px;
    content: "";
    left: 0;
    background-color: #c42025; }

@media screen and (max-width: 575px) {
  .list-style2 li {
    font-size: 15px;
    line-height: 25px;
    padding-left: 25px; }
    .list-style2 li:before {
      font-size: 13px; } }
/* ===================================
    Button styles
====================================== */
.butn {
  background: #c42025;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 20px;
  padding: 15px 30px;
  border-radius: 5px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition: all linear 400ms;
  -moz-transition: all linear 400ms;
  -o-transition: all linear 400ms;
  transition: all linear 400ms;
  border: none; }
  .butn:hover {
    color: #c42025; }

a.butn:hover, a.butn:active {
  color: #c42025; }

.butn:before {
  background: #1E2023;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-block;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 51%;
  -ms-transform-origin: 51%;
  -o-transform-origin: 51%;
  transform-origin: 51%;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 3px;
  border: none; }
.butn.white:hover:before, .butn.white:focus:before, .butn.white:active:before {
  transform: scaleX(1); }
.butn.primary:hover:before, .butn.primary:focus:before, .butn.primary:active:before {
  transform: scaleX(1); }
.butn:hover:before, .butn:focus:before, .butn:active:before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1); }
.butn.primary {
  background: #c42025 !important; }
  .butn.primary:before {
    background: #ffffff; }
.butn.secondary {
  background: #1E2023 !important; }
  .butn.secondary:hover:before, .butn.secondary:focus:before, .butn.secondary:active:before {
    transform: scaleX(1);
    color: #fff !important; }
  .butn.secondary:before {
    background: #c42025; }

a.butn.secondary:hover, a.butn.secondary:active {
  color: #fff !important; }

.butn.white {
  color: #c42025;
  background: #ffffff !important;
  background: -webkit-linear-gradient(-45deg, #e0e0e0, #ffffff);
  background: -moz-linear-gradient(-45deg, #e0e0e0, #ffffff);
  background: -o-linear-gradient(-45deg, #e0e0e0, #ffffff);
  background: linear-gradient(-45deg, #e0e0e0, #ffffff); }
  .butn.white:hover {
    color: #c42025; }

a.butn.white:hover, a.butn.white:active {
  color: #c42025; }

.butn.white:before {
  background: #1E2023; }
.butn.sm {
  font-size: 13px;
  padding: 8px 30px; }
.butn.md {
  font-size: 13px;
  padding: 12px 30px; }

.btn.bordered {
  border: 1px solid #ffffff;
  background: #000;
  color: #ffffff; }

/*link-button-style*/
.link-btn {
  border-bottom: 1px solid #c7c7c7; }

/*button-style01*/
.button {
  background-color: #c42025;
  color: #fff;
  position: relative;
  display: inline-block;
  border: 0;
  color: #fff;
  padding: 1.25rem 2rem;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .button.dark {
    background-color: #1E2023; }
  .button.md {
    padding: 1rem 1rem !important;
    font-size: 13px; }
  .button.dark:after {
    border: 1px solid #fff; }
  .button:hover {
    color: #fff; }
  .button:after {
    border: 1px solid #fff; }
  .button:hover:after {
    opacity: 1; }
  .button:after {
    opacity: .4;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: "";
    position: absolute;
    top: 0.3125rem;
    bottom: 0.3125rem;
    right: 0.3125rem;
    left: 0.3125rem; }

/* ===================================
    Navigation
====================================== */
/* top bar  */
.top-bar-info {
  display: inline-block;
  vertical-align: middle; }
  .top-bar-info ul {
    margin-bottom: 0; }
  .top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0; }

.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0; }

.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom; }

.top-social-icon {
  padding: 0;
  float: right;
  margin: 0; }
  .top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px; }
    .top-social-icon li:last-child {
      padding-right: 0; }
      .top-social-icon li:last-child a {
        padding-right: 0; }
    .top-social-icon li a {
      color: #fff;
      line-height: 28px;
      -webkit-transition-duration: .3s;
      transition-duration: .3s;
      padding: 0 3px; }
      .top-social-icon li a:hover {
        color: rgba(255, 255, 255, 0.65); }

/* menu area light */
.navbar-nav li.current > a, .navbar-nav li.active > a {
  color: #c42025; }

.attr-nav > ul > li > a.butn {
  color: #fff; }

.navbar > ul > li.current > a:after {
  border-color: transparent #c42025 #c42025 transparent; }

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
  color: #c42025; }
.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent #c42025 #c42025 transparent; }
.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: #c42025; }
  .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: #c42025; }
.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: #c42025; }
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #c42025 #c42025 transparent; }

@media screen and (min-width: 992px) {
  .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
    color: #c42025; }
  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    border-color: #c42025; }
  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #c42025; }

  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #c42025; }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
      border-color: transparent #c42025 #c42025 transparent; }
  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    border-color: transparent #c42025 #c42025 transparent; }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #c42025; }
    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
      color: #c42025; }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #c42025 #c42025 transparent; }
  .header-style2 .navbar ul ul li.active > a {
    color: #c42025; }
  .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus {
    color: #c42025; }
  .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
    color: #c42025; }
  .header-style2 .navbar > ul > li.has-sub > a:hover:after, .header-style2 .navbar > ul > li.has-sub > a:active:after, .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    border-color: transparent #c42025 #c42025 transparent; } }
@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #c42025; }
    .header-style1 .navbar-toggler:after {
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .header-style1 .navbar-toggler:before {
      background: #fff; }
    .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
      background: #fff; } }
/* header style 2 */
.header-style2 .navbar-nav li.current > a {
  color: #c42025; }
.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent #c42025 #c42025 transparent; }
.header-style2.scrollHeader .navbar-nav li.current > a {
  color: #c42025; }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #c42025; }
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent #c42025 #c42025 transparent; }

@media screen and (min-width: 992px) {
  .header-style2 .navbar ul ul li.active > a {
    color: #c42025; }
  .header-style2 .butn.secondary:before {
    background: #ffffff; }
  .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
    color: #1E2023 !important; }
  .header-style2.scrollHeader .butn.secondary:before {
    background: #c42025; }
  .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
    color: #fff !important; } }
/* headerstyle03 */
.header-style3 .navbar-nav li.current > a, .header-style3 .navbar-nav li.active > a {
  color: #c42025; }

@media screen and (min-width: 992px) {
  .header-style3 .navbar-nav li.active > a {
    color: #c42025; }
  .header-style3 .navbar-nav > li > a:hover, .header-style3 .navbar-nav > li > a:active, .header-style3 .navbar-nav > li > a:focus {
    color: #c42025; }
  .header-style3 .navbar ul ul li.active > a {
    color: #c42025; }
  .header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current > a {
    color: #c42025; }
  .header-style3 .navbar-nav > li.has-sub > a:hover {
    color: #c42025; }
  .header-style3 .navbar > ul > li.has-sub > a:hover:after, .header-style3 .navbar > ul > li.current > a:after {
    border-color: transparent #c42025 #c42025 transparent; }
  .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: #c42025; }
  .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
    border-color: transparent #c42025 #c42025 transparent; }
  .header-style3.scrollHeader .navbar-nav > li.active > a {
    color: #c42025; }
  .header-style3.scrollHeader .navbar-nav li.current > a {
    color: #c42025; }
    .header-style3.scrollHeader .navbar-nav li.current > a:hover {
      color: #c42025; }
  .header-style3.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #c42025 #c42025 transparent; } }
@media screen and (max-width: 991px) {
  .header-style3 .navbar-toggler {
    background: #c42025; }
    .header-style3 .navbar-toggler:after {
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .header-style3 .navbar-toggler:before {
      background: #fff; }
    .header-style3 .navbar-toggler.menu-opened:after, .header-style3 .navbar-toggler.menu-opened:before {
      background: #fff; } }
/*==============================
 *    Main banner area
 *================================ */
.banner-style01 .banner-shape1 {
  bottom: -12px; }
.banner-style01 .inner-text {
  position: absolute;
  top: -116px;
  left: -73px;
  color: transparent;
  font-size: 130px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 10px;
  z-index: -1; }
.banner-style01 .main-title {
  font-size: 120px;
  line-height: 1; }
  .banner-style01 .submain-title {
  font-size: 60px;
  line-height: 1; }
  .banner-style01 .submain-title2 {
  font-size: 25px;
  line-height: 1; }  

@media screen and (max-width: 991px) {
  .banner-style01 .main-title {
    font-size: 100px; } }
@media screen and (max-width: 575px) {
  .banner-style01 .main-title {
    font-size: 50px; } }
.slider-fade.owl-theme .owl-dots {
  position: absolute;
  bottom: 120px;
  right: 10px;
  counter-reset: dots;
  font-size: 1.7rem;
  color: #fff; }
  .slider-fade.owl-theme .owl-dots .owl-dot {
    position: relative;
    margin-right: 200px; }
    .slider-fade.owl-theme .owl-dots .owl-dot:last-child {
      margin-right: 0px; }
    .slider-fade.owl-theme .owl-dots .owl-dot.active {
      color: #f45b1e; }
    .slider-fade.owl-theme .owl-dots .owl-dot:before {
      counter-increment: dots;
      content: counter(dots,decimal-leading-zero);
      position: absolute;
      right: 12px;
      z-index: 2;
      font-size: 128px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: .01em;
      -webkit-text-stroke: 0.5px #fff;
      color: transparent; }
    .slider-fade.owl-theme .owl-dots .owl-dot span {
      background: transparent;
      height: 60px;
      width: 50px;
      border-radius: 0;
      position: relative;
      margin: 0 20px 0 0; }
      .slider-fade.owl-theme .owl-dots .owl-dot span:before {
        position: absolute;
        content: '';
        width: 20px;
        height: 20px;
        right: -45px;
        top: 50px;
        background-color: #c42025; }
    .slider-fade.owl-theme .owl-dots .owl-dot:last-child span:before {
      content: none; }
    .slider-fade.owl-theme .owl-dots .owl-dot.active:before, .slider-fade.owl-theme .owl-dots .owl-dot:hover:before {
      -webkit-text-stroke: 0.5px #f45b1e; }
.slider-fade .owl-item {
  height: 100vh;
  position: relative; }
.slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  width: 100%;
  z-index: 9; }
.slider-fade .overflow-hidden {
  display: inline-block; }
.slider-fade .subheading {
  animation-delay: 0.8s; }
.slider-fade h1 {
  animation-delay: 1.2s; }
.slider-fade p {
  animation-delay: 1.6s; }
.slider-fade a {
  animation-delay: 2s; }

@media screen and (max-width: 991px) {
  .banner-style01 .banner-shape1 {
    bottom: -17px; }

  .slider-fade.owl-theme .owl-dots {
    bottom: 80px; }
    .slider-fade.owl-theme .owl-dots .owl-dot {
      margin-right: 80px; }
      .slider-fade.owl-theme .owl-dots .owl-dot:before {
        font-size: 60px; }
      .slider-fade.owl-theme .owl-dots .owl-dot span:before {
        width: 10px;
        height: 10px;
        right: -25px;
        top: 17px; } }
@media screen and (max-width: 575px) {
  .banner-style01 .banner-shape1 {
    bottom: -21px; } }
/* counter block */
.counter-block h4 {
  font-size: 70px; }
.counter-block:after {
  background: #c42025;
  content: "";
  height: 10px;
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px; }
.counter-block.last:after {
  display: none; }

@media screen and (max-width: 1199px) {
  .counter-block h4 {
    font-size: 60px; } }
@media screen and (max-width: 767px) {
  .counter-block:after {
    display: none; } }
/* ===================================
    Page title
====================================== */
.page-title-section {
  padding: 180px 0 100px 0; }
  .page-title-section.style1 {
    padding: 150px 0; }
  .page-title-section h1 {
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 9;
    text-transform: uppercase; }

.pagetitle-lg-title {
  display: block;
  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  margin: 0 0 -58px 0;
  position: relative;
  z-index: 1;
  text-transform: uppercase; }

.page-title-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  line-height: 1.2; }
  .page-title-section ul li {
    display: inline-block; }
    .page-title-section ul li:last-child {
      color: #ffffff;
      opacity: 0.80;
      font-size: 16px;
      font-weight: 700;
      text-transform: capitalize;
      letter-spacing: 1px; }
      .page-title-section ul li:last-child a {
        color: #ffffff;
        opacity: 0.80;
        font-size: 16px;
        font-weight: 700;
        text-transform: capitalize;
        letter-spacing: 1px; }
    .page-title-section ul li:after {
      content: "";
      font-weight: 700;
      vertical-align: middle;
      background-color: #c42025;
      width: 8px;
      padding: 0;
      height: 8px;
      display: inline-block;
      margin: 0 11px 0 15px; }
    .page-title-section ul li:last-child:after {
      content: none; }
    .page-title-section ul li a {
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      text-transform: capitalize;
      letter-spacing: 1px; }
.page-title-section .shape-1 {
  padding: 20px;
  background: #fff;
  z-index: 3;
  bottom: 73px;
  left: 52px; }

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 170px 0 90px 0; }
    .page-title-section h1 {
      margin-bottom: 10px; } }
@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 150px 0 90px 0; }
    .page-title-section.style1 {
      padding: 130px 0; } }
@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 130px 0 80px 0; }
    .page-title-section.style1 {
      padding: 100px 0; } }
/* Blog Sidebar */
.blog-widget {
  background: #f4f6fd;
  padding: 30px 30px 40px 30px; }

.blog-search input {
  position: relative;
  height: 62px;
  line-height: 62px;
  width: 100%;
  padding: 20px;
  padding-right: 70px;
  background: #fff;
  border: 1px solid #fff; }
.blog-search button {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  color: #c42025;
  background: #1E2023;
  height: 62px;
  width: 62px;
  padding: 17px;
  border: none; }

.list-style3 li a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #6A6D7A;
  background: #fff;
  padding: 18px 0px 18px 24px;
  transition: all 0.3s ease-in-out; }
  .list-style3 li a:hover {
    background: #c42025;
    color: #fff; }
    .list-style3 li a:hover i {
      color: #fff;
      animation: tfLeftToRight 0.5s forwards; }
  .list-style3 li a i {
    color: #c42025;
    font-size: 18px;
    margin-right: 18px;
    transition: all 0.3s ease-in-out; }

.popular-tags a {
  background: #fff;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out; }
  .popular-tags a:hover {
    background: #c42025;
    color: #fff; }

.blog-card .blog-content h3 a {
  color: #fff;
  transition: all 0.3s ease-in-out; }
  .blog-card .blog-content h3 a:hover {
    color: #c42025; }

/* Pagenation */
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .pagination ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0; }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    font-size: 15px;
    padding: 0 18px;
    border-radius: 5px;
    line-height: 40px;
    text-decoration: none;
    color: #c42025;
    font-weight: 800;
    border: 1px solid #dbdbdb;
    background: #fff; }
    .pagination a:hover {
      background-color: #ff7029;
      border: 1px solid #ff7029;
      color: #ffffff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #c42025;
    border: 1px solid #dbdbdb;
    cursor: default; }

@media screen and (max-width: 575px) {
  .pagination a {
    padding: 0 14px; } }
/* Blog Details Page */
.blog-tags a {
  background-color: #c42025;
  padding: 7px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin: 0.6rem 5px 0 0;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #c42025; }
  .blog-tags a:hover, .blog-tags a:active, .blog-tags a:focus {
    background-color: #fff;
    color: #c42025; }

.list-style4 li {
  padding-left: 28px; }
  .list-style4 li:before {
    content: '\e64d';
    font-weight: 500;
    font-family: 'themify';
    color: #c42025;
    position: absolute;
    left: 0;
    font-size: 17px; }

/* ===================================
 *   About
 *==================================== */
/*about-style01*/
.about-style01 .about-text {
  position: absolute;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  bottom: 10px;
  top: 0;
  left: 0px;
  right: auto; }
  .about-style01 .about-text span {
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #F0EFF6BF;
    line-height: 1; }
.about-style01 .img-border {
  top: 2%;
  left: 3%;
  width: 94%;
  height: 96%;
  z-index: 1;
  position: absolute;
  border: 2px solid #fff; }
.about-style01 .inner-text {
  position: absolute;
  right: -60px;
  left: auto;
  bottom: -60px;
  top: auto;
  width: 260px;
  z-index: 1;
  box-shadow: 0px 0px 29px 1px rgba(0, 0, 0, 0.2); }

@media screen and (max-width: 1199px) {
  .about-style01 .about-text {
    left: -50px; } }
@media screen and (max-width: 991px) {
  .about-style01 .inner-text {
    bottom: -30px; } }
@media only screen and (max-width: 991px) {
  .about-style01 .about-text span {
    font-size: 4.5rem; } }
@media only screen and (max-width: 767px) {
  .about-style01 .about-text span {
    font-size: 4rem; } }
/*about-us page*/
.about-block .image {
  position: relative; }
  .about-block .image .img-border {
    top: 2%;
    left: 3%;
    width: 94%;
    height: 96%;
    z-index: 0;
    position: absolute;
    border: 1px solid #fff; }
.about-block .small-img {
  position: absolute;
  right: -15%;
  bottom: 10%;
  width: 240px; }
  .about-block .small-img img {
    border: 5px solid #fff; }
.about-block .about-founded {
  position: absolute;
  top: 5%;
  right: -11px;
  z-index: 9;
  background-color: #c42025;
  height: 130px;
  width: 130px;
  border-radius: 50%;
  padding: 20px; }

/* ===================================
 *   Why Us
 *==================================== */
.whyus-style01 .heading-text {
  position: absolute;
  top: -15px;
  left: 0px;
  right: auto; }
  .whyus-style01 .heading-text span {
    font-size: 6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #F0EFF6BF;
    line-height: 1; }
.whyus-style01 .inner-text {
  position: absolute;
  top: 50px;
  left: 0px;
  writing-mode: tb-rl;
  transform: rotate(-180deg); }
.whyus-style01 .inner-text2 {
  writing-mode: tb-rl;
  position: absolute;
  top: 50px;
  right: 0px; }
.whyus-style01 .text-style {
  color: #1D17293B;
  font-size: 40px;
  font-weight: 600px;
  text-transform: uppercase;
  letter-spacing: 10px;
  width: auto;
  max-width: auto; }
.whyus-style01 .margin-left {
  margin-left: -50px; }
.whyus-style01 .icon {
  -webkit-animation: tada 1500ms ease-out infinite;
  -khtml-animation: tada 1500ms ease-out infinite;
  -moz-animation: tada 1500ms ease-out infinite;
  -ms-animation: tada 1500ms ease-out infinite;
  -o-animation: tada 1500ms ease-out infinite;
  animation: tada 1500ms ease-out infinite; }

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  10%,20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%,50%,70%,90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%,60%,80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
@media screen and (max-width: 1399px) {
  .whyus-style01 .inner-text {
    left: -24px; }
  .whyus-style01 .inner-text2 {
    right: -24px; } }
@media screen and (max-width: 1199px) {
  .whyus-style01 .text-style {
    font-size: 30px; }
  .whyus-style01 .inner-text {
    left: -40px;
    top: 25px; }
  .whyus-style01 .inner-text2 {
    right: -40px;
    top: 25px; } }
@media only screen and (max-width: 1199px) {
  .whyus-style01 .heading-text span {
    font-size: 5rem; } }
@media only screen and (max-width: 991px) {
  .whyus-style01 .heading-text span {
    font-size: 4rem; } }
@media only screen and (max-width: 767px) {
  .whyus-style01 .inner-text {
    left: -50px; }
  .whyus-style01 .inner-text2 {
    right: -50px; } }
/*extra-01*/
.extra-01 .background-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(270deg, transparent 0%, #1E2023 100%);
  opacity: 1; }

/* ===================================
   Story Video
====================================== */
.video_btn01 {
  position: relative;
  height: 80px;
  width: 80px;
  background: #c42025;
  text-align: center;
  display: inline-block;
  line-height: 85px;
  color: #fff; }
  .video_btn01:hover {
    background: #1E2023;
    color: #fff; }

/* ===================================
    Others
====================================== */
/* social icon */
.social-icon li {
  display: inline-block;
  margin-right: 5px; }
  .social-icon li:last-child {
    margin-right: 0; }
  .social-icon li i {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border: 1px solid #d3d3d3;
    text-align: center;
    line-height: 35px;
    border-radius: 50%; }
    .social-icon li i:hover {
      color: #c42025; }

/* services-sidebar */
.services-cat-list .list-wrap li a {
  border: 1px solid #E0E6F2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #00194C;
  text-transform: capitalize; }
  .services-cat-list .list-wrap li a i {
    margin-left: 10px;
    line-height: 0;
    color: #667594;
    transition: all 0.3s ease-out 0s; }
.services-cat-list .list-wrap li.active a, .services-cat-list .list-wrap li a:hover {
  background: #c42025;
  color: #fff;
  border-color: #c42025; }
.services-cat-list .list-wrap li.active a i, .services-cat-list .list-wrap li a:hover i {
  color: #fff; }

.services-widget {
  background: #F8FAFF;
  padding: 30px 30px 35px; }
  .services-widget .service-left-title {
    margin-bottom: 15px;
    position: relative;
    font-size: 24px;
    text-transform: capitalize;
    padding-bottom: 10px; }
    .services-widget .service-left-title::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 35px;
      height: 3px;
      background: #c42025; }

.services-brochure-wrap .download-btn {
  display: flex;
  align-items: center;
  color: #1E2023;
  border: 1px solid #E0E6F2;
  background: #fff;
  padding: 13px 20px; }
  .services-brochure-wrap .download-btn i {
    font-size: 16px;
    color: #c42025;
    margin-right: 10px;
    transition: all 0.3s ease-out 0s; }
  .services-brochure-wrap .download-btn:hover {
    color: #fff;
    background: #c42025;
    border-color: #c42025; }
    .services-brochure-wrap .download-btn:hover i {
      color: #fff; }
  .services-brochure-wrap .download-btn:last-child {
    margin-bottom: 0; }

.services-block .service-icon-box {
  position: absolute;
  left: 0px;
  top: 0;
  width: 80px;
  height: 70px;
  text-align: center; }
.services-block .content-box {
  position: relative;
  padding: 30px 40px 30px; }
  .services-block .content-box h3 a {
    transition: all 0.3s ease; }
  .services-block .content-box:hover h3 a {
    color: #c42025; }

@media screen and (min-width: 992px) {
  .service-position {
    margin: 0% -55% 0% 0%; } }
/* service slider */
.service-slider.owl-theme .owl-nav {
  text-align: left;
  margin-top: 30px;
  margin-left: 0; }
  .service-slider.owl-theme .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    color: #1E2023;
    background: rgba(17, 88, 231, 0.1);
    transition: all 0.6s ease;
    line-height: 40px; }
  .service-slider.owl-theme .owl-nav .owl-prev {
    margin-right: 30px;
    position: relative; }
    .service-slider.owl-theme .owl-nav .owl-prev:before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      background-color: #c42025;
      position: absolute;
      right: -20px;
      top: 15px;
      border-radius: 0; }
  .service-slider.owl-theme .owl-nav [class*='owl-']:hover, .service-slider.owl-theme .owl-nav [class*='owl-']:active, .service-slider.owl-theme .owl-nav [class*='owl-']:focus {
    background: #1158e7;
    color: #fff !important; }
  .service-slider.owl-theme .owl-nav [class*='owl-']:hover i, .service-slider.owl-theme .owl-nav [class*='owl-']:active i, .service-slider.owl-theme .owl-nav [class*='owl-']:focus i {
    color: #fff !important; }

.service-card {
  overflow: inherit;
  padding: 75px 40px 30px 40px;
  border-radius: 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.4s;
  height: 420px; }
  .service-card:before {
    background: rgba(30, 32, 35, 0.76);
    background: linear-gradient(-180deg, transparent, #1E2023 110%);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .service-card .service-details {
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -115px;
    width: 100%;
    padding: 25px;
    transition: all 0.3s;
    z-index: 9; }
  .service-card:hover .service-details {
    bottom: 10px; }
  .service-card .service-details h3, .service-card .service-details a, .service-card .service-details p {
    color: #fff; }
  .service-card .service-details h3:hover, .service-card .service-details h3:active, .service-card .service-details h3:focus {
    color: #c42025; }
  .service-card .service-details a:hover, .service-card .service-details a:active, .service-card .service-details a:focus {
    color: #c42025; }
  .service-card:hover .service-details p {
    height: auto;
    opacity: 1;
    visibility: visible; }
  .service-card .service-details p {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    height: 70px; }

/* ===================================
    Owl carousel
====================================== */
.owl-nav .owl-next {
  color: #c42025;
  font-size: 43px;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #1E2023 !important; }
.owl-nav .owl-prev {
  color: #fff;
  font-size: 43px;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #1E2023 !important;
  left: 0;
  -webkit-transition: all .4s ease 0s;
  -moz-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  -webkit-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  -o-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1); }
.owl-nav .owl-next {
  -webkit-transition: all .4s ease 0s;
  -moz-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  -webkit-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  -moz-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  -o-box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1);
  box-shadow: 0 5px 28px 0 rgba(50, 50, 50, 0.1); }

/*============================== 
    Portfolio
================================*/
/*portfolio*/
.portfolio-block .item-img:before {
  background: linear-gradient(180deg, rgba(20, 33, 43, 0.6) 20%, rgba(20, 33, 43, 0) 40%);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transform: rotate(-180deg);
  transition: all .3s;
  width: 100%;
  z-index: 1; }
.portfolio-block:hover .portfolio-block .item-img:before {
  opacity: 0;
  visibility: hidden; }
.portfolio-block .item-img img {
  transform: scale(1.02);
  transition: all 0.4s ease-out;
  height: 100%;
  object-fit: cover; }
.portfolio-block:hover .item-img img {
  transform: scale(1.2); }
.portfolio-block .item-img:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 1;
  transition: all 0.4s ease-out; }
.portfolio-block:hover .item-img:after {
  transition: all 0.4s ease-out;
  visibility: visible;
  opacity: 1; }
.portfolio-block:hover .portfolio-overlay:before {
  opacity: 1;
  visibility: visible;
  transform: none; }

.portfolio-overlay:before {
  position: absolute;
  z-index: 9;
  display: inline-block;
  top: 15px;
  right: 10px;
  bottom: 15px;
  left: 10px;
  border: 1px solid #fff;
  content: "";
  opacity: 0;
  transform: scale(0.85); }

.portfolio01-carousel .owl-dots {
  text-align: center;
  margin-top: 20px; }
.portfolio01-carousel .owl-nav .owl-prev {
  margin-right: 10px;
  background-color: #1E2023; }
.portfolio01-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px; }
.portfolio01-carousel.owl-theme .owl-dots .owl-dot span {
  display: inline-block;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  background-color: #c42025;
  border: 3px solid #c42025;
  transform: scale(0.6);
  transition: .3s;
  margin: 5px; }
.portfolio01-carousel.owl-theme .owl-dots .owl-dot.active span, .portfolio01-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
  border-color: #c42025;
  transform: scale(0.9); }

/* Portfolio Details */
.portfolio-info {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  width: 386px;
  box-shadow: 0px 10px 21px rgba(27, 18, 18, 0.05);
  border-radius: 0 0 0 0; }
  .portfolio-info i {
    height: 50px;
    width: 50px;
    background: #F9F0F0;
    color: #c42025;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; }

@media only screen and (max-width: 1199px) {
  .portfolio-info {
    bottom: -66px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-info {
    position: relative;
    width: 100%;
    border-radius: 0;
    margin-bottom: 30px;
    margin-top: -33px; } }
@media only screen and (max-width: 767px) {
  .portfolio-info {
    position: relative;
    width: 100%;
    border-radius: 0;
    margin-bottom: 30px;
    margin-top: -33px; } }
.list-style5 li {
  padding-left: 35px; }
  .list-style5 li:before {
    content: '\e64d';
    font-weight: 500;
    font-family: 'themify';
    color: #c42025;
    position: absolute;
    left: 0;
    font-size: 19px; }

/* process-bar */
.custom-progress.progress {
  height: 8px; }

.progress-value {
  position: relative;
  padding: 5px;
  font-size: 11px;
  color: #fff;
  left: 10px;
  background: #1b2026;
  bottom: 6px; }
  .progress-value:after {
    border: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent;
    border-width: 6px 6px 0 6px;
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 100%;
    z-index: 9; }

/* ===================================
    Pages
====================================== */
/* clients page */
.section-clients {
  padding: 50px 0; }

.clients img {
  opacity: .6;
  transition-duration: .3s; }
  .clients img:hover {
    opacity: 1; }

@media screen and (max-width: 991px) {
  .section-clients {
    padding: 30px 0; }
    .section-clients .item {
      text-align: center;
      width: 100%; }
    .section-clients .owl-carousel .owl-item img {
      max-width: 75%;
      display: inline-block; } }
.section-clients {
  padding: 0 0 50px 0; }

@media only screen and (max-width: 991px) {
  .section-clients {
    padding: 0 0 40px 0; } }
/*our process page*/
.process-content {
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #c42025;
  padding: 30px; }
  .process-content.right {
    margin-left: -75px; }
  .process-content.left {
    margin-right: -75px; }

.process-icon-box {
  display: inline-block;
  color: #ffffff;
  height: 75px;
  width: 75px;
  padding: 15px;
  background-color: #1E2023;
  text-align: center; }

@media screen and (max-width: 991px) {
  .process-icon-box {
    height: 70px;
    width: 70px;
    padding: 10px; }

  .process-content.right {
    margin-left: 0; }
  .process-content.left {
    margin-right: 0; } }
@media screen and (max-width: 767px) {
  .process-icon-box {
    height: 65px;
    width: 65px;
    padding: 8px; } }
@media screen and (max-width: 575px) {
  .process-content {
    padding: 25px; } }
/*search page*/
.search-form_input {
  color: #c42025; }

.search-frame h4 a:hover {
  color: #c42025; }
.search-frame .search_list .match {
  color: #c42025; }
.search-frame .search_list li:before {
  color: #c42025; }
.search-frame .search_list li + li {
  border-top: 3px solid #c42025; }
.search-frame .search {
  color: #c42025; }

/* popup gallery */
.lg-backdrop {
  z-index: 99999; }

.lg-outer {
  z-index: 999999; }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #ff6d34; }

.lg-progress-bar .lg-progress {
  background-color: #ff6d34; }

.lg-backdrop.in {
  opacity: 0.85; }

/*404 page*/
.error-bg {
  background: #c42025;
  padding: 0px 20px 0px 20px;
  margin-bottom: 20px; }

.error-wrapper {
  text-align: center;
  padding: 55px 40px;
  background: #ffffff;
  transform: translateY(20px); }

.error-info {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0px auto 40px; }
  .error-info .error-border {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #1E2023;
    border: 5px dashed #ffffff;
    border-radius: 50%; }
  .error-info h1 {
    font-size: 110px;
    position: absolute;
    margin-bottom: 0;
    top: 50%;
    color: #ffffff;
    transform: translate(-50%, -50%);
    left: 50%; }

@media screen and (max-width: 1199px) {
  .error-wrapper {
    padding: 45px 35px; }

  .error-info {
    width: 240px;
    height: 240px; }
    .error-info h1 {
      font-size: 100px; } }
@media screen and (max-width: 991px) {
  .error-wrapper {
    padding: 40px 30px; }

  .error-info {
    width: 230px;
    height: 230px; }
    .error-info h1 {
      font-size: 90px; } }
@media screen and (max-width: 767px) {
  .error-wrapper {
    padding: 35px 25px; }

  .error-info {
    width: 210px;
    height: 210px; } }
@media screen and (max-width: 575px) {
  .error-bg {
    padding: 0px 15px 0px 15px; }

  .error-wrapper {
    padding: 30px 25px;
    transform: translateY(15px); }

  .error-info {
    width: 190px;
    height: 190px;
    margin: 0px auto 30px; }
    .error-info h1 {
      font-size: 80px; } }
/* New Comming Soon Page */
.coming-soon-content {
  text-align: center;
  padding: 60px 50px;
  background-color: #ffffff;
  position: relative;
  border: 20px solid #e1e1e1;
  border-radius: 5px; }

.countdown {
  padding: 0; }
  .countdown li {
    background: #c42025;
    display: inline-block;
    text-align: center;
    min-width: 150px;
    position: relative;
    padding: 15px 10px; }
    .countdown li:last-child {
      margin-right: 0; }
    .countdown li span {
      font-size: 50px;
      font-weight: 600;
      text-align: center;
      color: #ffffff;
      line-height: normal;
      position: relative; }
      .countdown li span:before {
        content: "";
        height: 1px;
        position: absolute;
        width: 100%; }
    .countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
      margin: 0;
      padding: 0;
      text-transform: capitalize; }

.coming-social-icon {
  margin-bottom: 0;
  list-style: none;
  padding: 0; }
  .coming-social-icon li {
    display: inline-block;
    margin-right: 5px; }
    .coming-social-icon li a {
      text-align: center;
      height: 35px;
      width: 35px;
      line-height: 35px;
      font-size: 14px;
      border-radius: 5px;
      display: inline-block;
      background: #1E2023;
      color: #ffffff; }
    .coming-social-icon li:last-child {
      margin-right: 0; }
    .coming-social-icon li a:hover {
      background-color: #c42025; }

@media screen and (max-width: 1199px) {
  .coming-soon-content {
    padding: 50px 40px; }

  .countdown li {
    min-width: 120px; }
    .countdown li span {
      font-size: 46px; } }
@media screen and (max-width: 991px) {
  .countdown li span {
    font-size: 40px; } }
@media screen and (max-width: 767px) {
  .coming-soon-content {
    padding: 40px 30px; }

  .countdown li {
    min-width: 180px;
    margin-top: 5px; } }
@media screen and (max-width: 575px) {
  .coming-soon-content {
    padding: 25px 20px; }

  .countdown li {
    min-width: 48%; }
    .countdown li span {
      font-size: 34px; } }
/* history page */
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative; }
  .timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 1px;
    background-color: #CECECE;
    left: 50%;
    margin-left: -1.5px; }
  .timeline > li {
    margin-bottom: 20px;
    position: relative; }
    .timeline > li:before {
      content: " ";
      display: table; }
    .timeline > li:after {
      content: " ";
      display: table;
      clear: both; }
    .timeline > li:before {
      content: " ";
      display: table; }
    .timeline > li:after {
      content: " ";
      display: table;
      clear: both; }
    .timeline > li > .timeline-panel {
      width: 50%;
      float: left;
      border: 1px solid #D2D2D2;
      background: #FFF;
      border-radius: 2px;
      padding: 20px;
      text-align: left;
      position: relative; }
    .timeline > li.timeline-inverted + li:not(.timeline-inverted) {
      margin-top: -10px; }
    .timeline > li:not(.timeline-inverted) {
      padding-right: 90px; }
      .timeline > li:not(.timeline-inverted) + li.timeline-inverted {
        margin-top: -10px; }
    .timeline > li.timeline-inverted {
      padding-left: 90px; }
      .timeline > li.timeline-inverted > .timeline-label {
        top: 32px;
        left: 50%;
        margin-left: -325px;
        white-space: nowrap;
        text-align: right;
        width: 300px; }
      .timeline > li.timeline-inverted > .timeline-panel {
        float: right; }
        .timeline > li.timeline-inverted > .timeline-panel:before {
          border-left-width: 0;
          border-right-width: 15px;
          left: -14px;
          right: auto; }
        .timeline > li.timeline-inverted > .timeline-panel:after {
          border-left-width: 0;
          border-right-width: 14px;
          left: -13px;
          right: auto; }
    .timeline > li > .timeline-panel:before {
      position: absolute;
      top: 26px;
      right: -14px;
      display: inline-block;
      border-top: 15px solid transparent;
      border-left: 15px solid #BDBDBD;
      border-right: 0 solid #BDBDBD;
      border-bottom: 15px solid transparent;
      content: " "; }
    .timeline > li > .timeline-panel:after {
      position: absolute;
      top: 27px;
      right: -13px;
      display: inline-block;
      border-top: 14px solid transparent;
      border-left: 14px solid #fff;
      border-right: 0 solid #fff;
      border-bottom: 14px solid transparent;
      content: " "; }
    .timeline > li > .timeline-badge {
      width: 20px;
      height: 20px;
      line-height: 50px;
      position: absolute;
      top: 32px;
      left: 50%;
      margin-left: -11px;
      background-color: #fff;
      z-index: 9;
      border-radius: 50%;
      border: 5px solid #D2D2D2;
      transition: all 0.3s ease-in-out; }
    .timeline > li > .timeline-label {
      height: 65px;
      position: absolute;
      top: 32px;
      left: 50%;
      margin: -25px 0 0 25px;
      padding: 10px 15px;
      text-align: left;
      z-index: 9;
      border-radius: 4px;
      transition: all linear 0.3s; }
      .timeline > li > .timeline-label h4 {
        margin: 0px;
        font-size: 25px; }
      .timeline > li > .timeline-label p {
        margin: 0;
        opacity: .8; }

.timeline-body > p, .timeline-body > ul {
  margin-bottom: 0;
  text-align: left; }
.timeline-body > p + p {
  margin-top: 5px; }

.timeline > li:hover > .timeline-label {
  transform: translateX(10px); }
.timeline > li.timeline-inverted:hover > .timeline-label {
  transform: translateX(-10px); }
.timeline > li:hover > .timeline-badge {
  border: 3px solid #c42025; }
.timeline small {
  margin-bottom: 10px;
  display: block; }

@media only screen and (max-width: 767px) {
  .timeline {
    padding: 20px 0 0; }
    .timeline:before {
      display: none; }
    .timeline > li {
      margin-bottom: 0px; }
      .timeline > li > .timeline-badge {
        display: none; }
      .timeline > li:not(.timeline-inverted) {
        padding-right: 0; }
      .timeline > li.timeline-inverted {
        padding-left: 0; }
        .timeline > li.timeline-inverted > .timeline-label {
          left: 32%; }
        .timeline > li.timeline-inverted + li:not(.timeline-inverted) {
          margin-top: 0; }
      .timeline > li > .timeline-panel {
        width: 70%; }
      .timeline > li > .timeline-label {
        left: 67%; }
      .timeline > li:not(.timeline-inverted) + li.timeline-inverted {
        margin-top: 0; } }
/* Certificate */
.certificate-main .certificate-image {
  transition: all 1.2s ease; }
.certificate-main:hover .certificate-image {
  transform: scale(1.07, 1.07);
  will-change: transform;
  transition: all 1.2s ease; }

/* ===================================
    Team
====================================== */
/* team-block */
.team-style01 .heading-text {
  font-size: 6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 10px;
  color: #F0EFF6BF;
  line-height: 1;
  writing-mode: tb-rl;
  transform: rotate(-180deg); }

.team-block:hover .team-img:before {
  opacity: 1;
  visibility: visible;
  transform: none; }
.team-block .team-img:before {
  position: absolute;
  z-index: 9;
  display: inline-block;
  top: 15px;
  right: 10px;
  bottom: 15px;
  left: 10px;
  border: 1px solid #fff;
  content: "";
  opacity: 0;
  transform: scale(0.85); }
.team-block .box-overlay:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  transform: translateY(110%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  transition: all .3s ease-in-out 0s; }
.team-block:hover .box-overlay:before {
  transform: translateY(0); }
.team-block .social-icons {
  bottom: auto;
  left: 0;
  margin: auto;
  text-align: center;
  right: 0;
  position: absolute;
  bottom: 0;
  z-index: 9;
  transition: all .4s ease-in-out;
  overflow: hidden;
  opacity: 0; }
  .team-block .social-icons li {
    position: relative;
    display: inline-block;
    margin-right: 4px; }
    .team-block .social-icons li:last-child {
      margin-right: 0; }
    .team-block .social-icons li a i {
      height: 35px;
      width: 35px;
      line-height: 35px;
      text-align: center;
      display: block;
      font-size: 14px;
      color: #c42025;
      background: #fff;
      transition: all .3s ease-in-out 0s; }
.team-block:hover .social-icons {
  opacity: 1;
  bottom: 40%; }
.team-block .social-icons li a:hover i {
  background: #c42025;
  color: #fff; }
.team-block .team-img img {
  transform: scale(1.02);
  transition: all .5s ease-in-out 0s; }
.team-block:hover .team-img img {
  transform: scale(1.2); }

@media screen and (max-width: 1199px) {
  .team-style01 .heading-text {
    font-size: 5rem; } }
/* team-block */
@media only screen and (max-width: 991px) {
  .team-style01 .heading-text {
    font-size: 4rem; } }
@media only screen and (max-width: 991px) {
  .team-background {
    padding: 0px 50px 20px; } }
@media only screen and (max-width: 575px) {
  .team-background {
    padding: 35px 35px 15px; } }
/* team-details page */
.team-background {
  position: relative;
  z-index: 1;
  border: 1px solid #e8e9e9;
  padding: 20px 50px 0px 50px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: bottom right; }

.team-img-bg {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  margin-bottom: -50px; }

.team-info {
  list-style: none;
  margin: 0;
  padding: 0; }
  .team-info li {
    font-size: 16px;
    display: flex;
    margin-bottom: 10px;
    font-weight: 500; }
    .team-info li a {
      font-weight: 500; }
    .team-info li:last-child {
      margin-bottom: 0; }
    .team-info li span {
      font-weight: 600;
      flex-basis: 20%;
      color: #000; }

.team-social-box {
  margin-bottom: 0;
  list-style: none;
  padding: 0; }
  .team-social-box li {
    display: inline-block;
    margin-right: 10px; }
    .team-social-box li a {
      text-align: center;
      height: 36px;
      width: 36px;
      line-height: 36px;
      font-size: 14px;
      display: inline-block;
      background: #c42025;
      color: #ffffff; }
    .team-social-box li:last-child {
      margin-right: 0; }
    .team-social-box li a:hover {
      background-color: #1E2023; }

@media screen and (max-width: 575px) {
  .team-img-bg {
    margin-top: 0; }
    .team-img-bg:before {
      display: none; } }
/* ===================================
    Testimonial
====================================== */
.image-mask {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text; }

.text-big {
  font-size: 250px;
  line-height: 250px;
  letter-spacing: -10px;
  color: #1E2023; }

.testimonial-style01 {
  position: relative;
  margin-bottom: -70px;
  max-width: 500px;
  width: 100%;
  padding: 60px; }

.testimonial-carousel .owl-dots {
  margin-top: 20px; }
.testimonial-carousel .owl-nav .owl-prev {
  margin-right: 10px;
  background-color: #1E2023; }
.testimonial-carousel.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px; }
.testimonial-carousel.owl-theme .owl-dots .owl-dot span {
  display: inline-block;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  background-color: #c42025;
  border: 3px solid #c42025;
  transform: scale(0.6);
  transition: .3s;
  margin: 5px; }
.testimonial-carousel.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background-color: transparent;
  border-color: #c42025;
  transform: scale(0.9); }

@media screen and (max-width: 1199px) {
  .testimonial-style01 {
    padding: 40px; }

  .text-big {
    font-size: 175px; } }
/*==============================
 *    Accordion
 *    ================================ */
/*accordion-style*/
.accordion-style .card {
  background: transparent;
  box-shadow: none;
  margin-top: 0 !important;
  border-radius: unset; }
.accordion-style .card-header {
  border: 0px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: none; }
.accordion-style .btn-link {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
  border-radius: 0;
  padding: 20px 55px 20px 25px;
  font-weight: 400;
  text-decoration: none;
  background-color: #c42025; }
  .accordion-style .btn-link.collapsed {
    color: #1E2023;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    padding: 20px 25px;
    font-weight: 400;
    text-decoration: none;
    background-color: transparent; }
  .accordion-style .btn-link:hover {
    text-decoration: none; }
  .accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 17px;
    position: absolute;
    color: #1E2023;
    background-color: #ececec;
    line-height: 24px;
    width: 25px;
    height: 25px;
    text-align: center; }
  .accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 17px;
    position: absolute;
    color: #c42025;
    background-color: #fff;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center; }
.accordion-style .card-body {
  padding: 25px 30px 25px 26px;
  line-height: 24px;
  text-align: left; }

@media screen and (max-width: 991px) {
  .accordion-style .btn-link {
    padding: 20px 50px 20px 18px; }
    .accordion-style .btn-link:after, .accordion-style .btn-link.collapsed:after {
      top: 20px; } }
@media screen and (max-width: 575px) {
  .accordion-style .btn-link.collapsed {
    padding: 20px 50px 20px 18px; } }
/* ===================================
    Contact Info
====================================== */
.contact-form {
  box-shadow: -3px 0px 21px rgba(27, 18, 18, 0.06); }

/* quform */
.form-group {
  margin-bottom: 1rem; }
  .form-group label {
    margin-bottom: .5rem; }

.form-control:focus {
  border-color: #c42025; }

.form-check-input:checked {
  border-color: #c42025;
  background-color: #c42025; }

.quform-input {
  position: relative; }
  .quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1; }

.quform-element > label {
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 15px; }
  .quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px; }

.quform-inner input {
  width: 100%; }

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top; }
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px; }

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal; }
  .quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal; }

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal; }
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
  border-color: #f5543f; }

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-submit-inner {
  float: none; }

.quform-loading-wrap {
  float: none; }
  .quform-loading-wrap .quform-loading {
    display: inline-block; }

.quform-element {
  margin-bottom: 1rem; }

/* newsletter */
.newsletter-form .quform-elements {
  position: relative; }
.newsletter-form .quform-input .quform-errors-wrap {
  left: 8px;
  right: inherit; }
.newsletter-form .quform-submit-inner {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  background: #c42025;
  height: 50px; }
.newsletter-form .quform-element .form-control {
  min-height: 50px; }

/* ===================================
 *   Animation
 *==================================== */
/* animation */
.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out; }

@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px); }
  65% {
    transform: translate(30px, 0); }
  100% {
    transform: translate(0px, 0px); } }
.ani-top-bottom {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom;
  animation-timing-function: ease-in-out; }

@keyframes TopBottom {
  0% {
    transform: translate(0px, 0px); }
  65% {
    transform: translate(0, 30px); }
  100% {
    transform: translate(0px, 0px); } }
.ani-move {
  animation: ImageMove 4s infinite linear;
  animation-duration: 5s; }

@keyframes ImageMove {
  0% {
    transform: translate(0px, 0px); }
  25% {
    transform: translate(10px, 20px); }
  50% {
    transform: translate(30px, 30px); }
  75% {
    transform: translate(20px, 10px); }
  100% {
    transform: translate(0px, 0px); } }
/*call-to-action-style01*/
.call-to-action-style01 {
  word-break: break-word; }
  .call-to-action-style01:before {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 50%);
    height: 100%;
    content: "";
    background: #c42025;
    z-index: 1; }

@media screen and (max-width: 767px) {
  .call-to-action-style01:before {
    width: calc(100% - 100%); } }
/* ===================================
    Card Styles
====================================== */
.card-style1 {
  position: relative;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  overflow: hidden;
  border-radius: 0; }
  .card-style1 .card-image img {
    width: 100%; }
  .card-style1 .card-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(29, 29, 29, 0.8) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(29, 29, 29, 0.8) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(29, 29, 29, 0.8) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#0a1d1d1d', GradientType=0);
    /* IE6-9 */
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out; }
  .card-style1 .card-info {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    margin: 0px;
    z-index: 9;
    transform: translateY(calc(130px + 1em));
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out; }
    .card-style1 .card-info .card-number {
      font-size: 128px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: .01em;
      margin-left: -5px;
      -webkit-text-stroke: 0.5px #fff;
      color: transparent;
      margin-bottom: 10px; }
    .card-style1 .card-info p {
      margin-bottom: 20px;
      margin-top: 5px;
      color: #fff;
      opacity: 0;
      transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out; }
    .card-style1 .card-info .card-button {
      border-bottom: 1px solid #09162a;
      opacity: 0;
      transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out; }
  .card-style1:hover .card-info {
    transform: translateY(0); }
    .card-style1:hover .card-info p, .card-style1:hover .card-info .card-button {
      opacity: 1; }
  .card-style1:hover .card-image:before {
    background: #c42025; }

@media screen and (max-width: 1199px) {
  .card-style1 .card-info .card-number {
    font-size: 110px; } }
@media screen and (max-width: 575px) {
  .card-style1 .card-info .card-number {
    font-size: 80px; }

  .vw-90 {
    width: 100%; } }
/*card-style2 Blog Section*/
.card-style2 {
  border: none;
  border-radius: 0; }
  .card-style2 .image-box {
    position: relative;
    overflow: hidden; }
    .card-style2 .image-box img {
      transform: scale(1.02);
      transition: all 0.4s ease-out;
      height: 100%;
      object-fit: cover; }
  .card-style2:hover .image-box img {
    transform: scale(1.2); }
  .card-style2:hover .image-box .blog-date {
    background-color: #c42025; }
  .card-style2 .image-box .blog-date {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1;
    color: #ffffff;
    padding: 10px;
    line-height: 1;
    background-color: #1E2023;
    text-transform: capitalize; }
    .card-style2 .image-box .blog-date span {
      position: relative;
      color: #ffffff;
      font-weight: 600;
      font-size: 24px;
      display: block;
      text-align: center;
      margin-bottom: 8px; }

@media screen and (max-width: 575px) {
  .card-style2 .image-box .blog-date span {
    font-size: 22px; } }
.blog-card:hover .image-box:before, .blog-card:hover:before {
  background-color: rgba(0, 0, 0, 0.8); }
.blog-card:hover .blog-link {
  height: 30px; }
.blog-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all .3s ease; }
.blog-card .image-box:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  transition: all .3s ease;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4); }
.blog-card .blog-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 0 20px 30px;
  z-index: 3; }
.blog-card .blog-link {
  font-weight: 600;
  font-size: 14px;
  font-size: .875rem;
  line-height: 30px;
  height: 0;
  overflow: hidden;
  display: -webkit-box;
  transition: all .3s ease; }
  .blog-card .blog-link a {
    padding-top: 10px;
    color: #c42025;
    text-transform: uppercase; }

@media screen and (max-width: 767px) {
  .blog-card .blog-content {
    padding: 15px 20px; } }
/* ===================================
    Footer
====================================== */
footer address {
  margin-bottom: 5px; }
footer h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1;
  position: relative; }
  footer h3:after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #c42025;
    margin: 12px auto 0 auto; }

.footer-logo {
  /*max-width: 214px;*/
  width: 100%;
  display: inline-block; }
  .footer-logo > a {
    display: inline-block; }

.footer-icon ul li {
  margin: 0; }

/*footer-list-style1*/
.footer-list-style1 {
  margin: 0;
  padding: 0; }
  .footer-list-style1 li {
    position: relative;
    list-style-type: none;
    color: #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2); }
    .footer-list-style1 li a {
      color: #000; }
      .footer-list-style1 li a:after {
        content: '\f105';
        font-weight: 700;
        font-family: Font Awesome\ 5 Free;
        color: #000;
        position: absolute;
        right: 0;
        vertical-align: middle; }
    .footer-list-style1 li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 0; }
    .footer-list-style1 li a:hover {
      color: #c42025; }
      .footer-list-style1 li a:hover:after {
        color: #c42025; }

.footer-icon ul li {
  display: inline-block;
  margin-right: 10px !important; }
  .footer-icon ul li i {
    width: 35px;
    font-size: 14px;
    height: 35px;
    text-align: center;
    line-height: 36px;
    background: #c42025;
    color: #fff; }

/*# sourceMappingURL=styles.css.map */
