*{
    -webkit-font-smoothing: antialiased;
}
body{
    background-color: black;
}
.main{
    color:white;
    height: 100vh;
    position: relative;
}
.menu-project{
    font-family: 'Bebas Neue', sans-serif;
    color:white;
    font-size: 1.4em;
    text-decoration: none;
    position: relative;
    letter-spacing: 1.5px;
}
.menu-project::before{
    content: '';
    position: absolute;
    top:50%;
    left:-30%;
    transform: translate(0,-50%);
    border: 1px solid rgb(212, 212, 212);
    z-index: -1;
    width: 20px;
    transition: all .1s ease;
}
.menu-project:hover::before{
    width: 150%;
}
.text-banner div{
    display: block;
    font-size: 4em;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    font-weight: bolder;
    white-space: nowrap;
}
.text-banner div h1{
    display: inline-block;
}
.contact-icon{
    position: fixed;
    bottom:30px;
    right:30px;
    cursor: pointer;
    transform: scale(1);
    transition: all .1s ease;
}
.contact-icon:hover {
    transform: scale(1.1);
}
.contact-icon img{
    transition: .1 ease;
}
.contact-icon i{
    color:white;
    font-size: 2em;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.contact-icon img{
    animation: rotating 5s linear infinite;
}
#stage3d{
    position: fixed;
    top:0;
    left:0;
    z-index: -1;
}
section{
    background-color: black;
    transition: all 500ms ease-in-out;
}
.me-img{
    max-width: 350px;
    width: 100%;
    height: 390px;
    margin-right: 15px;
}
.display-3{
    font-family: 'Bebas Neue', sans-serif !important;
}
.counter-container p{
    color:#B03B2E;
    text-align:center;
}
.counter-container{
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    /* border-top: 1px solid white; */
    /* border-bottom: 1px solid white; */
}
.show-btn{
    border:1px solid white !important;
    background-color: transparent;
    color: white !important;
}
.custom-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 20px;
}
.custom-grid .card{
    background-color: transparent !important;
}
.card-body{
    padding: 10px 0 0 0 !important;
}
.img-container{
    height: 200px;
    overflow: hidden;
    background-color: white;
}
.img-container img{
    display: block;
    width: 90% !important;
    height: auto !important;
    margin: auto;
}
.loader{
    background-color: black;
    transition: all 100ms ease-in-out;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1500;
    top:0;
    left:0;
}
.loader.remove{
    opacity: 0;
}

section.bright{
    background-color: #b03b2e !important;
}
section.bright *{
    color:white !important;
}
/* section.bright div.img-container{
    background-color: #2fa4b1 !important;
} */
.contact_sec h1{
    font-family: 'Bebas Nue', sans-serif;
    font-weight: bolder;
    position: relative;
}
.contact_sec h1:before{
    content: '';
    position: absolute;
    bottom:0;
    left:0;
    border: 2px solid white;
    width: 40%;
    transition: all .1s ease;
}
.contact_me{
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100%;
    font-family: 'Bebas Nue', sans-serif;
    letter-spacing:1.2px;
    font-weight: bolder;
}
@keyframes rotating {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
@media only screen and (max-width: 768px) {
    .text-container{
        justify-content: center;
    }
    .text-banner div{
        font-size: 2.5em;
        text-align: center;
    }
    .contact-icon i{
        font-size: 1.5em;
    }
    .contact-icon img{
        width: 120px;
    }
    .about-container{
        display: grid !important;
        grid-gap: 10px;
    }
    .me-img{
        margin: auto;
    }
    .info-me{
        text-align: center;
    }
}