body {
    background: #fff;
    color: rgba(255, 255, 255, 0.4);
    background: #222;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
}
.btn {
    border-radius: 20px;
}
.btn:focus {
    box-shadow: none;
}
.hoverEffect:hover {
    transform: translateY(-4px);
    transition-duration: 0.5s;
    
}
.hoverEffect:not(:hover) {
    transition-duration: 0.5s;
}
.shadowEffect:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*************** Navbar ***************/
.navbar {
    background-color: white;
}
.navbar-nav a {
    text-transform: uppercase;
    font-weight: 400;
}
.navbar-nav li {
    margin: 0 15px;
}
.nav-link.active, .nav-link:hover {
    color: rgb(11, 174, 214) !important;
}
.navbar {
    padding-top: 5px;
    padding-bottom: 5px;
}
/*************** Carousel ***************/
.carousel-item {
    height: 100vh; /* show full screen */
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    background-size: cover;
}
.carousel-item img {
    height: 100vh;
    object-fit: cover; /* keep the aspect ratio*/
}
.carousel-caption {
    bottom: 220px;
}
.bold{
    font-weight: 600;
}
.carousel-caption h3, .carousel-caption p {
    text-shadow: 2px 2px 4px #4b4b4b;
}
/*************** Portfolio ***************/
#portfolioCards {
    margin-top: 4%;
}
.imgEffect {
    overflow: hidden;
}
.imgEffect img {
    transition: all 1.5s ease;
}
.imgEffect img:hover {
    transform: scale(1.6);
}
.card-body p {
    font-size: 13px;
}
.card {
    background-color: #333;
    border: none;
}
.card-title, .card-text {
    color: white;
}
.skills h5 {
    font-weight: 200;
    font-size: 20px;
}
/*************** Section ***************/
.site-section {
    padding: 5em 0;
}
.section-heading {
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    color: white;
}
.section-heading h2 {
    position: relative;
    font-weight: 200;
    padding-top: 20px;
    font-size: 30px;
}
.section-heading h2 strong {
    font-weight: 800;
}
.section-heading.text-center h2:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
/*************** Modal ***************/
.card-title {
    font-weight: 300;
    font-size: 20px;
}
.modal-content {
    color: black;
}
.modal-body {
    padding: 20px 30px;
}
/*************** Resume ***************/
.jumbotron {
    background-color: #333;;
}
.date {
    color: White;
    font-weight: 200;
    font-size: 14px;
}
.resume-title {
    font-weight: 200;
    font-size: 30px;
}
.resume-item h5 {
    color: rgb(11, 174, 214);
    font-weight: 400;
}
.resume-item .sub {
    font-weight: 500;
}
.resume-item ul{
    list-style-position: outside;
    padding: 0 10px 0 20px;
    color: white;
}
.quote {
    font-style: italic;
    font-size: 18px;
}
.employer {
    font-style: italic;
    font-size: 14px;
    color: white;
}
/* .star:hover .starRotate {
    display: inline-block;
    margin: 0 0.5rem;
    animation: rotateIn infinite;
    animation-duration: 3s;
} */
.star:hover .starRotate {
    animation: rotation 4s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
/*************** Form ***************/
#section-contact {
    color: white;
}
.contact_title {
    font-weight: 200;
}
.form-control {
    border: none !important;
    background: #333;
    color: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) !important;
}
.form-control:active, .form-control:focus {
    background: #404040;
    color: white;
}
.form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5); /* Chrome/Opera/Safari */
}
.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); /* Firefox 19+ */
}
.form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5); /* IE 10+ */
}
.form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5); /* Firefox 18- */
}
.site-form .form-control {
border: 1px solid #b3bdc6;
}
.site-contact-details, .site-contact-details li {
    padding: 0;
    margin: 0;
}
.site-contact-details li {
    list-style: none;
    margin-bottom: 20px;
}
.site-contact-details li > span {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}
.site-contact-details a {
    color: white;
}
/*************** Footer ***************/
footer {
    background-color: rgb(27, 27, 27);
}
.social-item {
    font-size: 2em;
    margin: 0 10px;
    color: rgb(11, 174, 214);
}
.social-item:hover {
    color: white;
    display: inline-block;
    animation: heartBeat;
    animation-duration: 2s;
}
