/* ------------------------------------------
   Hero Section
------------------------------------------ */
.hero-section {
  background-image: url('/public/youth-for-change/webp/ycp-banner.webp');
  background-size: cover;
  background-position: center;
  height: 110vh;
  width: 100%;
  position: relative;
  margin-bottom: 0;
  z-index: -2;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 5rem;
  margin: 0;
}

.hero-title {
  font-size: 10.5rem;
  line-height: 7.5rem;
  color: white;
  font-family: var(--font-secondary);
  font-weight: 800;
  margin: 0 0 0.5rem 8rem;
  transform: translateY(3rem);
}

.hero-title::before {
  content: '';
  position: absolute;
  width: 64rem;
  height: 62rem;
  background-color: #436E55;
  opacity: 0.65;
  border-top-left-radius: 3.125rem;
  border-top-right-radius: 3.125rem;
  top: -4rem;
  left: -4rem;
  z-index: -3;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: white;
  margin: 0 0 6rem 8rem;
  max-width: 50rem;
  transform: translateY(4rem);
}

/* ------------------------------------------
   Introduction Section
------------------------------------------ */
.introduction-section {
  position: relative;
  margin: -16rem auto 6rem;
  width: 80%;
  max-width: 120rem;
  background-color: #436E55;
  padding: 2rem;
  border-radius: 5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  line-height: 2rem;
}

.intro-content p {
  font-size: 1.8rem;
  font-family: var(--font-primary);
  color: white;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* ------------------------------------------
   Philosophy Section
------------------------------------------ */
.philosophy-section {
  margin: var(--spacer-md) 0;
  text-align: left;
  padding: 2rem var(--spacer-lg);
  position: relative;
  z-index: 10 !important;
  background-color: #e1e6e6;
}

.philosophy-content {
  max-width: 100rem;
  margin: 0 auto;
  padding: var(--spacer-md);
}

.philosophy-content p {
  font-size: 2rem;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #252422;
  margin: 0;
}

/* ------------------------------------------
   Gender Boxes Section
------------------------------------------ */
.gender-boxes-section {
  margin: var(--spacer-md) 0;
  padding: 2rem var(--spacer-lg);
}

.gender-boxes-content {
  max-width: 100rem;
  margin: 0 auto;
  padding: var(--spacer-md);
}

.gender-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.gender-box {
  position: relative;
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 1.5rem;
  padding: 6rem 3rem 3rem 3rem;
  min-height: 35rem;
}

.box-header {
  position: absolute;
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.5rem 3rem;
  border-radius: 2rem;
  z-index: 2;
}

.gender-box--masculine .box-header {
  background-color: #9C3236;
}

.gender-box--feminine .box-header {
  background-color: #C74A9B;
}

.box-title {
  font-size: 3.4rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.box-content p {
  font-size: 1.87rem;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #252422;
  margin: 0;
  text-align: center;
}

.gender-conclusion {
  text-align: left;
  border-radius: 1rem;
  margin-top: 4rem;
}

.gender-conclusion p {
  font-size: 2.5rem;
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.6;
  color: #339A5E;
  margin: 0;
}

/* ------------------------------------------
   Programs Navigation Section
------------------------------------------ */
.programs-nav-section {
  margin: var(--spacer-md) 0;
  padding: 4rem var(--spacer-lg) 12rem var(--spacer-lg);
  background-color: #CAD8DB;
}

.programs-nav-content {
  max-width: 120rem;
  margin: 0 auto;
  padding: var(--spacer-md);
}

.programs-instruction {
  font-size: 1.87rem;
  font-family: var(--font-primary);
  color: #252422;
  text-align: left;
  margin-bottom: var(--spacer-lg);
  font-weight: 500;
  margin: 0 0 6rem 0;
}

.programs-boxes {
  display: flex;
  align-items: center;
  justify-content: space-around;
  
  flex-wrap: nowrap;
}

.program-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  position: relative;
}

.program-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  overflow: visible;
}

.program-image-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* First program image only */
.program-box--primary-1 .program-image-top {
  width: 75%;
  margin: auto;
}

/* Move 2nd and 3rd images up slightly */
.program-box--primary-2 .program-image-wrapper,
.program-box--primary-3 .program-image-wrapper {
  bottom: 4rem;
}


