@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");



footer {
  background: #0d1730;
  height: auto;
}


.contact-footer {
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  padding: 30px 0;
}

.wrapper .button-c {
  height: 40px;
  width: 40px;
  float: left;
  text-decoration: none;
  margin: 0 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

.wrapper .b1-h:hover {
  width: 210px;
}

.wrapper .b2-h:hover {
  width: 300px;
}

.wrapper .b3-h:hover {
  width: 270px;
}

.wrapper .button-c .icon-c {
  display: inline-block;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 40px;
  transition: all 0.3s ease-out;
}

.wrapper .button-c:nth-child(1):hover .icon-c {
  background: #00ae37;
}

.wrapper .button-c:nth-child(2):hover .icon-c {
  background: #1da1f2;
}

.wrapper .button-c:nth-child(3):hover .icon-c {
  background: #e1306c;
}

.wrapper .button-c .icon-c i {
  font-size: 20px;
  line-height: 40px;
  transition: all 0.3s ease-out;
}

.wrapper .button-c:hover .icon-c i {
  color: #fff;
}

.wrapper .button-c span {
  font-size: 17px;
  font-weight: 500;
  line-height: 40px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}

.wrapper .button-c:nth-child(1) span {
  color: #00521a;
}

.wrapper .button-c:nth-child(2) span {
  color: #00436d;
}

.wrapper .button-c:nth-child(3) span {
  color: #82012c;
}

.wrapper .button-c:nth-child(4) span {
  color: #333;
}

.wrapper .button-c:nth-child(5) span {
  color: #ff0000;
}




/* follow style starts here  */
.follow-footer{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}

.center ul{
  list-style: none;
  position: relative;
  display: inline-block;
}
.center ul .text{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #1f7a7a;
  color: #eee;
  line-height: 50px;
  border-radius: 50px;
  font-size: 22px;
  pointer-events: none;
  text-align: center;
  transition: opacity .5s .75s ease-out;
}
.center ul:hover .text{
  opacity: 0;
  transition: opacity .5s .125s ease-out;
}
.center ul li{
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #1f7a7a;
  text-align: center;
  line-height: 55px;
  margin: 0 -16px;
  cursor: pointer;
  border-radius: 0px;
  transition: background-color .5s ease-out,
              border-radius .5s .25s ease-out,
              margin .5s .25s ease-out;
}
.center ul li:hover{
  background: #1a6565;
}
.center ul li i{
  color: #eee;
  font-size: 22px;
  opacity: 0;
  transition: opacity 1.7s;
}
.center ul:hover li i{
  opacity: 1;
}
.center ul li:nth-child(1){
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
.center ul li:nth-child(5){
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}
.center ul:hover li{
  border-radius: 50px;
  margin: 0 3px;
}


.trademark{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px 0;
}

.trademark>p{
    border-right: 1px solid gray;
    margin-right: 10px;
    padding-right: 10px;
    font-family: "Dancing Script", serif;
    font-weight: 400;
}

.trademark>i{
    margin-left: 10px;
    font-size: 35px;
}


@media (max-width: 600px) {
    .button-c {
      font-size: 14px;
      padding: 8px 12px;
    }
    
    .contact-footer .wrapper {
      flex-direction: column;
      gap: 15px;
    }
  
    .follow-footer ul {
      gap: 5px;
    }
  
    .follow-footer ul li {
      font-size: 20px;
    }
  
    .trademark {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 467px) {
    /* Disable hover effects for contact footer */
    .wrapper .button-c {
      width: 100%;
    }
  
    .wrapper .button-c:hover {
      width: 100%;
    }
  
    .wrapper .button-c .icon-c {
      background-color: #fff;
    }
  
    .wrapper .button-c .icon-c i {
      color: #000;
    }
  
    .wrapper .button-c span {
      display: inline-block;
      margin-left: 10px;
      font-size: 14px;
    }
  
    /* Layout adjustment for contact footer */
    .contact-footer .wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .contact-footer .button-c {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 10px 0;
    }
  
    /* Follow section adjustments to hide the text and heart icon */
    .center ul .text, .center ul .fa-heart-circle-plus {
      display: none; /* Hides "Follow" text and heart icon */
    }

    .follow-footer{
      display: none;
    }
  
    /* Follow section adjustments to show only the icons */
    .follow-footer ul {
      display: flex;
      justify-content: center;
      gap: 5px; /* Reduced gap between buttons */
    }
  
    .follow-footer ul li {
      width: 30px; /* Smaller width */
      height: 30px; /* Smaller height */
      font-size: 16px; /* Smaller font size */
      line-height: 30px; /* Adjust line height to match button size */
    }
  
    .follow-footer ul li i {
      font-size: 16px; /* Adjust icon size */
    }
  
    /* Adjust trademark text size */
    .trademark {
      font-size: 0.8rem;
    }
  }
  
  