:root {
  --primary-color: #0099FF;
  --secondary-color: #D00000;
  --gray: #434343;
  --system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
  background: #F7F3ED;
  margin: 0;
  font-family: var(--system-ui);
  color: var(--gray);
}

* {
  box-sizing: border-box;
}

* > * {
  box-sizing: border-box;
}

.navbar {
  background: var(--primary-color);
  padding: 1em;
}
.navbar .logo {
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 1.2em;
}
.navbar nav {
  display: none;
}
.navbar .container {
  display: flex;
  place-content: space-between;
}
.navbar .mobile-menu {
  cursor: pointer;
  width: 2em;
}

a {
  color: #444444;
}

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

section {
  padding: 5em 2em;
}

.hero {
  text-align: center;
  background-color: var(--primary-color);
  padding: 3em 2em 0.8em 2em;
}

.left-col .subhead {
  font-weight: 400;
  color: white;
  font-size: 1.2em;
  margin-bottom: 2em;
}
.left-col h1 {
  font-size: 3em;
  line-height: 1em;
  margin-top: 0.2em;
  color: white;
  line-height: 1.3;
}
.left-col .call-cta {
  display: block;
  margin-top: 1em;
  color: white;
  font-weight: 700;
  font-size: 1.7em;
  text-decoration: none;
}

.primary-cta {
  background: var(--secondary-color);
  color: white;
  font-weight: 700;
  font-size: 1.2em;
  padding: 0.6em 1.3em;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
}

.hero-img {
  max-width: 100%;
}

.custom-shape-divider-top-1673970660 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1673970660 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 131px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1673970660 .shape-fill {
  fill: #0099FF;
}

.features-section {
  color: var(--gray);
  position: relative;
  padding: 8em 2em 0 2em;
  text-align: center;
}

.services {
  text-align: center;
  padding-bottom: 0;
}
.services li {
  background-color: white;
  border-radius: 8px;
  padding: 3em;
  margin: 2em 0;
}
.services li img {
  width: 5em;
  height: 5em;
}
.services li h3 {
  font-size: 1.4em;
}

.service-area {
  background-color: var(--primary-color);
  color: white;
  position: relative;
  padding: 8.5em 2em;
  text-align: center;
}
.service-area .custom-shape-divider-top-1673982986 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.service-area .custom-shape-divider-top-1673982986 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 131px;
}
.service-area .custom-shape-divider-top-1673982986 .shape-fill {
  fill: #F7F3ED;
}
.service-area .custom-shape-divider-bottom-1673982839 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.service-area .custom-shape-divider-bottom-1673982839 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 131px;
}
.service-area .custom-shape-divider-bottom-1673982839 .shape-fill {
  fill: #F7F3ED;
}

.testimonials-section {
  padding-top: 0;
}
.testimonials-section .name-rating {
  display: flex;
  margin-left: 2em;
}
.testimonials-section .name-rating-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1em;
  font-size: 1.5em;
  font-weight: 700;
}
.testimonials-section .name-rating-div p {
  margin: 0;
}
.testimonials-section li {
  flex: 1;
  background: white;
  padding: 2em 1em;
  margin: 0 auto 3em auto;
  border-radius: 1em;
}
.testimonials-section li img {
  width: 4em;
  height: 4em;
  border-radius: 50%;
}
.testimonials-section li cite {
  margin-left: 2em;
}

.faq {
  background-color: white;
  text-align: center;
}
.faq .desktop-version {
  display: none;
}
.faq li {
  background-color: var(--primary-color);
  color: white;
  padding: 1em 1.5em;
  border-radius: 8px;
  margin-bottom: 1em;
  text-align: left;
}

h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  margin-top: 2em;
}

input, textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border-radius: 0.3em;
  border: 1px solid gray;
  box-sizing: border-box;
}

input[type=submit] {
  background-color: var(--secondary-color);
  color: white;
  font-size: 1.2em;
  font-weight: 700;
  border: none;
  margin-bottom: 5em;
  border-radius: 8px;
  display: inline-block;
  padding: 0.8em 2em;
  width: unset;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
}

footer {
  background-color: #F49E4C;
  color: white;
  padding: 4em 2em;
}
footer a {
  color: white;
  text-decoration: none;
  display: block;
}
footer .block {
  padding: 1em 1em;
}
footer .footer-heading {
  font-size: 1.2em;
  font-weight: 700;
}
footer .hr-line {
  color: white;
}
footer .row-lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 1.2em;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: #20272E;
  height: 100vh;
  padding: 1em;
}
nav ul.primary-nav {
  margin-top: 5em;
}
nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  font-size: 1.3em;
  text-align: right;
}
nav li a:hover {
  color: #c3c3c3;
}

