@font-face {
  font-family: ElegantIcons;
  src: url("../fonts/ElegantIcons.eot");
  src: url("../fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"),
    url("../fonts/ElegantIcons.woff") format("woff"),
    url("../fonts/ElegantIcons.ttf") format("truetype"),
    url("../fonts/ElegantIcons.svg#ElegantIcons") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  --if-fontSize-48: 48px;
  --if-fontSize-40: 40px;
  --if-fontSize-30: 30px;
  --if-fontSize-18: 18px;
  --if-fontSize-16: 16px;
  --if-fontSize-14: 14px;
}

/* Navbar */

.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
}

.nav div.logo a:hover {
  color: #00e676;
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 65px;
  font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
  color: #00e676;
}
/* Submenu */
.dropdown:hover > .dropdown-menu {
  display: block;
  transition: ease-out 0.3s;
}
/* Menu ANimation */

.dropdown-menu {
  transition: ease-out 0.3s;
}
.dropdown-menu:hover {
  transition: ease-out 0.3s;
}
/* Slide-in-up animation*/
.dropdown:hover > .dropdown-menu {
  transition: all 5s;
  transform: translateY(0);
  transition: ease-out 0.3s;
}
.slide-in-up-enter,
.slide-in-up-leave-to {
  opacity: 0;
  transform: translateY(20px);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > a:after {
  content: "\f0d7";
  float: right;
  border: none;
  font-family: "FontAwesome";
}
.dropdown-submenu > a::after {
  border: none !important;
}

.dropdown-submenu > .dropdown-menu {
  top: -1em;
  left: 100%;
  margin-top: 0px;
  margin-left: 0px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--white);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--white);
}

/* Removes dropdown icon */
nav .dropdown-toggle::after {
  border: none !important;
}
/* removes border radius dropdown */
.dropdown-menu {
  border-radius: 0 !important;
}
.dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 auto;
  border: 0;
  box-shadow: 0 3px 16px 0 rgb(0 0 0 / 8%);
  transform: translateY(1em);
}
.dropdown-item a {
  color: #212529 !important;
}
.dropdown-item {
  border-bottom: 1px solid #f1f1f1;
}
/* Nav circle deco */
.if-nav-circle-deco {
  display: inline-block;
  /* border: 2px solid #ff9800; */
  /* border: 1px solid black; */
  color: #ff9800;
  color: #000;
  color: green;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  z-index: 1000;
  transition: all 0.5s;
  margin-right: 1em;
  background-color: var(--white);
}
.if-nav-circle-deco p {
  font-size: var(--if-fontSize-14);
  line-height: 2.75em;
  color: green;
}
.navbar-brand img {
  min-width: 80px;
}
.if-btn-white {
  color: white;
  letter-spacing: 1.5px;
}
.if-btn-black {
  color: #263a4f;
  letter-spacing: 1.5px;
}
/* Nav btn wrap */
.if-nav-btn-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.if-nav-btn-wrap {
  /* display: flex;
  align-items: flex-start;
  flex-direction: column; */
}
/* hover colors */

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
  color: #fff !important;
  background: #a3cc01 !important;
}

.dropdown-item:hover a {
  color: #fff !important;
}
/* Navbar bg transparent */
.if-bg-light {
  background-color: transparent;
    padding: 1em 0;
    padding-top: 1.5em;
    transition: all .3s;
}
.if-bg-notlight {
  background-color: var(--white);
    box-shadow: 0 3px 16px 0 rgb(0 0 0 / 10%);
    padding: 0.15em 0;
    transition: all .3s;
    padding-top: 2.4px;
}
.if-navlinkcolor {
  /*color: #000 !important;*/
  color: #263a4f !important;
  font-weight: 500;
}
.if-tel:hover {
    color: #263a4f;
}

/* Submenu   */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
/* Sidebar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #a3cc01;
}
::-moz-selection {
  background-color: #a3cc01;
  color: #fff;
}
::selection {
  background-color: #a3cc01;
  color: #fff;
}
-webkit-::-moz-selection {
  background-color: #a3cc01;
  color: #fff;
}
-webkit-::selection {
  background-color: #a3cc01;
  color: #fff;
}
::-moz-selection {
  background-color: #a3cc01;
  color: #fff;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* fonts */
