/* First, defining the variables as CSS Custom Properties (variables) at :root for easy reuse and maintenance */

:root {
  --base-color: #0c2e60;     /* Dark blue used for footer background and accents */
  --white-color: #ffffff;   /* White for text and buttons */
  --btn-bg: #ff3333;        /* Red used for buttons, hovers, and input background */
  --black-color: #000000;   /* Black (assumed for some elements) */
  --font-stack-1: 'Roboto', sans-serif; /* Common font family (replace if your theme uses another, e.g., 'Poppins') */
}

/* --------- Footer Area ------------- */
.footer-area {
  background-color: var(--base-color);
}

.footer-area .form-control {
  background-color: transparent;
}

.footer-area .form-group {
  margin-top: 25px;
}

.footer-area .single-footer-widget {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .footer-area .single-footer-widget {
    margin-bottom: 30px;
  }
}

.footer-area .single-footer-widget p {
  font-size: 16px;
  color: var(--white-color);
}

.footer-area .single-footer-widget h2 {
  font-size: 24px;
  color: var(--white-color);
}

@media (max-width: 991px) {
  .footer-area .single-footer-widget h2 {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .footer-area .single-footer-widget h2 {
    font-size: 18px;
  }
}

.footer-area .single-footer-widget h4 {
  margin-bottom: 23px;
  font-weight: 700;
  font-size: 24px;
  color: var(--white-color);
}

@media (max-width: 1024px) {
  .footer-area .single-footer-widget h4 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .footer-area .single-footer-widget h4 {
    margin-bottom: 15px;
  }
}

.footer-area .single-footer-widget ul li {
  margin-bottom: 10px;
}

.footer-area .single-footer-widget ul li a {
  color: #555555;
  transition: all 0.5s;
  font-size: 15px;
}

.footer-area .single-footer-widget ul li a:hover {
  color: var(--btn-bg);
}

.footer-area .single-footer-widget ul li:last-child {
  margin-bottom: 0px;
}

.footer-area .single-footer-widget .form-wrap {
  margin-top: 25px;
}

.footer-area .single-footer-widget input {
  height: 40px;
  border: none;
  width: 65% !important;
  font-weight: 400;
  padding-left: 20px;
  border-radius: 0;
  font-size: 13px;
  color: var(--white-color) !important;
  border: 0px solid transparent;
  font-family: var(--font-stack-1);
  background-color: var(--btn-bg);
}

.footer-area .single-footer-widget input:focus {
  outline: none;
  box-shadow: none;
}

.footer-area .single-footer-widget #mc_embed_signup {
  margin-top: 25px;
}

.footer-area .single-footer-widget ::placeholder {
  color: var(--white-color) !important;
}

.footer-area .single-footer-widget .click-btn {
  background-color: var(--btn-bg);
  color: var(--white-color);
  border-radius: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 8px 20px;
  border: 0;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-stack-1);
  position: relative;
  left: 0;
}

.footer-area .single-footer-widget .click-btn:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 375px) {
  .footer-area .single-footer-widget .click-btn {
    margin-top: 10px;
  }
}

@media (min-width: 400px) {
  .footer-area .single-footer-widget .click-btn {
    left: -50px;
  }
}

.footer-area .footer_1 img {
  margin-bottom: 35px;
}

.footer-area .footer_1 p {
  margin-bottom: 15px;
}

.footer-area .footer_2 .social_icon {
  margin-top: 27px;
}

.footer-area .footer_2 .social_icon a {
  color: #cccccc;
  font-size: 14px;
  margin-right: 20px;
}

.footer-area .footer_3 .footer_img .single_footer_img {
  width: 30%;
  float: left;
  margin: 1%;
  position: relative;
  z-index: 2;
}

@media (max-width: 479px) {
  .footer-area .footer_3 .footer_img .single_footer_img {
    /* empty in original */
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer-area .footer_3 .footer_img .single_footer_img {
    width: 15%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer_3 .footer_img .single_footer_img {
    width: 10%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .footer-area .footer_3 .footer_img .single_footer_img {
    width: 10%;
  }
}

.footer-area .footer_3 .footer_img .single_footer_img:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
}

.footer-area .footer_3 .footer_img .single_footer_img i {
  text-align: center;
  position: absolute;
  top: 41%;
  margin: 0 auto;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 2;
  opacity: 0;
}

.footer-area .footer_3 .footer_img .single_footer_img:hover:after {
  opacity: 0.5;
}

.footer-area .footer_3 .footer_img .single_footer_img:hover i {
  opacity: 1;
}

.footer-area .contact_info {
  position: relative;
  margin-bottom: 20px;
}

.footer-area .contact_info:last-child {
  margin-bottom: 0px;
}

.footer-area .contact_info p {
  margin-bottom: 26px;
}

.footer-area .contact_info p a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-area .contact_info p {
    margin-bottom: 15px;
  }
}

.footer-area .contact_info p span {
  color: #0c2e60;
  font-size: 16px;
}

.footer-area .btn {
  background-color: var(--white-color);
  color: var(--white-color);
  width: 40px;
  border-radius: 0px;
  height: 40px;
  padding: 0;
  border-radius: 2px !important;
}

@media (max-width: 991px) {
  .footer-area .btn {
    margin-top: 0;
  }
}

.footer-area span.ti-heart {
  font-size: 12px;
  margin: 0px 2px;
}

.footer-area .copyright_part_text {
  margin-top: 100px;
}

.footer-area .copyright_part_text p {
  font-size: 15px;
}

@media (max-width: 479px) {
  .footer-area .copyright_part_text {
    margin-top: 20px;
    text-align: center;
  }
  .footer-area .copyright_part_text p {
    font-size: 13px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer-area .copyright_part_text {
    text-align: center;
    margin-top: 20px;
  }
  .footer-area .copyright_part_text p {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-area .copyright_part_text {
    margin-top: 42px;
    text-align: center;
  }
}

.footer-area .copyright_part_text a {
  color: var(--btn-bg);
}

.footer-area .input-group {
  border: 1px solid #dedede;
  padding: 5px;
}

.footer-area .input-group ::placeholder {
  font-size: 13px;
  color: var(--white-color);
}

.footer-area .input-group i {
  color: var(--base-color);
}

.footer-area .footer-text {
  color: var(--white-color);
}

.footer-area .footer-text a,
.footer-area .footer-text span {
  color: var(--white-color);
}

.footer-area .social_icon {
  text-align: right;
}

@media (max-width: 991px) {
  .footer-area .social_icon {
    text-align: center;
    margin-top: 20px;
  }
}

.footer-area .social_icon a {
  /* background-color: #fe3233; */
  /* color: var(--white-color); */
  /* color: #0f0f0f; */
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin-left: 7px;
  transition: all .5s;
}

.footer-area .social_icon a:hover {
  /* background-color: var(--white-color); */
  /* color: var(--base-color); */
}

.footer-area .button-contactForm {
  color: var(--black-color);
  background-color: var(--white-color);
  padding: 8.5px 25px;
  margin-left: -3px;
}

.footer-area .button-contactForm i {
  margin-left: 10px;
}

/* --------- End Footer Area ------------- */