@font-face {
    font-family: "Montserrat Bold";
    src: url(../assets/fonts/Montserrat-Bold.ttf);
}
@font-face {
    font-family: "Brandon Reg";
    src: url(../assets/fonts/Brandon_reg.otf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #000;
    color: #fff;
    background-image: url(../assets/images/bg-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: "Brandon Reg";
}

.font-brandon{
    font-family: "Brandon Reg";
}

.logo-link{
    display: block;
    max-width: 500px;
    text-align: center;
    align-self: center;
}

.logo{
    width: 100%;
}

.parent-container{
    min-height: 600px;
    height: 100vh;
   
}

.parent-container::before{
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
    z-index: -1;
}

.text-container{
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 600px;
    justify-content: space-around;
    width: 60%;
    margin: auto;
}

.uniq-steel-info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.uniq-steel-info .text{
    text-align: center;
    color: #b4a67f;
    font-size: 20px;
    text-shadow: 0px 0px 120px rgba(0, 0, 0, 0.004);

}

.uniq-steel-info .city-title{
    font-family: "Montserrat Bold";
    font-size: 24px;

}

.uniq-steel-email{
    color: #b4a67f;
    font-size: 26px;
    text-align: center;
}

.uniq-steel-email p{
    color: #b4a67f !important;
}

@media (width<=768px) {
    body{
        background-position: 20%;
    }
    .uniq-steel-info{
        justify-content: center;
        gap: 40px;
    }
    .uniq-steel-info .text{
        width: 100%;
    }
    
   
}
@media (width<=576px) {
    .pipe{
        display: none;
    }
}