:root {
  --blue: #335992;
  --maroon: #B33237;
  --text: #444444;
  --lightgray: #F7F7F7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  box-sizing: inherit;
}

.suspension-contain {
  overflow: hidden;
  max-height: 980px;
  position: relative;
}

html.suspended {
  background: rgba(0, 0, 0, 0.6);
}

body {
  margin: 0 auto;
  max-width: 100%;
  min-width: 320px;
  font-family: 'Poppins', sans-serif;
}

/*###################################
# Layouts
###################################*/
.container {
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  padding: 0 15px;
}

a,
img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

figure {
  margin: 0;
  padding: 0;
  display: inline-block;
  overflow: hidden;
}

figure img:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

img {
  max-width: 100%;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

.aligncenter {
  text-align: center;
}

/*###################################
# Flexbox
###################################*/
.dflex {
  display: flex !important;
  display: -webkit-flex !important;
}

.sb-flex {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.cn-flex {
  justify-content: center;
  -webkit-justify-content: center;
}

.end-flex {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.start-flex {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.cn-align {
  align-items: center;
  -webkit-align-items: center;
}

.end-align {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}

.start-align {
  align-items: flex-start;
  -webkit-align-items: flex-start;
}

.wrap-flex {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.col-flex {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.row-flex {
  flex-direction: row;
  -webkit-flex-direction: row;
}

.rowrev-flex {
  flex-direction: row-reverse;
}

/*###################################
# Typography
###################################*/
a {
  color: inherit;
  text-decoration: none;
  color: var(--text);
}

a:hover {
  color: inherit;
  text-decoration: none;
  color: #E83D2C;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  line-height: 120%;
  margin: 1rem 0;
}

h1,
.h1 {
  font-size: 80px;
}

h2,
.h2 {
  font-size: 50px;
}

h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p,
ul,
ol {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: 180%;
  margin: 2rem 0;
}

.text-blue {
  color: var(--blue);
}

.text-maroon {
  color: var(--maroon);
}

/*###################################
# Buttons
###################################*/
.button,
button,
input[type="submit"] {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFF !important;
  background: var(--maroon);
  padding: 12px 25px !important;
  border: none;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  color: #FFF;
  background: var(--blue);
}

/*###################################
# Cookie
###################################*/
.cc-animate.cc-revoke.cc-bottom {
  font-size: 14px;
  position: fixed;
  padding: 5px 10px;
  bottom: 0 !important;
  left: 20px !important;
  display: block !important;
  transform: none !important;
}

/*###################################
# Call to Action Button
###################################*/
.cta,
.destroy-on-load {
  display: none;
}

/*###################################
# Contact Forms Messages
###################################*/
form .messages p {
  display: none;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

form .loading {
  display: none;
}

form .alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

form .alert-success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8;
}

form .alert-danger {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}

form input:focus,
form textarea:focus {
  outline: none;
}

form [type="submit"] {
  margin: 20px auto
}

form input,
form textarea,
form label {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.ctc-hide {
  display: none !important;
}

/*###################################
# Contact Forms
###################################*/
form .loading {
  width: 100%;
  margin: auto;
  max-width: 20px;
}

.inner #content .ctc-form {
  margin: 0 auto;
  text-align: center;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.inner #content .ctc-form .col50 {
  width: 50%;
}

.inner #content .ctc-form h2 {
  text-align: center !important;
  padding: 5px 0 20px;
}

.inner #content .ctc-form input[type="text"],
.inner #content .ctc-form textarea {
  font-size: 16px;
  color: #000;
  height: 45px;
  display: block;
  width: 100%;
  border: 1px solid var(--blue);
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto 10px;
  max-width: 100%;
}

.inner #content .ctc-form textarea {
  height: 120px;
  padding-top: 10px;
}

.inner #content .ctc-form button {
  display: block;
}

.inner #content .ctc-form .recap {
  display: inline-block;
}

.inner #content .ctc-form .g-recaptcha div {
  margin: 20px auto;
}

/*###################################
# Header
###################################*/
#header {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  width: 100%;
}

#header .container {
  max-width: 1820px;
}

/* Nav Menu */
#header nav #pull {
  display: none;
  cursor: pointer;
}

