/* Genel */
body {
  margin: 0;
  padding-top: 100px; /* header kadar boşluk */
  font-family: 'Roboto', sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 1000;
  height: 90px; /* Bu değeri mobilde de sabit tutmak için ekliyoruz */
}
.site-header {
  padding-top: 20px;   /* Üst boşluk */
  padding-bottom: 20px; /* Alt boşluk */
  background-color: white; /* Emin olmak için */
}



.site-header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 15px;
}

/* Logo Alanı */
.logo-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  display: none; /* Görünür, mobilde ve masaüstünde */
}

/*  menü */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start; /* Menüyü sola yasla */
}

.main-nav a {
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #0a0356;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
  overflow-x: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
.dropdown-menu li {
  padding: 10px 20px;
  transition: background-color 0.3s;
}

.dropdown-menu li:hover {
  background-color: #001F54;
}

.dropdown-menu li a {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.dropdown-menu li:hover a {
  color: #ffffff;
}

/* Bize Ulaşın Butonu */
.btn-contact {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px;
  background-color: #0f0251;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #565858;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero.active .fragment {
  opacity: 1;
  visibility: visible;
}


.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(8px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.1);
  animation: zoomFadeBlur 2.5s ease-out forwards;
}

@keyframes zoomFadeBlur {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Parçalar */
.fragment {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}


/* Temel yerleşim */
.fragment.left {
  left: 0;
}

.fragment.right {
  right: 0;
}

/* Shake efekti (ilk yükleme) */
.hero.start .fragment.left,
.hero.start .fragment.right {
  animation: shake 0.4s ease;
}

/* Çekilme efekti (sonra) */
.hero.active .fragment.left {
  animation: leftOut 1s ease-out forwards;
}

.hero.active .fragment.right {
  animation: rightOut 1s ease-out forwards;
}

/* Shake */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

@keyframes leftOut {
  0% { transform: translateX(0); }
  40% { transform: translateX(-30%); }
  60% { transform: translateX(-50%); }
  80% { transform: translateX(-120%); }
  100% { transform: translateX(-100%); }
}

@keyframes rightOut {
  0% { transform: translateX(0); }
  40% { transform: translateX(30%); }
  60% { transform: translateX(50%); }
  80% { transform: translateX(120%); }
  100% { transform: translateX(100%); }
}


 @keyframes leftOut {
  0% {
    transform: translateX(0);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
    opacity: 1;
  }
  40% {
    transform: translateX(-30%);
    box-shadow: 0 0 80px rgba(0, 255, 255, 0.7);
  }
  80% {
    transform: translateX(-120%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-100%);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    opacity: 0;
  }
} 

 @keyframes rightOut {
  0% {
    transform: translateX(0);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
    opacity: 1;
  }
  40% {
    transform: translateX(30%);
    box-shadow: 0 0 80px rgba(0, 255, 255, 0.7);
  }
  80% {
    transform: translateX(120%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    opacity: 0.5;
  }
  100% {
    transform: translateX(100%);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    opacity: 0;
  }
} 

.hero.active .fragment.left {
  animation: leftOut 1s ease-out forwards;
}

.hero.active .fragment.right {
  animation: rightOut 1s ease-out forwards;
}

@keyframes leftOut {
  0% { transform: translateX(0); }
  80% { transform: translateX(-110%); }
  100% { transform: translateX(-100%); }
}

@keyframes rightOut {
  0% { transform: translateX(0); }
  80% { transform: translateX(110%); }
  100% { transform: translateX(100%); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

.fragment.left,
.fragment.right {
  animation: shake 0.4s ease;
  animation-delay: 0.2s;
}


/* Animasyon */
@keyframes fadeInSlide {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.hero-image {
  display: none; 
}

/* Wavy Section */
.wavy-section {
  position: relative;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  background: transparent; /* Beyaz alanı sabit tutma */
}

.wavy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  z-index: -1;
  pointer-events: none;
}

.wavy-section .content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow-x: hidden;
}

.wavy-section .box {
  background-color: #100e4a;
  color: white;
  padding: 30px;
  margin: 20px auto;
  border-radius: 15px;
  max-width: 600px;
  width: 100%; /* Genişlik %100, böylece daha esnek olur */
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* İçeriği düzgün hizalamak için */
  min-height: 300px; /* Kutu yüksekliğini artırdık */
}

.wavy-section .box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00bcd4;
}

.wavy-section .box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.wavy-section .box h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.wavy-section .box p {
  font-size: 17px;
  line-height: 1.5;
}

/* Hamburger Menü */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  justify-content: space-around;
}

.hamburger-menu .line {
  background-color: #222;
  height: 3px;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hamburger-menu span {
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  background-color: #222;
  height: 3px;
  width: 100%;
  border-radius: 5px;
}


/*bloglar*/

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 48px;
  color: #001F54;
  margin-bottom: 40px;
  font-weight: bold;
}

.blog-section {
  padding: 80px 20px;
  background: #ffffff;
}

.blog-section .swiper {
  position: relative;
  padding: 0 40px;
}

.blog-card {
  background: #001F54;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00bfff;
}

.blog-card p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  text-decoration: none;
  color: #07baf5;
  font-weight: bold;
}

.read-more:hover {
  color: #ffffff;
}

/* Swiper Genel */
.swiper-container, .swiper {
  position: relative;
  padding: 0 60px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: hsl(209, 100%, 50%);
}

.mySwiper .swiper-button-next {
  right: 0;
}

.mySwiper .swiper-button-prev {
  left: 0;
}

.mySwiper .swiper {
  padding-bottom: 40px;
}

.mySwiper .swiper-pagination {
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.mySwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bbb;
  opacity: 1;
  border-radius: 50%;
  margin: 0 4px;
  transition: background 0.3s;
}

.mySwiper .swiper-pagination-bullet-active {
  background: #007bff;
}

/* Kaydırılan her slide ortalansın */
.swiper-slide {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* Mobil için özel ayarlar */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .blog-card {
    max-width: 90%;
    margin: 0 auto;
  }
}







.map-section {
  padding: 60px 20px;
  background: #f9f9f9;
}


.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.address-cards {
  font-family: 'Roboto', sans-serif;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.address-card {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.address-card:hover {
  transform: translateY(-5px);
  background: #e6f7ff;
}

.address-card h3 {
  font-size: 1.5rem;
  color: #001F54;
  margin-bottom: 10px;
}

.address-card p {
  font-size: 1rem;
  color: #555;
}


/* Footer */
.site-footer {
  font-family: 'Roboto', sans-serif;
  background-color: #001F54;
  color: #fff;
  font-size: 15px;
  padding-top: 20px;
}

.footer-inner {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Ortalamak için */
  align-items: center; /* Dikey ortalama */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px 0px;
}

.footer-contact, .footer-social {
  font-family: 'Roboto', sans-serif;
  flex: 1;
  min-width: 280px;
  text-align: center; /* İçerikleri ortalamak için */
}

.footer-contact h3,
.footer-social h3 {
  font-size: 22px;
  color: #ffffff;

}

.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ffd700;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center; /* İkonları ortalamak için */
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 26px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-bottom {
  background: #f19e03;
  text-align: center;
  padding: 1px;
  font-size: 12px;
  margin-top: 0px;
}
.footer-bottom p {
  color: #ffffff;
}


.footer-social .privacy-links {
  margin-top: 35px; /* Eskiden 15px'ti — arayı açmak için artırıldı */
  font-size: 14px;
}

.footer-social .privacy-links a {
  color: #fff; /* varsa genel footer metin rengiyle aynı yapın */
  text-decoration: underline;
  margin: 0 5px;
}

.footer-social .privacy-links a:hover {
  color: #ffd700; /* hover efekti için öneri */
}


body.modal-open {
  overflow: hidden;
}

/* İletişim kartı Modal Genel Ayarlar */  
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}
 
/* Modal İçerik */  
.modal-content {  
  position: relative;  
  background: url('images/iletisim-karti.png') no-repeat center center; /* Arka plan resmi */  
  background-size: cover; /* Arka plan resmini tamamını kapla */  
  width: 80%;  
  max-width: 800px; /* Daha dar bir görünüm için */  
  max-height: 90%; /* Küçük ekranlarda taşmayı önle */  
  padding: 40px;  
  display: flex;  
  flex-direction: column;  
  align-items: flex-start;   
  justify-content: flex-start;  
  color: #fff;  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);  
  overflow-y: auto; 
  margin-top: 100px; 

}  

/* Kapatma Butonu */  
.close-button {  
  position: absolute;  
  top: 20px;  
  right: 30px;  
  font-size: 30px;  
  font-weight: bold;  
  color: #fff;  
  cursor: pointer;  
}  

/* Logo */  
.modal-logo img {  
  width: 160px; /* Logo boyutu */  
  height: auto;  
  margin-bottom: 20px;  
}  

/* Başlık */  
.modal-content h2 {  
  margin: 10px 0 20px 0;  
  font-size: 28px;  
  color: #110449; 
  text-align: left;  
}  

/* İletişim Bilgileri */  
.contact-info {  
  text-align: left; /* Sol hizalama */  
  margin-bottom: 20px;  
}  

.contact-info p {  
  margin: 10px 0;  
  font-size: 17px;  
  color: #110449; 
}  

.contact-info a {  
  color: #f19e03; /* Altın rengi bağlantılar */  
  text-decoration: underline;  
}  

.contact-info a:hover {  
  color: #0d84b6; 
}  

/* Sosyal Medya İkonları */  
.social-icons {  
  margin-top: 30px;  
  margin-left: 20px;
}  

.social-icons a {  
  margin-right: 15px;  
  font-size: 30px;  
  color: #00e5ff;   
  transition: color 0.3s ease;  
}  

.social-icons a:hover {  
  color:#ffffff; 
}  


.kurumsal-page {
  padding-top: 60px;
  font-family: Arial, sans-serif;
}

.kurumsal-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.kurumsal-section.bg-light {
  background-color: #f8f8f8;
}

.kurumsal-section h1,
.kurumsal-section h2 {
  color: #0074b8;
  margin-bottom: 20px;
}

.kurumsal-section p {
  max-width: 800px;
  margin-bottom: 16px;
  line-height: 1.7;
}


.urunlerimiz {
  background: #ffffff;
  color: #110449;
  padding: 40px 20px;
  overflow: hidden;
  position: relative;
}

.urunlerimiz h2 {
  font-size: 37px;
  margin-bottom: 20px;
  padding-left: 10px;
  text-align: center;
  position: relative;
  padding-bottom: 30px;

}

.slider {
  overflow: hidden;
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.urun-kart {
  position: relative;
  width: 340px;
  height: 440px;
  border-radius: 16px;
  overflow: hidden; /* Bu kritik! */
  flex-shrink: 0;
}


.slide-track {
  width: max-content;
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}


.urun-kart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.urun-kart:hover img {
  transform: scale(1.05);
}


.urun-kart, .blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.urun-kart:hover, .blog-card:hover {
  cursor: pointer;
  transform: scale(1.02);
  transition: transform 0.2s ease-in-out;
}




/* Gradient overlay */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: white;
  transition: background 0.3s ease;
}

.urun-kart:hover .overlay {
  background: linear-gradient(to top, rgba(10, 1, 42, 0.7));
}

.overlay h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.overlay a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

/* Oklar */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgb(9, 1, 36);
  font-size: 50px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.prev { left: 150px; }
.next { right: 150px; }



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}

@media (max-width: 480px) {
  .whatsapp-float {
    font-size: 24px;
    padding: 14px;
    bottom: 15px;
    right: 15px;
  }
}


@media (max-width: 768px) {
  .slider {
    max-width: 72%;
  }

  .prev{
    font-size: 40px;
    left: 0px;
  }
  
  .next {
    font-size: 40px;
    right: 0px;
  }

}


/* responsive */
@media screen and (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  .modal{
    display: none;
  }

  .site-header {
    height: 60px; /* Mobil için 80px */
  }

  .header-inner {
    justify-content: space-between;
    position: relative;
    padding: 10px 15px;
  }
  
  .logo-area {
    flex-direction: row;
    gap: 10px;
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    top: 3px;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none; /* Alt çizgi kaldırma */
    color: inherit; /* Metnin rengini korur */
  }  
  
  .logo-img {
    height: 60px;
    object-fit: contain;
  }
  
  .logo-text {
    display: block; /* Sadece mobilde başlık görünür */
  }
  
  .hamburger-menu {
    display: flex;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1001;
  }
  
  .btn-contact {
    display: none;
  }

/* Mobil görünümü için menü */
.main-nav ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 50px;
  left: 0;
  gap: 5px;
  padding: 20px 40px; /* Üst ve alt boşluk, sağ ve soldan boşluk yok */
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  align-items: flex-start; /* Sol tarafa hizalama */
  width: 25%; /* Menü genişliği */
  margin-left: -20px; /* Sol kenar boşluğu yok */
  border: 2px solid #3d4546; /* Menü kenarına mavi çizgi */
  border-radius: 15px; /* Menü kenarlarını ovalleştir */
}

/* Menü açıkken */
.main-nav ul.open {
  display: flex;
}
.main-nav li a {
  display: block; /* Linki blok element yaparak tüm genişliği kapsamasını sağlıyoruz */
  padding: 10px 20px; /* Üst ve alt boşluk, sağ ve soldan boşluk ekle */
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

/* Menü elemanı seçildiğinde (aktif link) tam genişlikte mavi renk */
.main-nav li a:hover, 
.main-nav li.open > a {
  background-color: #0a0356; /* Mavi arka plan */
  color: #fff; /* Yazı rengi beyaz */
  padding-left: 0; /* Sağ ve soldan boşlukları kaldır */
  padding-right: 0;
}
.main-nav li {
  margin: 0;
  padding: 0;
}

  .main-nav .zpdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
  }

  .main-nav li:hover > .dropdown-menu {
    display: block;
  }

 /* Dropdown menü */
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 200px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

  .wavy-section .content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wavy-section .box {
    width: 70%;
    margin: 10px auto;
  }

  .hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
  }

  .footer-bottom{
    background: #f19e03;
    text-align: center;
    padding: 1px;
    font-size: 12px;
    margin-top: 20px;
  }
}
