/* Built 2025*/
body{
    margin: 0px;
    padding: 0px;
    min-height: 90vh;
}


.row{
    display:flex;
    flex-direction: row;

}

.column{
    display:flex;
    flex-direction: column;
}

.justify-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}

.shadow{
    box-shadow: 1px 1px 1px 1px rgb(126, 126, 126);
}


footer{
    bottom: 0;
    position: relative;
    margin-top: 5px;
    width: 100%;
}

.base-text-color{
    color: #004593;
}

.h-100{
    height: 80vh;
}

.bg-weld{
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
    background-image: url("../images/weld.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-work {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
    background-image: url("../images/work.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

.bg-room {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
        background-image: url("../images/room.jpg");
}

.text-white{
    color:white
}

.bg-half-dark{  
    background-color: rgba(0, 0, 0, 0.842);
}

.p-5{
    padding: 5px;
}

.p-10{
    padding: 10px;
}

.border-rad-5{
    border-radius: 5px;
}
.border-rad-10 {
    border-radius: 5px;
}

.button-main{
    padding: 10px;
    text-decoration: none;
    color:white;
    background-color: #007BFF;
    text-align: center;
    width: 200px;
    height: 50px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-main :hover{
    opacity: 0.7;
    background-color:rgba(0, 0, 0, 0.842) ;
}

.bottom-border-2{
    border-bottom: black 2px solid;
}

.bottom-border{
        border-bottom: black 1px solid;
}

.img-logo{
    max-width: 400px;
    max-height: 400px;
}
.img-logo-200 {
    max-width: 200px;
    max-height: 200px;
}

.flex-w{
    flex-wrap: wrap;
}

.max-width-1000{
    max-width: 1000px;
}

.show{
    animation: fade-in 500ms linear 0s 1;
}

.h-80{
    height: 60vh;
}

.mt-10{
    margin-top: 10px;
}

.row-reverse{
    flex-direction: row-reverse;
    display: flex;
}
@keyframes fade-in {
    from{ opacity: 0;}
    to{opacity: 1;}
}

@media only screen and (max-width:800px) {
    .reverse-row{
        flex-direction: row-reverse !important;
    }
}   

.float-bar{
    padding: 5px;
    width: 40px;
    position: fixed;
    right:0px;
    background-color: white;
    height: 200px;
    bottom: 0px;
    z-index: 4;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border: 1px solid rgba(128, 128, 128, 0.671);
}

.float-logo{
    max-width: 35px;
    max-height: 35px;
}


@keyframes on-hover-grow {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.02);
    }
}

.hover-grow:hover{
    animation: on-hover-grow 500ms linear 1 forwards;
    cursor: pointer;
}

.flex-box-3{
    flex:30.0%;
    max-width:500px;
    margin: 5px;
}

.text-20{
    font-size: 20px;
    color:black !important;
}

.m-0{
    margin: 0px;
}

.text-14{
    font-size: 14px;
}


.info-box-v2{
    background-color: white;
    display:flex;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    padding: 5px;
        flex: 20.0%;
        min-height: 400px;
        justify-content: center;
}

.info-box-v2 > a >img{
    max-width: 300px;
    border-radius: 5px;
    border-bottom: #004593 4px solid;
}

.info-box-v2:hover{
    opacity: 0.9;
    box-shadow: #007BFF 1px 2px 2px 2px ;
}

.info-box-v2 > a{
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-box-v2 > a > p {
    color: grey;
    text-align: center;
}

.mini {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
}

.mini > img {
    max-width: 100px;
}


.text-decor-none{
    text-decoration: none !important;
}
.video-background{
    position: absolute;
    width: 100%;
        object-fit: fill;
    height: 100vh;
    z-index: -1;
}



.button-main-400 {
    padding: 10px;
    text-decoration: none;
    color: white;
    background-color: #ed1115;
    text-align: center;
    max-width: 400px;
    width: 100% ;
    margin: 5px;
    height: 50px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-main-400 :hover {
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.842);
}

.font-size-70{
    font-size: 70px;
}

.pos-absolute{
    position: absolute;
}

.text-styler{
position: relative;
right: 50px;
padding:5px;
text-align: center;
opacity: 0;
animation: left-to-right 500ms linear 200ms 1 forwards;
}

.img-styler{
    position: relative;
    opacity: 0;
    animation: bottom-to-top 500ms linear 200ms 1 forwards;
}

.p-top-50{
    padding-top: 50px;
}

.pos-sticky-top{
    position: sticky;
    z-index: 1;
    top: 100px;
}

.beat-anim{
    animation: beat 500ms infinite linear;
    animation-delay: 1000ms;
}

.laser-body-holder{

}

.laser-body{
    flex: 33.33%;
     max-height: 400px;
    max-width:500px;
    background-color: white;
    display: flex;
    padding: 5px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-decoration: none;
    margin:3px;
    border-radius: 10px;

}

.laser-body > img{
    max-width: 500px;
    max-height: 300px;
}


@keyframes bottom-to-top {
  from {
    opacity: 0;
    bottom: -200px;
  }
  to{
    opacity: 1;
    bottom: 0;
  }
} 


@keyframes left-to-right {
    0%{
        opacity: 0;
        right:500px;
    }
    99%{
        right:0;
    }
    
    100%{
        position: sticky;
                opacity: 1;
    }
}

@media only screen and (max-width:600px) {
    .font-size-70{
        font-size: 40px;
    }
}

.text-center{
    text-align: center;
}


.text-dodger{
    color:dodgerblue
}

.bg-dark{
    background-color: rgb(53, 53, 53) !important;
}

.base-text-main2{
    color:#ed1115 !important;
}

@keyframes beat {
    0%{
        transform: scale(1);
    }
    
    50%{
    transform: scale(1.1);}

    100%{
        transform: scale(1);
    }

}
.max-width-70{
    max-width: 70%;
}