/*=====Fonts=====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); /*Poppins font*/
/*=====Style Variables=====*/
/*--- OTHER SCREENS ---*/
/*--- MOBILE ---*/
/*======Body Style=====*/
/*==========Header Style==========*/
/*======Nav Style=====*/
/*======Footer Style=====*/
/*======Back to top btn Style=====*/
/*--- MOBILE SCREEN ---*/
/*--- TABLET SCREEN ---*/
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}
body h1 {
  text-align: center;
  font-size: 3.125rem;
  margin: 0;
}
body section {
  padding: 50px 100px;
}
body button {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: black;
  border: none;
}

header {
  margin: 10px;
}
header .header-content {
  margin-top: 90px;
  border-radius: 60px;
  padding: 80px;
  font-size: 1.5rem;
  text-align: center;
}
header nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  /*hide mobile nav*/
}
header nav a {
  color: black;
  text-decoration: none;
  transition: 0.5s;
}
header nav div {
  display: flex;
  align-items: center;
  gap: 10px;
}
header nav .nav-other-screens {
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
header nav .nav-other-screens .nav-logo-name {
  margin-right: auto;
}
header nav .nav-other-screens .nav-logo-name img {
  height: 70px;
  padding: 10px 0;
}
header nav .nav-other-screens .nav-logo-name p {
  line-height: 1;
}
header nav .nav-other-screens .nav-contact-us a {
  color: white;
}
header nav .nav-other-screens .nav-general {
  width: 50%;
  justify-content: space-evenly;
}
header nav .nav-other-screens .nav-contact-us {
  margin-left: auto;
}
header nav .nav-other-screens .nav-contact-us a {
  padding: 10px 15px 10px 30px;
  border-radius: 80px;
  background-color: #282828;
}
header nav .nav-other-screens .nav-contact-us a span {
  margin: 0 10px;
  /* prevent it from turning into an emoji on ios screens */
  font-family: monospace;
  font-weight: bold;
}
header nav .nav-mobile {
  display: none;
}
header nav .nav-other-screens a {
  color: black;
  transition: 0.5s;
}
header nav .nav-other-screens a:hover {
  color: #fcf004;
}
header nav .nav-other-screens .current-page {
  pointer-events: none;
  color: #fcf004;
  border-bottom: 2px solid #fcf004;
}
header .header-content {
  background-color: #fcf004;
  font-size: 1.5rem;
}
header .header-content h1 {
  margin: 0;
}
header .header-content p {
  max-width: 900px;
  margin: 0 auto;
}

/*=====Works Section=====*/
#works .filter-dropdown {
  position: relative;
}
#works .filter-dropdown .filter-btn {
  z-index: 100;
  width: 100%;
  text-align: left;
  padding: 5px 10px;
  background-color: #EF018D;
  color: white;
}
#works .filter-dropdown div {
  background-color: black;
  color: white;
}
#works .filter-dropdown .dropdown-content {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}
#works .filter-dropdown .dropdown-content div {
  padding: 5px 10px;
  border-top: 2px solid white;
  cursor: pointer;
}
#works .filter-dropdown .show {
  display: block;
  position: absolute;
}
#works .filter-dropdown #dropdown1 {
  background-color: #EF018D;
}
#works .filter-dropdown #dropdown2 {
  background-color: #00aeef;
}
#works .filter-dropdown #dropdown3 {
  background-color: #fcf004;
  color: black;
}
#works .work {
  text-align: center;
}
#works .work .splide {
  text-align: left;
  max-width: 100%;
  position: relative;
}
#works .work .splide .splide__slide {
  background-color: white;
  margin: 13px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
#works .work .splide .splide__slide img {
  width: 100%;
  margin: auto 0;
}
#works .work .splide .splide__slide p {
  font-weight: 600;
}
#works .work .splide .splide__slide button {
  padding: 7px 20px;
  border: 1px solid black;
  border-radius: 60px;
  background-color: white;
}
#works .work .splide .splide__slide button a {
  color: black;
  text-decoration: none;
}
#works .work .splide .splide__arrow--prev,
#works .work .splide .splide__arrow--next {
  background-color: #282828;
}
#works .work .splide .splide__arrow--prev svg,
#works .work .splide .splide__arrow--next svg {
  fill: white;
}
#works .work .splide .splide__arrow--prev {
  transform: translateX(-150%);
}
#works .work .splide .splide__arrow--next {
  transform: translateX(170%);
}
#works .work .splide #moreImages {
  display: none;
}
#works .work .splide #moreImages .splide__slide {
  display: inline-block;
  background-color: white;
  margin: 10px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  min-width: auto;
}
#works .work .splide #moreImages .splide__slide img {
  width: auto;
  height: 350px;
}
#works .work .splide #moreImages .moreBtn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
#works .work .all-works {
  display: none; /* hidden by default for desktop/tablet */
  grid-template-columns: auto auto auto;
  text-align: left;
}
#works .work .all-works .slide {
  /* border: 1px dashed black;  */
  background-color: white;
  margin: 13px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