#header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}

#header nav ul li {
  padding: 0 20px;
}

#header nav ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 400;
  padding: 20px 0;
}

#header nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  background: var(--maroon);
  width: 100%;
  height: 4px;
  z-index: -1;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

#header nav ul li.active-menu a::after,
#header nav ul li a:hover::after {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

/*###################################
# Banner
###################################*/
#banner {
  position: relative;
  background: url(../images/common/banner_1.jpg) center top no-repeat;
  background-size: cover;
}

/* Home Banner */
#banner .home-banner {
  position: relative;
  min-height: 980px;
  overflow: hidden;
}

#banner .home-banner .banner-caption {
  position: absolute;
  top: 53%;
  left: 0;
  width: 100%;
}

#banner .home-banner .banner-caption h2 {
  max-width: 745px;
  color: #FFFFFF;
}

#banner .home-banner .banner-caption p {
  max-width: 745px;
  color: #FFFFFF;
  margin: 20px 0;
  font-size: 24px;
  text-transform: uppercase;
}

#banner .inner-banner {
  min-height: 200px;
}

#banner .banner-contact-infos {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: calc(100% - 50px);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#banner .banner-contact-infos ul {
  margin: 0;
  padding: 0;
  width: 450px;
}

#banner .banner-contact-infos ul li {
  position: relative;
  left: 0;
  padding: 17px 17px 17px 55px;
  background: var(--blue);
  color: #FFFFFF;
  margin-bottom: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

#banner .banner-contact-infos ul li a,
#banner .banner-contact-infos ul li p {
  margin: 0;
  color: #FFFFFF;
}

#banner .banner-contact-infos ul li img {
  position: absolute;
  z-index: 10;
  padding: 17px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#banner .banner-contact-infos ul li.active {
  left: calc(-100% + 50px);
  background: var(--maroon);
}

/*###################################
# Content
###################################*/
#about1 {
  padding: 90px 0;
}

#about1 .left,
#about1 .right {
  flex-basis: 48%;
}

#about1 h4 {
  margin-bottom: 10px;
}

#about2 {
  position: relative;
  padding-bottom: 140px;
}

#about2 .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

#about2 img.about-img {
  width: 50%;
}

#about2 .text {
  position: relative;
  left: -8.5%;
  width: 48%;
  background: var(--lightgray);
  padding: 60px 150px;
}

#how-we-help {
  position: relative;
  background: url(../images/content/home/how_bg.jpg) center top no-repeat;
  background-size: 100%;
  padding: 120px 0;
}

#how-we-help .image-text {
  margin: 40px 0;
}

#how-we-help .image-text .image {
  position: relative;
  width: 45%;
}

#how-we-help .image-text .image>img {
  width: 100%;
}

#how-we-help .image-text .image .icon {
  position: absolute;
  right: -67.5px;
  top: 50%;
  width: 135px;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, .3);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#how-we-help .image-text.rowrev-flex .image .icon {
  right: unset;
  left: -67.5px;
}

#how-we-help .image-text .text {
  width: 45%;
}

#testimonials {
  padding: 90px 0;
  text-align: center;
  background: url(../images/content/home/testimonials_bg.jpg) center no-repeat;
  background-size: cover;
}

#testimonials .container {
  max-width: 1366px;
}

#testimonials h2 {
  color: #FFFFFF;
}

#testimonials p {
  color: #FFFFFF;
}

#testimonials p.author {
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
}

#testimonials span.stars {
  color: #FFBF00;
  font-size: 32px;
}

#gallery {
  padding: 90px 0;
  text-align: center;
}

#gallery .gallery-wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 2%;
}

#gallery .gallery-wrap>div {
  flex-basis: 32%;
}

#gallery .gallery-wrap>div>img {
  width: 100%;
}

#gallery .gallery-wrap>div.img-large {
  flex-basis: 38%;
}

#gallery .gallery-wrap>div.img-small {
  flex-basis: 29%;
}

#gallery .gallery-wrap>div.img-small img {
  margin-bottom: 30px;
}

#quote {
  padding: 65px 0;
  background: url(../images/content/home/quote_bg.jpg) center no-repeat;
  background-size: cover;
}

