html {
  scroll-padding-top: 12vw;
  /*Height of Sticky Header*/
}

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

@media screen and (max-width: 1256px) {
  .hero-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 150px;
  }
  .social .social-left {
    margin: 100px;
  }
  .social .social-right {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .system .sys-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .system .sys-bottom .sysb-left {
    margin-right: 50px;
  }
  .system .sys-bottom .sysb-right {
    margin-left: 50px !important;
  }
  .vendor h2 {
    font-size: 18px;
  }
  .vendor .vendor-bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 900px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /* on activation */
    /* menu appearance*/
    /* demo styles */
  }
  .header .logo {
    padding-top: 50px;
    margin-left: 50px;
    margin-right: 20px;
  }
  .header .logo img {
    width: 142px !important;
    height: 48px !important;
  }
  .header .contact {
    margin-left: -35%;
    margin-right: 20px;
  }
  .header .sub {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-right: 30px;
    padding-left: 20px;
  }
  .header #toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 28px;
    height: 30px;
    margin: 30px auto 10px;
  }
  .header #toggle span:after,
  .header #toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
  }
  .header #toggle span:after {
    top: 9px;
  }
  .header #toggle span {
    position: relative;
    display: block;
  }
  .header #toggle span,
  .header #toggle span:after,
  .header #toggle span:before {
    width: 25px;
    height: 5px;
    background-color: #eee;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 2px;
  }
  .header #toggle.on span {
    background-color: transparent;
  }
  .header #toggle.on span:before {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .header #toggle.on span:after {
    -webkit-transform: rotate(-45deg) translate(7px, -8px);
            transform: rotate(-45deg) translate(7px, -8px);
  }
  .header #toggle.on + #menu {
    opacity: 1;
    visibility: visible;
  }
  .header #menu {
    position: relative;
    top: 100px;
    right: -40%;
    width: 200px;
    padding: 10px;
    margin: auto;
    text-align: center;
    border-radius: 4px;
    background: #b1b2b5;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    /* just for this demo */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
  }
  .header #menu:after {
    position: absolute;
    top: 55px;
    left: 10px;
    height: 50px;
    content: "";
    display: block;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }
  .header ul, .header li, .header li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .header li a {
    padding: 5px;
    color: #888;
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .header li a:hover,
  .header li a:focus {
    background: #1ABC9C;
    color: #fff;
  }
  .header body {
    margin-top: 3em;
    background: #eee;
    color: #555;
    font-family: "Open Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  }
  .header p, .header p a {
    font-size: 12px;
    text-align: center;
    color: #888;
  }
  .hero-right {
    margin-left: 50px;
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #eeeeee;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  border: 0;
  background-color: #ffffff;
}

.header {
  height: 118px;
  background-color: #11468f;
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.header .logo {
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  height: 118px;
  margin-bottom: 25px;
  margin-top: 55px;
}

.header .logo img {
  width: 182px;
  height: 88px;
}

.header .menu {
  margin-top: 30px;
  width: 40%;
  font-size: 20px;
  letter-spacing: 2px;
}

.header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
}

.header .menu ul li {
  display: inline-block;
  color: #f9f8f8;
}

.header .menu ul li a {
  color: #f9f8f8;
  text-decoration: none;
}

.header .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5px;
}

.header .contact .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #f9f8f8;
}

.header .contact .phone {
  font-size: 30px;
  color: #f9f8f8;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.hero .hero-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero .hero-left .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 100px;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.hero .hero-left .services .serviceTags {
  margin-bottom: 50px;
  height: auto;
}

.hero .hero-left .services .mainService {
  margin-top: -50px;
}

.hero .hero-left .services-content {
  margin-left: 50px;
  margin-bottom: 100px;
}

.hero .hero-left .services-content h2 {
  color: #11468f;
  font-size: 36px;
  font-size: calc(px + (38 - 20) * ((100vw - 1024px) / (1600 - 1024)));
  max-width: 65%;
}

.hero .hero-left .services-content p {
  font-size: 1em;
  font-weight: 700;
  color: #78a3df;
  max-width: 300px;
}

