.hero-fill-height{
    height: 100vh;
    background-color: rgba(70, 62, 62, 0.1);
}

/* :: Pseudo element apply style to the first child element*/
.hero-fill-height::before {
    /* backgrouhn color before loading*/
    background-color: #000;
    content: "";
    width: 100%;
    height: 100vh;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("img/corporate.jpg");
    filter: grayscale(100%) brightness(12%);
    z-index: -1;
}

.hero-container{
    /* fixing BS's centering bug only vertical center if height set to 100vh */ 
    max-height: 100vh;     
}

.wrapper{
    height: 25%;
}

.rounded-corners{
    border-radius: 30px;
}

.svg-sizer-h-120px{
    height: 120px;
}

.svg-sizer-h-50{
    /*height: 250px;*/
    width: 50%;
}

h1,h2,h3,span{
    font-family: 'Montserrat', sans-serif;
}

p{
    font-family: 'Roboto', sans-serif;
}

a{
    color: white !important;
    font-weight: 600;
}

a:hover{
    color:#FE4833 !important;
}


/* mobile optimization*/
@media only screen and (max-width: 767px) {
    .heroFillHeight::before {
        background-image: url("img/corporate-mobile.jpg");
      }
}


@media (min-width: 1200px) {
    .maxWidth{
        max-width: 1050px;
    }
}

.btn-orange{
    background: #FE4833 !important;
}

.btn-orange:hover{
    background: black !important;
}

.rounded-lg {
    border-radius: 1rem !important;
}
  
.text-small {
    font-size: 0.9rem !important;
}
  
.custom-separator {
    width: 5rem;
    height: 6px;
    border-radius: 1rem;
}
  
.text-uppercase {
    letter-spacing: 0.2em;
}


@media (min-width: 992px) {
    .hover-container{
     transition: all 0.25s;
    }
    .hover-container:hover {
      margin-top: -.25rem;
      margin-bottom: .25rem;
      box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
    }
    /*.hover-container:hover .btn {
      background: black !important;
    }*/
}

@media (max-width: 992px) {
.img-min-mobile{
    height: 250px;
    width: 250px;
    }
}

.testimonial-1 {
    background: #fff;
    padding: 14px;
    color: #000
}

.col-md-4 {
    margin-top: 25px
}

.name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: -3px
}

.picture-grey-filter{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.picture-grey-filter:hover{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.quote-sizer{
    font-size: 96px;
}

.inline{
    display: inline-block;
}

.vertical-align-middle{
    vertical-align: middle;
}

.bold-h2{
    font-size: 2.5rem;
    font-weight: 900; 
}

.bold-counter{
    font-size: 2.5rem;
    font-weight: 900; 
    color:#FE4833 !important;
}

.nice-text{
    font-size: 2.5rem;
    font-weight: 900; 
}


.section-margin-med{
    margin: 4rem 0;
}

.section-margin-lg{
   margin: 7rem 0;
}


.section-padding-lg{
    padding: 7rem 0;
 }
@media (max-width: 768px) {
.section-padding-lg{
    padding: 2rem 0;
 }
}

.no-border {
    border: 0 !important;
    box-shadow: none !important;
}

.form-control {
    background: #f3f3f3 !important; 
}
  
.btn, .form-control{
    min-height: 50px; 
}

.autohide{
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}
.scrolled-down{
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
    transform:translateY(0); transition: all 0.3s ease-in-out;
}

.c-width{
    max-width: 500px;
    width: 500px;
}

.bg-grey{
    background-color: #F3F3F3;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* dark mode */

body.dark-mode{
    background-color:#151515 !important;
}


h2.dark-mode,h3.dark-mode{
    color: white;
}

p.dark-mode{
    color: #B2B2B2 !important;
}


.remain-white{
    background-color: white !important; 
    border-radius: 15px;
}

#dark-mode-switch{
    position: fixed; 
    height: 75px; 
    width: 75px;
    right:75px;
    bottom: 75px;
}

@media (max-width: 768px) {
    #dark-mode-switch{
        min-height: 50px;
        min-width: 50px;
        right: 40px;
        bottom: 40px;
    }
}

.fa-lightbulb{
    font-size: 35px;
} 

