@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700;900&display=swap");
@font-face {
  font-family: "AvenirLTStd-Black";
  font-style: normal;
  font-weight: normal;
  src: local("AvenirLTStd-Black"),
    url("../fonts/AvenirLTStd-Black.woff") format("woff");
}

body {
  color: #222222;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 400;
  word-wrap: break-word !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: inherit;
  font-weight: 700;
  word-wrap: break-word;
  font-family: "Raleway", sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

p {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  line-height: 1.9;
  word-wrap: break-word;
}

p small {
  font-size: 14px;
}

ul,
ol {
  margin: 0;
}

b,
strong {
  font-weight: 700;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

.alignright {
  display: inline;
  float: right;
  margin: 0 0 0 15px;
}

.alignleft {
  display: inline;
  float: left;
  margin: 0 15px 0 0;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p,
li {
  font-size: 16px;
}

a {
  color: #222222;
  word-wrap: break-word;
}

strong {
  font-weight: 900;
  color: #222222;
}

em {
  opacity: 0.8;
}

a:hover,
a:focus {
  color: #222222;
  text-decoration: none !important;
}

.bold-black {
  font-weight: normal;
}

h2 {
  margin-bottom: 20px;
}

input {
  width: 100%;
  border: 1px solid #8e8e8e;
  height: 65px;
  padding-left: 27px;
  padding-right: 27px;
  background-color: #e7e6eb;
  border-radius: 5px;
}

textarea {
  width: 100%;
  height: 11rem;
  padding-left: 27px;
  padding-right: 27px;
  padding-top: 17px;
  border: 1px solid #8e8e8e;
  background-color: #e7e6eb;
  border-radius: 5px;
}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 35px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 25px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  button.button-lg-round {
    font-size: 18px;
    padding: 15px 30px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 19px;
  }
  h6 {
    font-size: 17px;
  }
  p {
    font-size: 15px;
  }
  li {
    font-size: 15px;
  }
  button.button-lg-round {
    font-size: 16px;
  }
}

.logo-scrolled {
  margin-bottom: 0 !important;
}

.logo-scrolled img {
  width: 170px;
}

/* slide to top */
.slideanim {
  visibility: hidden;
}

.topslide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

@media (min-width: 1500px) {
  .custom-container {
    max-width: 1700px;
  }
}

.navslide {
  animation-name: nav-slide;
  -webkit-animation-name: nav-slide;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  z-index: 99999;
}

@keyframes nav-slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes nav-slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

/* Icon 1 */
.animated-icon1,
.animated-icon2,
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span,
.animated-icon2 span,
.animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #fff;
}

.animated-icon2 span {
  background: #fff;
}

.animated-icon3 span {
  background: #000;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Icon 3*/
.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2),
.animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

input:focus {
  outline: none;
}

button:focus {
  outline: 0;
}

/* Custom Header CSS */
.box-shadowed {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.navbar {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  padding-right: 1rem !important;
}
.navbar .mobile-cta {
  display: none;
}
.navbar .nav-item > a {
  position: relative;
  overflow: hidden;
}
.navbar .nav-item > a:before {
  content: "";
  width: 95%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  left: -100%;
}
.navbar .nav-item > a:hover:before {
  left: 0%;
}
.navbar .navbar-nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar .navbar-nav .nav-item.event-btn {
  padding: 9px 10px;
  border: 1px solid #ffff;
}
.navbar.show {
  background-color: #fff !important;
}
.navbar.show .navbar-brand img {
  width: 80px;
}
.navbar.show .navbar-nav li a {
  color: #222222 !important;
}
.navbar.show .navbar-nav .nav-item.event-btn {
  padding: 9px 10px;
  border: 1px solid #304b7c;
}
.navbar.show .navbar-nav .nav-item.event-btn a {
  color: #304b7c !important;
}
.navbar.show .nav-item > a:before {
  content: "";
  background-color: #304b7c;
}
.navbar.show .animated-icon2 span {
  background: #304b7c !important;
}

.navbar.innerpage-nav {
  background-color: #fff !important;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}
.navbar.innerpage-nav .navbar-nav li a {
  color: #222222 !important;
}
.navbar.innerpage-nav .unscrolled {
  display: none;
}
.navbar.innerpage-nav .navbar-brand.scrolled {
  display: block;
}
.navbar.innerpage-nav .navbar-nav .nav-item.event-btn {
  padding: 9px 10px;
  border: 1px solid #304b7c;
}
.navbar.innerpage-nav .navbar-nav .nav-item.event-btn a {
  color: #304b7c !important;
}
.navbar.innerpage-nav .nav-item > a:before {
  content: "";
  background-color: #304b7c;
}
.navbar.innerpage-nav .animated-icon2 span {
  background: #304b7c !important;
}

.navbar-nav li a {
  color: #fff !important;
  font-size: 17px;
}

.navbar-nav li {
  margin-right: 27px;
}

.navbar-nav li.dropdown .dropdown-menu a {
  color: #fff !important;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fff),
    to(#fff)
  );
  background-image: linear-gradient(to right, #fff, #fff);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 1% 100%;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  font-size: 17px;
}
.navbar-nav li.dropdown .dropdown-menu a strong {
  color: #fff;
}
.navbar-nav li.dropdown .dropdown-menu a:hover {
  background-size: 100% 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #304b7c !important;
}
.navbar-nav li.dropdown .dropdown-menu a:hover strong {
  color: #304b7c;
}

.navbar-info {
  padding: 0px 10px;
}

.cta-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cta-section .cta-button i {
  padding-left: 0;
  padding-right: 10px;
  font-size: 23px;
}

.navbar .dropdown-menu a {
  border-bottom: 2px solid transparent;
}

/* Default Header CSS   */
.dropdown .dropdown-menu .dropdown-item:active {
  background-color: #ddd;
}

@media screen and (min-width: 1280px) {
  .phone-link {
    pointer-events: none;
    cursor: default;
  }
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0px;
    opacity: 1;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    width: auto;
    left: -9px;
    padding: 0;
    background-color: #1c3461;
  }
  .dropdown:hover > .dropdown-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dropdown-menu:hover > .dropdown-menu {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .navbar .dropdown-menu {
    position: relative !important;
    margin-top: 0;
    background-color: transparent;
    border: none;
    padding-left: 27px;
  }
  .navbar .dropdown-menu a {
    padding: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    border-bottom: 1px solid #515151;
  }
  .navbar .nav-item .nav-link {
    border-bottom: 1px solid #ddd;
  }
  header .navbar .nav-item .nav-link .fas {
    padding-right: 3px;
    padding-left: 13px;
    float: right;
  }
}

a[href^="tel"] {
  text-decoration: none;
}

.search-box a[href^="tel"] {
  color: #304b7c;
}

.dropdown-menu {
  min-width: 100%;
}
.dropdown-menu .second-row {
  margin-top: 3rem;
}
.dropdown-menu h6 {
  color: #304b7c;
  padding-left: 29px;
}

.navbar .dropdown-menu a {
  font-size: 16px;
  font-weight: normal;
  color: #161616;
  padding: 20px 64px;
  text-align: center;
}
.navbar .dropdown-menu a:hover {
  background-color: transparent;
}

.nav-scrolled {
  -webkit-transition: 0.6s ease all;
  transition: 0.6s ease all;
  padding: 10px;
}
.nav-scrolled .navbar-brand img {
  -webkit-transition: 0.6s ease all;
  transition: 0.6s ease all;
  width: 188px;
}

.mobile-sidenav {
  position: fixed;
  top: 0;
  z-index: 99999;
  background-color: #111111;
  height: 100%;
  right: -33rem;
  width: 31rem;
  padding: 4rem 3rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow: auto;
}
.mobile-sidenav.show {
  right: 0;
}
.mobile-sidenav img.mobile-logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.mobile-sidenav span.close-btn {
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 35px;
}
.mobile-sidenav .dropdown-menu {
  position: relative;
  background-color: transparent;
  float: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #304b7c;
}
.mobile-sidenav .dropdown-menu li {
  padding-left: 25px;
}
.mobile-sidenav .mobile-dropdown ul {
  list-style: none;
  padding-left: 0;
}
.mobile-sidenav .mobile-dropdown ul li.menu-item-has-children:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  float: right;
  position: absolute;
  top: 33px;
  right: 32px;
  color: #fff;
}
.mobile-sidenav .mobile-dropdown ul li {
  width: 100%;
  border-bottom: 1px solid #304b7c;
  position: relative;
}
.mobile-sidenav .mobile-dropdown ul li > a {
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  display: table;
}
.mobile-sidenav .mobile-dropdown ul li > a i {
  float: right;
}
.mobile-sidenav .mobile-dropdown a {
  color: #fff;
  font-size: 25px;
  display: block;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #dedfe0;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0.5))
  );
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.mobile-overlay.show {
  display: block;
}

footer {
  background-color: #152440;
}
footer .gray-bg {
  padding: 4rem 0;
}
footer h6 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}
footer p,
footer a {
  color: #93abd8;
  font-size: 14px;
}
footer i {
  color: #fff;
}
footer .contact-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0;
}
footer .contact-infos .contact-infos-box {
  margin-right: 11px;
}
footer .contact-infos .contact-infos-box a {
  font-size: 14px;
}
footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 1rem;
}
footer .footer-box span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
footer a,
footer a:hover,
footer a:focus {
  color: #93abd8;
}
footer ul {
  list-style-type: none;
  padding-left: 3px;
  width: 100%;
}
footer ul li {
  line-height: 37px;
}
footer .social-icons {
  margin-top: 5px;
}
footer .social-icons a {
  padding-right: 11px;
}
footer .social-icons a i {
  font-size: 19px;
}

