/* ===== BASE ====== */
/* CONTAINER'S MAX WIDTH */
/* FONTS */
/* FONT-SIZE */
:root {
  --fontSize-regular: 1.125rem;
  --fontSize-xxlarge: 4.875rem;
  --fontSize-xxlarge-02: 4.25rem;
  --fontSize-xlarge: 3.625rem;
  --fontSize-xlarge-02: 2.375rem;
  --fontSize-large: 1.75rem;
  --fontSize-medium: 1.375rem;
  --fontSize-small: 0.875rem;
  --fontSize-xsmall: 0.5rem;
}
@media (max-width: 640px) {
  :root {
    --fontSize-regular: 0.875rem;
    --fontSize-xlarge: 2.375rem;
    --fontSize-large: 2rem;
    --fontSize-medium: 1.125rem;
    --fontSize-small: 0.875rem;
    --fontSize-xsmall: 0.5rem;
  }
}

/* LINE HEIGHT */
/* COLORS */
/* BRANDS COLOR */
/* STATUS COLOR */
/* FOR SPACING (MARGIN AND PADDING) */
/* IMAGE SPRITE */
/* ICONS */
/* RESPOND MESSAGE SECTION */
.sec-response {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sec-response {
    padding: 100px 0 150px;
  }
}
@media (max-width: 640px) {
  .sec-response {
    padding: 50px 0;
  }
}
.sec-response > div {
  width: 100%;
}
.sec-response .content {
  position: relative;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  max-width: 65%;
}
@media (max-width: 1200px) {
  .sec-response .content {
    max-width: 80%;
  }
}
.sec-response .content h1, .sec-response .content p, .sec-response .content .button--primary {
  position: relative;
  z-index: 2;
}
.sec-response .content h1 {
  margin: 0 0 15px;
  color: #212121;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  max-width: 75%;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .sec-response .content h1 {
    font-size: 1.875rem;
    max-width: unset;
  }
}
@media (max-width: 640px) {
  .sec-response .content h1 span {
    display: block;
  }
}
.sec-response .content p {
  font-family: "PT Sans", Helvetica, Arial, sans-serif;
  margin-bottom: 30px;
  font-size: 1.25rem;
  line-height: 1.4;
}
.sec-response .content p > a {
  font-weight: 600;
  color: #10398e;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.sec-response .content p > a:hover {
  color: #53a700;
}
@media (max-width: 991px) {
  .sec-response .content {
    max-width: 100%;
  }
}
.sec-response .categories-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec-response .categories-link a {
  font-size: var(--fontSize-regular);
  font-weight: 600;
  color: #10398e;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.sec-response .categories-link a:hover {
  color: #53a700;
}
.sec-response .categories-link li {
  margin-top: 20px;
  padding: 0 15px;
}
@media (max-width: 480px) {
  .sec-response .categories-link li {
    padding: 0 5px;
    text-align: center;
  }
}
.sec-response .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 50px 0 0;
}
@media (max-width: 640px) {
  .sec-response .contact-details {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sec-response .contact-details > li {
  text-align: left;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .sec-response .contact-details > li {
    padding: 0 15px;
  }
}
@media (max-width: 640px) {
  .sec-response .contact-details > li {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec-response .contact-details h2 {
  margin-bottom: 20px;
}
.sec-response .contact-details li > ul {
  display: block;
}
.sec-response .contact-details li > ul > li {
  margin-bottom: 15px;
}
.sec-response .contact-details li > a {
  font-size: 1rem;
  font-weight: 600;
  color: #10398e;
}
.sec-response .contact-details li > a:hover {
  color: #53a700;
}

.response-404 .content h1 {
  max-width: unset;
}