/* Base styles for all devices */

* {
  margin: 0;
  padding: 0;
}

body {

  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
}

::-moz-selection {
  /* Code for Firefox */
  color: #ffffffff;
  background: #1fb7ff;
}

::selection {
  color: #ffffffff;
  background: #1fb7ff;
}

.container {
  display: grid;
}

.header,
.navbar,
.sidebar,
.content1,
.content2,
.info-content,
.content3,
.content4,
.content5,
.content6,
.content7,
.footer,
.copywrite {
  /* border: 1px solid #f7f7f7;
    border-radius: 10px; */
  padding: 10px;
  /* text-align: center; */
}

/* Header */

.header {
  display: grid;
  grid-template-areas: "social contact";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  background-color: #292929;
  /* border: 5px solid #ff671f;
    border-radius: 10px;
    box-shadow: 0 0 4px #434343; */
  /* margin-right: 50px; */
}

.header {
  font-size: xx-large;
}

.social-media {
  grid-area: social;
  text-align: left;
}

.contact-info {
  grid-area: contact;
  text-align: right;
}

.header a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s;
}

.header a:hover {
  color: #1fb7ff;
}

/* Navbar */

.navbar {
  display: grid;
  grid-template-areas: "logo menu togg";
  grid-template-columns: 1fr 15fr 1fr;
  grid-template-rows: auto;
  background-color: #f7f7f7;
  /* border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 4px #434343; */
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100000;
}

.site-logo {
  display: flex;
  /* gap: 10px; */
  justify-content: flex-start;
  align-items: center;
}

.menu-bar {
  grid-area: menu;
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  color: #292929;
  font-weight: bold;
  padding: 10px;
  transition: all 0.3s;
}

.menu-bar a:hover {
  background-color: #ff671f;
  border-radius: 2px;
  color: #ffffff;
}

.dropbtn {
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 155px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #292929;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.dropdown a:hover {
  background-color: #ff671f;
  color: #ffffff;
}

.dropdown-content a:hover {
  background-color: #ff671f;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.show {
  display: block;
}

.site-logo img {
  width: 200px;
}

/* Welcome Note */

.content1 {
  /* background-color: rgba(245, 245, 245); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  /* border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 4px #434343;
    margin-top: 10px; */
}

.content1 h2 {
  color: #292929;
  text-align: center;
}

.content1 h2 span {
  color: #ff671f;
}

.content1 p {
  color: #434343;
  font-size: large;
  font-weight: 500;
  text-indent: 50px;
  text-align: justify;
  letter-spacing: 1px; /* Slightly increased letter spacing */

}

.content1 p span {
  color: #1fb7ff;
  font-weight: 510;
}

.btn-donate {
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: large;
  font-weight: 500;
  color: #ffffff;
  border-radius: 100px;
  background-color: #1fb7ff;
  padding: 10px;
  margin-left: 30%;
  margin-right: 30%;
  transition: all 0.3s;
}

.btn-donate:hover {
  background-color: #ff671f;
}


/* Sliding images */

.content2 {
  margin: 0;
  display: grid;
  place-content: center;
  background: #f7f7f7;
  overflow: hidden;
}

.content2 .gallery {
  --d: 24s;
  /* duration */

  display: grid;
  width: 100%;
}

.content2 .gallery>img {
  grid-area: 1/1;
  width: 80%;
  aspect-ratio: 1.77;
  object-fit: cover;
  border: 2px solid #f2f2f2;
  border-radius: 2px;
  box-shadow: 0 0 4px #0007;
  z-index: 2;
  animation:
    slide var(--d) infinite,
    z-order var(--d) infinite steps(1);
}

.content2 .gallery img:last-child {
  animation-name: slide, z-order-last;
}

.content2 .gallery>img:nth-child(1) {
  animation-delay: calc((1 - 1)/8*var(--d));
  --r: -4deg;
}

.content2 .gallery>img:nth-child(2) {
  animation-delay: calc((1 - 2)/8*var(--d));
  --r: 0deg;
}

.content2 .gallery>img:nth-child(3) {
  animation-delay: calc((1 - 3)/8*var(--d));
  --r: 1deg;
}

