@font-face {
  font-family: "Ubuntu";
  src: url("../font/Ubuntu.otf");
}
@font-face {
  font-family: "CeraProMedium";
  src: url("../font/CeraProMedium.otf");
}

* {
  font-family: CeraProMedium;
  font-size: 18px;
  color: #333;
  box-sizing: border-box;
}

body {
  background: #440059;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
header {
  background: #440059;
}
input::placeholder {
  color: #333; /* Default color */
}
textarea::placeholder {
  color: #333;
}
.header_content {
  padding: 32px;
  height: 144px !important;
  margin: 0 auto;
  gap: 52px;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
}
.logo {
  width: 300px;
}
.maintitle_box {
  float: left;
}
h1 {
  font-family: Ubuntu;
  font-size: 28px;
  color: #ffcc00;
  line-height: 0 !important;
  float: left;
}
.siaciallinks_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}
.siaciallinks_box img {
  width: 35px;
  margin-left: 2px;
}
main {
  background: #eee;
}
.main_content {
  width: 100%;
  padding: 20px 30px 40px 30px;
  margin: 0 auto;
  display: table;
}
.quote_and_example_container {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.geataquote_box {
  width: 570px;
}
h2 {
  font-family: Ubuntu;
  font-size: 33px;
  color: #440059;
  margin: 0 0 6px 0;
}
.error_box {
  width: 100%;
  display: none;
  color: #cc0000;
  border-radius: 10px;
  border: 1px solid #cc0000;
  background: #fff;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.success_box {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;
  color: #fff;
  border-radius: 10px;
  background: #009999;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.success_box.show {
  display: block; /* Show element */
  opacity: 1; /* Fully visible */
}
.user_info {
  width: 100%;
}
.name_input {
  width: 41%;
  border-radius: 10px;
  background: #ffcc00;
  border: none;
  padding: 10px 15px;
  margin-right: 5px;
}
.email_input {
  width: 57.2%;
  border-radius: 10px;
  background: #ffcc00;
  border: none;
  padding: 10px 15px;
}
.upload_description {
  padding: 10px 0;
  font-size: 17px;
  margin-left: 1px;
  margin-bottom: -7px;
}
.upload_description_uploaded {
  margin-bottom: -5px;
}
.upload_box {
  width: 100%;
  height: 116px;
  border-radius: 10px;
  border: 2px dashed #cc6600;
  background: #ffcc00;
  padding: 15px;
  margin: 10px 0 0 0;
  display: flex;
}
#file-list {
  padding-bottom: 9px;
}
.truncate{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 73%;
  margin-top: 1px;
}
.file-size{
  position: absolute;
  z-index: 100;
  right: 42px;
  top:10px;
  color: #fff;
}
.upload_box.dragover {
  background-color: #ccc;
}
.upload_button {
  height: 40px;
  color: #fff;
  border-radius: 10px;
  background: #cc6600;
  border: none;
  padding: 5px 15px;
  margin: 0;
  cursor: pointer;
  float: left;
}
.upload_button:hover {
  background: #a85400;
}
.upload_text {
  line-height: 40px;
  text-indent: 10px;
}
p,
a {
  z-index: 1000;
}
.uploaded_file {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 10px 10px 10px 15px;
  margin: 4px 0 2px 0;
  border-radius: 10px;
  background: #cc6600;
  position: relative;
}
.uploaded_file p {
  color: #fff;
}

.progress-bar {
  width: 100%;
  height: 44px;
  position: absolute;
  justify-content: center;
  align-items: center;
  background-color: #666;
  border-radius: 10px;
  margin-left: -15px;
  overflow: hidden;
}

.hidden {
  display: none;
}

.progress {
  width: 0;
  height: 100%;
  background-color: #cc6600;
  color: #fff;
  display: flex;
  padding-left: 8px;
  align-items: center;
  justify-content: center;
  transition: width 0.2s ease;
}

