body{
    font-family: 'Roboto', sans-serif;
}
body.loading{
    overflow:hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: 'Poppins', sans-serif;

}

a{
    transition: .3s ease all;
    color:#364011;
}
.color-green{
    color:#364011;
}

.background-green{
    background-color:#364011;
}

.background{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
}

#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10000;
}
#preloader img{
    width:200px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}
.navbar-brand{
    max-width: 10vw;
}
.hero {
    height:800px;
   max-height:100vh;
}
.hero .container{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.hero-carousel {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-carousel .slide {
    background-size: cover;
    background-position: center;
   height:800px;
   max-height:100vh;
}

.csc-team .team-item {
    display: block;
    position: relative;
}

.csc-team .team-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.csc-team .team-item:hover:before {
    opacity: 0;
}

.csc-team .team-item .team-img {
    position: relative;
}

.csc-team .team-item .team-img .normal-text {
    position: absolute;
    text-align: center;
    height: 80px;
    bottom: -1px;
    padding: 17px 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: rgba(54, 64, 17, 0.7);
    transition: .3s ease all;
    z-index: 10;
}

.csc-team .team-item .team-img .normal-text .team-name {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    display: block;
    text-transform: uppercase;
    padding: 0 0 3px;
}

.csc-team .team-item .team-img .normal-text .subtitle {
    color: #fff;
    margin: 0;
    display: block;
}

.csc-team .team-item .team-img img {
    width: 100%;
}

.csc-team .team-item .team-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10%;
    left: 0;
    text-align: center;
    z-index: 1;
    padding: 30px;
    opacity: 0;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
    visibility: hidden;
}

.csc-team .team-item .team-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(54, 64, 17, 0.8);
    z-index: -1;
}

.csc-team .team-item .team-name {
    margin-bottom: 2px;
}

.csc-team .team-item .team-name a {
    margin-bottom: 6px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.csc-team .team-item .team-name a:hover {
    color: #fff;
}

.csc-team.fullwidth-team .col-lg-3 {
    padding: 0;
}

.csc-team.fullwidth-team .col-lg-3 .team-item {
    margin-bottom: 0;
}

.csc-team.fullwidth-team .col-lg-3 .team-item .team-img .normal-text {
    text-align: left;
    background: transparent;
    padding-left: 15px;
}

.transaction-logo{
    display:block;
    aspect-ratio:1/1;
    position:relative;
}
.transaction-logo div{
    position:absolute;
    top:5%;
    left:5%;
    height:90%;
    width:90%;
    object-fit:contain;
    object-position:center;
    transition: .3s ease all;
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
}
.transaction-logo:hover div{
    left:0;
    top:0;
    width:100%;
    height:100%;
}
.btn-close{
    filter: invert(1);
    position: absolute;
    right: 15px;
    top: 15px;
}
@media screen and (max-width: 768px) {
    .bg-black.bg-opacity-50{
        background-color:rgba(33,37,41,1)!important;
    }
    .navbar-brand{
        max-width: 24vw;
    }
    header .nav-item{
        text-align: center;
    }
    .hero,
    .hero-carousel .slide {
        height: 40vh;
    }
    .csc-team .team-item:before {
        opacity:0;
    }
    .btn-close{
        right: 0;
        top: 0;
    }
    .navbar-toggler:focus{
        box-shadow:none;
    }
}