.content2 .gallery>img:nth-child(4) {
  animation-delay: calc((1 - 4)/8*var(--d));
  --r: -1deg;
}

.content2 .gallery>img:nth-child(5) {
  animation-delay: calc((1 - 5)/8*var(--d));
  --r: 4deg;
}

.content2 .gallery>img:nth-child(6) {
  animation-delay: calc((1 - 6)/8*var(--d));
  --r: -2deg;
}

.content2 .gallery>img:nth-child(7) {
  animation-delay: calc((1 - 7)/8*var(--d));
  --r: 2deg;
}

.content2 .gallery>img:nth-child(8) {
  animation-delay: calc((1 - 8)/8*var(--d));
  --r: -3deg;
}

@keyframes slide {
  6.25% {
    transform: translateX(120%) rotate(var(--r))
  }

  0%,
  100%,
  12.5% {
    transform: translateX(0%) rotate(var(--r))
  }
}

@keyframes z-order {

  6.25%,
  12.5% {
    z-index: 1
  }

  87.5% {
    z-index: 2
  }
}

@keyframes z-order-last {

  6.25%,
  12.5% {
    z-index: 1
  }

  93.75% {
    z-index: 2
  }
}

/* Info Content */

.info-content {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.info-content h2 {
  color: #ff671f;
}

/* Latest News Section */
.info-content .latest-news {
  /* background-color: #e8f7ff; */
  border: 3px solid #FEFCFF;
  border-radius: 10px;
  padding: 10px;
  flex: 2;
  display: grid;
  grid-template-areas:
    "infohead infohead infohead infohead"
    "incon1 incon2 incon3 incon4";
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* grid-template-rows: auto; */
  gap: 10px;
  margin: 20px;
}

.info-content .latest-news .info-title {
  grid-area: infohead;
  color: #292929;
  text-align: center;
}

.info-content .latest-news img {
  width: 99.5%;
  border: 1px solid #434343;
  border-radius: 10px 10px 0 0;
}

.info-content .latest-news .news-blog {
  background-color: #292929;
  border: 1px solid #292929;
  border-radius: 10px;
  box-shadow: 0 0 4px #434343;
  color: #f5f5f5;
  transition: all 0.3s;
}

.info-content .latest-news .news-blog:hover {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  color: #292929;
}

.info-content .latest-news .news-blog .news-content {
  margin: auto;
}

.info-content .latest-news .venue {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  padding: 5px;
}





/* Side Bar */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px;
}

.our-sports {
  display: grid;
  place-items: center;
  background: rgb(254, 252, 255);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px); */
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;

}

.sports-marq {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sports-marq {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.content-marq {
  display: inline-block;
  animation: marquee 10s linear infinite;
}

.content-marq p {
  margin: 0;
  padding: 0;
  color: #434343;
  text-align: center;
  font-size: large;
  font-weight: 500;
}

.our-sports h2 {
  color: #ff671f;
}


@keyframes marquee {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}






.our-partners {
  display: grid;
  place-items: center;
  background: rgb(254, 252, 255);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px); */
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.our-partners:hover {
  /* background: rgb(0, 0, 0); */

  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.4);

}

.our-partners h2 {
  color: #ff671f;
}



.our-partners .partner-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  overflow: hidden;

}

.our-partners .slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: sliding 10s linear infinite;
}

@keyframes sliding {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}


.our-partners .slider-items img {
  width: 32%;
  margin: 20px;
  border: none;
}

.upcoming-events {
  display: grid;
  place-items: center;
  background: rgb(254, 252, 255);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px); */
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.upcoming-events h2 {
  color: #ff671f;
}

.upcoming-events h4 {
  color: #1fb7ff;
  text-align: center;
  /* animation: blinking 2s linear infinite; */

}

.upcoming-events p {
  color: #292929;
  text-align: center;
  animation: blinking 2s linear infinite;
}

@keyframes blinking {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}


/* Vision */

.content3 {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(247, 247, 247);
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  background: var(--bgColor);
  padding: 2rem;
  margin: 20px;
}

.content3 ul {
  --col-gap: 2rem;
  --barH: 1rem;
  --roleH: 2rem;
  --flapH: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
}

