body::-webkit-scrollbar-thumb {
  background: linear-gradient(#4400c5, #4400ab);
}

.contact {
  width: 100%;
  height: 100vh;
  margin-top: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35%;
}

.contact-wrapper {
}

.contact-content-wrapper {
  max-width: 150rem;
  display: flex;
}
.contact-wrapper h1 {
  font-family: "Mooli", cursive;
  font-size: 6rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #393453;
  margin-bottom: 8rem;
  text-align: center;
}
.contact-address {
  width: 50%;
  box-shadow: 0 2rem 6rem rgba(130, 162, 255, 0.3);
  border-radius: 1rem;
  padding: 12rem;
  margin-right: 10rem;
}
.contact-address h3 {
  font-size: 3rem;
  font-family: "Croissant One", cursive;
  color: #5e728f;
  margin-bottom: 1.8rem;
}

.contact-address p {
  font-size: 1.8rem;
  color: #889cb9;
  line-height: 1.8;
}

.contact-address:nth-child(1) div {
  margin-top: 3rem;
}

.mail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mail i {
  width: 10rem;
  height: 10rem;
  font-size: 4rem;
  background-color: #fff;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  margin-right: 2rem;
  background: linear-gradient(#fff, #1259dd 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mail p {
  font-size: 2rem;
  font-weight: bold;
}

.phone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.phone i {
  width: 10rem;
  height: 10rem;
  font-size: 4rem;
  background-color: #fff;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  margin-right: 2rem;
  background: linear-gradient(#fff, #fa751c 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.phone p {
  font-size: 2rem;
  font-weight: bold;
}

.location {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.location i {
  width: 10rem;
  height: 10rem;
  font-size: 4rem;
  background-color: #fff;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  margin-right: 2rem;
  background-color: #8430ea;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.location p {
  font-size: 2rem;
  font-weight: bold;
}

.direction-btn {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border: none;
  padding: 2rem 4rem;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.1);
  background-color: #fff;
  color: #5e728f;
  cursor: pointer;
  transition: all 0.3s;
}

.direction-btn a:link {
  text-decoration: none;
  color: #5e728f;
}

.direction-btn:hover,
.direction-btn:hover a {
  background-color: #4b8cfb;
  color: #fff;
  text-decoration: none;
}

.map {
  width: 50%;
}

/* Form */
.form {
  width: 50%;
}
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.1);
  padding: 10rem 15rem;
}

h1 {
  font-family: "Mooli", cursive;
  font-weight: 600;
  font-size: 72px;
  color: white;
  text-align: center;
}

h4 {
  font-family: "Roboto", sans-serif, "arial";
  font-weight: 400;
  font-size: 20px;
  color: #9b9b9b;
  line-height: 1.5;
}

/* ///// inputs /////*/

input:focus ~ label,
textarea:focus ~ label,
input:valid ~ label,
textarea:valid ~ label {
  font-size: 0.75em;
  color: #fff;
  top: -5px;
  -webkit-transition: all 0.225s ease;
  transition: all 0.225s ease;
}

.styled-input {
  float: left;
  width: 293px;
  margin: 1rem 0;
  position: relative;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .contact-content-wrapper {
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .styled-input {
    width: 100%;
  }
}

.styled-input label {
  color: #fff;
  padding: 1.3rem 30px 1rem 30px;
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}

.styled-input.wide {
  width: 650px;
  max-width: 100%;
}

input,
textarea {
  padding: 30px;
  border: 0;
  width: 100%;
  font-size: 1.8rem;
  background-color: #4b8cfb;
  /* background-color: #ff45b9; */
  color: #fff;
  border-radius: 4px;
}

input:focus,
textarea:focus {
  outline: 0;
}

input:focus ~ span,
textarea:focus ~ span {
  width: 100%;
  -webkit-transition: all 0.075s ease;
  transition: all 0.075s ease;
}

textarea {
  width: 100%;
  min-height: 15em;
}

.input-container {
  width: 650px;
  max-width: 100%;
  margin: 20px auto 25px auto;
}

.submit-btn {
  float: right;
  padding: 7px 35px;
  border-radius: 60px;
  display: inline-block;
  background-color: #4b8cfb;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06), 0 2px 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.submit-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.09);
}

@media (max-width: 768px) {
  .contact-content-wrapper {
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .submit-btn {
    width: 100%;
    float: none;
    text-align: center;
  }
}

input[type="checkbox"] + label {
  color: #ccc;
  font-style: italic;
}

input[type="checkbox"]:checked + label {
  color: #f00;
  font-style: normal;
}

.direction-btn {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border: none;
  padding: 2rem 4rem;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.1);
  background-color: #fff;
  color: #5e728f;
  cursor: pointer;
  transition: all 0.3s;
}

.direction-btn a {
  text-decoration: none;
  color: #5e728f;
}

.direction-btn:hover,
.direction-btn:hover a {
  background-color: #4b8cfb;
  color: #fff;
  text-decoration: none;
}
/* End Form */
