/* @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

:root {
  /* --primary-color: rgba(13, 110, 139, 0.75); */
  --third-color: #3cb371;
  --primary-color: #fff;
  --secondary-color: rgba(229, 148, 0, 0.9);
  --overlay-color: rgba(24, 39, 51, 0.85);
  --menu-speed: 0.75s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Roboto', sans-serif; */
  font-family: 'Roboto Slab', serif;
  line-height: 1.4;
}

a {
  text-decoration: none;
}

p {
  padding: 0.75rem 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  overflow: hidden;
}

.l-heading {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.m-heading {
  padding-top: 0.75rem;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1rem;
}

.text-center {
  text-align: center;
}

.lead {
  font-size: 2rem;
  line-height: 1.2;
  padding: 1rem;
}

.lead-2 {
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 1rem;
}

.lead-3 {
  font-size: 1.1rem;
  line-height: 1.1;
  padding: 1rem;
}

.p-1 {
  padding: 1.5rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.py-1 {
  padding: 1.5rem 0;
}

.bg-dark {
  background: #333;
  color: #fff;
}

.bg-dark-alternate {
  background: #333;
  color: var(--third-color);
}

.bg-tertiary-alternate {
  background: var(--third-color);
  color: #fff;
}

.company-heading {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.btn {
  display: inline-block;
  color: #333;
  font-size: 1.1rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 5px 5px 5px 5px;
}

.btn-dark:hover {
  color: var(--third-color);
  transition-duration: 0.2s;
}

.btn-light {
  color: #333;
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: #333;
}

.list {
  margin: 0.5rem 0;
  list-style: none;
}

.list li {
  padding: 0.5rem;
  border: white solid 3px;
  background-color: var(--third-color);
}

.third-color {
  color: var(--third-color);
}

/* NAVBAR SECTION */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  background: #333;
  color: #fff;
  padding: 1rem;
}

#navbar .logo a {
  color: #fff;
}

#navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}

#navbar ul li a {
  text-decoration: none;
  color: #fff;
  padding: 0.75rem;
  margin: 0.75rem;
  font-size: 1.1rem;
}

#navbar ul li a:hover {
  color: #333;
  background: #fff;
  border-radius: 5px;
  transition-duration: 0.6s;
}

/* SHOWCASE SECTION */
#showcase {
  /*background: #333 url(../img/Cool_Backdrop_Kashid_1.jpg) no-repeat center center/cover;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90vh;
  color: #000;
  background-color: whitesmoke;
}

#showcase .illustration {
  flex: 1;
  padding: 2rem;
}

#showcase .showcase-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 6rem;
  /* Overlay */
  /* position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); */
}

#showcase .showcase-content .showcase-opening-small {
  font-size: 1.2rem;
}

/* ABOUT SECTION */
#about {
  margin-top: 2rem;
}

#about .about-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80vh;
  padding: 0 8rem;
}

#about .about-img {
  flex: 1;
  height: 80%;
}

#about .who {
  height: 95%;
  border-radius: 50%;
}

#about .about-introduction {
  flex: 1;
}

/* WORK EXPERIENCE SECTION */
#work-experience>h1 {
  margin-bottom: 3rem;
}

#work-experience .projects {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

#work-experience .projects .project {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

#work-experience .projects .project .organization-logo {
  flex: 1;
  text-align: center;
}

#work-experience .projects .project .organization-logo img {
  display: block;
  margin: auto;
  width: 75%;
  border-radius: 50%;
  margin-bottom: 1rem;
}

#work-experience .projects .project .project-description {
  flex: 4;
  padding: 0 2rem;
  text-align: left;
}

#work-experience .projects .project .project-description .project-summary {
  padding: 0.3rem 0;
}

#work-experience .projects .project .project-description .project-duration {
  padding: 0.3rem 0;
}

/* SKILLS SECTION */

#skills>h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#skills .items {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

#skills .items .item {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

#skills .items .item i {
  padding: 1rem;
  margin-bottom: 1rem;
}

/* CONTACT SECTION */
#contact-form>h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#contact-form .form-group {
  margin-bottom: 1.5rem;
}

#contact-form .form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  font-weight: bold;
}

#contact-form .form-group input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px #ddd solid;
}

#contact-form textarea {
  height: 10rem;
}

#contact-info .items {
  display: flex;
  padding: 1rem;
}

#contact-info .items .item {
  flex: 1;
  padding: 0 3.5rem;
  text-align: center;
  justify-content: space-between;
}

#contact-info .items .item i {
  padding: 1rem;
  margin-bottom: 1rem;
}

#contact-info .items .item h3 {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

#main-footer {
  background-color: #222;
  color: #fff;
}