.if-title-lg {
  font-size: var(--if-fontSize-48);
}
.if-title {
  font-size: var(--if-fontSize-40);
}
.if-subtitle {
  font-size: var(--if-fontSize-30);
}
.if-normal {
  font-size: var(--if-fontSize-18);
  color: #808080;
}
.if-small {
  font-size: var(--if-fontSize-16);
}
.if-smallest {
  font-size: var(--if-fontSize-14);
}

/* buttons */
.if-btn {
  padding: 0.5em 2em;
  transition: all 0.5s;
  margin-right: 1em;
  margin-bottom: 1em;
}
.if-btn:hover {
  transform: scale(1.1);
  transition: all 0.5s;
}
.if-btn__default--white {
  background: var(--white);
}
.if-btn__default--orange,
.if-btn__default--orange:hover {
  color: var(--white);
  background: #91c84f;;
}
.if-btn__default--gray,
.if-btn__default--gray:hover {
  color: #292d34;
  background: #eeeeef;
}

.if-btn__outline {
  background: transparent;
}
.if-btn__outline--white {
  color: var(--white);
  border: 2px solid var(--white);
}
.if-btn__outline--white:hover {
  color: var(--white);
}
.if-btn__outline--orange {
  color: #91c84f;;
  transition: all 0.5s;
  border: 2px solid #91c84f;;
}

/* Intro */
#if-intro {
  /* height: 100vh; */
  background-image: linear-gradient(to top, #668d95, #96acb0);
  /* background-image: url("..../images/homepage/intro.png"),
    linear-gradient(to top, #668d95, #96acb0);
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-position-x: right; */
}
#if-intro .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 80vh;
}
#if-intro .col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
#if-intro .if-svg {
  height: 24px;
  width: 24px;
}
#if-intro .if-svg__rotate90 {
  transform: rotate(90deg);
  fill: var(--white);
}
#if-intro .container {
  position: relative;
}
.if-intro-teaser-img {
  position: absolute;
  /* top: 50%; */
  right: 0;

  /* transform: translateY(-50%); */
  bottom: 0;
}
.if-intro-teaser-img img {
  width: 25%;
}
/* About */

/* What is Bluefire */
#if-what {
  background-color: #f8f8f8;
}

#if-what .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100vh;
}
.if-what-teaser-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  bottom: 0;
}

/* How */
/* Where */
#if-where img.if-icon {
  height: 3em;
  width: 3em;
  display: inline;
  margin-right: 1em;
}
#if-where .if-btn {
  margin-right: 0;
  border-radius: 6px;
  padding: 0.75em 2em;
  font-weight: bold;
}
#if-where .if-btn {
  height: 100%;
}
#if-where .if-normal {
    color: #292d34;
}
/* Products */
#if-reviews button.owl-prev.if-review-prev { color: #54586470;}
#if-reviews button.owl-next.if-review-next { color: #54586470;}
#if-products__slider img {
  max-width: 310px;
  margin: 2em auto;
  width: 100%;
}
.if-video-play-icon {
   width: 80px;
    height: 80px;
    top: 39%;
    left: 46%;
    transform: rotate( 
90deg
 );
    fill: var(--white);
    background: gray;
    padding: 1em;
    border-radius: 50%;
}
#if-products__slider .owl-stage {
  margin: 2rem 1rem;
}

#if-review__slider .owl-stage {
  margin: 2rem 1rem;
}

#if-products__slider .owl-nav {
  position: absolute;
  width: 110%;
  top: 46%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
