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.6), rgba(0, 0, 0, 0.6)), url(../CSS/Backgrounds/Services_Header.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.HeaderTextContainer{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    left: 10%;
    top: 35%;
}

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;
}

.Header h2{
    color: #ffffff;
}

.Header h4{
    color: #ffffff;
    text-transform: none;
}

.HeaderBTNTextContainer{
    display: flex;
    justify-content: center;
    margin: 20px 0px 60px 0px;
}

.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);
}

.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 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1609827086 svg {
    position: relative;
    display: block;
    width: calc(120% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1609827086 .shape-fill {
    fill: #FFFFFF;
}

.Services{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    margin: 60px 0px 50px 0px;
}

.ServicesTile{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 20px 20px 20px;
    padding: 30px;
    border: 3px solid #E6E6E6;
    border-radius: 20px;
    width: 350px;
    height: 550px;
}

.ServicesTile img{
    width: 120px;
}

.ServicesTile h4{
    text-transform: none;
    color: #000000;
    font-weight: 800;
    font-size: 22px;
    margin: 20px 0px 8px 0px;
}

.Underline{
    background-color: #33F68A;
    width: 100px;
    height: 3px;
    margin-bottom: 20px;
}

.ServicesTile ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.ServicesTile ul li{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.ServicesInclude{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.IncludeTileContainer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 60px;
}

.IncludeTile{
    display: flex;
    align-items: center;
    margin: 0px 20px 20px 20px;
}

.IncludeTile i{
    font-size: 30px;
    color: #33F68A;
    margin-right: 20px;
}

.IncludeTile h4{
    color: #000000;
    font-size: 22px;
    font-weight: 500;
}

@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%;
    }
}