::selection {
    text-shadow: none;
    background: #FDF3E1;
}
::-moz-selection {
    text-shadow: none;
    background: #FDF3E1;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

section {
    padding: 20px 0px;
}

h1 {
    padding-bottom: 1.5rem;
    font-weight: 700;
}

h5 {
    font-weight: 500;
}

p {
    font-size: 16px;
}

a {
    color: inherit;
    transition: all 0.1s ease-in-out;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

#introduction {
    position: relative;
    height: 100vh;
    min-height: 750px;
    padding-top: 20vh;
}

#introduction img {
    width: 100%;
    border-radius: 50%;
}

.cta-scroll {
    width: 100%;
    position: absolute;
    bottom: 1vh;
}

.cta-scroll .scroll-down-icon {
    transition: all 0.15s ease-in-out;
}

.cta-scroll:hover .scroll-down-icon {
    color: #F39C12;
    transform: translateY(3px);
    transition: all 0.15s ease-in-out;
}

/* CARDS */
.card-deck .card {
    min-width: 280px;
    max-width: 280px;
    border: none;
    
    border-radius: 4px;
    transition: all 0.15s ease-out;
    margin: 0 1rem 2rem 1rem;
}

.card.card-border-black {
    border-top: 6px solid #212529;
}

.card.card-border-red {
    border-top: 6px solid #CC1A12;
}

.card.card-border-lighgreen {
    border-top: 6px solid #54BE75;
}

.card.card-border-green {
    border-top: 6px solid #7CAB4F;
}

.card.card-border-blue {
    border-top: 6px solid #32557F;
}

.card.card-border-lightblue {
    border-top: 6px solid #99D9EB;
}

.card.card-border-purple {
    border-top: 6px solid #800080;
}

.card.card-border-yellow {
    border-top: 6px solid #FFC200;
}

.card-deck img {
    width: 100%;
    border: 1px solid #F0F0F0;
    border-top: none;
    border-bottom: none;
}

.card-body {
    border: 1px solid #F0F0F0;
    border-top: none;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 1.5rem;
}

.card-title {
    margin-bottom: .5rem;
}

.card-text {
    line-height: 1.4;
}

.card:hover  {
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.20);
    transform: translateY(-2px);
    transition: all 0.15s ease-in;
}

/* FOOTER */
footer {
    font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
    #introduction {
        height: unset;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    #introduction img {
        width: 200px;
    }
    
    .cta-scroll {
        position: static;
        margin-top: 70px;
    }
    .card-deck .card {
        min-width: 280px;
        max-width: 280px;
        margin: 0 0.5rem 2rem 0.5rem;
    }
}





/* SOCIAL ICONS */
.fa {
    padding: 10px;
    font-size: 14px;
    width: 36px;
    height: 36px;
    text-align: center;
    text-decoration: none;
    margin-right: 3px;
    border-radius: 50%;
}

.fa-facebook {
    border: solid 1px #3B5998;
    color: #3B5998;
}

.fa-facebook:hover {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    border: solid 1px #55ACEE;
    color: #55ACEE;
}

.fa-twitter:hover {
    background: #55ACEE;
    color: white;
}

.fa-linkedin {
    border: solid 1px #007bb5;
    color: #007bb5;
}

.fa-linkedin:hover {
    background: #007bb5;
    color: white;
}

.fa-instagram {
    border: solid 1px #e1306c;
    color: #e1306c;
}

.fa-instagram:hover {
    background: #e1306c;
    color: white;
}

.fa-medium {
    border: solid 1px #000000;
    color: #000000;
}

.fa-medium:hover {
    background: #000000;
    color: white;
}

.fa.fa-chevron-down {
    margin-right: 0;
}









/* TEXTUAL LINK */
.textual-link {
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: inherit;
    padding: 0 1px;
    transition: color ease 0.3s;
}
.textual-link:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 6%;
    min-height: 2px;
    left: 0;
    bottom: 0;
    background-color: #222;
    transition: all ease 0.3s;
}

.textual-link:hover:after {
    height: 100%;
}

.textual-link.orange:after {
    background: #F39C12;
}

.textual-link.green:after {
    background: #3C6A2C;
}
.textual-link.green:hover {
    color: #FFFFFF;
}