.content3 ul li {
  width: 100%;
  max-width: 60rem;
  display: grid;
  grid-template:
    "role"
    "icon"
    "title"
    "descr";
  align-items: flex-start;
  gap: 1rem;
  padding-block-end: calc(var(--flapH) + 1rem);
  text-align: center;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6) var(--roleH),
      rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
      rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem));
  clip-path: polygon(calc(var(--col-gap) / -2 - 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px) calc(100% - var(--flapH)),
      50% 100%,
      calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH)));
}



/* bar */
.content3 ul li::before {
  content: "";
  grid-area: role;
  height: var(--barH);
  width: calc(100% + var(--col-gap));
  margin-left: calc(var(--col-gap) / -2);
  margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
  background: grey;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4));
}

/* role */
.content3 ul li::after {
  content: "";
  grid-area: role;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4));
  height: var(--roleH);
}

.content3 ul li .icon,
.content3 ul li .title,
.content3 ul li .descr {
  padding-inline: 1rem;
  color: #292929;
  /* text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5); */
}

.content3 ul li .icon {
  font-size: 4rem;
  color: #ffffff;

}

.content3 ul li .title {
  font-size: xx-large;
  font-weight: bolder;

}

.content3 ul li .descr {
  text-indent: 50px;
  font-size: large;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 1px; /* Slightly increased letter spacing */
}

/* Mission */

.content4 {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(247, 247, 247);
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color);
  background: var(--bgColor);
  padding: 2rem;
  margin: 20px;

}

.content4 ul {
  --col-gap: 2rem;
  --barH: 1rem;
  --roleH: 2rem;
  --flapH: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
}

.content4 ul li {
  width: 100%;
  max-width: 60rem;
  display: grid;
  grid-template:
    "role"
    "icon"
    "title"
    "descr";
  align-items: flex-start;
  gap: 1rem;
  padding-block-end: calc(var(--flapH) + 1rem);
  text-align: center;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.6) var(--roleH),
      rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
      rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem));
  clip-path: polygon(calc(var(--col-gap) / -2 - 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px) calc(100% - var(--flapH)),
      50% 100%,
      calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH)));
}

/* bar */
.content4 ul li::before {
  content: "";
  grid-area: role;
  height: var(--barH);
  width: calc(100% + var(--col-gap));
  margin-left: calc(var(--col-gap) / -2);
  margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
  background: grey;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4));
}

/* role */
.content4 ul li::after {
  content: "";
  grid-area: role;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4));
  height: var(--roleH);
}

.content4 ul li .icon,
.content4 ul li .title,
.content4 ul li .descr {
  padding-inline: 1rem;
  color: #292929;
  /* text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5); */
}

.content4 ul li .icon {
  font-size: 4rem;
  color: #ffffff;
}

.content4 ul li .title {
  font-size: xx-large;
  font-weight: bolder;
}

.content4 ul li .descr {
  text-indent: 50px;
  font-size: large;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 1px; /* Slightly increased letter spacing */
}


/* Values */

.content5 {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(254, 252, 255);
  --accent-color: #FF5733;
  /* Assuming you have an accent color */
  display: grid;
  align-content: center;
  gap: 32px;
  padding: 32px;
  font-family: "Jura", sans-serif;
  color: var(--color);
  background: var(--bgColor);
  box-sizing: border-box;
  /* Ensure padding is included in the width */
  border-radius: 20px;
  margin: 20px;
}

.content5 h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: xx-large;
  font-weight: bolder;
}

.content5 ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  gap: 32px;
  list-style: none;
  width: 100%;
  /* Ensure the list does not exceed the container width */
  box-sizing: border-box;
}

.content5 ul li {
  justify-self: center;
  display: grid;
  grid-template:
    "icon"
    "line"
    "dot"
    "title"
    "descr" 1fr;
  justify-items: center;
  align-items: flex-start;
  text-align: center;
  box-sizing: border-box;
}

.content5 ul li .icon {
  grid-area: icon;
  width: 96px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 40px;
  border: 6.4px solid var(--bgColor);
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: -8px 8px 16px rgba(0, 0, 0, 0.45),
    inset -4px 4px 8px rgba(0, 0, 0, 0.45);
}

