.container {
  background-color: #EFEFEF;
  width: 100%;
  margin: 0 auto;
}

.footer-logo {
  margin-left: 20px;
  margin-bottom: 25px;
}
.footer-logo .tmart-logo {
  margin-top: 45px;
}

/*=== START OF ADDRESS SECTION ===*/
.address-section {
  margin: 0 0 50px 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.address-section .location, .message, .phone {
  display: flex;
  font-size: 16px;
  column-gap: 15px;
  font-weight: 500;
}
/*=== END OF ADDRESS SECTION ===*/

/*=== START OF SUBSCRIBE SECTION ===*/
.subscribe-section {
  /* width: 320px; */
  font-family: 'Poppins', sans-serif;
  margin: 0 20px 35px;
}
.subscribe-section div {
  margin-bottom: 30px;
  width: 100%;
  font-weight: 500;
}
form {
  display: flex;
  align-items: center;
}
form .email-input {
  width: 287px;
  height: 40px;
  border: 0.4px solid #D9D9D9;
  padding-left: 13px;
}
.email-input::placeholder {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}
form input:focus {
  border-color: #c59400;
  outline: none;
} 

form .submit {
  width: 49px;
  border-style: none;
  background-color: #D9D9D9;
  height: 40px;
  cursor: pointer;
  transition: 0.3s;
}
form button:hover {
  background-color: #c59400;

}
form button i:hover {
  color: #fff;
}
/*=== END OF SUBSCRIBE SECTION ===*/

/*=== COPY RIGHT SECTION ===*/
.copyright-section {
  width: 90%;
  border-top: 1px solid rgba(0, 0, 0, 0.36);
  margin: 0 auto;
  padding: 0 0 20px;
}
.copyright-text {
  display: flex;
  align-items: center;
  column-gap: 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
/*=== END OF COPY RIGHT SECTION ===*/

/*=== MOBILE VIEW ===*/
@media screen and (min-width: 400px) and (max-width: 600px) {
  .subscribe-section div {
    width: 340px;
  }
  form .email-input {
    width: 90%;
  }
}

/*=== TABLET VIEW ===*/
@media screen and (min-width: 600px) and (max-width: 900px) {
  .first-sub-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
  }
  .footer-logo {
    margin-left: 35px;
  }
  .subscribe-section div {
    width: 340px;
  }

}

/*=== DESKTOP VIEW ===*/
@media screen and (min-width: 900px) {
  .first-sub-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    width: 100%;
  }
  .footer-logo {
    margin-left: 65px;
  }
  .copyright-section {
    width: 90%;
  }
  .subscribe-section div {
    width: 340px;
  }
}