#quote .left {
  width: 80%;
}

#quote .left h2,
#quote .left p {
  color: #FFFFFF;
}

#quote .right {
  width: 20%;
  text-align: right;
}

/*###################################
# Footer
###################################*/
#footer {
  background: url(../images/common/footer_bg.jpg) center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 30px 0;
}

#footer .footer-top .footer-logo {
  display: block;
  margin: 0 auto 100px;
}

#footer .footer-top .footer-info ul li h4 {
  color: var(--maroon);
}

#footer .footer-top .footer-info ul li a,
#footer .footer-top .footer-info ul li p {
  margin: 0;
  color: #FFFFFF;
}

#footer .copyright {
  padding: 20px 0;
}

#footer .copyright p {
  color: #FFFFFF;
  margin: 0;
}

#footer ul.social-nav {
  column-gap: 20px;
}

#footer ul.social-nav li a {
  color: #FFFFFF;
}

/*###################################
# Inner Pages
###################################*/
.inner #content {
  min-height: 600px;
  padding: 40px 0;
  box-sizing: border-box;
}

.inner #content .container {
  max-width: 1400px;
}

.inner #content h1 {
  text-align: center;
  padding-bottom: 30px;
}

/*###################################
# Gallery
###################################*/
.inner .gallery {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.inner .gallery li {
  padding: 3px;
  box-sizing: border-box;
  border: 1px solid #AAA;
  margin: 3px;
  border-radius: 3px;
  transition: all .3s linear;
}

.inner .gallery li a {
  overflow: hidden;
  display: block;
}

.inner .gallery li img {
  transition: all .3s linear;
  display: block;
  width: 250px;
  height: 200px;
  object-fit: cover;
}

.inner .gallery li:hover {
  background: #FF9124;
}

.inner .gallery li:hover img {
  transform: scale(1.1);
}

.inner .page_navigation {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.inner .page_navigation a {
  font-size: 12px;
  font-weight: 600;
  color: #1f1f1f;
  background: #FF9124;
  padding: 3px 5px;
  margin: 0 2px;
}

.inner .page_navigation a:hover {
  color: #FFF !important;
  text-shadow: 1px 1px 1px #1f1f1f;
}

/*###################################
# Privacy Policy
###################################*/
.inPrivacyBox {
  max-width: 850px;
  margin: 0 auto;
}

.inPrivacyBox p {
  text-align: justify !important;
}

/*###################################
# Testimonials
###################################*/
#inner_testi {
  margin: 50px 0px 0px 0px;
}

.inner #content .testi p {
  color: #000;
  margin: 10px 0;
}

.inner #content .testi p strong {
  color: #FFCC00;
}

.inner #content .testi p span {
  color: #FFCC00;
  font-size: 30px;
  display: unset;
}

.inner #content .testi {
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #FFCC00;
  margin: 20px 0;
  box-sizing: border-box;
}

.inner #content .testi .auth {
  color: #FFCC00;
  font-size: 20px;
  text-shadow: 2px 0px 5px #000;
  font-weight: 500;
}

/*###################################
# Responsive
###################################*/

@media screen and (max-width: 1600px) {
  #about2 .text {
    padding: 40px 80px;
    left: -5%;
  }
}

@media screen and (max-width: 1200px) {
  #header .header-logo {
    width: 20%;
  }

  #header .header-nav {
    width: 60%;
  }

  #header nav ul li {
    padding: 0;
  }


  #about1 {
    padding: 40px 0;
  }

  #about2 {
    padding: 0 0 40px;
  }

  #about2 .text {
    padding: 40px;
    left: 0;
  }

  #how-we-help {
    padding: 40px 0;
  }

  #how-we-help .image-text .image,
  #how-we-help .image-text .text {
    width: 48%;
  }

  #how-we-help .image-text .image .icon {
    right: -10px;
    bottom: -10px;
    top: unset;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }

  #how-we-help .image-text.rowrev-flex .image .icon {
    left: -10px;
    bottom: -10px;
    top: unset;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }

  #testimonials {
    padding: 40px 0;
  }

  #gallery {
    padding: 40px 0;
  }

  #quote {
    padding: 40px 0;
  }

  #quote .dflex {
    flex-wrap: wrap;
  }

  #quote .left,
  #quote .right {
    width: 100%;
    text-align: center;
  }

  #footer .footer-top .footer-logo {
    margin: 0 auto 20px;
  }

  #footer .footer-top .footer-info ul {
    flex-wrap: wrap;
  }

  #footer .footer-top .footer-info ul li {
    width: 50%;
    padding: 0 20px;
    text-align: center;
  }
}