.delete_button {
  width: 22px;
  float: right;
  margin-bottom: 1px;
}
.textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 163px;
  line-height: 25px;
  border-radius: 10px;
  border: none;
  background: #ccc;
  padding: 10px 15px;
}
.submit_button {
  width: 100%;
  color: #fff;
  border-radius: 10px;
  background: #440059;
  border: none;
  padding: 10px 15px;
  margin: 6px 0 0 0;
  cursor: pointer;
}
.submit_button:hover {
  background: #660099;
}
.submit_button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  color: #000;
}
.exampleredraws_box {
  width: 402px;
  float: right;
}
.btn_basic {
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #660099;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 11px 16px;
  margin-top: 1px;
  text-decoration: none;
  float: left;
}
.btn_medium {
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #660099;
  padding: 11px 16px;
  margin: 1px 0 0 1px;
  text-decoration: none;
  float: left;
}
.btn_complex {
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #660099;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 11px 16px;
  margin: 1px 0 0 1px;
  text-decoration: none;
  float: left;
}
.btn_basic:hover,
.btn_medium:hover,
.btn_complex:hover {
  background: #440059;
}
.btn_basic_active {
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #440059;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 11px 16px;
  margin-top: 1px;
  text-decoration: none;
  float: left;
}
.btn_medium_active {
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #440059;
  padding: 11px 16px;
  margin: 1px 0 0 1px;
  text-decoration: none;
  float: left;
}
.btn_complex_active {
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #440059;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 11px 16px;
  margin: 1px 0 0 1px;
  text-decoration: none;
  float: left;
}
.articles_box {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-left: 0px;
  padding-bottom: 8px;
  float: left;
}
.buttons {
  margin-top: 10px;
}
article {
  width: 310px;
  font-size: 18px;
  margin-right: 35px;
  text-align: justify;
  float: left;
}
.article_last {
  margin: 0;
}
.article_fullwidth {
  width: 1008px;
  font-size: 18px;
  margin: -15px 0 0 0;
}
.article_fullwidth p {
  margin: 20px 0;
}
h3 {
  font-family: Ubuntu;
  font-size: 23px;
  text-align: left;
  color: #440059;
  margin: 0 0 20px 0;
}
.btn_readmore {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #440059;
  border-radius: 10px;
  padding: 10px 15px;
  text-decoration: none;
  float: left;
}
.btn_readmore:hover {
  background: #660099;
}
footer {
  width: auto;
  background: #440059;
}
.footer_content {
  width: 1000px;
  padding: 30px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}
.footer_content a {
  color: #ffcc00;
  text-decoration: none;
}
.footer_content a:hover {
  border-bottom: 2px solid #fff;
}

/* RESPONSIVE STARTS HERE ///////////////////////////////////// */

