:root{
    --bs-font-sans-serif: "Lato", sans-serif;     
    --bs-success: #35cc47;
    --bs-success-rgb: 53, 204, 71;
    --bs-danger: #35cc47;
    --bs-danger-rgb: 53, 204, 71;
    --bs-dark: #1a191b;
    --bs-dark-rgb: 26, 25, 27;
    --fwdis-font-heading: "Barlow Condensed", sans-serif;
    --fwdis-success-hover: #258e31;  
    --fwdis-success-hover-rgb: 37, 142, 49;
    --fwdis-danger-hover: #258e31;  
    --fwdis-danger-hover-rgb: 188, 28, 34; 
    --bs-link-color-rgb: var(--bs-success-rgb);           
}

html, body, div, button, h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, img, a, .btn {
    transition: all .2s ease-in-out; 
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.h1, h1{
    font-family: var(--fwdis-font-heading);
    font-size: 2.25rem;
}

.h2, h2{
    font-family: var(--fwdis-font-heading);
} 

.h3, h3{
    font-family: var(--fwdis-font-heading);
}         

.h4, h4{
    font-family: var(--fwdis-font-heading);
}    

p{
  font-size: 1.05rem;
}

@media (min-width: 992px) {

  .h1, h1{
    font-size: 3.5rem;
  }
}

.bg-cover{
    background-size: cover!important;
    background-position: 50% 50%!important;
}

.bg-radial{
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);            
}

.btn{
    font-family: var(--fwdis-font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-success {
--bs-btn-color: var(--bs-white);  
--bs-btn-bg: var(--bs-success);
--bs-btn-border-color: var(--bs-success);
--bs-btn-hover-bg: var(--fwdis-success-hover);
--bs-btn-hover-border-color: var(--fwdis-success-hover);
--bs-btn-focus-shadow-rgb: 60, 153, 110;
--bs-btn-active-bg: var(--fwdis-success-hover-rgb);
--bs-btn-active-border-color: var(--fwdis-success-hover);
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-bg: var(--bs-success);
--bs-btn-disabled-border-color: var(--bs-success);
}

.btn-danger {
--bs-btn-bg: var(--bs-danger);;
--bs-btn-border-color: var(--bs-danger);;
--bs-btn-hover-color: var(--bs-dark);
--bs-btn-hover-bg: var(--fwdis-danger-hover);;
--bs-btn-hover-border-color: #b02a37;
--bs-btn-focus-shadow-rgb: 225, 83, 97;
--bs-btn-active-bg: #b02a37;
--bs-btn-active-border-color: #a52834;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-bg: var(--bs-danger);;
--bs-btn-disabled-border-color: var(--bs-danger);;
}

.navbar{
    top: 0px;
    left: 0px;
    right: 0px;
}

.navbar .navbar-brand>img{
  height: 48px;
}

.nav-link{
    font-family: var(--fwdis-font-heading);
    
}

.dropdown-menu{
  background-color: var(--bs-black);
  --bs-dropdown-min-width: 15rem; 
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.5rem;         
}

.dropdown-menu{
  border-radius: 0px;
  border: none !important;  
}

.dropdown-item{
  font-family: var(--fwdis-font-heading);

}

.navbar-collapse.show{
  background: #FFF; 
}

.navbar-collapse.show .nav-item{
  border-bottom: 1px solid #EFEFEF;
}

.navbar-collapse.show .nav-link{
  color: var(--bs-dark)!important;
}


/* HERO */

.hero{
  height: 100vh;
  min-height: 600px;
}

.hero.small{
  height: 70vh;
  min-height: 350px;
}

@media (min-width: 992px) {
.hero{
    height: 65vh;
    min-height: 500px;
    max-height: 600px;
}

.hero.small{
  height: 40vh;
  min-height: 300px;
  max-height: 360px;  
}

.hero h1.bg-success{
  border-radius: .5rem;
}

}


/* INTRODUCTION */

.img-introduction{
    margin-top: -6rem;
}

.img-introduction:hover{
    rotate: 45deg;
    transition: all .8s ease-in-out; 
}

.introduction ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.introduction ul>li{
  position: relative;
  padding: 3px 0px 3px 24px;
}

.introduction ul>li::before{
  font-family: "Bootstrap-icons";
  content: "\F26B";
  color: var(--bs-success);
  position: absolute;
  left: 0px;
}

/* PAGE CONTENT */

.page.content p, .page.content ul{
  margin-bottom: 2.5rem;
}

.page.content blockquote p{
  font-family: georgia;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4rem;
  margin: 0 auto;
  margin-bottom: 2rem;
} 

@media (min-width: 992px) {

  .page.content blockquote p{
    font-size: 1.5rem;
    text-align: center;
    line-height: 3rem;
    max-width: 70%;
  } 

}

/* SERVICES */

.service{
  border-radius: 2rem;
  overflow: hidden;
}

.service .bg-overlay{
  background: rgba(0,0,0,.5);
}

.service:hover .bg-overlay{
  background: rgba(var(--bs-success-rgb),.75);
}

.service:hover h3{
  color: var(--bs-white)!important;
}  

/* SERVICE BLOCKS */

.block_service{
  text-decoration: none;
  color: #FFF;
  border-radius: 1.5rem;
  overflow: hidden;
  display: block;
}

.block_service .bg-cover{
  min-height: 280px;
}

.block_service .bg-cover::before{
  background-color: var(--bs-black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content:"\A";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 30%;
}

/* ARCHIVES MENU */

#posts-navigation ul{
  text-align: center;
  list-style: none;
  margin: 0 auto;
  padding: 0px;
}

#posts-navigation ul>li{
  display: block;
}

@media (min-width: 992px) {

#posts-navigation ul>li{
  display: inline-block;
}

}

