@font-face {
    font-family: gothamFont;
    src: url(assets/GothamLight.ttf);

}

@font-face {
    font-family: gothamFontBold2;
    src: url(assets/GothamMedium.ttf);

}

@keyframes slideright {
    0% {opacity: 0.0; right: 50px; top: 0px;}
    100% {opacity: 1.0; right: 0px; top: 0px;}
}

@keyframes slideleft {
    0% {opacity: 0.0; left: 50px; top: 0px;}
    100% {opacity: 1.0; left: 0px; top: 0px;}
}

@keyframes slideup {
    0% {opacity: 0.0; left: 0px; top: 50px;}
    100% {opacity: 1.0; left: 0px; top: 0px;}
}

header {
    background-image: url(assets/hero\(darker\)\ copy.png); 
    background-size: cover; 
    height: 100vh;
}

header .container {
    padding-top: 1rem;
}


header .navbar {
    color: white;
    width: 80%;
    text-align: center;
    position: absolute;
    bottom: 2.5%;
    left: 5%;
}

.triangle {
    width: 100%;
    height: 10%;
    border-top: 50px solid black;
    border-left: 50px solid transparent;
    animation-name: slideleft;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
    position: relative;
}

.nav-link {
    opacity: 0.5;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-bottom: .25rem;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    display: block;
    height: 0.2rem;
    width: 0%;
    background-color: red;
    bottom: 0.5em;
    transition: all ease-in-out 0.5s;
}

.nav-link:hover::after {
    width: 2em;
}

.rowhero {
    padding-top: 15%;
    animation-name: slideup;
    animation-duration: 1s;
    position: relative;
}

header .container .row .col-7 {
    position: relative; 
    animation-name: slideup; 
    animation-duration: 1s; 
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

body {
    background-image: linear-gradient(45deg, #5A05A2, #5A66E6);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main .container .row .col-5 img {
    padding-top: 5%;
    margin-right: 10%;
}


a {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

p, h3, h4 {
    color: white;
    font-family: gothamFont;
}

h1 {
    color: white;
    font-family: gothamFontBold2;
}

span {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.seeStuff {
    opacity: 1.0;

}

.Methodrow {
    display: block;

}

.prof_image {
    position: relative;
}

.Job_img {
    position: relative;
    border-radius: 50%;
    border: 5px solid yellow;

}

.image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 50%;
    background-color: yellow;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    transition: 0.5s;
}

.image_overlay:hover {
    opacity: 1;

}

.overlay_text p {
    font-family: gothamFontBold2;
    color: black;
    text-align: center;

}


ul {
    font-family: gothamFont;
    list-style: none;
    padding-left: 0;
    text-align: left;

}


.rectangle {
    height: 1rem;
    width: 100%;
    background-color: black;

}


@media screen and (max-width: 1399px) {

    .col-2 {
        width: 12rem;     
        height: 12rem;

    }

    .Job_img {
        width: 100%;
        height: 100%;

    }

    .image_overlay {
        width: 100%;
        height: 100%;

    }


}

@media screen and (max-width: 1199px) {

    .col-2 {
        width: 12rem;     
        height: 12rem;

    }

    .row > .col-3 {
        width: 20%;

    }

    .Job_img {
        width: 100%;
        height: 100%;

    }

    .image_overlay {
        width: 100%;
        height: 100%;

    }


}

@media screen and (max-width: 1000px) {

    .row > .col-5 {
        width: 50%;
    }

    .col-sm-3 {
        width: 0%;

    }

    .row > .col-3 {
        width: 10%;
    }

    li {
        font-size: 12px;

    }

}

@media screen and (max-width: 780px) {

    .row > .col-5 {
        width: 100%;
        padding-top: 1rem;
    }

    .col-2 {
        width: 10rem;     
        height: 10rem;

    }

    .row > .col-3 {
        width: 5%;

    }


}

@media screen and (max-width: 510px) {
    main .container {
        padding: 0%;
    }

    .col-md-5 {
        width: 100%;
        padding-left: 4rem;
    }

    .col-7 {
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 2rem;
    }

    .col-7 > p, h1 {
        text-align: center;
    }


}