/********** Footer CSS Starts **********/  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #eeeeee;
  font-family: "Open Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

footer {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 80px;
  background-color: #002347;
}

.footercontainer {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper .footer-widget {
  width: calc(20% - 80px);
  margin: 0 5px 50px;
  padding: 0 5px;
}

.wrapper .footer-widget:nth-child(1) {
  width: calc(38% - 10px);
  margin-right: 5px;
}

.wrapper .footer-widget .logo {
  margin-bottom: 30px;
  vertical-align: middle;
  width: 100px;
  height: auto;
}


.wrapper .footer-widget p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
  color: #72737d;
  width: 420px;
  text-align: justify;
}

.wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wrapper .footer-widget .socials li {
  list-style: none;
}

.wrapper .footer-widget .socials li a {
  width: 33px;
  height: 33px;
  margin-right: 10px;
  color: #ffffff;
  background-color: rgba(3, 127, 243, 0.5);
  border-radius: 50%;
  font-size: 20px; /* Adjusted font-size */
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .socials li a:hover {
  background-color: #037ef3;
}

.wrapper .footer-widget h6 {
  position: relative;
  color: #fff;
  margin: 10px 0 35px;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
}

.wrapper .footer-widget h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px; /* Set the desired width of the line */
  height: 2px;
  background-color: #fff;
}

.wrapper .footer-widget .links li {
  list-style: none;
}

.wrapper .footer-widget .links li a {
  color: #72737d;
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 32px;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .links li a:hover {
  color: #fff;
}

.copyright-wrapper {
  padding: 20px 0;
  border-top: 1px solid rgba(88, 89, 120, 0.4);
}

.copyright-wrapper p {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

/* Media Queries */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: calc(50% - 30px);
  }
  .copyright-wrapper p {
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: 100%;
    margin: 0 10px 50px;
  }
  .wrapper .footer-widget p {
    width: 100%;;
  }
}
body {
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
}