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

a {
  text-decoration: none;
  color: #000; }

p {
  margin: 0.75rem 0; }

body {
  font-family: "Libre Franklin", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  min-width: 275px; }

/* Utility Class */
.container {
  max-width: 1100px;
  overflow: auto;
  margin: 0px auto;
  padding: 0 1.5rem; }

.text-primary {
  color: #000; }

.lg-heading {
  font-size: 1.75rem; }

.md-heading {
  font-size: 2rem; }

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

.py-2 {
  padding: 2rem 0; }

.py-3 {
  padding: 3rem 0; }

.pl-1 {
  padding-left: 0.5rem; }

.pl-2 {
  padding-left: 1rem; }

.pl-3 {
  padding-left: 1.5rem; }

.bg-light {
  background: #e9e9e9; }

.card {
  background: #fff;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  border-radius: 10px; }

/* Navbar */
#navbar {
  padding: 1.5rem 1rem;
  background: #0468cd;
  position: sticky;
  top: 0;
  z-index: 2; }
  #navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #navbar .container .social-icons {
      color: #fff; }
  #navbar .phone-mobile {
    display: none; }
  #navbar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; }
    #navbar ul li a {
      color: #fff;
      margin: 0 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 5px;
      display: block;
      transition: background-color 1s ease-out; }
    #navbar ul li a.phone {
      border: 1px solid #fff;
      padding: 7px 10px;
      padding: 0.25rem 0.5rem; }
    #navbar ul a:hover {
      background-color: #e9e9e9;
      color: #000; }

/* Showcase */
#showcase {
  background: url("../images/funny.jpg") no-repeat center center/cover;
  height: 100vh;
  color: #fff;
  text-align: center;
  position: relative; }
  #showcase h1,
  #showcase h3 {
    padding-top: 1.25rem;
    z-index: 1;
    position: relative; }
  #showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); }

/* Work */
#work {
  background-color: #e9e9e9;
  width: 100%;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000; }
  #work .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem; }
  #work .project {
    display: flex;
    flex-direction: column;
    margin: 1rem; }
    #work .project-image {
      width: 100%;
      border-radius: 10px;
      border: 1px solid black;
      transition: transform 0.2s; }
      #work .project-image:hover {
        transform: scale(1.01); }
    #work .project-title {
      font-size: 20px; }
    #work .project-heading {
      display: flex;
      justify-content: center;
      align-items: center; }
  #work .show-btn {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    background: #000;
    border-radius: 5px;
    border: 1px solid #000;
    padding: 0.75rem 1rem;
    font-family: "Libre Franklin", sans-serif;
    margin-top: 1rem;
    transition: background-color 0.3s; }
    #work .show-btn:hover {
      background-color: #0468cd;
      color: white;
      border: 1px solid #0468cd; }
  #work .show-more {
    display: none; }
  #work .view {
    display: grid; }

/* About */
#about {
  background: #fff;
  padding: 1.5rem 0;
  height: calc(100vh - 82px);
  display: flex;
  align-items: center; }
  #about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; }
    #about .about-content .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
      #about .about-content .about-image img {
        border-radius: 50%;
        width: 375px;
        height: 375px;
        object-fit: cover; }
    #about .about-content .about-text {
      line-height: 1.7;
      flex: 1; }
  #about h3 {
    text-align: center;
    margin-bottom: 1.5rem; }

/* Contact */
/* Icons */
.icon {
  font-size: 20px;
  padding: 0.5rem;
  color: #000;
  transition: transform 0.2s; }
  .icon:hover {
    transform: scale(1.1); }

.icon-lg {
  font-size: 2.5rem;
  font-size: 1.5rem;
  transition: transform 0.2s;
  margin-left: 10px;
  margin-left: 16px;
  color: #fff;
  transition: transform 0.2s; }
  .icon-lg:hover {
    transform: scale(1.15); }

.icon-lg:visited {
  color: #fff; }

/* Section: Contact Form */
#contact {
  background-color: #fff; }
  #contact form {
    padding: 1.5rem 0rem; }
  #contact h2 {
    text-align: center; }
  #contact .contact-form .form-group {
    margin: 0.75rem; }
  #contact .contact-form label {
    display: block; }
  #contact .contact-form input,
  #contact .contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    outline: 0;
    border: 1px solid darkgray;
    border-radius: 5px;
    font-family: "Libre Franklin", sans-serif; }
  #contact .contact-form input:focus,
  #contact .contact-form textarea:focus {
    border-color: #333; }
  #contact .contact-form input::placeholder,
  #contact .contact-form textarea::placeholder {
    font-family: "Libre Franklin", sans-serif; }
  #contact .btn {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    background: black;
    border-radius: 5px;
    border: 1px solid black;
    width: 100%;
    transition: background-color 0.3s; }
  #contact .btn:hover {
    background-color: #0468cd;
    color: white;
    border: 1px solid #0468cd; }
  #contact .submit-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }

#now-heading {
  text-align: center;
  margin-top: 5rem;
  padding-bottom: 3rem; }

#now {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 3rem; }

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

@media (max-width: 900px) {
  #about {
    height: auto; }
    #about .about-content {
      grid-template-columns: 1fr; }
      #about .about-content .about-text {
        margin-top: 1.5rem; }
  #work .projects {
    grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  #navbar .container {
    flex-direction: column; }
  #navbar ul {
    margin-top: 10px; } }

/* Mobile Phones */
@media (max-width: 500px) {
  #navbar .phone-mobile {
    display: block;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #fff;
    padding: 7px 10px;
    margin-top: 10px; }
  #navbar ul {
    justify-content: center; }
    #navbar ul li a.phone {
      display: none; }
  #work div.projects.container {
    padding: 0 10px; }
  #contact div.contact-form.container {
    padding: 0 10px; } }

@media screen and (max-width: 425px) {
  #about .about-content .about-image img {
    width: 300px;
    width: 250px;
    height: 300px;
    height: 250px; }
  #about .about-content .about-text {
    text-align: center; } }

@media screen and (max-width: 300px) {
  #about .about-content .about-image img {
    width: 200px;
    height: 200px; } }
