@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800;900&display=swap');

html,
body {
    font-family: 'Public Sans', sans-serif;
}

p {
    font-size: 17px;
}


.portfolioIntro>h1 {
    font-weight: 800;
}

.portfolioIntro * {
    width: 100%;
    font-weight: 500;
}

.portfolioIntro span {
    color: #004ccd;
    font-weight: 800;
}

.nav-link {
    color: #333;
}

.nav-link:hover,
.nav-link:focus {
    color: #004ccd;
    font-weight: 700;
}

.nav-link.active {
    font-weight: 700;
    color: #004ccd;

}

.nav-item:first-of-type>.nav-link {
    padding-left: 0;
}

.nav.ms-auto>.nav-item:first-of-type>.nav-link {
    padding: 0.5rem 1rem;
}

.workContainer {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    position: relative;
    display: block;
    transition: all 200ms ease-in-out;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 15px;
    cursor: pointer;
    border: none;
}

.card:focus,
.card:hover {
    transform: scale(1.02);
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.card-text {
    font-weight: 600;
    font-size: 18px;
}

.card-body {
    border: 1px solid rgba(0, 0, 0, .125);
    border-top: none;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.projectName {
    font-size: 3rem;
}

h2.projectName {
    color: #004ccd;
    font-weight: 800;
}

.projectInfo {
    font-size: 1.2rem;
    font-weight: 700;
}

.projectInfo>span {
    font-size: 1rem;
    font-weight: 400;
}

.projectMainImage {
    margin-bottom: 25px;
}

.myProcessImage.projectMainImage {
    border: 1px solid #d4d4d4;
    border-radius: 2px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 6%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: auto;
    height: auto;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-image: none;
}

.carousel-control-next-icon:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    color: #000;
    font-size: 45px;
}

.carousel-control-prev-icon:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f053";
    color: #000;
    font-size: 45px;
}

.aboutHeader {
    border-bottom: #000 solid 2px;
    display: inline-block;
    padding-bottom: 4px;
}

.profilePic {
    width: 40%;
}


@media (max-width: 768px) {
    p {
        font-size: 16px;
    }

    .projectName {
        font-size: 2rem;
    }

    .projectInfo {
        font-size: 1rem;
    }

    .projectInfo>span {
        font-size: 1rem;
    }

    .profilePic {
        width: 50%;
    }
}