/*Resets*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

.row {
  margin-left: 0;
  margin-right: 0; }

html {
  font-size: 66%; }

body {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  line-height: 2.5rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif; }

input, select {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 20px; }

.header {
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 7rem;
  top: 0;
  position: sticky;
  z-index: 1; }
  .header .logo-text {
    color: #cbc8c7;
    font-size: 2.5rem; }
    .header .logo-text-top {
      display: block;
      padding-bottom: .5rem; }
    .header .logo-text-border {
      display: inline-block;
      border-top: 1px solid #cbc8c7;
      border-bottom: 1px solid #cbc8c7;
      line-height: 2.5rem;
      padding: 2px; }
    .header .logo-text-name {
      font-size: 4rem;
      color: #fff; }
  .header-phone {
    font-size: 4rem;
    color: #fff; }
  .header a:link, .header a:visited {
    color: #fff; }

.header-animated {
  background-image: url(../assets/header_main_bg.png), linear-gradient(to right, #d5441c, #d5441c);
  background-position: right;
  background-repeat: no-repeat; }

.header-plain {
  background-color: #d5441c; }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #3c4046; }
  nav a {
    padding: 0 25px; }
  nav a:link, nav a:visited {
    color: #cbc8c7;
    text-decoration: none; }
  nav .site-links ul {
    display: flex;
    flex-direction: row;
    list-style-type: none; }
  nav .site-links a:hover {
    border-top: 1px solid #cbc8c7;
    border-bottom: 1px solid #cbc8c7; }
  nav .site-links .drop-down {
    position: relative; }
    nav .site-links .drop-down-menu {
      position: absolute;
      display: flex;
      flex-direction: column;
      width: 100%; }
      nav .site-links .drop-down-menu a:link {
        padding: 5px; }
      nav .site-links .drop-down-menu li:hover {
        text-decoration: underline;
        transition: all .5s; }
  nav .fa-bars {
    color: #cbc8c7;
    display: none; }

.drop-down-box {
  background-color: #fff;
  color: #d5441c;
  border-radius: .25rem;
  border: 1px solid #0a090c;
  justify-content: left;
  margin-top: 15px;
  z-index: 1; }
  .drop-down-box li {
    margin: 2.5px 2.5px; }
    .drop-down-box li a:link, .drop-down-box li a:visited {
      color: #d5441c; }
    .drop-down-box li a:hover {
      border: none; }

.largeImage {
  height: 100vh;
  background-image: url(../assets/largeImage.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end; }
  .largeImage .contactForm {
    margin-right: 15%;
    margin-top: 5%;
    margin-bottom: 5%;
    border-radius: 5px;
    background-color: rgba(203, 200, 199, 0.8);
    z-index: 0;
    height: 325px;
    position: relative; }
    .largeImage .contactForm form {
      padding: 15px; }
    .largeImage .contactForm div {
      position: absolute;
      bottom: 0;
      width: 100%;
      background-color: #3c4046;
      padding: 10px;
      border-radius: 0 0 5px 5px;
      color: #cbc8c7;
      display: flex;
      justify-content: space-around;
      align-items: center; }
      .largeImage .contactForm div span:nth-of-type(2n) {
        color: #d5441c;
        font-size: 2.5rem; }
      .largeImage .contactForm div a:link, .largeImage .contactForm div a:visited {
        color: #d5441c; }

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 5px;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  width: 100%; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  color: #fff; }

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background: #d5441c;
  color: #fff; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--white::after {
  background: #d5441c; }

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0; }

.btn--animated {
  animation: moveInBottom .5 ease-out .75s;
  animation-fill-mode: backwards; }

.awards {
  display: flex;
  justify-content: space-around;
  padding: 3rem 0; }
  .awards div {
    margin: 3rem; }

.newsLetter {
  background-color: #cbc8c7;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem; }
  .newsLetter h1 {
    color: #d5441c; }
  .newsLetter h2 {
    padding-top: 2rem;
    font-weight: 300; }
  .newsLetter form {
    margin-top: 3rem; }
    .newsLetter form .button {
      padding: 10px;
      border-radius: 4px;
      background-color: #3c4046;
      width: 225px;
      display: inline-block;
      text-align: center;
      font-weight: 400;
      letter-spacing: 2px;
      margin-top: 2rem; }
      .newsLetter form .button:hover {
        background-color: #545961; }
    .newsLetter form a:link, .newsLetter form a:visited {
      color: #fff; }

.imagerow {
  text-align: center;
  padding: 5rem; }
  .imagerow h1 {
    font-size: 3.5rem; }
  .imagerow span {
    font-size: 2.0rem;
    font-weight: 300; }
  .imagerow .images {
    display: flex;
    justify-content: space-around; }
    .imagerow .images div {
      margin-top: 2.5rem;
      width: 30%;
      border: 1px solid #cbc8c7;
      padding: 1rem; }
      .imagerow .images div img {
        max-width: 100%; }

.testimonials {
  background-color: #cbc8c7;
  text-align: center;
  padding: 5rem 0;
  color: #d5441c; }
  .testimonials-images {
    display: flex;
    justify-content: space-around; }
    .testimonials-images div {
      margin-top: 2.5rem;
      width: 20%;
      border: 1px solid #3c4046;
      padding: 1rem; }
      .testimonials-images div img {
        max-width: 100%;
        margin-bottom: 1rem; }

.slider {
  display: flex;
  align-items: center;
  background-color: #f5f4f4;
  justify-content: space-between;
  padding: 10rem 20rem; }
  .slider h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #d5441c;
    font-weight: 600;
    font-size: 3.5rem; }
  .slider .fas {
    padding: 5rem;
    font-size: 3rem;
    color: #d5441c; }
  .slider .fa-chevron-right, .slider .fa-chevron-left {
    cursor: pointer; }

.personalInjury {
  padding: 5rem;
  text-align: center; }
  .personalInjury h1 {
    color: #d5441c;
    font-size: 4rem;
    margin-bottom: 3rem; }
  .personalInjury a {
    text-transform: capitalize; }
  .personalInjury .btn:link, .personalInjury .btn:visited {
    width: auto; }

.faqs h1 {
  color: #d5441c;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem; }

.faqs .faqs-text {
  display: flex;
  justify-content: space-around;
  padding-left: 10rem;
  padding-right: 10rem;
  letter-spacing: 1.5px; }
  .faqs .faqs-text div:nth-of-type(1n) {
    padding: 0 5rem 0 0; }
  .faqs .faqs-text div:nth-of-type(2n) {
    padding: 0  0 0 5rem; }
  .faqs .faqs-text .column .question {
    font-weight: 500;
    font-size: 2.0rem;
    margin-bottom: 1.0rem;
    display: inline-block; }

.blog {
  display: flex;
  flex-direction: column; }
  .blog h1 {
    text-align: center;
    margin-bottom: 1rem; }
  .blog .column {
    margin-bottom: 1.5rem; }

.bottom {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  background-color: #cbc8c7; }
  .bottom .faqs-text {
    display: flex;
    justify-content: space-around;
    padding-left: 20rem;
    padding-right: 20rem;
    letter-spacing: 1.5px; }
    .bottom .faqs-text .column {
      display: flex; }
      .bottom .faqs-text .column .question {
        font-weight: 500;
        font-size: 2.0rem;
        margin-bottom: 1.0rem;
        display: inline-block; }
      .bottom .faqs-text .column .date {
        display: flex;
        flex-direction: column;
        color: #fff;
        font-weight: 500;
        text-align: center; }
        .bottom .faqs-text .column .date span {
          display: inline-block;
          padding: 1rem; }
        .bottom .faqs-text .column .date .number {
          background: #d5441c;
          text-transform: uppercase; }
        .bottom .faqs-text .column .date .month {
          background: #3c4046; }
      .bottom .faqs-text .column .content {
        padding-left: 5rem; }
        .bottom .faqs-text .column .content .blogTitle {
          font-weight: 600;
          display: block;
          font-size: 2rem; }
  .bottom .letsChat {
    padding-left: 10rem;
    flex-direction: column; }
    .bottom .letsChat h1 {
      text-align: center;
      margin-bottom: 1rem; }
    .bottom .letsChat .btn:link, .bottom .letsChat .btn:visited {
      width: 400px;
      align-self: center; }

.contact {
  background-color: #24272b;
  color: #fff;
  padding: 3rem 30rem;
  display: flex;
  align-content: center; }
  .contact .left {
    align-self: flex-end;
    padding-right: 5rem; }
    .contact .left .logo img {
      max-width: 50%; }
    .contact .left .logo span:first-of-type, .contact .left .logo span:nth-of-type(2), .contact .left .logo span:nth-of-type(3), .contact .left .logo span:nth-of-type(4) {
      font-size: 2.0rem;
      letter-spacing: 3px; }
    .contact .left .logo span:nth-of-type(2) {
      display: block; }
    .contact .left .logo .of {
      border-top: 1px solid #fff;
      border-bottom: 1px solid #fff; }
    .contact .left .logo span.jorden1, .contact .left .logo span.jorden2 {
      color: #d5441c;
      font-weight: 600; }
    .contact .left .logo span.jorden1 {
      font-size: 3.0rem;
      line-height: 3.0rem; }
    .contact .left .logo span.jorden2 {
      display: block;
      font-size: 3.5rem;
      line-height: 3.5rem;
      letter-spacing: 1.2rem; }
  .contact .right {
    border-left: 1px solid #3c4046;
    flex-grow: 2; }
    .contact .right .subA {
      display: flex;
      justify-content: space-between;
      padding-left: 5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid #3c4046; }
      .contact .right .subA div:nth-of-type(2) {
        text-align: right; }
    .contact .right .subB {
      display: flex;
      justify-content: space-between;
      padding-left: 5rem;
      padding-top: 2rem; }

footer {
  padding: 3rem 30rem;
  background-color: #d5441c;
  display: flex;
  justify-content: flex-end; }
  footer a:link, footer a:visited {
    color: #24272b;
    padding: 1rem 2rem; }
  footer a:hover {
    color: #fff; }

.hidden {
  visibility: hidden; }

.doNotDisplay {
  display: none; }

.show {
  display: block; }

.orange {
  color: #d5441c; }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@media (max-width: 992px) {
  .header .logo-text, .header .logo-text {
    font-size: 1rem; }
  .header .logo-text-name, .header-phone {
    font-size: 3rem; }
  .header {
    padding: 4rem;
    position: relative;
    height: 125px; }
    .header .logo-text-border {
      line-height: inherit;
      padding: 0;
      font-size: 2rem; }
  nav {
    flex-direction: column-reverse; }
    nav .site-links {
      display: none; }
      nav .site-links ul {
        flex-direction: column; }
        nav .site-links ul li {
          padding: 5px; }
    nav .social-media {
      display: none; }
    nav .fa-bars {
      color: #cbc8c7;
      display: inline-block;
      border: 1px solid #cbc8c7;
      padding: 5px;
      border-radius: .25rem; }
    nav .burger-bars {
      align-self: flex-end; }
  .slider {
    padding: 1rem; }
    .sliderContent p {
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
    .slider .fas {
      padding: .5rem;
      font-size: 2rem; }
  .faqs .faqs-text {
    flex-direction: column;
    justify-content: space-around;
    padding-left: 5rem;
    padding-right: 5rem;
    letter-spacing: 1.5x; }
    .faqs .faqs-text div:nth-of-type(1n), .faqs .faqs-text div:nth-of-type(2n) {
      padding: 2.5rem 0; }
  .bottom .faqs-text {
    flex-direction: column;
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
  .bottom .letsChat {
    padding-left: 2.5rem; }
  .contact {
    padding: 3rem;
    align-content: center;
    flex-direction: column;
    text-align: center; }
    .contact .left {
      align-self: center;
      padding-left: 5rem; }
      .contact .left .logo img {
        max-width: 50%; }
      .contact .left .logo span:first-of-type, .contact .left .logo span:nth-of-type(2), .contact .left .logo span:nth-of-type(3), .contact .left .logo span:nth-of-type(4) {
        font-size: 2.0rem;
        letter-spacing: 3px; }
      .contact .left .logo span:nth-of-type(2) {
        display: block; }
      .contact .left .logo .of {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff; }
      .contact .left .logo span.jorden1, .contact .left .logo span.jorden2 {
        color: #d5441c;
        font-weight: 600; }
      .contact .left .logo span.jorden1 {
        font-size: 3.0rem;
        line-height: 3.0rem; }
      .contact .left .logo span.jorden2 {
        display: block;
        font-size: 3.5rem;
        line-height: 3.5rem;
        letter-spacing: 1.2rem; }
    .contact .right {
      border-left: 0;
      flex-grow: 0;
      display: flex;
      flex-direction: column;
      text-align: center; }
      .contact .right .subA {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding-top: 2rem;
        padding-bottom: 2rem; }
        .contact .right .subA div {
          padding-top: 2rem;
          padding-bottom: 2rem; }
        .contact .right .subA div:nth-of-type(2) {
          text-align: center; }
      .contact .right .subB {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 5rem;
        padding-top: 2rem; }
        .contact .right .subB div {
          padding-top: 2rem;
          padding-bottom: 2rem; } }

@media (min-width: 993px) {
  .site-links, .social-media {
    display: show; } }

@media (max-width: 880px) {
  .imagerow .images {
    display: flex;
    justify-content: center;
    flex-direction: column; }
    .imagerow .images div {
      margin-top: 2.5rem;
      border: 1px solid #cbc8c7;
      padding: 1rem;
      width: 100%; }
      .imagerow .images div img {
        max-width: 100%; }
  .testimonials {
    padding: 5rem;
    font-size: 2rem; }
    .testimonials-images {
      flex-direction: column;
      justify-content: center; }
      .testimonials-images div {
        margin-top: 2.5rem;
        width: 100%;
        border: 1px solid #3c4046;
        padding: 1rem; }
        .testimonials-images div img {
          max-width: 100%;
          margin-bottom: 1rem; } }

@media (max-width: 768px) {
  .awards {
    flex-direction: column; }
    .awards .award {
      display: flex;
      justify-content: center; }
  .newsLetter {
    padding-left: 3rem;
    padding-right: 3rem; }
    .newsLetter form {
      display: flex;
      flex-direction: column;
      padding: 0 5rem; }
      .newsLetter form input {
        margin-top: 2rem; }
      .newsLetter form .button {
        width: 100%; }
  .bottom .letsChat .btn:link, .bottom .letsChat .btn:visited {
    width: auto; } }

@media (max-width: 576px) {
  .header {
    flex-direction: column;
    justify-content: center; }
  .largeImage {
    justify-content: center;
    height: 100vh; }
    .largeImage .contactForm {
      margin: 0;
      margin-top: 2rem;
      height: 250px; }
      .largeImage .contactForm form {
        display: flex;
        flex-direction: column; }
        .largeImage .contactForm form p {
          display: flex;
          justify-content: center; }
        .largeImage .contactForm form input, .largeImage .contactForm form select {
          border: 1px solid #ccc;
          border-radius: 4px;
          box-sizing: border-box;
          padding: 1px 3px; }
  footer {
    padding: 3rem;
    justify-content: center; } }

@media (max-width: 450px) {
  .largeImage {
    justify-content: center;
    height: 65vh; }
    .largeImage .contactForm {
      margin: 0;
      margin-top: 2rem;
      height: 400px; }
      .largeImage .contactForm form {
        display: flex;
        flex-direction: column; }
        .largeImage .contactForm form p {
          display: flex;
          flex-direction: column;
          justify-content: center; }
        .largeImage .contactForm form input, .largeImage .contactForm form select {
          border: 1px solid #ccc;
          border-radius: 4px;
          box-sizing: border-box;
          padding: 1px 3px; }
        .largeImage .contactForm form input {
          margin-top: 5px; } }
