* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid #f00; */
}

.container {
  width: 90%;
  max-width: 1246px;
  margin-left: auto;
  margin-right: auto;
}

html {
  scroll-behavior: smooth;
}

/* Positioning the Back to Top Arrow */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #303030;
  padding: 10px 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

/* Hover effect */
.back-to-top:hover {
  background-color: #50fffcf2;
}

/* Global Styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #181818;
}

h2 {
  font-weight: 500;
  margin-bottom: 26px;
}

p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 56px;
}

a {
  text-decoration: none;
}

/* Header Nav Menu Styles */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0;
  border-bottom: 1px solid #232323;
  transition: background-color 0.7s ease-in-out;
}

header:hover {
  background-color: #35393c;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
}

.logo a {
  color: #ffffff;
  font-size: 21px;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
  transform: scale(1);
  white-space: nowrap;
}

.logo a .curly-brackets {
  /* color: #50fffc;  */
  transition: color 0.3s ease-in-out;
}

/* Logo - Add space between t & opening curly bracket */
.logo a .curly-brackets:first-of-type {
  margin-left: 4px;
}

/* Hover effect logo { } curly brackets */
.logo a:hover .curly-brackets {
  color: #f050ffde;
}

.logo a:hover {
  color: #50fffcf2;
  transition: 0.3s;
  transform: scale(1.05);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.nav-menu a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #50fffcf2;
  transition: 0.3s;
}

.nav-menu li {
  position: relative;
}

.nav-menu li:hover {
  display: block;
  transition: 0.3s;
  transform: scale(1.05);
}

.nav-menu a .fa-caret-down {
  margin-left: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-menu a.active {
  color: #50fffcde;
}

/* Nav Menu Underline Styles */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #f050ffde;
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active::after {
  width: 0;
}

/* Burger Nav Responsive */
.burger {
  display: none;
}

.menu-holder button {
  font-size: 32px;
  font-weight: 500;
  background: #303030;
  color: #52bf56;
  display: none;
  position: absolute;
  top: 50px;
  right: 50px;
}

.menu-holder button:hover {
  color: #4fce86;
}

#close-nav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 101;
  cursor: pointer;
}

.nav-link {
  font-size: 25px;
  padding: 4px 14px;
  border: none;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
  background-color: #000000;
}

.fa-bars {
  font-size: 35px;
}

/* Nav Language Styles */
.language-selector {
  position: relative;
}

#language-btn {
  background-color: transparent;
  color: #ffffffeb;
  border: none;
  display: flex;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  text-transform: lowercase;
}

#language-btn i {
  margin-right: 8px;
  transition: color 0.3s ease;
}

#language-btn:hover i {
  color: #f050ffde;
}

/* Nav Language Popup Styles */
#language-popup {
  position: absolute;
  top: 36px;
  right: 0;
  background-color: #181818;
  color: #ffffff;
  border: 1px solid #b950ffb2;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 1000;
}

#language-popup ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#language-popup li {
  cursor: pointer;
  padding: 18px 20px;
  transition: background-color 0.3s ease;
}

#language-popup li:hover {
  background-color: #35393c;
}

.language-selector:hover #language-popup {
  transform: scaleY(1);
  opacity: 1;
}

/* Caret Icon */
.nav-menu .projects-menu .fa-caret-down {
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.nav-menu {
  z-index: 9999;
}

/* Submenu Styling */
.submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 10px;
  background-color: #181818;
  padding: 12px 0;
  list-style: none;
  margin: 4px;
  border-radius: 2px;
  border: solid #f050ffde 1px;
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transform: scaleY(0); /* Start collapsed */
  transition: transform 0.4s ease-out, opacity 0.3s ease-out,
    visibility 0.4s ease-out;
  width: auto;
  min-width: 120px;
}

/* Show Submenu on Hover (Desktop) */
.nav-menu .projects-menu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* Rotate caret when submenu is visible */
.nav-menu .projects-menu:hover .fa-caret-down {
  transform: rotate(45deg);
}

/* Submenu Item Styling */
.submenu li {
  padding: 12px 8px;
  cursor: pointer;
  margin: 0;
}

.submenu li:hover {
  margin: 0 4px;
  background-color: #35393c;
}

/* Submenu Link Styling */
.submenu li a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 8px;
}

.video-container {
  position: relative;
  display: inline-block;
}

.unmute-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Banner Styles */
.re-contain {
  width: 90%;
  max-width: 1246px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: right;
}

.re-contain.about {
  justify-content: left;
}

.main-banner {
  padding: 286px 0 160px;
  color: #fff;
  background-color: #181818;
}

.banner-line {
  font-size: 59px;
  display: flex;
  position: relative;
  white-space: nowrap;
  text-transform: uppercase;
  transition: transform 0.3s ease-in-out;
}