#if-products__slider .owl-nav .owl-prev {
  left: 0;
  /* background-color: #17a2b8; */
}
#if-products__slider .owl-nav .owl-next {
  /* position: absolute; */
  right: -1.5em;
  /* background-color: #17a2b8; */
}
/* #if-products__slider .owl-nav .owl-prev::before,
#if-products__slider .owl-nav .owl-next::before {
  color: white;
}
#if-products__slider .owl-nav .owl-prev::before {
  content: "<";
  font-size: 40px;
}

#if-products__slider .owl-nav .owl-next::before {
  content: ">";
  font-size: 40px;
} */
#if-products__slider button,
#if-review__slider button {
  height: 50px;
  width: 50px;
}
.if-newtag {
  border-top: 30px solid #efcc55;
  border-left: 40px solid #efcc55;
  border-right: 40px solid #f6f6f7;
  border-bottom: 30px solid #f6f6f7;
  background-color: #efcc55;
  position: absolute;
  top: 0px;
  left: 0px;
  border-top-left-radius: 4px;
  transition: 0.5s border-color;
}
.if-products__slider--itemWrap:hover .if-newtag {
  border-top: 30px solid #efcc55;
  border-left: 40px solid #efcc55;
  border-right: 40px solid #91c84f;
  border-bottom: 30px solid #91c84f;
}
.if-newtext {
  position: absolute;
  top: -22px;
  left: -30px;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.56px;
  text-align: center;
  color: #ffffff;
}

/* background-color: #f6f6f7; */
.if-products__slider--itemWrap {
  background-color: #f6f6f7;
  transition: all 0.5s;
  padding: 3em 1em;
  margin: 0 auto;
  text-align: center;
  min-height: 30em;
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  align-items: center;
  flex-direction: column;
}
.if-products__slider--itemWrap:hover {
  background-color: #91c84f;
  color: var(--white);
  box-shadow: 0px 0px 12px 4px #00000052;
}
#if-products__slider .col {
  transition: all 0.5s;
}
#if-products__slider .col:hover {
  transition: all 0.5s;
  transform: translateY(-10px);
}
.if-products__slider--itemWrap:hover .if-btn__outline--orange {
  color: var(--white);
  transition: all 0.5s;
  border: 2px solid var(--white);
}

/* customers / clients */
.if-client {
  filter: grayscale(1);
  cursor: pointer;
  transition: all 1s;
  max-width: 150px;
  max-height: 150px;
  margin: 0 auto;
}
.if-client:hover {
  filter: grayscale(0);
  transition: all 1s;
}
#if-customers__slider .owl-stage {
  display: flex;
  align-items: center;
}

/* Reviews */
#if-reviews {
  background: url("../images/icons/texture.png") repeat scroll;
  background-color: #f9fafa;
}
.if-review__wrap {
  padding: 2em;
  background: #fff;
  border-top: 5px solid #a3cc01;
}
.if-review__wrap h4:before {
  content: "\7b";
  font-family: ElegantIcons;
  position: absolute;
  right: 22px;
  top: 20px;
  color: #a3cc01;
  font-size: 60px;
  line-height: 50px;
}
.if-review__wrap h4 {
  font-size: var(--if-fontSize-14);
  font-weight: 400;
}
.if-review__wrap h4 span {
  font-size: var(--if-fontSize-18);
  font-weight: 500;
}
.if-reviews-buttons {
  text-align: right;
  padding-right: 30px;
}
.if-reviews-buttons button {
  width: 50px;
  height: 50px;
  color: #263a4f;
  border: none;
  background-color: transparent;
}

/* FAQ */
#if-faq .card-header {
  background-color: #8bc53f;
  background-color: var(--white);
  color: #000;
}
#if-faq .card-header .btn-link {
  color: var(--white) !important;
  color: #000 !important;
  text-decoration: none;
  padding-left: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
#if-faq .card-header .btn-link .if-small {
  font-weight: 500;
}
#if-faq .card-header .btn-link:focus {
  box-shadow: none;
}
#if-faq .card {
  border-right: 0 !important;
  border-left: 0 !important;
}
#if-faq .card-body {
  text-align: left;
}

