:root {
  --bg: #fff;
  --primary:#90c320;
  --second:#daff81;
  --primary-text: #248963;
  --light:#e1f8e4;
  --text: #666;
  --gradient:linear-gradient(to right, #f7ef00 0%, #3aff84 100%);
  --send-bg: #2ecc91;
  --send-color: white;
  --receive-bg: #fff;
  --receive-text: #222;
  --page-green: #e8f9f1;
}

body {
  background-color: var(--bg);
}

body, html {
  overflow-x: hidden;
}

.section {
  padding: 80px 0;
}

.section.bg-bottom {
  padding-bottom: 360px;
  background-image: url(./../img/bg-top.png);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.section.bg-bottom.bg-bottom2 {
  background-image: url(./../img/bg-top2.png);
  padding-bottom: 280px;
}

.shadow-lg {
  box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.section.bg-top {
  padding-top: 0;
}
.section.bg-top:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
  padding-bottom: 10.1%;
  margin-bottom: 100px;
  background-image: url(./../img/bg-bottom.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.section.bg-top.bg-top-light:before {
  background-image: url(./../img/bg-bottom-light.png);
}
.section.bg-top.bg-top-green:before {
  background-image: url(./../img/bg-bottom-green.png);
}

.bg-green {
  background: var(--page-green);
}

.bg-black {
  background: #222;
}

.bg-light {
  background-color: #f9f9f9 !important;
}

.bg-icon {
  background-image: url(../img/bg-icon.png);
  background-size: 50%;
  background-position: center;
  background-repeat: repeat;
}

.border-radius {
  border-radius: 12px;
}

.text-primary {
  color: var(--primary) !important;
}

.btn {
  border-radius: 99rem;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 12px 32px;
  font-size: 17px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #222;
  border-color: #222;
  transition: all 0.5s;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-second {
  background-color: var(--second);
  border-color: var(--second);
  color: #222;
  padding: 12px 32px;
  font-size: 17px;
}
.btn-second:hover, .btn-second:focus, .btn-second:active {
  background-color: #222 !important;
  border-color: #222 !important;
  transition: all 0.5s;
  color: #fff;
}

.btn-dark {
  color: #fff;
  background-color: #222;
  border-color: #222;
}
.btn-dark:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

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

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn:focus, .btn:active {
  outline: none;
  box-shadow: none !important;
}

.h1, h1 {
  font-size: calc(1.375rem + 1.5vw);
}

.h2, h2 {
  font-size: calc(1.325rem + 0.9vw);
}

.h3, h3 {
  font-size: calc(1.3rem + 0.6vw);
}

.h4, h4 {
  font-size: calc(1.275rem + 0.3vw);
}

p {
  color: var(--text);
  font-weight: 400;
  font-size: 17px;
}

.line-height-18 {
  line-height: 1.8;
}

.line-height-20 {
  line-height: 2;
}

.line-height-22 {
  line-height: 2.2;
}

.line-height-22 {
  line-height: 2.5;
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: normal;
  color: var(--text);
}

.mb-block {
  display: none;
}

.kv {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.kv .kv-img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.kv .btn {
  margin-top: 24px;
}
.kv svg {
  position: absolute;
  top: -4000px;
  left: -4000px;
}
.kv .container {
  position: relative;
  z-index: 3;
}
.kv .kv-text {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(50%);
}
.kv .kv-text h1 {
  color: #fdf8eb;
  font-size: 3.2rem;
  line-height: 1.2;
}
.kv .kv-text h4 {
  color: #fcff7c;
}
.kv .kv-text p {
  color: #fdf8eb;
}

.noise:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -500px;
  right: -500px;
  bottom: -500px;
  left: -500px;
  background: transparent url(https://www.dropbox.com/s/h7ab1c82ctzy83n/noise.png?raw=1) 0 0;
  background-size: 320px 320px;
  opacity: 0.35;
  animation: noise 1s steps(8, end) infinite both;
  transition: all 3s;
}

@keyframes noise {
  0% {
    transform: translateX(0px, 0px);
  }
  10% {
    transform: translate(-100px, 100px);
  }
  20% {
    transform: translate(150px, -100px);
  }
  30% {
    transform: translate(-100px, 100px);
  }
  40% {
    transform: translate(100px, -150px);
  }
  50% {
    transform: translate(-100px, 200px);
  }
  60% {
    transform: translate(-200px, -100px);
  }
  70% {
    transform: translateY(50px, 100px);
  }
  80% {
    transform: translate(100px, -150px);
  }
  90% {
    transform: translate(0px, 200px);
  }
  100% {
    transform: translate(-100px, 100px);
  }
}
#gooey-button {
  border: none;
  filter: url("#gooey");
  position: relative;
}

#gooey-button:focus {
  outline: none;
}

#gooey-button .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#gooey-button .bubbles .bubble {
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}

#gooey-button:hover .bubbles .bubble, #gooey-button:active .bubbles .bubble, #gooey-button:focus .bubbles .bubble {
  background-color: #222;
}

#gooey-button .bubbles .bubble:nth-child(1) {
  left: 18px;
  width: 25px;
  height: 25px;
  animation: move-1 3.02s infinite;
  animation-delay: 0.2s;
}

#gooey-button .bubbles .bubble:nth-child(2) {
  left: 18px;
  width: 25px;
  height: 25px;
  animation: move-2 3.04s infinite;
  animation-delay: 0.4s;
}

