body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F5F5F5;
  font-family: 'ravi';
  color: #424242;
  min-height: 100vh;
  min-height: 100dvh;
}

p,
h1 {
  margin: 0;
}

a {
  text-decoration: none;
}

main {
  width: 100%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.section-holder {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 35px;
  height: 100%;
  padding: 20px 0;
  overflow-y: auto;
}

main section {
  width: 280px;
  max-width: 1920px;
}

.contact-ways-holder,
.contact-ways-info {
  width: 100%;
}

.contact-ways-info > div {
  margin-top: 30px;
}

.contact-ways,
.short-text {
  width: 100%;
  line-height: 2;
  text-align: right;
  font-size: 18px;
  padding: 19px 20px;
  background-color: #fff;
  text-align: justify;
  border-radius: 15px;
  box-shadow: 7px 7px 10px 0px rgba(34, 151, 153, 0.05),
    5px 5px 7px 0px rgba(34, 151, 153, 0.05);
}

.contact-ways-holder p,
.contact-ways-holder h1 {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}

.contact-ways-holder p:first-child,
.contact-ways-holder h1,
.tel {
  font-weight: bold;
}

.linked-in {
  direction: ltr;
}

.contact-ways-info>div {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.ticket-form {
  width: 280px;
  padding: 19px 14px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 7px 7px 10px 0px rgba(34, 151, 153, 0.05),
    5px 5px 7px 0px rgba(34, 151, 153, 0.05);
}

.ticket-form-header {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.ticket-form-ues {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  flex-wrap: wrap;
}

label {
  margin: 0 0 3px 0;
  font-size: 13px;
  font-weight: bold;
}

input[type=text],
textarea {
  display: block;
  background-color: #D9D9D9;
  border: none;
  border-radius: 10px;
}

textarea {
  min-height: 150px;
}

input:focus,
textarea:focus {
  outline: none;
}

.ticket-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ticket-form-inputs div input,
textarea {
  width: 100%;
}

.username input,
.email-or-tel input {
  width: 122px !important;
}

.ticket-form-subject {
  width: 100%;
}

.email-or-tel input {
  direction: ltr;
}

.ticket-form-submit {
  margin: 15px 0 0 0;
  display: flex;
  justify-content: center;
}

.ticket-form-submit input {
  padding: 8px 16px;
  background: #229799;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
}

@media only screen and (min-width: 412px) {

  .contact-ways,
  .short-text {
    width: 340px;
    padding: 19px 47px;
  }

  .ticket-form {
    width: 340px;
    padding: 19px 28px;
  }

  .username input {
    width: 126px !important;
  }

  .email-or-tel input {
    width: 146px !important;
  }

  label {
    font-size: 14px;
  }

  .ticket-form-inputs {
    gap: 10px;
  }
}

@media only screen and (min-width: 440px) {

  .contact-ways,
  .short-text {
    width: 350px;
    padding: 19px 50px;
  }

  .ticket-form {
    width: 350px;
    padding: 19px 31px;
  }

  .username input {
    width: 126px !important;
  }

  .email-or-tel input {
    width: 146px !important;
  }
}

@media only screen and (min-width: 700px) {

  .contact-ways,
  .short-text {
    width: 608px;
    padding: 19px 20px;
  }

  .ticket-form {
    width: 608px;
    padding: 19px 39px;
  }

  .ticket-form-ues {
    justify-content: space-between;
  }

  .username input {
    width: 126px !important;
  }

  .email-or-tel input {
    width: 146px !important;
  }

  .ticket-form-subject {
    width: fit-content !important;
  }

  .ticket-form-subject input {
    width: 235px !important;
  }
}

@media only screen and (min-width: 1024px) {

  .contact-ways,
  .short-text {
    width: 697px;
    padding: 19px 64px;
  }

  .ticket-form {
    width: 697px;
    padding: 19px 85px;
  }
}