
.footer {
  width: inherit;
  height: fit-content;
  flex: 0 0 fit-content;
}
.footer-nav {
  background-color: var(--color-darkslategray-190);
  font-size: var(--font-size-xs);
  text-align: center;
  position:relative;
  display: inline-block;
  height:auto;
  width:100%;
}

/* left footer part */
.footer-left {
  padding-top:38px;
  padding-left: 68px;
  float:left;
  width: 220px;
}
.footer-logo {
  width: 205px;
  text-align: center;
  font-size: var(--font-size-7xl);
  font-family: var(--font-impact);
}
.footer-logo-icon {
  height: 40px;
  width: 36px;
  object-fit: cover;
  display: inline-block;
}
.footer-logo-title {
  letter-spacing: 0.39px;
  float:right;
}
.footer-logo-subtxt {
  font-size: var(--font-size-mini);
  letter-spacing: 0.08px;
  font-family: var(--font-verdana);
  text-align: left;
  margin-top:-7px;
}

/* center footer part */
.footer-center {
  margin: 0 auto;
  margin-top:65px;
  width: 600px;
}
.footer-center-line {
  border-top: 2px solid var(--color-white);
  box-sizing: border-box;
  display: inline-block;
  width: inherit;
  opacity: 0.78;
  height: 4px;
}
.footer-link {
  cursor: pointer;
  border: 0;
  color: var(--color-white);
  background-color: transparent;
  font-size: var(--font-size-sm);
  font-family: var(--font-verdana);
  display: inline-block;
  padding: 7px;
  padding-bottom: 11px;
}

/* right footer part */
.footer-right {
  padding-top:24px;
  padding-right: 68px;
  float:right;
  width: auto;
  height: auto;
}
.footer-social {
  width: 175px;
  float: right;
}
.footer-social-icon {
  cursor: pointer;
  background-color: var(--color-white);
  height: 24px;
  padding: 8px;
  object-fit: cover;
  display: inline-block;
  border-radius: 50%;
}
.footer-social-icon img {
  height: inherit;
}

/* bottom footer part */
.footer-copyright {
  background-color: var(--color-darkslategray-290);
  color: #bebebe;
  font-size: var(--font-size-xs);
  text-align: center;
  position:relative;
  padding-top: 11px;
  padding-bottom: 11px;
  min-height: 15px;
  height: auto;
  width: 100%
}
.footer-copyright-left {
  float:left;
  text-align: center;
  padding-left: 68px;
  width: 175px;
  min-height: 10px;
}
.footer-copyright-center {
  display: inline-block;
  margin: 0 auto;
  width: auto;
  height: fit-content;
}
.footer-copyright-right {
  color: var(--color-gray-250);

  float:right;
  text-align: center;
  padding-right: 68px;
  width: 175px;
}

@media screen and (max-width: 1180px) {
  .footer-right {
    width: 400px;
  }
}
@media screen and (max-width: 950px) {
  .footer-right {
    width: auto;
  }
}
@media screen and (max-width: 700px) {
  .footer-center{
    width: 85%;
  }
  .footer-center-line{
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .footer-left{
    padding-left: 10%;
  }
  .footer-right{
    padding-right: 10%;
  }
}
@media screen and (max-width: 675px) {
  .footer-copyright-left{
    display:none
  }
  .footer-copyright-center{
    padding-left: 68px;
    float: left;
  }
}

@media screen and (max-width: 499px) {
  .footer-left {
    display: none;
  }
  .footer-right {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .footer-social {
    width: 175px;
    margin: 0 auto;
    float: none;
  }
  .footer-copyright-left{
    display:none
  }
  .footer-copyright-center{
    float: none;
    width: 100%;
    padding-left: 0px;
  }
  .footer-copyright-right{
    float: none;
    display: inline-block;
    width: 100%;
    padding-right: 0px;
  }
}


/* ICON CHANGE */
.footer-logo {
  width: fit-content;
}
.footer-logo-icon {
  width: auto;
  height: 60px;
  margin-top: -10px;
}
.footer-logo-title {
  display: none;
}