.c_footer_area {
	display: flex;
   padding-bottom: 50px;
   padding-top: 100px;
	width: 100%;
	justify-content: center;
   background-color: transparent;
}
.c_footer_inner {
   width: 95%;
   max-width: 1100px;
   gap: 80px;
   display: flex;
   flex-direction: column;
}
.c_footer_top {
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.c_footer_top .c_footer_logo {
   height: 60px;
   width: auto;
}
.c_footer_top_socials {
   display: flex;
   gap: 10px;
   width: 200px;
}
.c_footer_top_socials a {
   text-decoration: none;
   cursor: pointer;
}
.c_footer_top_socials a img {
   height: 35px;
   width: auto;
   padding: 5px;
   transition: 250ms ease-in-out;
}
.c_footer_top_socials a:hover img {
   padding: 0px;
   transition: 250ms ease-in-out;
}
.c_footer_top_contact {
   display: flex;
   align-items: center;
   gap: 10px;
   color: black;
   font-size: 1.5rem;
   text-decoration: none;
   cursor: pointer;
}
.c_footer_top_contact img {
   height: 35px;
   width: auto;
   padding: 3px;
   transition: 250ms ease-in-out;
}
.c_footer_top_contact:hover img {
   padding: 0px;
   transition: 250ms ease-in-out;
}

.c_footer_middle {
   display: flex;
   justify-content: space-between;
   gap: 35px;
}
.c_footer_middle_section {
   display: flex;
   flex-direction: column;
   gap: 8px;
}
.c_footer_middle_section h4 {
   font-size: 2.2rem;
   text-transform: uppercase;
}
.c_footer_middle_section_links {
   display: flex;
   flex-direction: column;
   gap: 6px;
}
.c_footer_middle_section_links a {
   text-decoration: none;
   color: rgb(105, 105, 105);
   font-size: 1.6rem;
   transition: 250ms ease-in-out;
}
.c_footer_middle_section_links a:hover {
   color: #986536;
   transition: 250ms ease-in-out;
}
.c_footer_middle_payments {
   display: flex;
   flex-direction: column;
   top: 40px;
   position: relative;
   gap: 15px;
}
.c_footer_middle_payments img {
   height: 35px;
   width: 106px;
}
.c_footer_top_socials a:last-child {
   display: none;
}

@media only screen and (max-width: 750px) {
   .c_footer_top_contact {
      display: none;
   }
   .c_footer_top_socials a:last-child {
      display: block;
   }
   .c_footer_top {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
   }
   .c_footer_top_socials {
      width: auto;
      order: 2;
   }
   .c_footer_middle {
      flex-direction: column;
   }
   .c_footer_middle_section h4 {
      font-size: 2.8rem;
   }
   .c_footer_middle_section_links a {
      font-size: 2.1rem;
   }
   .c_footer_inner {
      width: 85%;
   }
   .c_footer_top .c_footer_logo {
      height: 100px;
      width: auto;
   }
   .c_footer_middle {
      gap: 50px;
   }
   .c_footer_middle_payments {
      top: 0px;
   }
}