footer .container {
  width: 85%;
}
.footerTop {
  background: #121212;
  padding: 50px 0;
  clear: both;
}
.footerLogo {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 50px;
}
.footerLogo img {
  width: 200px;
}
.footer-row {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
}
.footer-col {
  width: 33.3%;
}
.footer-col ul li {
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.1;
  padding-bottom: 18px;
}
.footer-col ul li a {
  color: #fff;
  transition: .3s ease-in-out;
}
.footer-col ul li a:hover {
  color: #cf9731;
}
.footer-head {
  text-transform: uppercase;
  font-size: 1.25rem;
  padding-bottom: 18px;
  color: #fff;
  font-weight: bold;
}
.footer-detail {
  color: #fff;
  padding-bottom: 15px;
  font-family: "HoftypeCordaLight";
  font-size: 1.063rem;
  line-height: 1.5rem;
  display: flex;
}
.footer-detail span.ft-icon {
  padding-top: 3px;
  padding-right: 15px;
  width: 40px;
  display: inline-block;
}
.footer-detail.address-detail span.ft-icon {
  padding-top: 10px;
}
.footer-detail a {
  color: #fff;
  transition: .3s ease-in-out;
}
.footer-detail a:hover {
  color: #cf9731;
}
.footer-detail.care-no {
  display: block;
}
.footer-detail.care-no .ft-icon img {
  vertical-align: middle;
}
.care-no a.call {
  color: #cf9731;
  display: block;
  font-size: 1.375rem;
  margin-top: 5px;
  font-family: "HoftypeCordaBold";
  font-weight: bold;
  transition: .3s ease-in-out;
}
.care-no a.call:hover {
  text-decoration: underline;
}
.footer-form {
  position: relative;
}
.footer-form input.ft-email {
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 1px solid #fff;
  background: none;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: "HoftypeCordaRegular";
}
.footer-form .ft-submit {
  width: 40px;
  display: block;
  border: 0;
  height: 40px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  background: url("../images/submit-icon.png") no-repeat right 5px center;
  text-indent: -99px;
  margin: 0;
}
.footer-form .ft-submit:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.error-msg {
  color: red;
  font-size: 0.75rem;
  position: absolute;
  display: none;
  bottom: -10px;
}
.footer-social {
  padding: 18px 0 10px;
}
.footer-social ul li {
  display: inline-block;
  margin-right: 12px;
  padding-bottom: 0;
}
.footer-social ul li img {
  transition: 0.5s ease-in;
  position: relative;
}
.footer-social ul li:hover img {
  top: -2px
}
.social-head {
  color: #a2a2a2;
  font-size: 0.938rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.footerCopyright {
  background: #262526;
  width: 100%;
  text-align: center;
  color: #a2a2a2;
  font-size: 0.938rem;
  padding: 15px 0;
  line-height: 1.5rem;
}
#backTop {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backTop::after {
  content: "";
  background: url(../images/backTop.png) no-repeat center center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 17px;
  height: 15px;
  width: 15px;
}
#backTop:hover {
  cursor: pointer;
}
#backTop.show {
  opacity: 1;
  visibility: visible;
  border: 2px solid #c38c27;
}
.form-element:hover:focus {
  box-shadow: none;
}
.form-element:hover {
  border-color: none;
  box-shadow: none;
}
.footer-col ul li ul.sub-menu-footer {
  margin: 10px 0 0 10px;
}
.footer-col ul li ul.sub-menu-footer li {
  padding-bottom: 10px;
}
.footer-col ul li ul.sub-menu-footer li a {
  color: #ccc;
  font-size: 90%;
}
.footer-col ul li ul.sub-menu-footer li a:hover {
  color: #cf9731;
}
.footer-col ul li ul.sub-menu-footer li:last-child {
  padding-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .footerTop {
    padding: 45px 0 25px;
  }
  .footer-row {
    flex-direction: column;
  }
  .footer-col {
    width: 100%;
  }
  .footer-col:nth-child(2) {
    display: none;
  }
  .footer-head {
    display: none;
  }
  .footer-col ul {
    padding-left: 20px;
  }
  .footer-social {
    padding: 10px 0 10px;
    text-align: center;
  }
  .footer-social ul {
    padding-left: 0;
  }
  #backTop {
    right: 10px
  }
  .footer-col ul li ul.sub-menu-footer {
    padding-left: 0;
  }	
}

