#contactPage {
    margin-top: 10vh;
    padding: 5vh 8vw;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/contactBackground.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

#contactPage .headerContainer h1 {
    color: blue;
    font-weight: bolder;
    text-align: center;
}

.headerContainer span {
    color: orange;
    font-size: 2.5vw;
}

#contactPage P {
    text-align: center;
    margin-bottom: 3vw;
}

#contactPage .contactFlex {
    display: flex;
    justify-content: space-between;
}

form {
    background-color: #E5E7EB;
    width: 37vw;
    height: fit-content;
    padding: 2vw;
    border-radius: 3vw;
    font-size: 1.2vw;
}

form .form-group {
    background-color: white;
    border-bottom: 1px solid black;
    border-radius: 2vw;
    margin-bottom: 1vw;
    color: black;
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding: 1vw 2vw;
}

form .form-group label {
    margin-bottom: 0.5vw;
    font-weight: bolder;
}

form .form-group input::placeholder {
    color: #D1D5DB;
    font-size: 1vw;
}

form .form-group input, textarea::placeholder {
    color: #D1D5DB;
    font-size: 1vw;
}

form .form-group input, textarea:focus {
    outline: none;
}

form .form-group input {
    border: none;
    color: black;
    font-size: 1.3vw;
}

form .form-group input, textarea {
    border: none;
    color: black;
    font-size: 1.3vw;
}

form button {
    display: flex;
    margin: auto;
    border: none;
    background: linear-gradient(to bottom, #ff6600, #ff9900);
    color: white;
    padding: 0.5vw 2vw;
    width: fit-content;
    height: fit-content;
    align-items: center;
    border-radius: 1.5vw;
}

#contactPage .contactFlex .contactInfo {
    width: 40vw;
}

#companyMap {
    width: 100%;
    height: 40vh;
    border-radius: 3vw;
    margin-bottom: 2vw;
}

#contactPage .contactFlex .contactInfo .contactSpecifics {
    font-size: 1.3vw;
}

#contactPage .contactFlex .contactInfo .contactSpecifics p {
    font-size: 1.5vw;
    line-height: 0.6;
    color: orange;
    text-align: left;
}

#contactPage .contactFlex .contactInfo .contactSpecifics ul {
    padding-left: 0;
}

#contactPage .contactFlex .contactInfo .contactSpecifics ul li {
    display: flex;
    font-size: 1vw;
    align-items: center;
    margin-top: 1vw;
}

#contactPage .contactFlex .contactInfo .contactSpecifics ul li i{
    color: orange;
}

#contactPage .contactFlex .contactInfo .contactSpecifics ul li pre{
    margin-bottom: 0;
}


@media (max-width: 767px) {
    #contactPage .headerContainer h1 {
        font-size: 10vw;
    }

    .headerContainer span {
        font-size: 7vw;
    }

    #contactPage P {
        font-size: 2.5vw;
    }

    #contactPage .contactFlex {
        flex-direction: column;
    }

    form {
        width: 100%;
        padding: 4vw;
        font-size: 4vw;
        border-radius: 6vw;
        margin-bottom: 5vh;
    }

    form .form-group {
        border-radius: 4vw;
        margin-bottom: 4vw;
        padding: 2vw 3vw;
    }

    form .form-group label {
        margin-bottom: 1vw;
    }

    form .form-group input, textarea {
        font-size: 4vw;
    }
    
    form .form-group textarea {
        height: 15vh;
    }

    form .form-group input::placeholder {
        font-size: 3vw;
    }

    form .form-group textarea::placeholder {
        font-size: 3vw;
    }

    form button {
        padding: 1vw 3vw;
        border-radius: 2vw;
    }

    #contactPage .contactFlex .contactInfo {
        width: 100%;
    }

    .contactInfo div {
        display: flex;
        flex-direction: column-reverse;
    }

    #companyMap {
        height: 25vh;
        border-radius: 5vw;
        margin-bottom: 4vh;
    }

    #contactPage .contactFlex .contactInfo .contactSpecifics {
        flex-direction: column;
    }
    
    #contactPage .contactFlex .contactInfo .contactSpecifics p {
        font-size: 5.5vw;
        line-height: 0.6;
    }
    
    #contactPage .contactFlex .contactInfo .contactSpecifics ul li {
        font-size: 3vw;
        margin-top: 3vw;
    }
}