.greeting {
  font-weight: bold;
  justify-content: flex-start;
}

.intro {
  justify-content: flex-end;
}

.description {
  justify-content: flex-start;
}

/* Name Carlo text banner */
.name {
  transition: transform 0.3s ease, color 0.3s ease-in-out;
}

/* Hover Name Carlo */
.name:hover {
  color: #b950ffb2;
  transform: scale(1.05);
}

/* Add space between "S" and "C" Carlo text banner */
.banner-line .name {
  margin-left: 12px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 70px;
}

.banner-text {
  flex: 1;
}

.banner-line:hover {
  transform: scale(1.1);
}

.banner-brackets {
  display: flex;
  align-items: center;
  font-size: 50px;
  font-weight: 700;
  margin-right: 70px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.banner-brackets:hover {
  transform: scale(1.05);
}

.banner-brackets:hover .curly-bracket {
  color: #f050ffde;
}

.curly-bracket {
  font-size: 100px;
  color: #50fffc;
  transform: scaleY(4);
  transition: color 0.3s ease-in-out;
}

.roles {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 28px 8px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}

.roles h3 {
  font-size: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSlide 1s ease-in-out forwards;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.roles h3:hover {
  transform: scale(1.05);
  color: #50fffc;
}

/* Animation delays */
.roles h3:nth-child(1) {
  animation-delay: 0.1s;
}
.roles h3:nth-child(2) {
  animation-delay: 0.3s;
}
.roles h3:nth-child(3) {
  animation-delay: 0.5s;
}
.roles h3:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons Styles */
.btn {
  font-family: "Teko", serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #fff;
  padding: 16px 72px;
  border: 1px solid #fff;
  text-transform: uppercase;
  display: inline-block;
  max-width: 100%;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-bottom: 56px;
}

.btn:hover {
  color: #35393c;
  background: #fff;
  transform: scale(1.056);
  opacity: 0.9;
}

/* About btn */
.btn.color-green {
  color: #52bf56;
  border: 1px solid #52bf56;
}

.btn.color-green:hover {
  color: #f050ffde;
  border: 1px solid #f050ffde;
  background: transparent;
}

.menu-holder {
  width: 80%;
  display: flex;
  justify-content: flex-end;
}

.social-icon {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-right: 250px;
  padding-left: 0;
  white-space: nowrap;
}

.social-icon li {
  align-items: center;
}

.social-icon i {
  font-size: 8px;
  color: #ffffff;
  margin-right: 12px;
  transition: color 0.3s ease;
  vertical-align: middle;
}

.social-icon i:hover {
  color: #ff50f0f2;
}

.social-icon a {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.social-icon li a:hover,
.social-icon li:hover i {
  color: #ff50f0f2;
}

/* Project Styles */
.our-project {
  background-color: #35393c;
}

.project h3 {
  font-size: 22px;
  font-weight: 400;
  max-width: 60%;
  display: inline-block;
  margin-bottom: 68px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 8px;
  width: 100%;
  max-width: 1246px;
  margin: 0 auto;
}

.project-details {
  padding: 24px 4px 12px 48px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-details .btn {
  width: auto;
  margin-right: auto;
}

.card-project {
  background-color: #35393c;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-project h2 {
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  transition: color 2s ease-in-out, transform 1s ease-in-out,
    text-shadow 1s ease-in-out;
}

.card-project.color-1 h2:hover {
  text-shadow: 0 0 2px #7113d7;
  transform: scale(1.03);
}

.card-project.color-2 h2:hover {
  text-shadow: 0 0 2px #13cad7;
  transform: scale(1.03);
}

.card-project.color-3 h2:hover {
  text-shadow: 0 0 2px #d78813;
  transform: scale(1.03);
}

.card-project.color-4 .lists-container:hover {
  text-shadow: 0 0 2px #1354d7;
  transform: scale(1.03);
}

.card-project h3 {
  font-size: 24px;
  line-height: 1;
  font-weight: 200;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 36px;
}

.card-project p {
  max-width: 450px;
}

.line-h3 {
  display: block;
  margin-bottom: 8px;
}

.project-1 h4,
.card-project h4 {
  font-family: "Teko", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #868686;
  margin-bottom: 16px;
  transition: color 2s ease-in-out, transform 1s ease-in-out,
    text-shadow 1s ease-in-out;
}

.project-details.card-4 > h4[data-aos="fade-right"] {
  font-size: 15px;
}

.card-project ul {
  font-family: "Teko", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  list-style: none;
  padding: 0;
  width: 45%;
}

.card-project.color-4 .project-details.card-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lists-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.card-project li {
  line-height: 0.9;
}

.card-project.color-4 .project-details.card-4 img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.card-icons {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  justify-items: center;
  margin-bottom: 30px;
}

.card-icons i {
  font-size: 23px;
}

.card-project.color-1 {
  border: 2px solid #7113d7;
}

.card-project.color-2 {
  border: 2px solid #13cad7;
}

.card-project.color-3 {
  border: 2px solid #d78813;
}

.card-project.color-4 {
  border: 2px solid #1354d7;
}

.card-project.color-4,
.card-project.color-3,
.card-project.color-2,
.card-project.color-1 {
  transition: border-color 0.3s ease, transform 0.5s ease;
  transform: scale(1);
}

.card-project.color-4:hover,
.card-project.color-3:hover,
.card-project.color-2:hover,
.card-project.color-1:hover {
  transform: scale(1.02);
}

.card-project.color-1:hover {
  border-color: #823bce;
}

.card-project.color-2:hover {
  border-color: #00eacf;
}

.card-project.color-3:hover {
  border-color: #f3aa3e;
}

.card-project.color-4:hover {
  border-color: #376cd7;
}

.project-details.card-1 {
  background-image: url(/images/card_baffi.png);
  background-color: rgba(0, 00, 00, 70%);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.project-details.card-2 {
  background-image: url(/images/card_code.png);
  background-color: rgba(0, 00, 00, 70%);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.project-details.card-3 {
  background-image: url(/images/card_media.png);
  background-color: rgba(0, 00, 00, 70%);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.project-details.card-4 {
  background-image: url(/images/card_webd.png);
  background-color: rgba(0, 00, 00, 70%);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.project-details.card-4:hover,
.project-details.card-3:hover,
.project-details.card-2:hover,
.project-details.card-1:hover {
  background-color: rgba(0, 00, 00, 75%);
}

/* About Styles */
.about-banner .container {
  max-width: 200px;
}

.about-banner {
  padding: 82px 0 60px;
  color: #fff;
  background-color: #181818;
}

.about-blurb .container {
  max-width: 1100px;
  margin-bottom: 40px;
}

.about-banner .banner-line {
  font-size: 52px;
}

.about-blurb p {
  font-size: 34px;
  font-weight: 200;
  line-height: 1.3;
  color: #868686;
  font-style: italic;
  text-indent: 56px;
  transition: all 0.5s ease;
}

.about-blurb p:hover {
  color: #13cad7;
  transform: scale(1.02);
}

/* Slick Slider Styles + more */
.item h2 {
  font-family: "Teko", serif;
  font-size: 19px;
  letter-spacing: 1px;
  color: #13cad7;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}

.item {
  position: relative;
  margin: 0;
  height: 240px;
  transition: transform 0.5s ease;
  transform: scale(1);
  border: 4px solid #13cad7;
  box-sizing: border-box;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px;
  background-color: rgba(53, 57, 60, 0.8);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.item:hover {
  transform: scale(1.05);
}

.item-content a {
  text-decoration: none;
}

.item:hover .item-content {
  opacity: 1;
}

.item-content.show {
  opacity: 1;
}

.slick-slide {
  margin: 0 4px;
  transition: transform 0.6s easeInOutCubic;
}

.slick-list {
  margin: 0 -15px;
}

.slider-holder {
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  position: relative;
  padding: 26px 0;
  background-color: #35393c;
}

.slider-promo {
  overflow-x: hidden;
}

/* Slick Slider Hover Animation effect to h2 a(links) */
.item-content a h2 {
  transition: color 0.7s ease, transform 0.7s ease;
}

.item-content a:hover h2 {
  animation: hoverH2a 0.7s forwards;
}

@keyframes hoverH2a {
  0% {
    color: #000000;
    transform: scale(1);
  }
  50% {
    color: #7113d7;
    transform: scale(1.1);
  }
  100% {
    color: #ff50f0f2;
    transform: scale(1);
  }
}

/* Footer Styles*/
footer {
  padding: 100px 0;
}

footer .sections {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

footer .section {
  flex: 1;
}

.sections h4 {
  font-family: "Teko", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #868686;
  margin-bottom: 16px;
}

footer .left p {
  font-size: 20px;
  margin: 8px 0;
}

footer .section a {
  color: #fff;
  text-decoration: none;
}

footer ul {
  font-size: 20px;
  padding: 0;
  list-style: none;
  color: #fff;
}

footer ul li {
  margin: 8px 0;
}

footer .socials {
  display: flex;
  gap: 5px;
}

footer .socials i {
  font-size: 28px;
  color: #fff;
  transform: scale(0.8);
  transition: color 300ms ease, transform 300ms ease;
}

footer .fa-brands.fa-whatsapp {
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .fa-brands.fa-whatsapp:hover {
  color: #52bf56;
  transform: scale(1.1);
}

footer .socials i:hover {
  color: #52bf56;
  transform: scale(1.1);
}

.color-link {
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.color-link:hover {
  color: #50fffcf2;
  transform: scale(1.05);
}

.copyright {
  font-size: 16px;
  margin-top: 40px;
}

/* Resume */
.resume-button i {
  font-size: 24px;
  color: #52bf56;
  transition: transform 0.3s ease;
}

/* Make the icon spin on hover */
.resume-button:hover i {
  color: #ff50f0f2;
  transform: rotate(360deg);
}

.resume-link {
  font-size: 21px;
  color: #52bf56 !important;
  margin-top: 2px;
}

.resume-link:hover {
  color: #ff50f0f2 !important;
}

/* Baffi Gelato Styles */
/* Banner Project-1 */
.hr-long {
  width: 80%;
  margin-bottom: 32px;
  transition: border-color 0.3s ease-in-out;
}

.hr-long:hover {
  border-color: #f050ffde;
}

.project-1 .container {
  max-width: 1150px;
  margin: 0 auto;
}

.project-1 {
  padding: 240px 0 0;
  color: #fff;
  background-color: #181818;
}

.project-1 h1 {
  font-size: 96px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0px;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.project-1 h3:hover,
.project-1 li:hover,
.project-1 h4:hover,
.project-1 h1:hover {
  transform: scale(1.03);
}

.project-1 h2 {
  font-size: 32px;
  letter-spacing: 1.2px;
  font-weight: 200;
  color: #585f64;
  margin-bottom: 48px;
}

.project-1 .container h2 {
  max-width: 510px;
}

/* Left right Styles */
.project-1 {
  margin-bottom: 80px;
}

.project-1 .content {
  display: flex;
  align-items: flex-start;
}

.project-1 .content .left,
.project-1 .content .right {
  flex: 1;
}

.project-1 h3,
.project-1 h4 {
  transition: transform 0.5s ease;
  transform: scale(1);
}

.project-1 h3 {
  font-size: 18px;
  letter-spacing: 1.2px;
  font-weight: 200;
  margin-bottom: 20px;
}

.project-1 .line-h3 {
  color: #868686;
  margin: 5px 0;
}

.project-1 ul,
.project-1 .right h3 {
  font-size: 16px;
}

.project-1 li {
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  transition: transform 0.5s ease;
  transform: scale(1);
  list-style-type: none;
}

.project-1 .by {
  color: #868686;
}

/* Header Banner Slider Styles */
.header-swiper .swiper-slide {
  height: 700px;
  padding: 0;
  margin-bottom: 100px;
  border: solid 4px #434047;
  border-radius: 8px;
  transition: border-color 0.3s ease-in-out;
}

.header-swiper .swiper-slide:hover {
  border-color: #823bce;
}

.header-swiper .swiper-slide .content::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 0;
}

.header-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Centered text on each slide */
.header-swiper .swiper-slide .content {
  position: relative;
  width: 100%;
  height: 100%;
}

.header-swiper .swiper-slide .shop-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 56px;
  text-align: center;
  padding: 0px;
  max-width: 90%;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.1s;
  background-image: none;
  background-color: rgba(0, 0, 0, 0);
}

.header-swiper .swiper-slide .shop-banner h2 {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Text animation: Fade In and Move Up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 4px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.header-swiper .swiper-button-next,
.header-swiper .swiper-button-prev {
  background: #585f64;
  padding: 8px;
  width: 30px;
  height: 40px;
  opacity: 0.2;
  transition: all 300ms ease;
}

.header-swiper .swiper-button-next:hover,
.header-swiper .swiper-button-prev:hover {
  opacity: 1;
}

.header-swiper .swiper-button-next::after,
.header-swiper .swiper-button-prev::after {
  font-size: 20px;
  color: #000;
}

/* Prototype Banner */
.prototype-banner {
  padding-bottom: 35px;
}

.prototype-video {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.prototype-video.no-margin-bottom .video-wrapper {
  margin-bottom: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
  border-radius: 8px;
}

.prototype .container {
  max-width: 1100px;
}

.prototype-title p.bounce {
  font-size: 30px;
  font-weight: 200;
  text-align: center;
  letter-spacing: 1.2px;
  margin-bottom: 30px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.prototype-title p.bounce:hover {
  transform: scale(1.05);
}

.prototype-title p.bounce span {
  display: inline-block;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  letter-spacing: 1px;
}

.prototype-title p.bounce span:hover {
  cursor: grab;
  animation: wave-out 0.5s ease-in-out;
}

/* Animation prototype-title p */
@keyframes wave-in {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.2) translateY(5px);
  }
  100% {
    transform: scale(1.2) translateY(0);
  }
}

@keyframes wave-out {
  0% {
    transform: scale(1.2) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/* Shop Banner */
.shop-banner {
  text-align: center;
  padding: 150px 0;
  background-image: url(/images/storefront.png);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 65%);
}

.shop-banner.premiere .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Dark overlay */
.shop-banner.premiere::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.shop-banner.premiere .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.shop-banner h2 {
  font-size: 88px;
  color: #fff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 40px;
  transition: transform 0.5s ease;
  transform: scale(1);
  border: 4px solid #fff;
  box-sizing: border-box;
}

.shop-banner h2:hover {
  transform: scale(1.1);
}

.shop-banner h3 {
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 200;
  color: #fff;
  font-style: italic;
  margin-bottom: 48px;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.shop-banner h3:hover {
  transform: scale(1.05);
}

/* Project Styles */
.our-mobile-project {
  background-color: #35393c;
  padding: 42px 0;
  box-sizing: border-box;
  perspective: 1200px;
}

.mobile-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
}

.mobile-project-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.card-mobile-project {
  background-color: #35393c;
  line-height: 1;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  transform: scale(0.9);
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  aspect-ratio: 374 / 616;
}

.card-mobile-project:hover {
  transform: scale(0.9);
  transform: rotateY(8deg) rotateX(8deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-mobile-project:hover .mobile-project-details {
  background-color: rgba(0, 0, 0, 0.1);
}

.card-mobile-project.color-1 {
  border-color: #7113d7;
}

.card-mobile-project.color-2 {
  border-color: #13cad7;
}

.card-mobile-project.color-3 {
  border-color: #d78813;
}

.card-mobile-project.color-1:hover {
  border-color: #a061e3;
}

.card-mobile-project.color-2:hover {
  border-color: #05edd2;
}

.card-mobile-project.color-3:hover {
  border-color: #ffba52;
}

.mobile-project-details.card-1 {
  background-image: url(/images/mobile-b-h.png);
}

.mobile-project-details.card-2 {
  background-image: url(/images/mobile-b-s.png);
}

.mobile-project-details.card-3 {
  background-image: url(/images/mobile-b-c.png);
}

.mobile-project-details.card-4 {
  background-image: url(/images/protools.png);
}

.mobile-project-details.card-6 {
  background-image: url(/images/af.png);
}

.mobile-project-details h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 4.4vw;
  font-weight: 200;
  color: #fff;
  text-align: center;
  width: auto;
  max-width: 90%;
  white-space: nowrap;
  background: rgb(0, 0, 0, 0.3);
  padding: 2px;
  transition: transform 0.7s ease, background 1.2s ease;
}

/* Hover Effect */
.mobile-project-details h2:hover {
  transform: translate(-50%, -50%) scale(1.07);
}

/* Next Styles */
.previous-banner,
.next-banner {
  padding: 60px 0 30px;
  color: #fff;
  background-color: #181818;
  text-align: center;
}

.next-case .container {
  max-width: 1100px;
  margin: 0 auto;
}

.next-case p {
  font-size: 34px;
  font-weight: 200;
  color: #868686;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.next-case h2 {
  font-size: 54px;
  font-weight: 200;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 80px;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.next-case h2:hover {
  transform: scale(1.05);
}

.image-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease, height 0.5s ease;
}

.image-container:hover {
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
}

.next-image {
  background-image: url(/images/card_media_sm.jpg);
}

.backend-image {
  background-image: url(/images/card_code.png);
}

.previous-image {
  background-image: url(/images/mobile-b-h.png);
}

.tools-image {
  background-image: url(/images/card_webd.png);
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.separator-line {
  width: 100%;
  height: 1px;
  margin: 0 auto 88px;
  border-color: #13cad7;
  transition: border-color 0.3s ease-in-out;
}

.separator-line:hover {
  border-color: #1354d7;
}

.btn-round {
  border-radius: 50px;
  padding: 32px 60px !important;
}

.btn-round:hover {
  border-radius: 50px;
}

/* Keep existing styles but modify only for this video */
.prototype-video .video-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.prototype-video .background-video {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* Tools - Page */
.lists-container.tools-page {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 16px;
  padding-right: 10px;
  gap: 25%;
}

.card-icons.tools-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
  width: 500px;
}

.card-icons.tools-icons i {
  width: 40px;
  height: 40px;
}

/* Divider */
.divider-section {
  text-align: center;
  margin: 0 0 10px;
}

.divider i {
  font-size: 30px;
  color: #333;
}

.divider {
  position: relative;
}

.divider i {
  position: relative;
  display: inline-block;
  margin: 0;
}

/* Contact Form */
.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-group input {
  border: none;
  width: 88%;
  padding: 4px;
  border-bottom: solid #ffffff 2px;
  background-color: transparent;
}

.form-group textarea {
  border: none;
  width: 88%;
  padding: 4px;
  border-bottom: solid #ffffff 2px;
  background-color: transparent;
  min-height: 50px;
  overflow-y: auto;
  resize: vertical;
}

button[type="submit"] {
  background-color: transparent;
  cursor: pointer;
  width: 88%;
}

.form-group textarea::placeholder,
.form-group input::placeholder {
  color: #fff;
  text-align: center;
}

.form-group input:focus {
  outline: none;
  box-shadow: none;
}

#my-form .btn {
  margin-bottom: 10px;
}

button,
input,
textarea {
  color: #13cad7;
}

/* Responsive Styles 1124px */
@media only screen and (max-width: 1124px) {
  .social-icon-holder {
    position: absolute;
    right: 230px;
    top: 50%;
    transform: translateY(-4%);
  }

  .main-banner {
    padding: 250px 0 100px;
  }

  .banner-line {
    font-size: 52px;
  }

  .banner-content {
    width: 80%;
    gap: 40px;
  }

  .curly-bracket {
    font-size: 90px;
  }

  .roles {
    margin: 28px 22px 0 28px;
  }

  .card-icons.tools-icons {
    width: 100%;
  }
}

/* Responsive Styles 992px */
@media only screen and (max-width: 992px) {
  /* Header Nav Menu Styles */
  .burger {
    display: block;
  }

  #burger i {
    color: rgb(208, 208, 208);
    transition: color 0.3s ease;
  }

  #burger i:hover {
    color: #52bf56;
  }

  /* Resets when burger menu appears */
  .social-icon-holder {
    position: static;
  }

  .social-icon {
    margin-right: 0px;
  }

  .menu-holder {
    height: 100%;
    width: 100%;
    background: #35393c;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: 0.5s;
    transform: translateY(-100%);
    opacity: 98%;
    display: flow-root;
  }

  body.nav-is-open .menu-holder {
    transform: translateY(0);
  }

  .nav-menu {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .menu-holder button {
    display: block;
  }

  .nav-menu li ul {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
  }

  .nav-menu li ul li {
    margin-bottom: 2px;
  }

  /* Submenu - Hide initially */
  .submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transition: max-height 0.6s ease-out, opacity 0.5s ease-out,
      visibility 0.4s ease-out, transform 0.4s ease-out;
  }

  /* Submenu - Show when hovering */
  .projects-menu:hover .submenu,
  .projects-menu:focus-within .submenu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }

  /* Menu item */
  .projects-menu {
    display: flex;
    flex-direction: column;
  }

  /* Submenu items spacing */
  .submenu li {
    padding: 4px;
  }

  /* Caret rotation */
  .projects-menu:hover .fa-caret-down,
  .projects-menu:focus-within .fa-caret-down {
    transform: rotate(45deg);
    transition: transform 0.3s ease-out;
  }

  /* Main Banner Styles */
  .main-banner {
    padding: 190px 0 50px;
  }

  .banner-line {
    font-size: 38px;
  }

  .banner-content {
    width: 80%;
    gap: 30px;
  }

  .roles h3 {
    font-size: 27px;
  }

  /* Project Styles */
  .card-project p {
    max-width: 370px;
  }

  .project-details {
    padding: 24px 4px 12px 24px;
  }

  .card-project h2 {
    font-size: 40px;
  }

  .card-project ul {
    font-size: 20px;
  }

  /* About Styles */
  .about-banner {
    padding: 62px 0 40px;
  }

  .about-blurb .container {
    margin-bottom: 10px;
  }

  .about-banner .banner-line {
    font-size: 38px;
  }

  .about-blurb p {
    font-size: 28px;
  }

  /* Slick Slider Styles + more */
  .item {
    height: 200px;
  }

  .slider-holder {
    padding: 22px 0;
  }

  /* Footer Styles*/
  footer {
    padding: 80px 0;
  }

  footer .sections {
    gap: 0;
  }

  /* Baffi Gelato Styles */
  /* Header Banner Slider Styles */
  .header-swiper .swiper-slide {
    height: 580px;
    margin-bottom: 80px;
  }

  .header-swiper .swiper-slide .shop-banner {
    font-size: 46px;
  }
  /* Shop Banner */
  .shop-banner h2 {
    font-size: 68px;
  }

  /* Prototype Banner */
  .prototype-title p.bounce {
    font-size: 28px;
    margin-bottom: 20px;
  }

  /* Tools */
  .lists-container.tools-page {
    gap: 15%;
  }
}

/* Responsive Styles 768px */
@media only screen and (max-width: 768px) {
  .project-1 h1 {
    font-size: 86px;
  }

  /* Main Banner Styles */
  .banner-line {
    font-size: 32px;
  }

  .banner-content {
    gap: 33px;
  }

  .curly-bracket {
    font-size: 70px;
  }

  .roles {
    margin: 28px 22px 0 28px;
  }

  .roles h3 {
    font-size: 22px;
  }

  /* Card 4 Styles */
  .card-project p {
    max-width: 324px;
  }

  .project-details {
    padding: 24px 4px 12px 14px;
  }

  .card-project h2 {
    font-size: 30px;
  }

  .card-project h3 {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .card-project ul {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .card-icons {
    gap: 6px;
    margin-bottom: 28px;
  }

  .card-icons i {
    font-size: 22px;
  }

  /* About Styles */
  .about-banner {
    padding: 40px 0 30px;
  }

  .about-banner .banner-line {
    font-size: 32px;
  }

  .about-blurb .container {
    margin-bottom: 0px;
  }

  .header-swiper .swiper-slide {
    height: 400px;
    margin-bottom: 50px;
  }
  /* Next Styles */
  .previous-banner,
  .next-banner {
    padding: 30px 0 30px;
  }
  /* .prototype-video {
    padding: 210px 0;
  } */

  .shop-banner {
    padding: 150px 0;
  }

  .about-blurb p {
    font-size: 24px;
  }

  .slider-holder {
    padding: 14px 0;
  }

  /* Footer Styles */
  footer {
    padding: 20px 0;
  }
  /* Contact Form */
  .form-group input,
  .form-group textarea,
  button[type="submit"] {
    width: 100%;
    padding: 15px;
  }

  footer .sections {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 150px;
    grid-row-gap: 20px;
    grid-template-areas:
      "section1 section2"
      "section1 section3"
      "section1 section4";
    margin: 0 auto;
    max-width: 700px;
  }

  footer .section:nth-child(1) {
    grid-area: section1;
  }
  footer .section:nth-child(2) {
    grid-area: section2;
  }
  footer .section:nth-child(3) {
    grid-area: section3;
  }
  footer .section:nth-child(4) {
    grid-area: section4;
  }

  footer .left p {
    font-size: 16px;
  }

  footer ul {
    font-size: 17px;
  }

  .resume {
    font-size: 15px;
  }

  .copyright {
    font-size: 14px;
    margin-top: 20px;
  }

  /* Baffi Gelato Styles */
  /* Banner Project-1 Styles */
  .project-1 {
    padding: 200px 0 0;
  }

  /* Prototype Banner Styles */
  .prototype-title p.bounce {
    font-size: 22px;
    margin-bottom: 25px;
  }

  /* Shop Banner */
  .shop-banner {
    padding: 50px 0;
  }

  .shop-banner h2 {
    font-size: 57px;
  }

  .shop-banner h3 {
    font-size: 24px;
  }

  /* Project Styles */
  .our-mobile-project {
    padding: 24px 0;
  }

  /* Next Styles */
  .next-banner {
    padding: 30px 0 20px;
  }

  .image-container {
    width: 270px;
    height: 270px;
  }

  .image-container:hover {
    height: 340px;
  }

  .next-case p {
    margin-bottom: 8px;
  }

  .next-case h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .separator-line {
    margin: 0 auto 48px;
  }

  .btn.btn-round {
    margin-bottom: 8px;
  }
}

/* Responsive Styles 697px */
@media only screen and (max-width: 697px) {
  .project-1 h1 {
    font-size: 70px;
  }

  /* Main Banner Styles */
  .banner-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .project-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 14px;
  }

  .project-details.card-4 > h4[data-aos="fade-right"] {
    font-size: 18px;
  }

  /* Card 4 Styles */
  .card-project p {
    max-width: 460px;
  }

  .card-project ul {
    font-size: 24px;
  }

  .shop-banner h2 {
    font-size: 48px;
  }

  /* About */
  .about-blurb .btn {
    margin: 0 auto 36px;
  }

  /* prototype Banner */
  .prototype-video .video-wrapper {
    margin-bottom: 40px;
  }
}

/* Responsive Styles 576px */
@media only screen and (max-width: 576px) {
  /* Main Banner Styles */
  .curly-bracket {
    font-size: 70px;
    transform: scaleY(4);
  }

  .roles {
    margin: 28px 8px 0 10px;
  }

  /* Slider Promo Styles */
  .item {
    height: 180px;
  }

  .item img {
    height: 230px;
  }

  .item-content {
    padding: 5px;
    height: 30px;
  }

  .about-blurb p {
    font-size: 21px;
  }

  /* Footer Styles */
  footer {
    padding: 20px 0;
    text-align: center;
  }

  footer .sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    grid-template-areas:
      "section1"
      "section2"
      "section3"
      "section4";
  }

  footer .section {
    margin: 0 auto;
  }

  footer .section.left {
    width: 78%;
  }

  /* Baffi Gelato Styles*/
  /* Banner Project-1 Styles */
  .project-1 {
    padding-bottom: 0;
    margin-bottom: 48px;
  }

  .project-1 h1 {
    font-size: 58px;
  }

  /* Slider Promo Styles */
  .item {
    height: 238px;
  }

  .item-content {
    padding: 5px;
    height: 30px;
  }

  /* Header Banner Slider Styles */
  .header-swiper .swiper-slide {
    height: 340px;
    margin-bottom: 50px;
  }

  .prototype-title p.bounce {
    font-size: 18px;
    margin-bottom: 28px;
  }

  /* Shop Banner */
  .shop-banner {
    padding: 42px 0;
  }

  .shop-banner h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .shop-banner h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* Project Styles */
  .our-mobile-project {
    padding: 12px 0;
  }

  .mobile-project-grid {
    grid-gap: 4px;
  }

  /* Next Styles */
  .next-banner {
    padding: 20px 0 20px;
  }
  .image-container {
    width: 270px;
    height: 270px;
  }
  .image-container:hover {
    height: 340px;
  }

  .previous-banner,
  .next-banner {
    padding-top: 32px;
  }

  .next-case p {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .next-case h2 {
    font-size: 38px;
    margin-bottom: 38px;
  }
  .separator-line {
    margin: 0 auto 40px;
  }

  /* Tools */
  .project-1 .right {
    padding-left: 40px;
  }
}
/* Responsive Styles 480px */
@media only screen and (max-width: 480px) {
  .main-banner {
    padding: 206px 0 45px;
  }

  .banner-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
    max-width: 100%;
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }

  .banner-content > * {
    margin: 0 auto;
  }
  .curly-bracket {
    transform: scaleY(3.7);
  }

  .roles h3 {
    font-size: 26px;
  }

  /* Card 4 Styles */
  .card-project ul {
    font-size: 20px;
  }

  .slider-holder {
    padding: 16px 0;
  }

  /* Baffi Gelato Styles */
  /* Banner Project-1 Styles */
  .project-1 {
    margin-bottom: 50px;
  }

  .project-1 h1 {
    /* padding: 20px 0 0; */
    font-size: 50px;
  }

  .project-1 h2 {
    font-size: 30px;
  }

  /* Header Banner Slider Styles */
  .header-swiper .swiper-slide {
    height: 280px;
    margin-bottom: 50px;
  }

  /* Prototype Banner */
  .prototype {
    padding-bottom: 0;
  }

  /* .prototype-video {
    padding: 140px 0;
  } */

  .prototype-video .video-wrapper {
    margin-bottom: 0;
  }

  .prototype-title p.bounce {
    margin-bottom: 20px;
  }

  /* Shop Banner */
  .shop-banner {
    padding: 35px 0;
  }

  .shop-banner h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
  }

  .shop-banner h3 {
    font-size: 17px;
    font-weight: 400;
  }

  .card-mobile-project {
    width: 100%;
    margin: 0 auto;
  }

  .mobile-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "card5 card5"
      "card4 card6";
  }

  /* Card 5 - Allow It to Resize */
  .card-mobile-project.color-2 {
    grid-area: card5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52%;
    margin-top: 8px;
  }

  /* Video - Keep Border & Allow Resize */
  .card-mobile-project.color-2 video {
    max-width: 103%;
    height: auto;
    display: block;
  }
}

/* Responsive Styles 447px */
@media only screen and (max-width: 447px) {
  /* Main Banner Styles */
  .intro {
    font-size: 38px;
  }

  /* shop banner */
  .shop-banner h2 {
    font-size: 32px;
  }
}

/* Responsive Styles 400px */
@media only screen and (max-width: 400px) {
  /* Main Banner Styles */
  .logo a {
    font-size: 20px;
  }

  .fa-bars {
    font-size: 32px;
  }

  .project-1 h4,
  .card-project h4 {
    font-size: 16px;
  }

  /* About Styles */
  .about-blurb p {
    margin-bottom: 28px;
  }

  .about-blurb .btn {
    display: block;
    text-align: center;
    margin: 0 auto 24px;
  }

  .next-case h2 {
    font-size: 32px;
  }

  /* Footer Styles */
  footer {
    padding: 20px 0;
    text-align: center;
  }

  footer .sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    grid-template-areas:
      "section1"
      "section2"
      "section3"
      "section4";
  }

  footer .section {
    margin: 0 auto;
  }

  footer .section.left {
    width: 78%;
  }

  /* Baffi Gelato Styles */
  /* Banner Project-1 Styles */
  .project-1 {
    margin-bottom: 20px;
  }

  .project-1 h1 {
    font-size: 46px;
  }

  .project-1 h2 {
    font-size: 28px;
  }

  .shop-banner h2 {
    font-size: 32px;
  }

  /* Header Banner Slider Styles */
  .header-swiper .swiper-slide {
    height: 230px;
    margin-bottom: 36px;
  }

  /* Prototype Banner */
  .prototype-video.cs-promo {
    padding-bottom: 35px;
  }

  /* Contact Form */
  .form-group input,
  .form-group textarea,
  button[type="submit"] {
    width: 100%;
    padding: 16px;
  }
}