.hero .hero-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero .hero-right .free-estimate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  border-radius: 15px;
  padding-top: 50px;
  margin-bottom: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#11468f), color-stop(25%, #3e74bc), color-stop(80%, #78a3df), to(#eeeeee));
  background: linear-gradient(180deg, #11468f 0%, #3e74bc 25%, #78a3df 80%, #eeeeee 100%);
}

.hero .hero-right .free-estimate .co-name {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.hero .hero-right .free-estimate .co-name span {
  margin-top: 10px;
  font-size: 22px;
  color: #b0f5f9;
}

.hero .hero-right .free-estimate .co-name p {
  color: #eeeeee;
  text-shadow: 0 0 1.5px #041562, 0 0 1.5px #041562, 0 0 1.5px #041562, 0 0 1.5px #041562;
  font-size: 42px;
  font-weight: 700;
}

.hero .hero-right .free-estimate .offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.hero .hero-right .free-estimate .offer img {
  margin: 20px;
  height: 200px;
  width: 350px;
}

.hero .hero-right .free-estimate .offer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #11468f;
  font-size: 24px;
}

.hero .hero-right .free-estimate .offer .cta {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #041562;
  margin: 10px;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
}

.hero .hero-right .free-estimate .offer .cta p {
  color: #eeeeee;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #be0745;
  height: auto;
  border: 1px solid transparent;
}

.social .social-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 50%;
  margin-top: 25px;
  margin-left: 50px;
  margin-bottom: 50px;
}

.social .social-left .yelp-review {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}

.social .social-left .yelp-review .yelp-profile {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social .social-left .yelp-review .yelp-profile .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.social .social-left .yelp-review .yelp-profile .details p {
  margin-bottom: 5px;
}

.social .social-left .yelp-review .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.social .social-left .yelp-review .icons .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.social .social-left .yelp-review .icons .icon img {
  width: 20px;
  height: 20px;
}

.social .social-left .yelp-review .yelp-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 5px;
}

.social .social-left .yelp-review .yelp-stars img {
  width: 20px;
  height: 20px;
}

.social .social-left .yelp-review .yelp-content {
  font-size: 16px;
  line-height: 1.4;
}

.social .social-left .yelp-review .yelp-content p {
  max-width: 500px;
}

.social .social-left .yelp-review .yelp-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social .social-left .yelp-review .yelp-badges div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid lightgray;
  border-radius: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 10px 8px 10px;
}

.social .social-left .yelp-review .yelp-badges div img {
  width: 20px;
  height: 20px;
  padding-right: 10px;
}

.social .social-left .yelp-review .yelp-badges p {
  font-size: 14px;
}

.social .social-left .carousel {
  position: relative;
}

.social .social-left .carousel__item {
  height: 300px;
  padding: 1em;
  font-size: 1.2em;
  color: #ffffff;
  display: none;
}

.social .social-left .carousel__item--selected {
  display: block;
}

.social .social-left .carousel__nav {
  margin-bottom: -50px;
  width: 100%;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.social .social-left .carousel__button {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.social .social-left .carousel__button--selected {
  background: rgba(255, 255, 255, 0.5);
}

.social .social-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 50px;
}

.social .social-right .award-left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social .social-right .award-left .award {
  width: 253px;
  height: 232px;
}

.social .social-right .award-right {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social .social-right .award-right .left {
  margin-right: 50px;
}

.social .social-right .award-right .left p {
  max-width: 275px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

.social .social-right .award-right .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 50px;
  margin-right: 50px;
}

.social .social-right .award-right .right img {
  width: 150px;
  height: 50px;
}

.about {
  background-color: #f9f8f8;
  border: 1px solid transparent;
}

.about .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  gap: 20px;
  margin-left: 100px;
  margin-top: 100px;
  margin-bottom: 100px;
  border-left: 15px solid #11468f;
  width: 75%;
}

.about span {
  color: #041562;
  padding-left: 20px;
  width: 100%;
  line-height: 1.6;
  font-weight: 400;
  font-size: 20px;
}

.system {
  height: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

.system .systop {
  margin-bottom: 50px;
  margin-left: 50px;
}

.system .systop h2 {
  font-size: 38px;
  color: #223c3d;
}

.system .systop h4 {
  color: #223c3d;
  font-size: 24px;
  font-weight: 800;
}

.system .sys-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.system .sys-bottom .process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

.system .sys-bottom .process .topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  max-width: 90%;
}

.system .sys-bottom .process .topic h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 10px;
}