@media screen and (max-width: 990px) {
  body {
    min-width: 320px;
    width: 100%;
  }

  h1,
  .h1 {
    font-size: 60px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  .dflex {
    flex-wrap: wrap;
  }

  #header {
    position: static;
    padding: 10px 0;
    border: none;
    padding: 0;
  }

  #header .header-logo {
    display: none;
  }

  #header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 5px rgba(0, 0, 0, .8);
  }

  #header nav ul {
    max-width: 100%;
    display: none;
    height: auto;
    background: rgba(255, 255, 255, .8);
  }

  #header nav ul li {
    max-width: 100%;
    position: relative;
    text-align: left;
    padding: 0;
    display: block;
    border-bottom: 1px solid #EEE;
    margin-left: 0 !important;
  }

  #header nav ul li:first-of-type {
    border-top: 1px solid #EEE;
  }

  #header nav ul li a {
    padding: 15px 0;
    line-height: 120%;
    margin: 0;
    color: var(--text);
    text-align: left;
    width: 100%;
    text-indent: 20px;
  }

  #header nav ul li a::after {
    display: none;
  }

  #header nav #pull {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    width: 100%;
    position: relative;
    height: 60px;
    color: #fff;
    z-index: 999;
  }

  #header nav #pull img {
    max-height: 38px;
    display: block;
    position: relative;
    top: 2px;
    padding-left: 10px;
  }

  #header nav #pull:after {
    content: "\f0c9";
    font-family: 'Font Awesome 5 Free';
    font-size: 30px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    font-weight: 700;
    color: var(--blue);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  #header nav #pull strong {
    line-height: 45px;
  }

  #header nav ul li a.button {
    padding: 15px 20px !important;
    text-indent: 0;
  }

  #banner .home-banner {
    min-height: 600px;
  }

  #banner .home-banner .banner-caption {
    top: 40%;
  }

  #about1 .left,
  #about1 .right {
    flex-basis: 100%;
  }

  #about2 {
    padding: 0;
  }

  #about2 img.about-img {
    width: 100%;
  }

  #about2 .text {
    width: 100%;
    padding: 20px;
  }

  .cta {
    background: var(--maroon) url("../images/common/phonecall.png") no-repeat center center;
    border-bottom-left-radius: 40px;
    border: 2px solid #fff;
    border-top-left-radius: 40px;
    bottom: 1%;
    display: block;
    height: 70px;
    position: fixed;
    right: 0;
    text-decoration: none;
    text-indent: -9999em;
    width: 80px;
    z-index: 999;
    border-right: none;
  }

  .inner #content {
    padding: 30px 0;
  }
}

@media screen and (max-width: 768px) {

  #banner .home-banner .banner-caption {
    top: 15%;
  }

  #banner .home-banner .banner-caption h2 {
    max-width: 70%;
    font-size: 50px;
  }

  #banner .home-banner .banner-caption p {
    max-width: 70%;
  }

  #banner .banner-contact-infos ul {
    width: 100vw;
  }

  #how-we-help .image-text .image,
  #how-we-help .image-text .text {
    width: 100%;
  }

  #gallery .gallery-wrap {
    flex-wrap: wrap;
  }

  #gallery .gallery-wrap>div.img-large,
  #gallery .gallery-wrap>div.img-small {
    flex-basis: 100%;
  }

  #gallery .gallery-wrap>div img {
    margin-bottom: 10px !important;
  }

  #footer .footer-top .footer-info ul li {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  #banner .home-banner .banner-caption h2 {
    font-size: 40px;
  }

  #banner .home-banner .banner-caption p {
    font-size: 18px
  }
}