#gooey-button .bubbles .bubble:nth-child(3) {
  left: 100px;
  width: 25px;
  height: 25px;
  animation: move-3 3.06s infinite;
  animation-delay: 0.6s;
}

#gooey-button .bubbles .bubble:nth-child(4) {
  left: 20px;
  width: 25px;
  height: 25px;
  animation: move-4 3.08s infinite;
  animation-delay: 0.8s;
}

#gooey-button .bubbles .bubble:nth-child(5) {
  left: 53px;
  width: 25px;
  height: 25px;
  animation: move-5 3.1s infinite;
  animation-delay: 1s;
}

#gooey-button .bubbles .bubble:nth-child(6) {
  left: 16px;
  width: 25px;
  height: 25px;
  animation: move-6 3.12s infinite;
  animation-delay: 1.2s;
}

#gooey-button .bubbles .bubble:nth-child(7) {
  left: 77px;
  width: 25px;
  height: 25px;
  animation: move-7 3.14s infinite;
  animation-delay: 1.4s;
}

#gooey-button .bubbles .bubble:nth-child(8) {
  left: 15px;
  width: 25px;
  height: 25px;
  animation: move-8 3.16s infinite;
  animation-delay: 1.6s;
}

#gooey-button .bubbles .bubble:nth-child(9) {
  left: 93px;
  width: 25px;
  height: 25px;
  animation: move-9 3.18s infinite;
  animation-delay: 1.8s;
}

#gooey-button .bubbles .bubble:nth-child(10) {
  left: 49px;
  width: 25px;
  height: 25px;
  animation: move-10 3.2s infinite;
  animation-delay: 2s;
}
@keyframes move-1 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -63px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-2 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -90px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-3 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -121px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-4 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -125px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-5 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -68px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-6 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -119px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-7 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -111px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-8 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -83px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-9 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -71px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-10 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -78px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
.s1 {
  padding-top: 140px;
}

.s1-img {
  position: relative;
}
.s1-img .s1-img-item {
  position: absolute;
  left: 0;
  top: 38%;
}

.s2 {
  padding-bottom: 40px;
}
.s2 .talk-bubble {
  width: 80%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.s2 .talk-bubble p {
  max-width: 300px;
  word-wrap: break-word;
  margin-bottom: 12px;
  line-height: 24px;
  position: relative;
  padding: 10px 20px;
  border-radius: 25px;
}
.s2 .talk-bubble p:before, .s2 .talk-bubble p:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 25px;
}
.s2 .talk-bubble .send {
  color: var(--send-color);
  background: var(--send-bg);
  align-self: flex-end;
}
.s2 .talk-bubble .send:before {
  right: -7px;
  width: 20px;
  background-color: var(--send-bg);
  border-bottom-left-radius: 16px 14px;
}
.s2 .talk-bubble .send:after {
  right: -26px;
  width: 26px;
  background-color: var(--page-green);
  border-bottom-left-radius: 10px;
}
.s2 .talk-bubble .receive {
  background: var(--receive-bg);
  color: black;
  align-self: flex-start;
}
.s2 .talk-bubble .receive:before {
  left: -7px;
  width: 20px;
  background-color: var(--receive-bg);
  border-bottom-right-radius: 16px 14px;
}
.s2 .talk-bubble .receive:after {
  left: -26px;
  width: 26px;
  background-color: var(--page-green);
  border-bottom-right-radius: 10px;
}
.s2 .img-fluid {
  margin: 16px auto 8px;
  width: 60%;
  max-width: 92px;
}

