.container .col:first-child {
  max-width: 40%;
}

.container .col:last-child {
  max-width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


h2 {
  color: var(--main-text-color);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  text-align: center;
}

p {
  color: var(--main-text-color);
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.inverted {
  gap: 20px;
}



form {
  margin: 50px 0;
}

form .error {
  color: #ff4c4c;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

form textarea,
form input {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  outline-color: #2e6ce1;
  padding: 10px 20px;
  margin: 5px 0px;
  border: none;
  width: 100%;
}

textarea::placeholder,
input::placeholder {
  color: #888888;
  font-size: 16px;
  font-weight: 500;
}

form textarea {
  height: 150px;
  max-height: 150px;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  border: none;
}

form button {
  color: var(--main-text-color);
  font-family: 'sansation', sans-serif;
  font-size: 18px;
  font-weight: bold;
  outline-color: #2e6ce1;
  padding: 10px;
  margin: 10px 0px;
  border: none;
  width: 100%;
  background-color: #2e6ce1;
  color: white;
}

form button:hover {
  cursor: pointer;
}




@media all and (min-width: 300px) and  (max-width: 479px) {
  .single .row {
    flex-direction: column;
  }

  .container .col:first-child,
  .container .col:last-child {
    width: 100%;
    max-width: 100%;
  }
}

@media all and (min-width: 480px) and (max-width: 767px) {
  .container .col:first-child {
    width: 40%;
    max-width: 100%;
  }

  .container .col:last-child {
    width: 60%;
    max-width: 100%;
  }
}

@media all and (min-width: 768px) and (max-width: 1200px) {
  .container .col:first-child {
    max-width: 60%;
  }

  .container .col:last-child {
    max-width: 40%;
  }
}


@media all and (min-width: 640px) and (max-width: 768px) {
  .container .col:first-child {
    max-width: 60%;
    width: 60%;
  }

  .container .col:last-child {
    max-width: 40%;
    width: 40%;
  }

  h2 {
    font-size: 40px;
  }

  p {
    font-size: 40px;
  }
}

@media all and (max-width: 640px) {
  .inverted {
    flex-direction: column-reverse !important;
  }

  .container .col:first-child {
    max-width: 100%;
    width: 100%;
  }

  .container .col:last-child {
    max-width: 100%;
    width: 100%;
  }

  h2 {
    font-size: 40px;
  }

  p {
    font-size: 40px;
  }
}
