@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Hind', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  z-index: 1;
  line-height: 1.6;
  font-size: 10px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

header {
  background: -webkit-linear-gradient(rgba(29, 38, 113, 0.8), rgba(44, 43, 43, 0.158)), url("./img/landing2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: relative;
}

nav {
  width: 100vw;
  margin: auto;
}

nav.stickeynav {
  position: fixed;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
  background-color: #ffffff;
  z-index: 1;
}

nav.stickeynav .logo {
  border: 2px solid #000000;
}

nav.stickeynav a {
  color: #000000;
}

nav.stickeynav a:hover {
  color: #71a163;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

nav.stickeynav .line {
  background-color: #000000;
}

.nav-container {
  width: 80vw;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  border-bottom: 1px solid #a59f9f;
}

.logo {
  border: 1px solid white;
  text-transform: uppercase;
  padding: 2px 5px;
  font-size: 16px;
  font-weight: 700;
}

.logo a {
  color: white;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  padding: 5px;
  font-size: 14px;
  font-weight: 400;
}

.nav-list li {
  padding: 0px 35px;
}

.nav-list a {
  color: #f0eee8;
  text-decoration: none;
}

.nav-list a:hover {
  color: #665858;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger .line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.landing-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  color: white;
  font-family: 'Staatliches', cursive;
  width: 100%;
}

.landing-content h1 {
  font-size: 2rem;
}

.landing-content h1 span {
  font-size: 3rem;
  color: #d41a1a;
}

.landing-content h2 {
  font-size: 2rem;
}

.landing-content h3 {
  font-size: 2rem;
}

.landing-content .txt {
  font-size: 3.5rem;
  color: #af2525;
  border-right: 0.1rem solid #777;
}

@media screen and (max-width: 750px) {
  .nav-list {
    position: fixed;
    background-color: #ebd1d1;
    top: 7vh;
    left: -100%;
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
    border-radius: 0px 2px 2px 0px;
    z-index: 1;
  }
  .nav-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding: 25px;
    margin: 15px 0px;
  }
  .nav-list li a {
    font-size: 18px;
    color: black;
  }
  .nav-list.active {
    left: 0;
  }
  .burger {
    display: block;
  }
  .love .line:nth-child(2) {
    opacity: 0;
  }
  .love .line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .love .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  .landing-content {
    width: 100%;
  }
  .landing-content h1 {
    font-size: 2.5rem;
  }
  .landing-content h1 span {
    font-size: 3rem;
  }
  .landing-content h2 {
    font-size: 1.5rem;
  }
  .landing-content h3 {
    font-size: 2rem;
  }
  .landing-content .txt {
    font-size: 3rem;
  }
}

section, footer {
  background-color: #222222;
}

.about-containers {
  width: 80%;
  max-width: 1000px;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-img {
  width: 100%;
  -ms-grid-column-align: center;
      justify-self: center;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgba(29, 38, 113, 0.8);
}

.about-details {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  padding: 10px 20px;
  word-wrap: break-word;
}

.about-details h1 {
  width: 100%;
  padding: 5px;
  color: white;
  font-size: 2.3rem;
  font-weight: 200;
}

.about-details h1 span {
  font-weight: 700;
}

.about-details p {
  width: 100%;
  font-size: 1rem;
  color: #647575;
  padding: 5px;
}

.about-details .about-btn {
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.about-details .about-btn .hire-btn {
  padding: 6px 15px;
  font-size: 1rem;
  background-color: #BAC964;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.about-details .about-btn .hire-btn a {
  color: #fafafa;
}

.about-details .about-btn .hire-btn:hover {
  background-color: #8f9b4d;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

.about-details .about-btn .download-btn {
  padding: 8px 20px;
  font-size: 1rem;
  background-color: #6C757D;
  color: #fafafa;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.about-details .about-btn .download-btn a {
  color: #fafafa;
}

.about-details .about-btn .download-btn:hover {
  background-color: #484d52;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

@media screen and (max-width: 750px) {
  .about-containers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-img {
    text-align: center;
    -o-object-fit: cover;
       object-fit: cover;
    background-color: rgba(29, 38, 113, 0.8);
  }
  .about-details {
    width: 100%;
  }
}

.icons {
  width: 100%;
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.icons h1 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 200;
  color: white;
}

.icons h1 span {
  font-weight: 700;
}

.icons h3 {
  font-weight: 500;
  font-size: 1.5rem;
  color: white;
  border: 2px solid #ce8e8e;
  padding: 8px 25px;
  cursor: pointer;
  margin: 10px 0px;
}

.icons h3:hover {
  background-color: #faf0f0;
  color: #222222;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

.icons ul {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0px;
}

.icons ul li {
  margin: 0px 20px;
}

.icons ul li img {
  height: 35px;
  margin: 5px;
}

@media screen and (max-width: 750px) {
  .icons h1 {
    font-size: 2rem;
  }
  .icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .icons ul li {
    margin: 5px;
  }
  .icons ul li img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.education {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 200;
  margin-top: 50px;
  color: white;
}

.education span {
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .education {
    font-size: 2rem;
  }
}

.timeline {
  min-height: 100vh;
  padding: 15px 15px;
}

.timeline-items {
  max-width: 1000px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #2f363e;
  left: calc(50% - 1px);
}

.timeline-item {
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.timeline-dot {
  height: 16px;
  width: 16px;
  background-color: #eaa023;
  position: absolute;
  left: calc(50% - 8px);
  border-radius: 50%;
}

.timeline-date {
  font-size: 18px;
  color: #eaa023;
  margin: 6px 0 15px;
}

.timeline-content {
  background-color: #2f363e;
  padding: 30px;
  border-radius: 5px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #71a163;
  margin: 0 0 10px;
  text-transform: capitalize;
  font-weight: 500;
}

.timeline-content p {
  color: #c8c8c8;
  font-size: 1rem;
  font-weight: 300;
  line-height: 22px;
  overflow-y: hidden;
}

/* responsive */
@media (max-width: 750px) {
  .timeline-items::before {
    left: 7px;
  }
  .timeline-item:nth-child(odd) {
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 37px;
  }
  .timeline-dot {
    left: 0;
  }
}

.work {
  position: relative;
  height: auto;
  width: 100%;
}

.work h1 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 200;
  margin-top: 10px;
  color: white;
}

.work h1 span {
  font-weight: 700;
}

.work .work-container {
  width: 60%;
  margin: 20px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}

.work .work-container .works {
  -ms-grid-column-align: center;
      justify-self: center;
  border-radius: 8px;
  margin: 5px 10px;
  background-color: #333333;
  width: 100%;
  padding: 5px 10px;
}

.work .work-container .works h4 {
  margin: 10px 0px;
  color: #A0BD4E;
  font-size: 1.5rem;
  font-weight: 300;
}

.work .work-container .works p {
  font-size: 1.1rem;
  color: #7F7F7F;
}

.work .work-container .works a {
  color: #A0BD4E;
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 750px) {
  .work {
    height: auto;
  }
  .work h1 {
    font-size: 2rem;
  }
  .work .work-container {
    height: 100%;
    width: 95%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .work .work-container .works {
    height: 100%;
    width: 100%;
    margin: 0px 5px;
    background-color: #333333;
  }
  .work .work-container .works h2 {
    font-size: 1.5rem;
  }
  .work .work-container .works p {
    font-size: 1.1rem;
  }
}

footer h2 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 200;
  color: white;
}

footer h2 span {
  font-weight: 700;
}

footer .footer-container {
  padding: 10px;
  width: 100%;
  margin: 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

footer .footer-container h3 {
  color: #e2e2e2;
  font-size: 1.3rem;
  font-weight: 400;
}

footer .footer-container form {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 5px;
  padding: 10px;
}

footer .footer-container form input, footer .footer-container form .text-area {
  padding: 5px;
  margin: 10px 0px;
  border: none;
  border-radius: 5px;
  background-color: #333333;
  color: #c7c9ca;
  outline: none;
}

footer .footer-container form ::-webkit-input-placeholder {
  font-size: 10px;
}

footer .footer-container form .text-area {
  height: 150px;
}

footer .footer-container form .submit {
  width: 25%;
  background-color: #A0BD4E;
  border-radius: 15px;
  padding: 5px;
  color: white;
  cursor: pointer;
  border: none;
}

footer .footer-container form .submit:hover {
  background-color: #506123;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

footer .footer-container .contact {
  padding: 0px 5px;
  font-size: 1.2rem;
  padding: 5px 10px;
}

footer .footer-container .contact label {
  color: #3c365f;
  padding: 5px 0px;
}

footer .footer-container .contact p, footer .footer-container .contact a {
  color: #696866;
}

@media (max-width: 750px) {
  footer h2 {
    font-size: 1.7rem;
    margin-top: 8px;
  }
  footer .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  footer .footer-container form, footer .footer-container .contact {
    width: 100%;
  }
}

.contact-icons {
  width: 90%;
  border-top: 1px solid #c5c1c1;
  margin: auto;
}

.contact-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0px;
}

.contact-icons ul li {
  font-size: 1.5rem;
  margin: 5px 20px;
}

.contact-icons ul li a {
  color: white;
  cursor: pointer;
}

.contact-icons ul li a:hover {
  color: #883939;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}
/*# sourceMappingURL=style.css.map */