#posts-navigation ul>li>a{
  background: var(--bs-dark);
  font-family: var(--fwdis-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: 2px solid transparent;
  color: #FFF;
  padding: 12px 24px;
}

#posts-navigation ul .current-menu-item a{
  background: transparent!important;
  border: 2px solid #FFF!important;
}

#posts-navigation ul>li>a:hover{
  background: #FFF;
  color: var(--bs-dark);
}

@media (max-width: 992px) {

#posts-navigation ul>li>a{
  display: block;
  margin-bottom: 10px;
}

}


/* ARCHIVES */

#job a {
  color: inherit
}

#jobs-preview img {
  height: 36px;
  width: auto
}

#jobs-preview.card,#preview.card {
  border-radius: 1.25rem;
  color: inherit
}

#jobs-preview.card:hover,#preview.card:hover {
  transform: translateY(-3px)
}

#jobs-preview.card h3,#preview.card h3 {
  font-size: 24px;
  line-height: 36px;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

#jobs-preview.card p,#preview.card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  min-height: 120px;
  opacity: .7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden
}


/* JOIN US */

.join-us .bg-overlay{
  background: rgba(0,0,0,0.66);
}

/* FORMS */

.gform_required_legend{
  display: none!important;
}

#gform_wrapper_2{
  background: #FFF;
  padding: 2.5rem;
}

#gform_wrapper_2 .gform_title{
  color: var(--bs-dark);
}

.gfield_required{
  display: none!important;
}

/* FOOTER & CREDITS */

.footer ul, .footer p{
  font-size: .8rem;
}

.footer ul{
  list-style: none;
  margin: 0px;
  padding: 0px;
  opacity: .9;
}

.footer ul:hover{
  opacity: 1;
}        

.footer ul>li>a{
  text-decoration: none;
  color: #FFF;
  display: block;
  padding: 4px 0px;
}

.footer ul>li>a:hover{
  color: var(--bs-danger);
}

.whatsapp a{
  border-radius: 30px;
  bottom: 48px;
  right: 48px;
  width: 60px;
  height: 60px;

}

.whatsapp a i{
  font-size: 28px;
}