span.ion.if-title.font-weight-light.ion-ios-arrow-down { color: #54586470;}
span.ion.if-title.font-weight-light.ion-ios-arrow-up { color: #54586470;}
/* CTA */
#if-cta {
  background-color: #8bc53f;
  position: relative;

  background-image: url("../images/homepage/cta-arrow.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
#if-cta .if-title {
  color: var(--white);
}
#if-cta .if-btn__default--white {
  color: #8bc53f;
}
/* Footer */
#if-footer .if-subtitle {
  font-size: 26px;
}
#if-footer a {
  color: #8d9aa8;
}
.if-footer-links {
  border-bottom: 2px solid #f0f0f0;
  margin: 0 auto;
}
#if-footer a:hover {
  color: #263a4f;
}
.if-copyright {
  color: #8d9aa8 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.if-social-links {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.if-social-links a {
  margin: 0.5em 1em;
}
.ion-logo-facebook:before {
  content: "";
  /* filter: invert(100); */
  background: #3b5999;
  color: white;
  line-height: 0.75;
  letter-spacing: 0;
  font-size: 33px;
}
.ion-logo-twitter {
  color: #55acee !important;
}
.ion-logo-linkedin {
  color: #0077b5 !important;
}
.ion-logo-youtube {
  color: #cd201f !important;
}

#if-backtotopBTN {
  display: inline-block;
  border: 2px solid #ff9800;
  color: #ff9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.5s;
}
#if-backtotopBTN:hover {
  cursor: pointer;
  background-color: #ff9800;
  color: var(--white);
  transition: all 0.5s;
}
#if-backtotopBTN:active {
  background-color: #ff9800;
  color: var(--white);
  transition: all 0.5s;
}
#if-backtotopBTN.show {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

/* Modal */
#if-modal-video .modal-footer {
  justify-content: center;
}
#if-modal-video .modal-header {
  justify-content: center;
}
#if-modal-video .modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}
#if-modal-video .modal-body {
  padding: 0;
}

#if-modal-video .modal-content {
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.if-close {
  position: absolute !important;
  right: -1em !important;
  background: white !important;
  top: -1em !important;
  /* font-size: 34px!important; */
  width: 50px !important;
  height: 50px !important;
  color: black !important;
  border-radius: 50% !important;
  border: 2px solid #91c84f; !important;
  opacity: 1 !important;
}
.if-close .ion {
  color: #000 !important;
}

#if-modal-form .if-title {
  color: #ff9800;
}
.if-copyright {
  text-align: center;
}
.if-privacy {
  text-align: center !important;
}
#if-cta {
  background-size: cover !important;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .if-copyright {
    text-align: center;
  }
  #if-cta {
    background-size: contain !important;
  }
  #if-intro {
    height: 100vh;
    background-image: linear-gradient(to top, #668d95, #96acb0);
    background-image: url("../images/homepage/intro.png"),
      linear-gradient(to top, #668d95, #96acb0);
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-position-x: right;
  }

  #if-intro .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 100vh;
  }
  #if-what {
    height: 100vh;
    background-color: #f8f8f8;

    background-image: url("../images/homepage/laptop-mobile.png");
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-position-x: right;
  }
  #if-where .if-btn {
    height: auto;
  }
  #if-what .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 100vh;
  }
  #if-products__slider .owl-nav {
    position: absolute;
    width: 103%;
  }
  #if-products__slider .owl-nav .owl-prev {
    background: rgba(0, 0, 0, 0.3) url("../images/icons/icon_prev.png") no-repeat
      center center !important;
  }
  #if-products__slider .owl-nav .owl-next {
    background: rgba(0, 0, 0, 0.3) url("../images/icons/icon_next.png") no-repeat
      center center !important;
  }
  .if-nav-btn-wrap {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .if-copyright {
    text-align: left;
  }
  .if-privacy {
    text-align: right !important;
  }
}

@media (min-width: 992px) and (max-width: 1024px){
  #if-what{
    background-size: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991px){
  #if-what{
    background-size: 65%;
    }
}

@media (max-width: 767px) {
  #if-intro{
    margin-top: 120px;
  }
  #if-what{
    padding-bottom: 20%;
  }
  .banner_subtext {
    font-size: 32px;
}
}
.invalid-feedback-form {
  width: 100%;
  margin-bottom: 0.50rem;
  font-size: 80%;
  color: #dc3545;
}