.bubble-chat {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: auto;
  background-color: var(--send-bg);
  color: #fff;
  position: relative;
  top: -30px;
  padding: 12px 8px;
  text-align: center;
  border-radius: 16px;
  line-height: 1.3;
}

.bubble-chat:after {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.bubble-chat:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  margin: auto;
  border-color: var(--send-bg) transparent transparent transparent;
  line-height: 0px;
  border-width: 10px 12px 0 12px;
  left: calc(50% - 15px);
  bottom: -10px;
}

.price-table {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 0 none;
}

.price-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.price-table tr td {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 20px;
  font-size: 16px;
}

.price-table tr td:first-child {
  border-left: 0 none;
  text-wrap: nowrap;
}

.price-table tr td:not(:first-child) {
  text-align: center;
}

.price-table tr:nth-child(even) {
  background-color: #FFFFFF;
}

.price-table tr:hover {
  background-color: #EEEEEE;
}

.price-table .fa-check {
  color: var(--primary);
}

.price-table .fa-times {
  color: #D8D6E3;
}

.s4-item2 {
  position: relative;
}
.s4-item2::after {
  content: "\f054";
  font: normal normal normal 14px/1 FontAwesome;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  font-size: 20px;
}
.s4-item2:last-child::after {
  content: none;
}

.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--send-bg) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
  color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #FFFFFF;
  background: var(--primary);
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(2) {
  background-color: rgba(214, 227, 214, 0.25);
}

.price-table tr td:nth-child(2) {
  background-color: rgba(214, 227, 214, 0.15);
  padding: 12px 36px;
}

.price-table tr td:nth-child(2) .fa-check,
.price-table tr:nth-child(2n) td:nth-child(2) .fa-check {
  /* color: #ffffff; */
}

/**/
.price-table tr.price-table-head td {
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat";
}

.price-table tr.price-table-head {
  background-color: var(--primary);
  color: #FFFFFF;
}

.price-table td.price-table-popular {
  font-family: "Montserrat";
  border-top: 3px solid var(--primary);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 48px;
  font-weight: 700;
}

.price-table .price-blank {
  background-color: #fafafa;
  border: 0 none;
}