.mobile-menu-exit {
  float: right;
  margin: 0.5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
  .hero .container {
    width: 100%;
  }
  .hero-cta {
    align-items: baseline;
  }
  .features-section .container {
    width: 100%;
  }
  .service-area .container {
    width: 100%;
  }
  .faq .container {
    width: 100%;
  }
  .faq {
    padding: 3em 3em;
  }
  .services .container {
    width: 100%;
  }
  .testimonials-section .container {
    width: 100%;
  }
  .services {
    padding: 2em 2em;
  }
  footer .row {
    display: flex;
  }
  footer .row .block {
    width: 33%;
    padding: 1em;
  }
  footer a:hover {
    opacity: 70%;
    cursor: pointer;
  }
  .navbar nav {
    display: flex;
    justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: flex;
  }
  .navbar nav a {
    color: white;
    font-size: 1.2em;
    padding: 0.1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: 700;
  }
  .navbar nav li.go-premium-cta a {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    margin-top: -0.2em;
    padding: 0.3em 2em;
  }
  .navbar nav li.go-premium-cta a:hover {
    background: #910303;
    color: white;
  }
}
/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-top-1673982986 svg {
    width: calc(100% + 1.3px);
    height: 119px;
  }
}
/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-top-1673970660 svg {
    width: calc(100% + 1.3px);
    height: 119px;
  }
}
/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-bottom-1673982839 svg {
    width: calc(100% + 1.3px);
    height: 119px;
  }
}
@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 10em 4em;
  }
  .logo:hover {
    cursor: pointer;
  }
  .hero .container {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
  .hero .container .left-col {
    margin: 3em 3em 0 5em;
  }
  .hero .container .left-col h1 {
    font-size: 3em;
  }
  .hero-img {
    width: 100%;
  }
  .hero-cta {
    display: flex;
  }
  .primary-cta {
    margin-right: 1em;
  }
  ul.features-list {
    display: block;
  }
  ul.features-list li {
    font-size: 1.4em;
  }
  ul.features-list li:before {
    width: 30px;
    height: 30px;
  }
  .services ul {
    display: flex;
  }
  .services ul li {
    margin: 0 1em;
    flex: 1;
  }
  .testimonials-section ul {
    display: flex;
  }
  .testimonials-section ul li {
    margin: 0 1em;
  }
  .contact-section {
    position: relative;
  }
  .contact-section .container {
    display: flex;
  }
  .contact-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
  }
  .contact-right iframe {
    height: 100%;
  }
}
@media only screen and (min-width: 1450px) {
  h1 {
    font-size: 3.45em !important;
    margin-bottom: 0;
  }
  h3 {
    margin-bottom: 0;
  }
  h2 {
    font-size: 3em;
  }
  p {
    font-size: 18px;
  }
  .hero .container {
    align-items: center;
  }
  .features-section p {
    width: 60%;
    margin: 0 auto 30px auto;
  }
  .features-section:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 20em;
    background: url("../images/dots.svg") no-repeat;
    left: 4.5em;
    top: 2em;
  }
  .services ul {
    text-align: left;
  }
  .services ul h2 {
    margin-bottom: 0.5em;
  }
  .service-area {
    padding: 14em;
  }
  .service-area h2 {
    margin-bottom: 0.5em;
  }
  .service-area p {
    width: 60%;
    margin: 0 auto 40px auto;
  }
  .faq .container {
    display: flex;
  }
  .faq .container .left {
    min-width: 40%;
    text-align: left;
  }
  .faq .container .left .desktop-version {
    display: inline;
  }
  .faq .container .r-r {
    margin-left: 20%;
  }
  .faq .container li {
    max-width: 80%;
  }
  .faq .container .mobile-version {
    display: none;
  }
  .navbar .container {
    max-width: 1140px;
  }
  .hero .container {
    max-width: 1140px;
  }
  .features-section .container {
    max-width: 1140px;
  }
  .service-area .container {
    max-width: 1140px;
  }
  .faq .container {
    max-width: 1140px;
  }
  .services .container {
    max-width: 1140px;
  }
  .testimonials-section .container {
    max-width: 1140px;
  }
}/*# sourceMappingURL=main.css.map */