footer{
    font-family: 'Zodiak', serif;
}

ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  width: 100%;
}
.footer-cta > div {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.footer-cta > div > div {
  display: flex;
  justify-content: center;
}
.cta-text a{
  color: #7e7e7e;
  text-decoration: none;
  transition: all 0.8s ease;
}
.cta-text a:hover{
  text-decoration: underline #9Ad0c2;
}

.footer-logged-in-message p{
    color: #7e7e7e;
}

.footer-logged-in-message p a{
    color: #9Ad0c2;
}

.single-cta svg {
  color: #9Ad0c2;
  height: 40px;
  width: 40px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #ecf4d5;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon{
  margin-bottom: 20px;
}
.footer-social-icon span {
  color: #9Ad0c2;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
    text-decoration: none;
    margin-right: 20px;
    padding-bottom: 20px;
}
.footer-social-icon svg {
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 38px;
  color: #ecf4d5;
  transition: all 0.5s ease;
}
.footer-social-icon svg:hover {
  color: #9Ad0c2;
  filter: drop-shadow(0 0 0.75rem #9Ad0c2)
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #9Ad0c2;
}
.footer-widget-heading h3 {
  color: #ecf4d5;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #9Ad0c2;
}
.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #9Ad0c2;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  all: unset;
  width: 100%;
  padding: 14px 28px;
  background-color: #373636;
  color: #ecf4d5;
  border: 1px solid #373636;
  border-radius: 0.5rem;
  transition: all 0.5s ease;
  border: 1px solid #373636;
  border-color: #373636;
}
.subscribe-form input:focus {
  border-color: #9Ad0c2;
}

#subscribe-form-footer{
  position: relative;
}

.subscribe-form button {
    position: absolute;
    right: 1px;
    background: #ecf4d5;
    padding: 13px 20px;
    border: 1px solid #ecf4d5;
    top: 0;
    transition: all 0.5s ease;
}
.subscribe-form button:hover {
  background-color: #9Ad0c2;
  border-color: #9Ad0c2;
}
.subscribe-form button:hover > svg{
  transform: scale(1.2);
}
.subscribe-form button svg {
  color: #393e46;
  font-size: 22px;
  transform: rotate(-6deg);
  transition: all 0.5s ease;
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: #9Ad0c2;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #9Ad0c2;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

@media (max-width: 991px) {
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-text > p{
    text-align: center;
  }
  
  .footer-cta > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 25px;
  }
  .footer-cta > div > div{
    display: flex;
    flex-direction: column;
    justify-content:  center;
  }
  .footer-social-icon > div:nth-child(1){
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-social-icon > div:nth-child(2){
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}