body{
    position: relative;
    overflow-x: hidden;
}

.Header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(../CSS/Backgrounds/Contact_Us_Header.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.HeaderTextContainer{
    position: absolute;
    left: 13%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 20px;
}

.HeaderTextContainer h2{
    color: #ffffff;
}

.HeaderTextContainer h4{
    color: #ffffff;
    text-transform: none;
    margin-bottom: 10px;
}

.HeaderBTNTextContainer{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 60px;
}

.ContactBTNFull{
    background-color: #33F68A;
    padding: 10px 20px 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}

.ContactBTNOutline{
    background-color: none;
    padding: 10px 20px 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
    border: 3px solid #33F68A;
    transition: 0.3s ease-in-out;
}

.ContactBTNFull:hover{
    transform: translateY(-20px);
}

.ContactBTNOutline:hover{
    transform: translateY(-20px);
}

h4{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #33F68A;
}

h2{
    font-size: 50px;
    font-weight: 700;
    color: #000000;
}

p{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    color: #000000;
}

span{
    font-size: 55px;
    font-weight: 800;
    color: #33F68A;
}

.Introduction{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 40px;
    background-color: #E6E6E6;
    position: relative;
}

.Introduction img{
    width: 100px;
}


.Introduction p{
    width: 70%;
    margin: 10px 0px 40px 0px;
}

.Introduction a{
    margin-bottom: 75px;
}

.custom-shape-divider-bottom-1609827086 svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1609827086 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1609827086 .shape-fill {
    fill: #FFFFFF;
}

.ContactContainer{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin: 0px 0px 80px 0px;
}

.ContactFormContainer{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ContactFormContainer form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.ContactFormContainer input{
    width: 100%;
    height: 5vh;
    background-color: #e6e6e6;
    border-radius: 50px;
    margin-bottom: 30px;
    color: #858796;
    font-weight: 600;
    font-size: 15px;
    line-height: 27px;
    outline: none;
    border: none;
    padding: 12px 12px 12px 30px;
}

.ContactFormContainer input:nth-child(5){
    height: 30vh;
    margin-bottom: 0px;
}

.ContactFormContainer button{
    background-color: #33F68A;
    padding: 18px 30px 18px 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.4s ease;
    margin-top: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

.ContactFormContainer button:hover{
    transform: translateY(-20px);
}

.ContactTextContainer{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.ContactTextContainer h2{
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.ContactTextContainer p{
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
}

.ContactCTAContainer{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px;
    width: 65%;
}

.ContactCTAContainer span{
    display: flex;
    align-items: center;
}

.ContactCTAContainer i{
    font-size: 32px;
    margin-right: 10px;
}

.ContactCTAContainer a{
    text-decoration: none;
    color: #33F68A;
    font-size: 15px;
    font-weight: 700;
}

@media screen and (max-width: 1623px){
    .ContactCTAContainer{
        width: 80%;
    }
}

@media screen and (max-width: 1382px){
    .ContactCTAContainer{
        width: 90%;
    }
}

@media screen and (max-width: 1238px){
    .ContactCTAContainer{
        width: 100%;
        flex-wrap: wrap;
    }

    .ContactCTAContainer span{
        margin: 0px 20px 20px 0px;
    }
}

@media screen and (max-width: 1429px){
    .ContactContainer{
        flex-direction: column-reverse;
        margin-top: 10px;
    }

    .ContactFormContainer{
        width: 100%;
    }

    .ContactTextContainer{
        width: 80%;
        align-items: center;
    }

    .ContactTextContainer p{
        text-align: center;
    }

    .ContactCTAContainer{
        width: 500px;
        justify-content: space-around;
    }

    .ContactCTAContainer span{
        margin: 0px 0px 20px 0px;
    }
}

@media screen and (max-width: 1036px){
    .HeaderTextContainer{
        position: unset;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 927px){
    .Introduction p{
        width: 100%;
    }
}

@media screen and (max-width: 700px){
    .ContactFormContainer{
        width: 100%;
    }

    .ContactTextContainer{
        width: 100%;
    }
}

@media screen and (max-width: 516px){
    .ContactContainer{
        padding: 0px;
    }

    .ContactTextContainer{
        width: 100%;
    }

    .ContactFormContainer form{
        width: 100%;
        padding: 0px 40px 40px 40px;
    }

    .ContactCTAContainer{
        width: 100%;
    }
}