.btn-square {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.testimonial-item .fa-quote-left {
  margin-top: -24px;
}

.testimonial-carousel .owl-item .testimonial-item {
  border-radius: 16px;
}

.bg-dark *:not(.bg-light *):not(.bg-white *) {
  color: #f7f7f7;
}

.cta-btn {
  margin-top: 20px;
  padding: 10px 32px;
  color: #fff;
  font-size: 20px;
  border-radius: 99rem;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dbf043+0,d2e638+37,c3d825+56,dbf043+83,e9f246+100 */
  background: linear-gradient(to right, #90c320 0%, rgb(198, 218, 54) 40%, rgb(171, 189, 31) 60%, rgb(172, 188, 51) 83%, #90c320 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-size: 200% 200%;
  animation: animateGlow 1s linear infinite;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: 2px solid #fff;
}
.cta-btn:hover {
  color: #FFF;
  background-size: 100% 100%;
  animation: none;
  transition: all 1s;
}

.owl-nav {
  display: none !important;
}

.s6 {
  position: relative;
}
.s6 .s6-footer {
  position: relative;
  text-align: center;
  margin-top: 60px;
}
.s6 .s6-footer h2 {
  display: inline-block;
  margin: 0 auto 0;
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}
.s6 .fw-normal {
  font-size: 17px;
  line-height: 1.5;
}

.s7 label, .s7 textarea {
  font-weight: 400;
}
.s7 .btn {
  border-radius: 0.25rem;
}
.s7 .form-floating > .form-control:not(:-moz-placeholder) {
  padding: 1rem 0.75rem;
}
.s7 .form-floating > .form-control:focus, .s7 .form-floating > .form-control:not(:placeholder-shown) {
  padding: 1rem 0.75rem;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@media (max-width: 1200px) {
  .kv {
    overflow-x: hidden;
  }
  .kv img.d-lg-block {
    width: 120% !important;
    max-width: 120%;
    margin-left: -5%;
  }
}
@media (min-width: 920px) {
  .container-sm {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  .kv-text .text-left {
    text-align: center;
  }
  .s2 .h-100 {
    height: auto !important;
    margin-bottom: 60px !important;
  }
  .kv .kv-text {
    left: 0;
    margin-top: 100px;
  }
  .s1 .container > .row {
    flex-direction: column-reverse;
  }
  .s1 .col-md-6 {
    text-align: center;
  }
  .s1 p {
    margin-top: 12px !important;
  }
  .s1 h5 {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .s2 .h-100 {
    margin-bottom: 80px !important;
  }
  .s4-item2::after {
    content: "\f078";
    font: normal normal normal 14px/1 FontAwesome;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    line-height: 1;
    text-rendering: auto;
    position: absolute;
    right: 50%;
    top: initial;
    bottom: -48px;
    transform: translateX(50%);
    font-size: 28px;
  }
  .s4-item2 {
    margin-bottom: 80px;
  }
}
@media (max-width: 540px) {
  .section {
    padding: 50px 0;
  }
  .kv {
    padding: 30px 0;
    min-height: auto;
  }
  .kv .container {
    max-width: 96%;
  }
  .kv .kv-text {
    margin-top: 0;
  }
  .kv h4 {
    font-size: 18px;
  }
  .kv .kv-text {
    padding: 0;
  }
  .kv .btn {
    font-size: 16px;
  }
  .kv .star-header {
    padding: 0;
  }
  .kv .kv-line1 {
    width: 38%;
    bottom: 8%;
  }
  .kv .kv-line2 {
    width: 22%;
    right: -7%;
    bottom: 48%;
  }
  .kv .kv-slogan {
    bottom: 5%;
    max-width: 160%;
    margin-left: -30%;
  }
  .s2-text {
    padding: 0 12px;
  }
  .s2 .btn-box h2 {
    font-size: 32px;
  }
  .container {
    padding: 0 20px;
  }
  .s5-text br {
    display: block;
  }
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .s4 {
    padding-top: 88px;
    background-size: 150% auto;
  }
  .s5 {
    background-size: 64%, 55%;
    background-position: right 88%, left 44%;
  }
  .mb-block {
    display: block;
  }
  .mb-none {
    display: none;
  }
  .s3 {
    padding-top: 0;
  }
  .s3 .container {
    padding: 0;
  }
}
@media (max-width: 540px) {
  .kv .kv-text h1 {
    font-size: 28px;
    margin-bottom: 12px !important;
  }
  .kv .kv-img {
    top: 30px;
  }
  .kv .kv-text {
    margin-top: -24px;
  }
  .kv .btn {
    margin-top: 20px;
  }
  .display-6 {
    font-size: 24px;
  }
  .s2 .row {
    margin: 0;
  }
  .price-table tr td:first-child {
    border-left: 0 none;
    text-wrap: initial;
    width: 80px;
  }
  .price .btn {
    font-size: 15px;
  }
  .s3 .h2,
  .s4 h2 {
    font-size: 22px;
  }
  .s4 h5 {
    font-size: 22px;
  }
  .price-table tr.price-table-head td {
    font-size: 15px;
  }
  .price-table tr td:nth-child(2),
  .price-table tr td:not(:first-child) {
    padding: 12px 16px;
    font-weight: normal;
    width: calc(50% - 40px);
    min-width: 150px;
  }
}/*# sourceMappingURL=google-order.css.map */