body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #130a0a;
}

.navbar {
    box-shadow: 0 3px 15px rgb(15, 13, 131);
    min-height: 50px;
    background-color: #FFFFFF;
    border-bottom: solid 1px black;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: rgb(25, 72, 201);
}

a.navbar-brand {
    display: inline-block;
    color: #2f56c1;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

#welcome {
    position: relative;
    margin-top: 50px;
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#welcome::before {
    background: url("./welcome.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    content: "";
    opacity: 0.9;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.header-text {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
    font-size: 54px;
    position: relative;
}

.title {
    color: white;
    text-transform: uppercase;
    position: relative;
}

#download-resume {
    display: inline-block;
    color: white;
    background-color: slateblue;
    width: 200px;
    height: 60px;
    text-transform: capitalize;
    line-height:55px;
    border: 1px solid blue;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
}

#sectionHeaderText {
    text-transform: uppercase;
    padding: 30px 100px;
    margin-bottom: 0px;
}

#about-me-header {
    border-bottom: 1px solid #96a8bb;
}

.section-header h2 {
    /* font-size: 24px; */
    font-weight: 600;
}

.about-content h3 {
    color: #6a708e
}

#about-content-text {
    font-size: 20px;
    color: #999fb3;
    line-height: 1.8;
    border-bottom: 1px solid black;
    margin-bottom: 0px;
}

/* .about-contact-text {
    margin: 35px 0;
} */

.about-contact-text h3 {
    color: #636a82;
    text-transform: capitalize;
    line-height: 1.8;
}

.about-content-img {
    position: relative;
    text-align: center;
    margin: auto;
    display: inline-block;
}

.about-content-img img {
    display: block;
    /* vertical-align: middle; */
    /* max-width: 554px; */
    width: 80%;
    height: 80%;
    box-shadow: 0 5px 20px rgba(14,25,80,.30);
}

.about-list-icon {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    background: #2c3285;
    width: 80%;
}

#about, #skills, #projects, #articles, #services {
    border-bottom: 1px solid #96a8bb;
}

.bootstrap-link-icons a {
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
    height: 100%;
    width: 100%;
}

.bootstrap-link-icons svg {
    fill: currentColor;
    width: 100%;
    max-width: 24px;
    height: auto;

}

.single-skill {
    font-weight: 400;
    margin-bottom: 16px;
}

.progress-bar {
    background: #3680ff;
    border-radius: 5px;
    transition: width 1.5s ease-in-out;    
}

label, .helper-text {
    font-weight: 600;
}

button[type="submit"] {
    width: 100%
}

.form-control {
    box-shadow: 0 3px 5px rgb(9 59 255 / 25%);
    border: solid 0.5px #101072a1;
}

.card {
    width: 100%;
    height: 100%;
    border: 1px solid black;
    padding: 5px 5px;
    max-height: 280px;
}

footer {
    border-top: solid 1px black;
}

.card-title a {
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.4;
    display: flex;
}

.projectsCardImg {
    height: 60%;
}

.projectsCardTitle {
    height: 40%;
    display: flex;
}

.projectsCardTitle a {
    margin: auto auto;
}

.articles-card-image {
    height: 40%;
}

.articles-card-title {
    height: 60%;

}

.articles-card-title a {
    margin: 5px 10px;
}

.col-lg-3.col-md-4.col-sm-6 {
    padding-top: 10px;
}

.card-title {
    margin-bottom: 0px;
    background: lavender;
}

.chat-icon {
    position: fixed;
    bottom: 40px;
    right: 40px;
    cursor: pointer;
    border-radius: 70px;
  }
  
.chat-icon img {
    width: 100px;
    height: 100px;
}

#modal-dialog {
    position: fixed;
    top: auto;
    right: 50px;
    left: auto;
    bottom: 50px;
    width: 100%;
}

.outgoingMessage {
    border: solid 1px black;
    border-radius: 5px;
    display: flex;
    width: 75%;
    margin-bottom: 5px;
    padding: 5px;
    margin-left: 25%;
}

.incomingMessage {
    border: solid 1px black;
    border-radius: 5px;
    display: flex;
    width: 75%;
    margin-bottom: 5px;
    padding: 5px;
}

#chatContent {
    height: 50px;
    width: 100%;
}

#chatInputCol {
    padding: 3px;
    margin: 0px;
}

.sentMessageTime {
    width: 15%;
    margin-left: 85%;
}

.modal-footer .col-xs-12 {
    display: flex;
    justify-content: center;
}

@media (max-width: 576px) {
    #modal-dialog {
      width: 75%;
    }
    .chat-icon {
        width: 20%;
        aspect-ratio: 1;
      }
      .chat-icon img {
        width: 100%;
        height: 100%;
      }
  }

  @media (max-width: 576px) {
    .card {
        height: auto;
    }
  }