.content5 ul li:nth-child(odd) .icon {
  color: #f7f7f7;
}

.content5 ul li:nth-child(even) .icon {
  color: #f7f7f7;
}

.content5 ul li::before {
  content: "";
  grid-area: line;
  height: 32px;
  border-right: 2px dotted currentColor;
  color: #292929;
}

.content5 ul li::after {
  content: "";
  grid-area: dot;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #292929;
  justify-self: center;
  margin-bottom: 8px;
  color: #292929;
}

.content5 ul li .title {
  grid-area: title;
  margin-block: 8px;
  font-size: 20.8px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  box-sizing: border-box;
}




/* Video */

.content6 {
  /* background-color: rgba(245, 245, 245); */
  display: grid;
  grid-template-areas: "vihead vihead vihead vihead"
    "Video1 Video2 Video3 Video4";
  grid-template-columns: repeat(4, 1fr);
  /* Four columns with equal width */
  grid-template-rows: auto;
  gap: 20px;
  /* Adjust gap as needed */
  /* width: 95%; */
  /* border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 4px #434343; */
  margin: 20px;
  overflow: hidden;
  /* Ensure no overflow */
  padding: 20px;
  border: 3px solid #FEFCFF;
  border-radius: 10px;
}

.video-head {
  grid-area: vihead;
}

.video-head h2 {
  color: #ff671f;
  text-align: center;
}

.video-head p {
  color: #292929;
  text-align: center;
  font-size: large;
  font-weight: 500;
}

.video-card {
  width: 100%;
  /* Ensure video card fills its grid cell */
  height: 0;
  padding-bottom: 56.25%;
  /* Aspect ratio 16:9 for responsive resizing */
  position: relative;
}

.video-card iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;

}


/* Content 7 Counter */

.content7 {
  background-color: #f7f7f7;
  border-radius: 10px;
  margin: 20px;
}

.content7 .container {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */

}

.content7 .row {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.content7 .col {
  flex: 1;
  padding: 10px;
  text-align: center;
}

.content7 .counter {
  background-color: #FEFCFF;
  padding: 20px 0;
  border-radius: 5px;
}

.content7 .count-title {
  color: #ff671f;
}

.content7 .count-text {
  color: #1fb7ff;
}


/* WhatsApp Chat Styles */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-chat img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  cursor: pointer;
}

.whatsapp-chat img:hover {
  transform: scale(1.1);
}

#whatsapp-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#whatsapp-popup.hidden {
  display: none;
}

#whatsapp-message {
  width: 250px; /* Increased width */
  height: 40px; /* Increased height */
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px; /* Increased font size */
}

#send-button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px 15px; /* Adjusted padding */
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#send-button:hover {
  background-color: #20c256;
}




/* Footer */

.footer-logo img {
  width: 150px;
}

.footer {
  /* width: 99%; */
  /* border: 5px solid #ffffff; */
  /* border-radius: 10px; */
  /* box-shadow: 0 0 4px #434343; */
  margin-top: 10px;
  background-color: #007db8;

}

.footer-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  /* background-color: #ff671f; */
  /* border: 5px solid #ffffff; */
  /* border-radius: 10px;
    box-shadow: 0 0 4px #434343; */
  padding: 5px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ffffff;
}

.footer a {
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s;
}

.footer a:hover {
  color: #292929;
}

.navlink-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-content: center;
  border-right: 1px solid #ffffff;
  padding: 5px;

}

.address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  align-content: center;
  color: #ffffff;
  transition: all 0.3s;
  border-right: 1px solid #ffffff;

}

.address:hover {
  color: #292929;

}

.footer-1 .social-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-1 .social-footer i {
  font-size: 40px;
  color: #ffffff;
  transition: all 0.3s;

}

.footer-1 .social-footer i:hover {
  color: #292929;
}


/* Copywrite */

.copywrite {
  display: flex;
  gap: 10px;
  background-color: #292929;
  /* border: 5px solid #ffffff; */
  /* border-radius: 10px; */
  padding: 5px;
  /* width: 99.5%; */
  /* margin-top: 5px; */
  display: flex;
  justify-content: center;
  color: #ffffff;
}

.copywrite a {
  text-decoration: none;
  color: #292929;

}