@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css");
body {
  overflow-x: hidden;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
@keyframes fadeInScaleDown {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  position: relative;
  height: 60px;
}
header nav {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
header nav a {
  text-decoration: none;
  color: #333;
}
header nav a:hover {
  color: #ffc600;
}
header nav .cta-main {
  color: black;
}
header nav .cta-main:hover {
  color: black;
}
@media (max-width: 991px) {
  header nav {
    display: none;
  }
}
header .btnMenu {
  border: none;
  outline: none;
  padding: 0 8px;
  background-color: transparent;
  display: none;
}
header .btnMenu span {
  font-size: 2rem;
}
@media (max-width: 991px) {
  header .btnMenu {
    display: block;
  }
}

@media (max-width: 991px) {
  .openMenu nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: column;
    top: 92px;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
    row-gap: 1rem;
  }
  .openMenu .btnMenu .bi-list::before {
    content: "\f659";
  }
}

.hero-section {
  padding: 100px 0 0;
  text-align: center;
  position: relative;
  background-color: rgba(255, 198, 0, 0.1);
}
.hero-section::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 16%;
  background-color: #ffc600;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-section img {
  position: relative;
  z-index: 1;
  width: 80%;
}
.hero-section .title {
  overflow: hidden;
  margin: 0 auto 2rem;
  background: linear-gradient(45deg, #ffc600, #344b5d);
  -webkit-background-clip: text;
          background-clip: text;
  font-style: italic;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 56px;
}
.hero-section .title span {
  color: #344b5d;
  border-bottom: thick solid #344b5d;
}

.cta-block {
  background-image: linear-gradient(#eab500, #ffc600);
  position: relative;
  padding: 2rem 0;
}
.cta-block h3, .cta-block p {
  margin: 0;
}

.key-points {
  background-color: rgba(51, 51, 51, 0.1);
}

.about-section {
  padding-bottom: 0;
  padding-top: 20px;
  background-color: rgba(255, 198, 0, 0.1);
  position: relative;
}
.about-section canvas {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}
.about-section .container {
  z-index: 1;
  position: relative;
}
.about-section img {
  display: block;
  margin: auto;
  width: 80%;
}
.about-section p {
  text-align: justify;
}
@media (max-width: 991px) {
  .about-section {
    padding-bottom: 100px;
  }
  .about-section img {
    width: 50%;
    margin-bottom: 2rem;
  }
  .about-section .section-title, .about-section .section-sub-title, .about-section p {
    text-align: center;
  }
  .about-section .section-title::before {
    margin: auto;
    left: 0;
    right: 0;
  }
}

.cta {
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.cta:hover {
  box-shadow: 4px 4px 0px #333333;
}

.cta-invert {
  background-color: #333;
  color: white;
}

.cta-main {
  background-color: #ffc600;
  color: white;
}

.btn-main {
  background-color: #ffc600;
  color: white;
}
.btn-main:hover {
  background-color: #ffc600;
  filter: brightness(110%);
  color: white;
}
.btn-main:active {
  background-color: #ffc600 !important;
  filter: brightness(95%);
  color: white;
}
.btn-main:focus {
  background-color: #ffc600 !important;
  border-color: #ffc600;
  box-shadow: 0 0 0 0.25rem rgba(255, 198, 0, 0.25);
}

.section {
  position: relative;
  padding: 100px 0;
}
.section .section-title {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}
.section .section-title::before {
  content: "";
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #ffc600;
  position: absolute;
  z-index: -1;
  top: -4px;
  left: -16px;
}
.section .section-sub-title {
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 24px;
}
.section .section-title-center {
  text-align: center;
}
.section .section-title-center::before {
  left: 0;
  right: 0;
  margin: auto;
}
.section p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 1rem;
}

.rich-section {
  padding-bottom: 0;
  position: relative;
}

.info-tile {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.info-tile .img {
  display: block;
  position: relative;
  height: 80px;
  margin: 0 auto 1rem;
}
.info-tile h4 {
  text-align: center;
  text-transform: capitalize;
}
.info-tile:hover {
  background-color: #ffe817;
  transform: scale(1.1);
}

.top-left-corner {
  border-top-left-radius: 1rem;
}

.top-right-corner {
  border-top-right-radius: 1rem;
}

.bottom-left-corner {
  border-bottom-left-radius: 1rem;
}

.bottom-right-corner {
  border-bottom-right-radius: 1rem;
}

.pointers {
  margin-top: 2rem;
}

.point {
  padding: 1rem;
  position: relative;
  text-align: center;
}
.point::before {
  content: " ";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #ffc600;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.point h4 {
  text-transform: capitalize;
}
.point .img {
  display: flex;
  justify-items: center;
  align-items: center;
  margin: 0 auto 1rem;
  position: relative;
  height: 80px;
  width: 80px;
}
.point .img img {
  height: 60px;
  width: 60px;
  display: block;
  margin: auto;
}
.point:hover::before {
  transform: scale(1.1) translateY(-50px);
  opacity: 0.5;
}

.testimonial {
  background-color: #eee;
}
.testimonial .section-title {
  margin-bottom: 3rem;
}
.testimonial .item {
  display: flex;
  align-items: center;
  flex-flow: column;
}
.testimonial .item img {
  display: block;
  margin: auto;
  width: 150px;
}
.testimonial .item .content {
  padding: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.testimonial .item .content p {
  margin: 0;
  text-align: center;
  min-height: 180px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  color: black;
}
.testimonial .item .content p::before {
  content: "\f6b0";
  display: block;
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  left: 0;
  text-align: left;
}
.testimonial .item .content small {
  font-weight: 600;
  position: relative;
  display: flex;
  color: #344b5d;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-style: italic;
}
.testimonial .item .content small::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #344b5d;
}
.testimonial #testimonial {
  background-color: #ffc600;
  background-image: linear-gradient(45deg, #ffeb3b, rgb(255, 174, 0));
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 0px 40px rgba(0, 0, 0, 0.2);
}
.testimonial #testimonial .owl-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
}
.testimonial #testimonial .owl-nav button span {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.testimonial #testimonial .owl-dots {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.testimonial #testimonial .owl-dots .owl-dot {
  height: 12px;
  width: 12px;
  border-radius: 24px;
  background-color: #344b5d;
  opacity: 0.5;
}
.testimonial #testimonial .owl-dots .active {
  opacity: 1;
}

