/* HOME TEXT*/
html {
    scroll-behavior: smooth;
}

.homeContainer {
    font-family: 'Gilroy', sans-serif;
    display: flex;
    height: 100vh;
}

.textContainer {
    width: 50%;
    padding-left: 5em;
}

/*HIREC TEXT*/
.hirec_name {
    margin-top: 2em;
    padding-bottom: 4em;
}

.hirec_name h2::first-letter {
    color: #FD6262;
}

.hirec_name h2 {
    color: #fff;
    font-size: 36px;
    line-height: 1.4em;
    font-family: 'GilroyExtraBold', sans-serif;
    letter-spacing: 3px;
}

/*TEXT UNDER HIREC*/
.underText {
    color: #fff;
    font-size: 20px;
    font-weight: 200;
    line-height: 2em;
    margin-bottom: 2em;
}

a.seeMore {
    color: #141416;
    background-color: #FD6262;
    padding: 15px 22px 15px 22px;
    border-radius: 10px;
}

a.seeMore:hover {
    border: 2px solid #FD6262;
    background-color: #141416;
    color: #FD6262;
    transition: .5s;
}

/* HOME SVG */
.imageContainer {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.imageContainer img {
    width: 350px;
}

/* SERVICES */
#services {
    font-family: 'Gilroy', sans-serif;
    min-height: 100vh;
    color: #fff;
}

#services h2.title {
    font-family: 'GilroyExtraBold', 'sans-serif';
    color: #FD6262;
    font-size: 32px;
    padding: 3em;
    text-align: center;
}

h2.title:before,
h2.title:after {
    background-color: #FD6262;
    content: "";
    display: inline-block;
    height: 3px;
    position: relative;
    vertical-align: middle;
    width: 40%;
}

h2.title:before {
    right: 0.5em;
    margin-left: -50%;
}

h2.title:after {
    left: 0.5em;
    margin-right: -50%;
}

#services .cardscontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#services .cardscontainer .card {
    text-align: center;
    width: 30%;
    background-color: #1B1C1E;
    border-radius: 20px;
    box-shadow: 5px 5px 5px #889CE7;
    margin-bottom: 3rem;
}

#services .cardscontainer .card:hover {
    box-shadow: 0px 0px 25px #889CE7;
    transition: .4s;
    -ms-transform: scale(1.05);
    /* IE 9 */
    -webkit-transform: scale(1.05);
    /* Safari 3-8 */
    transform: scale(1.05);
}

#services .cardscontainer .card h3 {
    font-family: 'GilroySemibold', sans-serif;
    color: #889CE7;
    padding-top: 20px;
    font-size: 22px;
}

#services .cardscontainer .card p {
    padding: 50px;
    line-height: 1.5em;
    font-weight: 100;
}

/*   RESPONSIVE */
@media screen and (max-width: 800px) {
    .homeContainer {
        text-align: center;
    }

    .homeContainer .imageContainer {
        display: none;
    }

    .homeContainer .textContainer {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .homeContainer .underText {
        margin: 0 20px 50px 20px;
    }

    #services {
        margin-bottom: 3rem;
    }

    .cardscontainer {
        flex-direction: column;
        align-items: center;
    }

    .cardscontainer .card {
        width: 80% !important;
    }
}