/* header */

.headline-pict {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 85vh;
}

.headline-pict::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    filter: brightness(50%);
}

.headline-inside {
    position: relative;
}

.headline {
    overflow: hidden;
}

.headline-texts {
    margin-top: 35vh;
}

.headline-text {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    text-align: left;
    padding-left: 20px;
    width: 60%;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, #FFFFFF, #FFFFFF, #FFFFFF);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(121, 11, 11, 0);
}

#headline-text1 {
    background-size: 100%;
    animation: shadow-transition1 2s linear;
    font-weight: bold;
    font-size: 38px;
}

#headline-text2 {
    animation: light-transition2 4s linear;
    font-size: 24px;
}

@keyframes shadow-transition1 {
    0% {
        background-size: 0%;
    }

    100% {
        background-size: 100%;
    }
}


@keyframes light-transition2 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media only screen 
and (max-width : 821px) {
    .headline-text {
        width: 70%;
    }

    #headline-text1 {
        font-size: 30px;
    }

    #headline-text2 {
        font-size: 18px;
    }
}

@media only screen 
and (max-width : 380px) {
    .headline-text {
        width: 90%;
    }
    
    #headline-text1 {
        font-size: 22px;
    }

    #headline-text2 {
        font-size: 13px;
    }
}

/* about */

.about {
    margin-top: 5vh;
}

.topic-hat {
    width: 75px;
    height: 5px !important;
    border-width: 0;
    border-radius: 10px;
    color: #FF595B;
    background-color: #FF595B;
    opacity: 1;
}

.topic h2 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
}

.topic p {
    font-family: "Poppins", sans-serif;
}

.icons {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.icons .icon {
    font-size: 30px;
    color: #BFBFBF;
    margin-bottom: 10px;
}

.icons .desc {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    padding-left: 10%;
    padding-right: 10%;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

/* details */

.details {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.details .background-image {
    width: 100%;
    height: 337px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.details .description {
    background-color: #FFFFFF;
    margin: -100px 60px 0 60px;
    padding: 30px;
}

.details .description p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    line-height: 30px;
    text-align: justify;
    text-justify: inter-word;
}

.details .brand {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.details .brand #details-logo {
    width: 60px;
    padding: 10px;
    float: left;
}
  
.details .brand #details-title {
    margin-left: 12px;
    margin-bottom: 10px;
    padding: 10px;
    display: block;
    text-decoration: none;
}
  
.details .brand #details-title h3 {
    margin-top: 10px;
    text-decoration: none;
    color: #000000;
    line-height: 16px;
    font-size: 27px;
    font-family: "Poppins", sans-serif;
}
  
.details .brand #details-title h3:hover {
    text-decoration: none;
    font-size: 30px;
}

@media only screen 
and (max-width : 550px) {
    .details .description {
        margin: -100px 20px 0 20px;
        padding: 15px;
    }
}

@media only screen 
and (max-width : 380px) {
    .details .description {
        margin: -0 0 0 0;
        padding: 10px;
    }
}

/* contact */

.contact {
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.contact .form-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact .submit-btn {
    background-color: #E9262A;
    font-family: "Poppins", sans-serif;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
    margin-bottom: 20px;
}

.contact .submit-btn:hover {
    font-weight: bold;
    background-color: #FF595B;
    -webkit-transition: font-weight 0.5s linear, background-color 0.5s linear;
    -ms-transition: font-weight 0.5s linear, background-color 0.5s linear;
    transition: font-weight 0.5s linear, background-color 0.5s linear;
}