
@font-face {
    font-family: "TerminaTest-light";
    src: url("../assets/terminaFont/TerminaTest-Light.otf") format("truetype");
    font-weight: 600;
    font-style: normal;
  }
  
@font-face {
    font-family: "TerminaTest-Semibold";
    src: url("../assets/terminaFont/TerminaTest-Demi.otf") format("truetype");
    font-weight: 600;
    font-style: normal;
  }
  

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

main {
    overflow: hidden;
    /* background-color: #000; */
}


.black-button {
    min-width: 200px;
    color: #ffffed;
    border: 1px solid #ffffed;
    cursor: pointer;
}
.black-button .button-text {
    margin-top: 3px;
    cursor: pointer;
}

.black-button .button-icon img {
    width: 24px;
    cursor: pointer;
}

.outline-button .button-icon {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

.outline-button .button-text {
    transition: transform 0.3s ease;
    transform: translateX(10px);
}

.outline-button:hover .button-icon {
    opacity: 1;
    transform: translateX(5px);
}

.outline-button:hover .button-text {
    transform: translateX(-5px);
}

.outline-button:hover {
    border: 1px solid #ffffed;
    /* background-color: #ffffed; */
    /* color: #000; */
}

.processBtn{
    color: #000;
}
.processBtn:hover{
    color: #ffffed;
}
.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #ffffed !important;
    position: relative;
}

.subContainer {
    max-width: 1200px;
    padding: 60px 20px;
}
.meisterwerk.active{
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 1s, opacity transform 0.5s;
    animation: left-to-place 1s forwards 0.5s;
}

.newSections {
    height: 470px;
    width: 100vw;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.firstSection{
    background-image: url('../assets/img/Aboutus/newSection/first.png');
}
.secondSection{
    background-image: url('../assets/img/Aboutus/newSection/second.jpeg');
}
.thirdSection{
    background-image: url('../assets/img/Aboutus/newSection/third.png');
}
.overlayforSection{
    position: absolute;
    top: 0px;
    right: 0px;
    width: inherit;
    height: inherit;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.25) 100%);

}
.newSections .contentBox{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}
.newSections .contentBox h1{
    font-size: 75px;
    font-family: "TerminaTest-Light";
    color: #ffffed;   
}
.newSections .contentBox h1 strong{
    font-family: "TerminaTest-semibold";
}
.newSections .contentBox p{
    color: #ffffed;
    font-size: 20px;
}
.newSections .contentBox small{
    opacity: 0.7;
    font-size: 18px;
    font-style: italic;
    color: #fff;
}



@media screen and (max-width: 1199px) {
    .newSections{
        height: 100vh;
    }
}


@media screen and (max-width: 1024px) {
    .section {
        height:auto;
    }
    .newSections{
        height: 75vh;
    }
    .newSections .contentBox h1{
        font-size: 60px;
    }    
    .subContainer {
        max-width: 1200px;
    }
    .subContainer {
        padding: 60px 20px;
    }

}

@media screen and  (max-width: 767px) {
    .subContainer {
        padding: 60px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .subContainer .hero p{
        text-align: center;
    }
    .subContainer .hero .black-button{
        margin: auto;
    }
    .newSections .contentBox{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .newSections .contentBox p{
        margin-top: 20px;
    }


}

@media screen and  (max-width: 768px) {
    .newSections{
        height: 65vh;
    }
    .newSections .contentBox h1{
        font-size: 45px;
    }    
}