@media only screen and (max-width: 1092px) {
  .header_content {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .truncate{
    width: 63%;
  }
  .logo {
    margin: 0;
  }
  h1 {
    font-size: 26px;
  }
  .siaciallinks_box {
    display: none;
  }
  .main_content {
    width: 840px;
  }
  .quote_and_example_container {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 0;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 11px 15px;
  }
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .exampleredraws_box {
    margin-left: 35px;
    width: 400px;
  }
  .geataquote_box {
    width: 400px;
  }
  .name_input {
    width: 172px;
  }
  .email_input {
    width: 216px;
  }

  article {
    width: auto;
    padding-bottom: 20px;
    margin: 0;
  }
  .articles_box {
    margin-bottom: -10px;
    display: block;
  }

  .footer_content {
    width: 840px;
  }
  .article_fullwidth {
    margin-bottom: -32px;
    width: 832px;
  }

  .article_fullwidth img {
    width: 832px;
  }
  .textarea {
    min-height: 142px;
    font-size: medium;
  }
  .submit_button {
    margin-top: 6.5px;
  }
}
@media (max-width: 920px) {
  .header_content {
    justify-content: space-between;
    margin: 0;
    gap: 0;
  }
  h1 {
    font-size: 24px;
    padding: 0;
  }
  .delete_button{
    margin-bottom: 2px;
  }
}
@media (max-width: 889px) {
  .logo {
    margin: 0;
  }
  .header_content {
    height: 144px !important;
  }
  .truncate{
    width: 682px;
  }
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 11px 62px;
    font-size: large;
  }
  .articles_box {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px !important;
  }
  .main_content {
    width: 100%;
  }
  .footer_content {
    width: 100%;
  }
  .geataquote_box {
    width: 100%;
  }
  .quote_and_example_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .exampleredraws_box {
    margin-top: 4%;
    width: 100%;
  }
  .name_input {
    width: 38%;
  }
  .email_input {
    width: 60.5%;
  }
  .maintitle_box h1 {
    margin: 0;
  }
  h1 {
    font-size: 22px;
  }
  .article_fullwidth {
    width: 99%;
  }
}
@media (max-width: 820px) {
  h1 {
    font-size: 20px;
    margin-left: -4px;
  }
}
@media only screen and (max-width: 768px) {
  .header_content {
    max-width: 100%;
    height: 250px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .truncate{
    width: 70%;
    max-width: 70%;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 11px 42px;
    font-size: large;
  }
  .buttons {
    width: 100%;
  }
  .uploaded_file {
    width: 99.5%;
  }
  .upload_description {
    font-size: 16px;
  }
  .logo {
    width: 100%;
  }
  .maintitle_box {
    display: flex;
    margin: 0;
    padding: 6px 0px;
    text-align: center;
  }
  .textarea {
    width: 99.5%;
    min-width: 60%;
    max-width: 100%;
  }
  h1 {
    font-size: 28px;
    padding-bottom: 10px;
    padding-top: 16px;
    text-align: center;
    line-height: 0;
    float: none;
  }
  h2 {
    font-size: 28px;
  }
  .quote_and_example_container {
    flex-direction: column;
  }
  .main_content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .upload_container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .user_info {
    display: flex;
    width: 100%;
  }
  .email_input {
    width: 58%;
  }
  .name_input {
    width: 40%;
  }
  .geataquote_box {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .upload_box {
    width: 99.5%;
  }
  .uploaded_file p {
    font-size: 18px;
  }
  .exampleredraws_box {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .submit_button {
    max-width: 99.5%;
  }

  .footer_content {
    max-width: 100%;
  }
  .article_fullwidth img {
    width: 408px;
  }

  .error_box,
  .success_box {
    width: 100%;
  }
  .success_box {
    font-size: 16px;
  }
}
#table {
  width: 100%;
}
@media (max-width: 690px) {
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 12px 40px;
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
  }
}
@media (max-width: 660px) {
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 11px 32px;
    font-size: 16px;
  }
}
@media (max-width: 592px) {
  h1 {
    font-size: 20px;
  }
  .truncate{
    width: 65%;
  }
  .name_input {
    width: 37%;
  }
  .email_input {
    width: 60%;
  }
  .upload_description {
    font-size: 18px;
  }
  .error_box {
    width: 99.5%;
    font-size: medium;
  }
  .upload_text {
    font-size: large;
  }
  .footer_content {
    font-size: 14px;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    font-size: 16px;
    padding: 11px 20px;
  }
  @media (max-width: 510px) {
    h1 {
      font-size: 20px;
    }
    .truncate{
      max-width: 65%;
      width: 65%;
    }
    .btn_basic,
    .btn_basic_active,
    .btn_medium,
    .btn_medium_active,
    .btn_complex,
    .btn_complex_active {
      font-size: 14px;
      padding: 11px 20px;
    }
  }
}
@media (max-width: 460px) {
  .header_content {
    height: 100% !important;
  }
  .truncate{
    width: 60%;
  }
  h1 {
    font-size: 17px;
  }
  h2 {
    font-size: 28px;
  }
  .email_input,
  .name_input {
    font-size: 16px;
  }
  .email_input {
    width: 59%;
  }
  .upload_text {
    font-size: smaller;
  }
  .upload_description {
    font-size: 14px;
  }
  .uploaded_file p {
    font-size: 16px;
  }
  .error_box,
  .success_box {
    font-size: medium;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 11px 16px;
  }
  .footer_content {
    font-size: small;
  }
  .success_box {
    font-size: 14px;
  }
  .upload_box,
  .textarea,
  .submit_button {
    width: 99%;
  }
}
@media (max-width: 426px) {
  h1 {
    font-size: 15px;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    padding: 11px 8px;
  }
  .error_box {
    font-size: 15px;
  }
  .truncate{
    width: 55%;
  }
}
@media (max-width: 386px) {
  .upload_text {
    font-size: 12px;
  }
  .truncate{
    width: 55%;
  }
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    font-size: 12px;
    padding: 11px 11px;
  }
  .textarea {
    font-size: medium;
  }
  .email_input {
    width: 59%;
  }
  h2 {
    font-size: 24px;
  }
  .error_box {
    font-size: 13px;
  }
  .success_box {
    font-size: small;
  }
}
@media (max-width:359px) {
  .btn_basic,
  .btn_basic_active,
  .btn_medium,
  .btn_medium_active,
  .btn_complex,
  .btn_complex_active {
    font-size: 12px;
    padding: 11px 8px;
  }
  .truncate{
    width: 48%;
  }
  .upload_button{
    font-size: medium;
    padding: 4px 8px;
  }
  .name_input, .email_input{
    font-size: small;
  }
  .textarea{font-size: small;}
}