.services-stack {
  background-color: #f5f5f5;
}

.service-card {
  border: 2px solid black;
  position: relative;
  margin-bottom: 2rem;
  transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card * {
  box-sizing: border-box;
}
.service-card .head {
  border-bottom: 2px solid black;
  display: flex;
  align-items: center;
}
.service-card .head .img {
  display: block;
  height: 72px;
  width: auto;
  margin: 0;
  border-right: 2px solid black;
  background-color: #ffc600;
  position: relative;
}
.service-card .head .img img {
  display: block;
  margin: auto;
  height: 100%;
}
.service-card .head h3 {
  flex-flow: 1;
  padding-left: 1rem;
  margin: 0;
  font-size: 22px;
}
.service-card .head h3 a {
  color: black !important;
  font-weight: 700;
  text-decoration: none;
}
.service-card .body {
  min-height: 220px;
  padding: 1rem;
}
.service-card .body ul {
  margin: 0;
  padding-left: 1rem;
}
.service-card .body ul li {
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
}
.service-card:hover {
  box-shadow: 8px 8px 0px rgb(0, 0, 0);
  transform: translateX(-8px) translateY(-8px);
  background-color: white;
}

.services {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.services .item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  position: relative;
}
.services .item::before {
  content: " ";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #ffc600;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.services .item:hover::before {
  transform: scale(1.1);
  opacity: 0.5;
}
.services .item img {
  display: block;
  height: 60px;
}
.services .item span {
  font-weight: bold;
}

.online-presence {
  position: relative;
  background-color: #344b5d;
  color: white;
}
.online-presence img {
  display: block;
  width: 100%;
  margin: auto;
}
@media (max-width: 991px) {
  .online-presence img {
    width: 50%;
    margin-bottom: 2rem;
  }
}
.online-presence p {
  margin-bottom: 1rem;
}
.online-presence .strategies {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}
.online-presence .strategies .item {
  display: flex;
  flex-flow: column;
  row-gap: 1rem;
  background-color: #f5f5f5;
  padding: 1.5rem 0;
  transition: all 0.3s ease-in-out;
}
.online-presence .strategies .item img {
  display: block;
  height: 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.online-presence .strategies .item span {
  font-weight: bold;
  text-align: center;
  color: #333;
}
.online-presence .strategies .item:hover {
  background-color: rgba(255, 198, 0, 0.1);
  box-shadow: 4px 4px 0px rgba(51, 51, 51, 0.5);
}
.online-presence .strategies .item:hover span {
  color: white;
}

.tile {
  background-color: #fff;
  padding: 2rem;
}

.pack {
  position: relative;
  padding: 1.5rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-flow: column;
  background-color: white;
  border: thin solid transparent;
}
.pack h4 {
  position: relative;
  border-bottom: thin solid #aaa;
  padding-bottom: 1rem;
}
.pack .inclusions {
  display: block;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
  flex-grow: 1;
}
.pack .inclusions li {
  border-bottom: thin solid #eee;
  padding: 0.5rem 0;
}
.pack .inclusions span {
  text-align: justify;
  display: block;
}
.pack .price {
  text-align: center;
  font-size: 1.24rem;
  font-weight: bold;
  position: relative;
  background-color: #ffc600;
  padding: 1rem;
  text-decoration: none;
  color: #333;
}
.pack .cta {
  width: 100%;
  background-color: #ffc600;
  color: black;
  display: none;
  text-decoration: none;
  color: #333;
}
.pack:hover {
  border: thin solid #ffc600;
  box-shadow: 0px 0px 1rem rgba(255, 198, 0, 0.5);
  z-index: 5;
}
.pack:hover .price {
  background-color: black;
  color: #ffc600;
}

.packages {
  margin: 1rem 0 2rem;
}
.packages .active {
  border: thin solid #ffc600;
  box-shadow: 0px 0px 1rem rgba(255, 198, 0, 0.5);
  z-index: 5;
}
.packages .active .price {
  background-color: black;
  color: #ffc600;
}

.steps {
  counter-reset: section;
  background-color: #344b5d;
  background-image: url("../img/bg-pattern.svg");
  background-position: center;
  background-size: cover;
  color: white;
}
.steps .row {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.steps .step {
  position: relative;
  display: flex;
  flex-flow: column;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.steps .step::before {
  counter-increment: section;
  content: counter(section);
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #aaa;
  font-weight: 800;
  color: white;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.steps .step::after {
  content: "";
  display: block;
  height: 100px;
  background-color: #eee;
  width: 2px;
}
.steps .no-after::after {
  display: none;
}
.steps p strong {
  display: block;
  font-size: 1.5rem;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .steps p {
    text-align: center;
  }
}
.steps .text-right {
  text-align: right;
}
@media (max-width: 991px) {
  .steps .text-right {
    text-align: center;
  }
}
.steps .row:hover p strong {
  color: #ffc600;
}
.steps .row:hover .step::before {
  color: #ffc600;
  border-color: #ffc600;
  background-color: rgba(255, 198, 0, 0.1);
  font-size: 1.5rem;
}

form {
  padding: 1.5rem;
  box-shadow: 0 0 8px rgba(51, 51, 51, 0.1);
  background-color: rgba(52, 75, 93, 0.1);
}
form .form-floating {
  margin-bottom: 1rem;
}
form .form-floating .form-control:focus {
  border-color: #ffc600;
  box-shadow: 0 0 0 0.25rem rgba(255, 198, 0, 0.25);
}

footer {
  background-color: #151515;
  padding: 80px 0 120px;
  border-top: thick solid #ffc600;
}
footer .footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-logo-block img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
footer .footer-logo-block .caption {
  color: #ffc600;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  padding-left: 3rem;
}
@media (max-width: 991px) {
  footer .footer-logo-block {
    flex-direction: row;
    align-items: center;
  }
  footer .footer-logo-block img {
    height: 250px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .footer-logo-block .caption {
    padding-left: 0px;
  }
}
footer .foot-col-heading {
  margin: 0 0 1rem;
  font-weight: bold;
  font-size: 1rem;
  color: #ffc600;
}
@media (max-width: 991px) {
  footer .foot-col-heading {
    margin-top: 2rem;
  }
}
footer .links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .links a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
}
footer .links a:hover {
  opacity: 1;
  font-weight: 500;
}
footer .footer-links {
  padding: 1rem 0;
  background-color: #111;
  margin-top: 2rem;
}
footer .footer-links .copyright-note {
  font-size: 14px;
  text-align: center;
  display: block;
  color: #444;
}
footer .footer-links .copyright-note a {
  text-decoration: none;
  font-weight: 500;
  color: #666;
}
footer .footer-links .copyright-note a:hover {
  color: #ffc600;
}
footer .contact-details {
  border-top: thin solid rgba(255, 255, 255, 0.05);
  margin-top: 80px;
  padding-top: 2rem;
  text-align: center;
}
footer .contact-details p {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
footer .contact-details i {
  color: #888;
}
footer .contact-details a {
  text-decoration: none;
  color: #666;
}
footer .contact-details a:hover {
  color: white;
}
footer .footer-social-links {
  border-top: thin solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding-top: 2rem;
}
footer .footer-social-links .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
}
footer .footer-social-links .links a {
  background-color: #344b5d;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
footer .footer-social-links .links a i {
  color: white;
  font-size: 20px;
}

.foot-note {
  background-color: #191919;
  padding: 50px 0;
}
.foot-note p {
  color: #666;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.pricing-section {
  background-color: rgba(255, 232, 23, 0.1);
}

#About img {
  display: block;
  margin: auto;
  width: 100%;
}
@media (max-width: 991px) {
  #About img {
    width: 50%;
  }
}

.sign {
  display: flex;
  justify-content: flex-end;
}
.sign .img {
  display: block;
  width: 200px !important;
  margin: unset !important;
}

.popup-wrapper {
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(51, 51, 51, 0.5);
  -webkit-backdrop-filter: Blur(16px);
          backdrop-filter: Blur(16px);
  display: none;
}
.popup-wrapper .popup {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  background-color: white;
  margin: auto;
  box-sizing: border-box;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  position: relative;
}
@media (max-width: 767px) {
  .popup-wrapper .popup {
    width: 90%;
  }
}
@media (max-width: 619px) {
  .popup-wrapper .popup {
    width: 100%;
    height: 100%;
  }
}
.popup-wrapper .popup .btn-popup-close {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 10;
}
.popup-wrapper .popup .btn-popup-close i {
  font-size: 2rem;
}
.popup-wrapper .popup h2 {
  font-weight: 800;
}
.popup-wrapper .popup p {
  font-size: 20px;
}
.popup-wrapper .popup small {
  font-size: 12px;
  color: #333;
  opacity: 0.6;
  margin-top: 2rem;
}
.popup-wrapper .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-wrapper .content img {
  display: block;
  width: 100%;
}
.popup-wrapper .content .colmn-left {
  padding: 2rem;
  width: 450px;
  position: relative;
  flex-shrink: 1;
}
.popup-wrapper .content .colmn-right {
  width: 600px;
  position: relative;
}
@media (max-width: 1079px) {
  .popup-wrapper .content .colmn-left {
    width: 400px;
  }
  .popup-wrapper .content .colmn-right {
    width: calc(100% - 400px);
  }
}
@media (max-width: 991px) {
  .popup-wrapper .content {
    flex-flow: column-reverse;
  }
  .popup-wrapper .content h2, .popup-wrapper .content p, .popup-wrapper .content small {
    text-align: center;
    display: block;
  }
  .popup-wrapper .content .colmn-left {
    width: 100%;
    background-color: #f5f5f9;
  }
  .popup-wrapper .content .colmn-right {
    width: calc(100% - 0px);
  }
  .popup-wrapper .content .colmn-right img {
    height: 300px;
    padding-top: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

@keyframes openPopup {
  from {
    opacity: 0;
    transform: scale(0) translateY(100px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
}
@keyframes closePopup {
  from {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
  to {
    opacity: 0;
    transform: scale(0) translateY(100px);
  }
}
.open-popup {
  display: flex;
  animation: openPopup 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-popup {
  display: none;
  animation: closePopup 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-section .cta-main {
  color: black;
}

#popupForm {
  padding: 0;
  background: none;
  box-shadow: none;
}

.floating-footer {
  display: block;
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  z-index: 100;
  color: #ffc600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-footer::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75%;
  background-color: #344b5d;
  z-index: -1;
}
.floating-footer .container {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  justify-content: center;
}
.floating-footer .container img {
  display: block;
  height: 150px;
}
.floating-footer .container .wrapper {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
  padding-top: 50px;
}
.floating-footer .container .wrapper .content h3 {
  font-weight: 700;
}
.floating-footer .container .wrapper .cta-controls {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.floating-footer .container .link {
  text-decoration: none;
  color: #333;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  border: thin solid #ffc600;
  padding: 0.5rem 1rem;
}
.floating-footer .container .link span {
  font-weight: 600;
  color: #ffc600;
}
.floating-footer .container .link i {
  color: #ffc600;
}
.floating-footer .container .link-main {
  background-color: #ffc600;
}
.floating-footer .container .link-main span, .floating-footer .container .link-main i {
  color: #333 !important;
}
@media (max-width: 991px) {
  .floating-footer::after {
    height: 80%;
  }
  .floating-footer .container img {
    height: 200px;
  }
  .floating-footer .container .wrapper {
    flex-direction: column;
  }
  .floating-footer .link {
    display: inline-flex;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 767px) {
  .floating-footer {
    display: none;
  }
}

.bringUp {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  bottom: 0px;
}
.bringUp::after {
  box-shadow: 0 -16px 32px rgba(0, 0, 0, 0.5);
}

.cta-banner {
  background-color: #344b5d;
  position: relative;
}
.cta-banner .section-title {
  color: white;
  font-size: clamp(24px, 10vw, 72px);
}
.cta-banner .section-title small {
  color: #ffc600;
  display: block;
  font-size: clamp(12px, 10vw, 24px);
  font-weight: bold;
}
.cta-banner .section-title::before {
  display: none;
}
.cta-banner h5 {
  color: white;
}
.cta-banner .block {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.cta-banner img {
  height: 150px;
}
.cta-banner .content h4 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 32px;
  color: white;
}
.cta-banner .content h4::first-letter {
  color: #ffc600;
}
.cta-banner .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: white;
}

.banner {
  background-color: #ffc600;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 3rem;
}
.banner .wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.banner img {
  width: 50%;
  height: 450px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.banner .content {
  width: 50%;
  padding-right: 2rem;
  position: relative;
}
.banner .content::after {
  content: "?";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: clamp(100px, 100vw, 400px);
  font-weight: 800;
  opacity: 0.1;
  z-index: -1;
}
.banner .content h2 {
  text-align: center;
  display: block;
  font-weight: 800;
  margin: 0;
  color: black;
  font-size: clamp(24px, 10vw, 40px);
  position: relative;
}
.banner .content h2 small {
  display: block;
  font-weight: 700;
  font-size: clamp(16px, 10vw, 24px);
  color: #6e5809;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .banner .wrapper {
    flex-direction: column-reverse;
  }
  .banner img {
    width: 100%;
    height: auto;
  }
  .banner .content {
    width: 100%;
    padding: 2rem 2rem 0;
  }
}
.banner .keywords {
  background-color: #6e5809;
  padding: 1rem;
  position: relative;
}
.banner .keywords h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fffb00;
  text-align: center;
}
.banner .keywords .list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  color: #ffc600;
}
.banner .keywords .list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner .keywords .list li::before {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background-color: #ffc600;
  border-radius: 16px;
}/*# sourceMappingURL=landing-page.css.map */