.copyright-box {
  padding: 2rem;
  text-align: center;
}
.copyright-box p {
  color: #ddd;
}
.copyright-box .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.floating-cta {
  position: fixed;
  z-index: 999999;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: #cd4c4c;
  overflow: hidden;
}
.floating-cta .icon-layers {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 37px 42px;
  text-align: center;
}
.floating-cta .icon-layers i {
  color: #fff;
  font-size: 23px;
}
.floating-cta .cta-infos {
  position: fixed;
  z-index: 999999999;
  right: -18.6rem;
  top: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.floating-cta .cta-infos a {
  background-color: #cd4c4c;
  color: #fff;
  padding: 35px 20px;
  width: auto;
}
.floating-cta .cta-infos a.phone {
  background-color: #973232;
}
.floating-cta .cta-infos a span {
  margin-right: 15px;
}
.floating-cta .cta-infos a i {
  padding-left: 15px;
}

.mobile-cta {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.banner img {
  max-width: unset;
  margin-left: auto;
}

.banner .carousel .carousel-indicators {
  bottom: 13rem;
  left: 10rem;
  width: auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
}
.banner .carousel .carousel-indicators li {
  margin: 0 17px;
}

.banner .carousel .carousel-nav {
  display: none;
}

.banner .carousel .carousel-bg {
  height: 100%;
  background-color: #304b7c;
  position: absolute;
  top: 0;
  width: 60%;
}

.banner .carousel .carousel-caption {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  text-align: left;
  padding: 10px 11rem;
}
.banner .carousel .carousel-caption h1 {
  font-weight: bold;
}
.banner .carousel .carousel-caption p {
  color: #93abd8;
  font-size: 25px;
}
.banner .carousel .carousel-caption .banner-btn {
  background-color: #cd4c4c;
}
.banner .carousel .carousel-caption .banner-btn img {
  margin-left: 30px;
}

.view {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.view .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
}
.view .rgba-black-light,
.view .rgba-black-light:after {
  background-color: rgba(0, 0, 0, 0.5);
}

.custom-btn {
  background-color: #cd4c4c;
  padding: 34px 34px;
  display: inline-block;
  color: #fff;
  margin-top: 2rem;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.custom-btn img {
  margin-left: 30px;
}
.custom-btn:hover {
  color: #fff;
}

.sections {
  padding: 6rem 0;
}
.sections .section-title {
  margin-bottom: 4rem;
}
.sections .section-title h2 {
  position: relative;
  z-index: 1;
  font-weight: 900;
  color: #304b7c;
}
.sections .section-title span.title-line {
  display: block;
  width: 400px;
  height: 5px;
  background-color: #304b7c;
}

.owl-nav .owl-prev {
  border: 0px solid black;
  background-color: #fff !important;
  padding: 10px 20px !important;
  margin: 18px !important;
}

.owl-nav .owl-next {
  border: 0px solid black;
  background-color: #fff !important;
  padding: 10px 20px !important;
  margin: 18px !important;
}

.why .why-box {
  margin-bottom: 2rem;
}
.why .why-box img {
  max-width: 100%;
  border: 1px solid #ddd;
  padding: 3rem;
  margin-bottom: 20px;
  width: 100%;
}
.why .why-box p {
  font-size: 20px;
  font-weight: bold;
}

.prefer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.prefer .img-box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  background-image: url(../images/prefer-img.jpg);
  background-position: center;
  background-size: cover;
}
.prefer .prefer-caption {
  background-color: #304b7c;
  padding: 9rem 5rem;
}
.prefer .prefer-caption h2 {
  color: #fff;
}
.prefer .prefer-caption p {
  color: #93abd8;
}

.services .services-box {
  margin-bottom: 2rem;
}
.services .services-box img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}
.services .services-box h6 {
  font-weight: bold;
  margin-bottom: 15px;
}

.services .customers {
  margin-top: 4rem;
}

.cta-footer .img-box {
  background-image: url(../images/cta-img.png);
}

.page-404 {
  background-color: #304b7c;
  padding: 10rem 0;
}
.page-404 h4,
.page-404 h1,
.page-404 h3 {
  color: #fff;
}
.page-404 h4 {
  font-size: 70px;
}
.page-404 h1 {
  font-size: 300px;
}
.page-404 h3 {
  font-size: 100px;
}

.thanks-page {
  padding: 15rem 0;
}
.thanks-page h1 {
  font-size: 200px;
  border-bottom: 10px solid #cd4c4c;
}

@media screen and (max-width: 1500px) {
  .page-404 h4 {
    font-size: 50px;
  }
  .page-404 h1 {
    font-size: 200px;
  }
  .page-404 h3 {
    font-size: 60px;
  }
}

@media screen and (max-width: 992px) {
  .page-404 {
    text-align: center;
  }
  .page-404 h4 {
    font-size: 50px;
  }
  .page-404 h1 {
    font-size: 200px;
  }
  .page-404 h3 {
    font-size: 60px;
  }
  .page-404 img {
    margin-top: 2rem;
  }
  .thanks-page h1 {
    font-size: 100px;
  }
}

@media screen and (max-width: 600px) {
  .page-404 {
    text-align: center;
  }
  .page-404 h4 {
    font-size: 33px;
  }
  .page-404 h1 {
    font-size: 123px;
  }
  .page-404 h3 {
    font-size: 31px;
  }
  .thanks-page h1 {
    font-size: 58px;
  }
}