.program-circle {
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  position: relative;
}

.program-text-hover {
  position: absolute;
  bottom: -13rem  !important;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  z-index: 20;
}

.program-title {
  font-size: 4.5rem;
  
  font-family: var(--font-secondary);
  font-weight: 700;
  text-wrap: wrap;
}

.program-box--primary-1 .program-circle {
  background-color: var(--color-primary-1, #436E55);
}

.program-box--primary-2 .program-circle {
  background-color: var(--color-primary-2, #C74A9B);
}

.program-box--primary-3 .program-circle {
  background-color: var(--color-primary-3, #9C3236);
}

/* Enhanced hover effects */
.program-box--primary-1:hover .program-circle {
  background-color: transparent;
  border-color: #436E55;
  transform: scale(1.02);
}

.program-box--primary-1:hover .program-text-hover {
  opacity: 1;
  bottom: -4rem;
}

.program-box--primary-1:hover .program-title {
  color: #436E55;
}

.program-box--primary-2:hover .program-circle {
  background-color: transparent;
  border-color: #C74A9B;
 transform: scale(1.02);
}

.program-box--primary-2:hover .program-text-hover {
  opacity: 1;
  bottom: -4rem;
}

.program-box--primary-2:hover .program-title {
  color: #C74A9B;
}

/* Fix "Out of the Box" text wrapping to 2 lines */
.program-box--primary-2 .program-title {
  line-height: 1.1;
  white-space: normal;
}

.program-box--primary-3:hover .program-circle {
  background-color: transparent;
  border-color: #9C3236;
  transform: scale(1.02);
}

.program-box--primary-3:hover .program-text-hover {
  opacity: 1;
  bottom: -4rem;
}

.program-box--primary-3:hover .program-title {
  color: #9C3236;
}

/* ------------------------------------------
   Mobile: Disable Hover Effects for Programs
------------------------------------------ */
@media (max-width: 768px) {
  /* Disable all hover effects on mobile */
  .program-box:hover .program-circle,
  .program-box--primary-1:hover .program-circle,
  .program-box--primary-2:hover .program-circle,
  .program-box--primary-3:hover .program-circle {
    background-color: var(--color-primary-1, #436E55) !important;
    border-color: transparent !important;
    transform: none !important;
  }

  .program-box--primary-2:hover .program-circle {
    background-color: var(--color-primary-2, #C74A9B) !important;
  }

  .program-box--primary-3:hover .program-circle {
    background-color: var(--color-primary-3, #9C3236) !important;
  }

  .program-box:hover .program-text-hover,
  .program-box--primary-1:hover .program-text-hover,
  .program-box--primary-2:hover .program-text-hover,
  .program-box--primary-3:hover .program-text-hover {
    opacity: 0 !important;
    bottom: -13rem !important;
  }

  .program-box:hover .program-title,
  .program-box--primary-1:hover .program-title,
  .program-box--primary-2:hover .program-title,
  .program-box--primary-3:hover .program-title {
    color: inherit !important;
  }

  .program-box:hover .program-icon {
    transform: none !important;
  }

  /* Reduce section padding in mobile to normal since no hover text */
  .programs-nav-section {
    padding: 3rem var(--spacer-sm) 3rem var(--spacer-sm) !important;
  }
}

.program-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(7%) saturate(1073%) hue-rotate(314deg) brightness(96%) contrast(94%);
}

.program-box:hover .program-icon {
  transform: scale(1.2) rotate(45deg);
}

.program-box.active .program-circle {
  transform: scale(1.1);
}

.program-box.active .program-icon {
  transform: scale(1.2) rotate(45deg);
}

/* ------------------------------------------
   Program Sections
------------------------------------------ */
.program-section {
  margin: var(--spacer-md) 0;
  position: relative;
  min-height: 60vh;
  padding: 4rem var(--spacer-lg);
}

.program-section .section-title {
  max-width: 90%;
  margin: 0 auto;
}

.program-section .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 6rem;
  font-weight: var(--font-weight-bold);
  position: relative;
  margin-left: 2%;
  letter-spacing: 0.1rem;
}

.program-content {
  display: block;
  padding: 2rem 3rem;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}

/* Fixed: Full-width borders extending to screen edges */
.program-content::before {
  content: '';
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 1px;
  z-index: 1;
  top: 0;
  background-color: inherit;
}

.program-content::after {
  content: '';
  display: table;
  clear: both;
}

.program-bottom-border {
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 1px;
  z-index: 1;
  bottom: 0;
  background-color: inherit;
}

.program-image {
  float: left;
  width: 35rem;
  margin: 0 3rem 2rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.program-image img {
  width: 100%;
  max-width: 30rem;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

.program-text {
  display: block;
}

.program-text p {
  
  font-size: 1.87rem;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #252422;
  margin: 0 0 var(--spacer-md) 0;
}

.program-text h3 {
  font-size: 2.8rem;
  font-family: var(--font-primary);
  font-weight: 500;
  margin: var(--spacer-md) 0 0;
  max-width: 90%;
  line-height: 4rem;
}

/* Images Flex for Out of Box */
.images-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.images-flex picture {
  flex: 1;
}

.images-flex img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8%;
}

/* Single Image for Dismantling */
.single-image {
  margin-top: 2rem;
  text-align: center;
}

.single-image img {
  width: 100%;
  max-width: 40rem;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

.text-highlight-underline {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-style: italic;
  font-size: 3rem; 
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-decoration-skip-ink: auto;
}

/* Individual Program Section Colors */
.unboxing-gender .section-title h1 {
  color: #436E55;
}

.unboxing-gender .section-title h1::after {
  background-color: #436E55;
  left: 28rem;
}

.unboxing-gender .program-content::before,
.unboxing-gender .program-bottom-border {
  background-color: #436E55;
}

.unboxing-gender .program-text h3 {
  color: #436E55;
}

.out-of-box .section-title h1 {
  color: #C74A9B;
}

.out-of-box .section-title h1::after {
  background-color: #C74A9B;
  left: 25rem;
}

.out-of-box .program-content::before,
.out-of-box .program-bottom-border {
  background-color: #C74A9B;
}

.out-of-box .program-text h3 {
  color: #C74A9B;
}

.dismantling-box .section-title h1 {
  color: #9C3236;
}

.dismantling-box .section-title h1::after {
  background-color: #9C3236;
  left: 30rem;
}

.dismantling-box .program-content::before,
.dismantling-box .program-bottom-border {
  background-color: #9C3236;
}

.dismantling-box .program-text h3 {
  color: #9C3236;
}

/* ------------------------------------------
   Responsive Design
------------------------------------------ */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 8.5rem;
    line-height: 6.5rem;
    margin: 12rem 0 5rem 6rem;
    transform: translateY(0rem);

  }

  .hero-title::before {
    width: 50rem;
    height: 50.5rem;
    top: -1.5rem;
    left: -1.5rem;
  }

  .hero-description {
    margin: 0.5rem 0 0 6rem;
    font-size: 1.6rem;
    max-width: 45rem;
        transform: translateY(-2rem);

  }
  
  .introduction-section {
    margin: -12rem auto 6rem;
    width: 85%;
  }
  
  .intro-content p {
    font-size: 1.7rem;
  }
  
  .philosophy-content p {
    font-size: 1.8rem;
  }
  
  .gender-box-wrapper {
    gap: 3rem;
  }
  
  .program-image-wrapper {
    width: 18rem;
    height: 18rem;
  }

  .program-circle {
    width: 18rem;
    height: 18rem;
  }
  
  .program-title {
    font-size: 3rem;
  }
  
  .program-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .program-image {
    width: 30rem;
    margin: 0 2rem 2rem 0;
  }
  
  .program-text h3 {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }

  .images-flex {
    flex-direction: column;
  }

  .single-image img {
    max-width: 30rem;
  }
}

/* Tablets */
@media (max-width: 968px) {
  .hero-section {
    height: 80vh;
  }

  .hero-content {
    margin-left: 2rem;
  }

  .hero-title {
    font-size: 6.5rem;
    line-height: 5.5rem;
    margin: 10rem 0 4rem 4rem;
    transform: translateY(1rem);

  }

  .hero-title::before {
    width: 40rem;
    height: 45rem;
    top: -1.2rem;
    left: -1.2rem;
  }

  .hero-description {
    margin: 0.4rem 0 0 4rem;
    font-size: 1.4rem;
    max-width: 38rem;
    transform: translateY(-1rem);

  }
  
  .introduction-section {
    width: 90%;
    margin: -10rem auto 5rem;
    padding: 2.5rem;
    border-radius: 3rem;
  }
  
  .intro-content p {
    font-size: 1.6rem;
  }
  
  .philosophy-section {
    padding: 2.5rem var(--spacer-sm);
  }

  .philosophy-content p {
    font-size: 1.8rem;
  }

  .gender-boxes-section {
    padding: 2.5rem var(--spacer-sm);
  }
  
  .gender-box-wrapper {
    gap: 3rem;
  }
  
  .programs-nav-section {
    padding: 3rem var(--spacer-sm);
  }
  
  .programs-instruction {
    font-size: 1.6rem;
  }
  
  .program-image-wrapper {
    width: 16rem;
    height: 16rem;
  }

  .program-circle {
    width: 16rem;
    height: 16rem;
  }
  
  .program-title {
    font-size: 2.5rem;
  }
  
  .program-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .program-section {
    padding: 3rem var(--spacer-sm);
  }
  
  .program-section .section-title h1 {
    font-size: 4rem;
    margin-left: 0;
    text-align: center;
  }
  
  .program-section .section-title h1::after {
    left: 50% !important;
    transform: translateX(-50%);
    width: 15rem !important;
  }
  
  .program-text p {
    font-size: 1.7rem;
  }
  
  .program-text h3 {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
  
  .text-highlight-underline {
    font-size: 2.5rem;
  }

  .images-flex {
    gap: 0.5rem;
  }

  .single-image img {
    max-width: 25rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-content {
    margin-left: 1rem;
  }

  .hero-title {
    font-size: 4.5rem;
    line-height: 4rem;
    margin: 8rem 0 3rem 2rem;
    transform: translateY(2rem);

  }

  .hero-title::before {
    width: 28rem;
    height: 42.5rem;
    top: -1rem;
    left: -1rem;
  }

  .hero-description {
    margin: 0.3rem 0 0 2rem;
    font-size: 1.2rem;
    max-width: 26rem;
    text-align: left;
    transform: translateY(0rem);

  }
  
  .introduction-section {
    width: 95%;
    margin: -8rem auto 4rem;
    padding: 2rem;
    border-radius: 2rem;
  }
  
  .intro-content p {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .philosophy-section {
    padding: 2rem 1rem;
  }

  .philosophy-content p {
    font-size: 1.6rem;
  }

  .gender-boxes-section {
    padding: 2rem 1rem;
  }
  
  .gender-box-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gender-box {
    min-height: 25rem;
    padding: 5rem 2rem 2rem 2rem;
  }
  
  .box-content p {
    font-size: 1.5rem;
  }
  
  .gender-conclusion p {
    font-size: 2rem;
    text-align: center;
  }
  
  .programs-nav-section {
    padding: 2rem 1rem;
  }
  
  .programs-instruction {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .programs-boxes {
    flex-direction: column;
    gap: 3rem;
  }
  
  .program-image-wrapper {
    width: 14rem;
    height: 14rem;
  }

  .program-circle {
    width: 14rem;
    height: 14rem;
  }
  
  .program-title {
    font-size: 2.2rem;
  }
  
  .program-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .program-section {
    padding: 2rem 1rem;
  }
  
  .program-section .section-title h1 {
    font-size: 3rem;
    margin-left: 0;
    text-align: center;
  }
  
  .program-image {
    float: none;
    width: 100%;
    margin: 0 0 2rem 0;
    justify-content: center;
  }
  
  .program-text p {
    font-size: 1.6rem;
    max-width: 100%;
  }
  
  .program-text h3 {
    font-size: 2rem;
    line-height: 2.8rem;
    clear: none;
    max-width: 100%;
    margin: var(--spacer-md) 0 0;
    text-align: center;
  }
  
  .text-highlight-underline {
    font-size: 2.2rem;
  }

  .images-flex {
    flex-direction: column;
  }

  .single-image {
    margin-top: 1rem;
  }

  .single-image img {
    max-width: 20rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero-section {
    height: 60vh;
  }

  .hero-content {
    margin-left: 0.5rem;
  }

  .hero-title {
    font-size: 3.2rem;
    line-height: 3rem;
    margin: 6rem 0 2.5rem 1rem;
    transform: translateY(2rem);

  }

  .hero-title::before {
    width: 22rem;
    height: 36rem;
    top: -0.8rem;
    left: -0.8rem;
  }

  .hero-description {
    margin: 0.2rem 0 0 1rem;
    font-size: 1rem;
    max-width: 20rem;
    text-align: left;
    transform: translateY(0rem);

  }
  
  .introduction-section {
    padding: 1.5rem;
    margin: -6rem auto 3rem;
    width: 98%;
  }
  
  .intro-content p {
    font-size: 1.4rem;
  }
  
  .philosophy-section,
  .gender-boxes-section,
  .programs-nav-section,
  .program-section {
    padding: 1.5rem 1rem;
  }
  
  .philosophy-content p {
    font-size: 1.4rem;
  }
  
  .gender-box {
    padding: 4rem 1.5rem 2rem 1.5rem;
    min-height: 20rem;
  }
  
  .box-title {
    font-size: 2.5rem;
  }
  
  .box-content p {
    font-size: 1.3rem;
  }
  
  .gender-conclusion p {
    font-size: 1.8rem;
  }
  
  .programs-instruction {
    font-size: 1.4rem;
  }
  
  .program-image-wrapper {
    width: 12rem;
    height: 12rem;
  }

  .program-circle {
    width: 12rem;
    height: 12rem;
  }
  
  .program-title {
    font-size: 1.8rem;
  }
  
  .program-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .program-section .section-title h1 {
    font-size: 2.5rem;
  }
  
  .program-text p {
    font-size: 1.4rem;
  }
  
  .program-text h3 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  
  .text-highlight-underline {
    font-size: 1.8rem;
  }

  .single-image img {
    max-width: 15rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-content {
    margin-left: 0.25rem;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 2.5rem;
    margin: 5rem 0 2rem 0.5rem;
        transform: translateY(0rem);

  }

  .hero-title::before {
    width: 18rem;
    height: 37.5rem !important;
    top: -0.6rem;
    left: -0.6rem;
  }

  .hero-description {
    margin: 0.1rem 0 0 0.5rem;
    font-size: 0.9rem;
    max-width: 16rem;
    text-align: left;
    transform: translateY(0rem);
  }
  
  .introduction-section {
    padding: 1rem;
    margin: -5rem auto 2rem;
  }
  
  .intro-content p {
    font-size: 1.3rem;
  }
  
  .philosophy-section,
  .gender-boxes-section,
  .programs-nav-section,
  .program-section {
    padding: 1rem 0.5rem;
  }
  
  .philosophy-content p {
    font-size: 1.3rem;
  }
  
  .box-title {
    font-size: 2.2rem;
  }
  
  .box-content p {
    font-size: 1.2rem;
  }
  
  .gender-conclusion p {
    font-size: 1.6rem;
  }
  
  .programs-instruction {
    font-size: 1.3rem;
  }
  
  .program-image-wrapper {
    width: 10rem;
    height: 10rem;
  }

  .program-circle {
    width: 10rem;
    height: 10rem;
  }
  
  .program-title {
    font-size: 1.5rem;
  }
  
  .program-section .section-title h1 {
    font-size: 2.2rem;
  }
  
  .program-text p {
    font-size: 1.3rem;
  }
  
  .program-text h3 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  
  .text-highlight-underline {
    font-size: 1.6rem;
  }

  .single-image img {
    max-width: 12rem;
  }
}

/* ------------------------------------------
   Footer Social Icons Fix - Ensure Horizontal Layout
------------------------------------------ */
.footer_socials {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
  margin-bottom: 0.8rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.footer_socials picture {
  display: inline-block !important;
}

.footer_socials img {
  width: 45px !important;
  height: 45px !important;
  filter: brightness(0) invert(1) !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}

.footer_socials img:hover {
  transform: scale(1.1) !important;
  cursor: pointer !important;
}