.page-btn {
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 6px;
  border: 0;
  padding: 20px 60px;
  margin-top: 60px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.2s;
}

.page-btn:hover {
  box-shadow: 0 20px 30px rgba(30, 30, 30, 0.2);
  transform: scale(1.05);
}

.link-btn {
  text-decoration: none;
}

.page-headline {
  font-size: 42px;
  color: #1e1e1e;
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-top: 180px;
}

.customer-care-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin-top: 60px;
}

.content-info {
  text-align: center;
}

.content-info h3 {
  font-size: 32px;
  color: #1e1e1e;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

.content-info img {
  text-align: center;
  width: 50%;
}

.page-btn {
  margin: 0 auto;
}

.form-container {
  width: 60%;
}

.form-headline {
  margin-top: 60px;
  margin-bottom: 60px;
}

.input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  outline: 0;
}

.input-field:focus {
  background-color: #fff;
  outline: 0;
}

.input-field:hover {
  border: 1px solid #e69557;
}

textarea {
  width: 100%;
  text-align: left;
  padding: 25px 20px;
  border: 1px solid #d8e2e7;
  border-radius: 6px;
  resize: horizontal;
  outline: 0;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #8f8f8f;
  font-weight: 400;
}

textarea:hover {
  border: 1px solid #e69557;
}

.input-field {
  display: block;
  color: #8f8f8f;
  text-align: left;
  width: 48%;
  padding: 20px;
  border: 1px solid #d8e2e7;
  border-radius: 6px;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.subject-field {
  width: 100%;
}

.icon-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.icon-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.icon-buttons img {
  width: 90%;
}

.icon-buttons button {
  background: 0;
  border: 0;
  width: 40px;
  height: 40px;
}

.icon-buttons i:hover {
  transform: scale(1.02);
}

.address-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 110px;
}

.plain-div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid#d8e2e7;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  transition: 0.2s;
}

.color-div {
  background-color: #e69557;
  color: #fff;
}

.plain-div h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4831d4;
  margin: 0;
  margin-bottom: 16px;
}

.para-info {
  font-size: 16px;
  color: #6b6a6a;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.color-div h3 {
  color: #fff;
}

.color-div span {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: block;
}

.color-div p {
  color: #fff;
}

.phone-div {
  margin-bottom: 20px;
}

.plain-div h4 {
  color: #8f8f8f;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.number-info {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.plain-div:hover {
  box-shadow: 0 20px 30px rgba(59, 110, 133, 0.2);
  transform: scale(1.05);
}

@media only screen and (max-width: 1250px) {
  .container {
    width: 90%;
  }
}

@media only screen and (max-width: 1100px) {
  .nav-right ul li a {
    display: none;
  }
}

@media only screen and (max-width: 820px) {
  .nav-right ul li a {
    display: none;
  }

  .address-div {
    flex-direction: column;
  }

  .plain-div {
    width: 100%;
    padding: 16px;
  }

  .content-info h3 {
    font-size: 18px;
  }

  .page-headline {
    font-size: 26px;
  }
}

@media only screen and (max-width: 500px) {
  .nav-right ul li a {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .signup-btn {
    display: none;
  }

  .page-headline {
    font-size: 24px;
    margin-top: 40px;
  }

  .page-btn {
    width: 100%;
    display: block;
  }

  .customer-care-container {
    flex-direction: column;
    margin-top: 60px;
  }

  .content-info {
    margin-bottom: 60px;
  }

  .content-info h3 {
    font-size: 24px;
  }

  .form-headline {
    font-size: 24px;
    margin-top: 40px;
  }

  .input-field {
    width: 100%;
  }

  .address-container {
    margin-top: 60px;
  }

  .address-div {
    flex-direction: column;
  }
}