.system .sys-bottom .process .topic p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.system .sys-bottom .sysb-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 50px;
  padding: 20px;
  background-color: #223c3d;
  color: #63c832;
  gap: 20px;
}

.system .sys-bottom .sysb-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -25px;
  margin-bottom: 25px;
  margin-left: -25px;
  margin-right: 50px;
  padding: 20px;
  background-color: #63c832;
  color: #223c3d;
  gap: 30px;
}

.vendor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 100px;
}

.vendor .vendor-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  margin-left: 50px;
}

.vendor .vendor-top h2 {
  color: #164a91;
  font-size: 38px;
  max-width: 80%;
}

.vendor .vendor-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 200px;
}

.vendor .vendor-bottom .vb-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 500px;
}

.vendor .vendor-bottom .vb-left p {
  max-width: 60%;
  color: #17438a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.vendor .vendor-bottom .vb-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vendor .vendor-bottom .vb-right .rectangle {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #b1b2b5;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 50px;
  margin-right: 50px;
  height: auto;
  width: auto;
  min-width: 250px;
  border-radius: 5px;
  display: flex;
}

.vendor .vendor-bottom .vb-right .rectangle .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}

.vendor .vendor-bottom .vb-right .rectangle .top .acpro img {
  width: 191px;
  height: 75px;
}

.vendor .vendor-bottom .vb-right .rectangle .top .rheem img {
  width: 75px;
  height: 75px;
}

.vendor .vendor-bottom .vb-right .rectangle .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
  margin-left: 100px;
}

.vendor .vendor-bottom .vb-right .rectangle .bottom .gree img {
  width: 274px;
  height: 54px;
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 50px;
  margin-bottom: 75px;
}

.faq h2 {
  font-size: 48px;
  color: #164a91;
}

.faq .faq-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq .faq-bottom {
  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-line-pack: center;
      align-content: center;
}

.faq .faq-bottom .faqb-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faq .faq-bottom .faqb-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faq .faq-bottom .faqb-right img {
  height: 60px;
  width: 70px;
}

.faq .faq-bottom .faqb-right .accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 24px;
  color: #17438a;
  max-width: 800px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.faq .faq-bottom .faqb-right .accordion p {
  padding-left: 20px;
}

.faq .faq-bottom .faqb-right .odd {
  background-color: lightgrey !important;
  border-radius: 10px;
  padding: 5px;
  margin-left: 10px;
}

.faq .faq-bottom .faqb-right .active, .faq .faq-bottom .faqb-right .accordion:hover {
  background-color: #ccc;
}

.faq .faq-bottom .faqb-right .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.faq .faq-bottom .faqb-right .panel p {
  margin-top: 15px;
  margin-left: 100px;
  margin-bottom: 15px;
  max-width: 675px;
  line-height: 1.4;
  font-size: 22px;
  color: #77a1cc;
}

.footer {
  background-color: #11468f;
  height: auto;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  color: #f9f8f8;
}

.footer .company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .company p {
  font-size: 28px;
}

.footer .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .information .sociallinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .information .sociallinks img {
  width: 150px !important;
  height: 70px !important;
}

.footer .information .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer .information .contact .coms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer .information .contact .coms div {
  font-size: 24px;
  color: #eee;
}

.footer .information .contact .coms div p {
  display: inline;
  font-size: 28px;
  color: #b0f5f9;
  padding-right: 20px;
}

.footer .information .contact .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 24px;
}

.footer .information .contact .address p {
  font-size: 28px;
  display: inline;
  color: #b0f5f9;
  padding-right: 20px;
}

.footer .information .contact .address .address2 {
  margin-left: 140px;
}
/*# sourceMappingURL=styles.css.map */