#works .work .all-works .slide img {
  width: 100%;
  margin: auto 0;
}
#works .work .all-works .slide p {
  font-weight: 600;
}
#works .work .all-works .slide button {
  padding: 7px 20px;
  border: 1px solid black;
  border-radius: 60px;
  background-color: white;
}
#works .work .all-works .slide button a {
  color: black;
  text-decoration: none;
}
#works .work .moreBtn {
  background-color: #EF018D;
  color: white;
  padding: 10px;
  border-radius: 10px;
  margin: 10px auto;
  cursor: pointer;
}
#works #event,
#works #print,
#works #proddesign {
  display: none;
}

/*=====Footer Section=====*/
footer {
  background-color: black;
  color: white;
}
footer a {
  display: block;
  text-decoration: none;
  color: white;
  transition: 0.2s;
  /* make icons8 inline */
}
footer a:last-child {
  display: inline;
}
footer a:hover {
  font-size: 1rem;
  background-image: linear-gradient(to right, #EF018D, #6366F1);
}
footer .footer-flex {
  display: flex;
}
footer .footer-pink,
footer .footer-blue,
footer .footer-yellow {
  height: 30px;
  width: 100%;
}
footer .footer-pink {
  background-color: #EF018D;
}
footer .footer-blue {
  background-color: #00aeef;
}
footer .footer-yellow {
  background-color: #fcf004;
}
footer .footer-content {
  margin: 50px 100px;
  gap: 30px;
}
footer .footer-content .footer-logo {
  width: 300px;
  margin: 0 auto;
}
footer .footer-content .footer-logo img {
  height: 200px;
}
footer .footer-content .contact-details {
  width: 100%;
  justify-content: space-around;
  margin-top: 50px;
}
footer .footer-content .contact-details span {
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
}
footer .footer-logo,
footer .copyright {
  text-align: center;
}
footer .copyright {
  margin: 0;
  padding: 20px;
}

/*--- MOBILE ---*/
@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
  body h1 {
    font-size: 16px;
    margin: 0;
  }
  body section {
    padding: 10px;
  }
  header {
    margin: 0;
  }
  header .header-content {
    margin: 140px 10px 0;
    border-radius: 30px;
    padding: 10px;
    font-size: 20px;
    text-align: center;
  }
  header .header-content h1 {
    text-align: center;
    font-size: 1rem;
  }
  header .header-content p,
  header .header-content button {
    font-size: 0.8rem;
  }
  header .header-content .header-content-mockups img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
  }
  header nav {
    padding-top: 10px;
  }
  header nav .nav-other-screens {
    display: none;
  }
  header nav .nav-mobile {
    display: flex;
    flex-direction: column;
  }
  header nav .nav-mobile .nav-logo-name {
    margin: 0 auto;
  }
  header nav .nav-mobile .nav-logo-name img {
    height: 70px;
  }
  header nav .nav-mobile .nav-icon-btns {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
  }
  header nav .nav-mobile .nav-icon-btns div img {
    height: 30px;
  }
  header .header-content p {
    margin: 20px;
  }
  #works .work {
    padding: 20px 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /*hide splide and show more btn on mobile*/
  }
  #works .work img {
    display: block;
    height: 200px;
  }
  #works .work button {
    border: 1px solid black;
    border-radius: 60px;
    background-color: white;
    font-size: 12px;
  }
  #works .work .splide,
  #works .work .moreBtn {
    display: none;
  }
  #works .work .all-works {
    display: block;
    margin: 0 auto;
  }
  footer .footer-pink,
  footer .footer-blue,
  footer .footer-yellow {
    height: 15px;
    width: 100%;
  }
  footer .footer-content {
    margin: 20px;
    display: block;
  }
  footer .footer-content .footer-logo img {
    height: 8pc;
  }
  footer .footer-content .footer-flex,
  footer .footer-content .contact-details {
    margin: 0;
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: auto auto;
  }
}
/* --- TABLET --- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body section {
    padding: 25px;
  }
  header nav .nav-other-screens .nav-contact-us a {
    padding: 10px;
    padding-left: 20px;
  }
  header nav .nav-other-screens .nav-contact-us span {
    margin: 0;
  }
  #works .work .splide .splide__arrow--prev,
  #works .work .splide .splide__arrow--next {
    display: none;
  }
  #works .work .all-works {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
  }
  footer .footer-content {
    margin: 30px;
    gap: 10px;
  }
}
/* --- DESKTOP --- */
@media screen and (min-width: 1024px) {
  /* desktop styles */
}
/* --- LARGE DESKTOP --- */
@media screen and (min-width: 1280px) {
  /* large screen styles */
}/*# sourceMappingURL=projects.css.map */