@charset "UTF-8";
/*** ----- FONTS  ----- ***/
/*  
    roboto-light    -  font-weight: 300
    roboto-regular  -  font-weight: 500
    roboto-bold     -  font-weight: 700
    roboto-black    -  font-weight: 900

    poppins-light    -  font-weight: 300
    poppins-regular  -  font-weight: 400
    poppins-medium   -  font-weight: 500
    poppins-bold     -  font-weight: 700

    libre-baskerville-regular   -  font-weight: 400
    libre-baskerville-bold      -  font-weight: 700
/*


/*** ----- COLORS  ----- ***/
/*** ----- DEV STYLES  ----- ***/
.red-clr {
  color: red;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

body {
  color: #2a2b2c;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5em;
  color: #2a2b2c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body.modal-active {
  overflow-y: hidden;
}

p {
  font-size: 1.7rem;
  line-height: 1.5em;
  margin-bottom: 0.6em;
  color: #2a2b2c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  color: #2a2b2c;
}

h1 {
  font-size: 3.1rem;
  line-height: 1.1em;
}
h1.front {
  font-size: 3.1rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2em;
}

h3 {
  font-size: 2rem;
  line-height: 1.3em;
}

h4 {
  font-size: 1.8rem;
  line-height: 1.3em;
}

h5 {
  font-size: 1.65rem;
  line-height: 1.3em;
}

img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: 0.25s ease;
  color: #0170C1;
}
a:hover {
  color: #d46f10;
  text-decoration: none;
}

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

.container {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.container.def-pad {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.container-fluid {
  max-width: 1440px;
}

.no-margin {
  margin: 0;
}

.bold {
  font-weight: 700;
}

/*** ----- Single PAGE and POST  ----- ***/
.page-single,
.post-single {
  padding-top: 2rem;
  padding-bottom: 0;
}

/*  
######  Sections  ###### 
*/
.full-w-section {
  padding: 3rem 0;
}
.full-w-section.img-background {
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  padding: 2.5rem 0;
  background-color: #ededed;
  position: relative;
}
header .menu-icon {
  align-items: center;
  width: 32px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
}

.menu-icon-close {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  opacity: 0.6;
  z-index: 1000;
  cursor: pointer;
}
.menu-icon-close:hover {
  opacity: 1;
}
.menu-icon-close::before, .menu-icon-close::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}
.menu-icon-close::before {
  transform: rotate(45deg);
}
.menu-icon-close::after {
  transform: rotate(-45deg);
}

#overlay-mobile {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.6s ease;
  pointer-events: none;
  height: 100%;
}
#overlay-mobile.show-overlay {
  right: -100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.main-menu ul.primary-menu {
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  height: 100%;
  /* =========================
     DESKTOP DROPDOWN
  ========================== */
  /* =========================
     MOBILE MENU
  ========================== */
}
.main-menu ul.primary-menu li {
  position: relative;
  line-height: 2.2em;
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
.main-menu ul.primary-menu li a {
  font-size: 1.7rem;
  font-weight: 600;
  color: #111010;
  text-decoration: none;
}
.main-menu ul.primary-menu li.menu-item-has-children > a {
  padding-right: 2.5rem;
  position: relative;
}
.main-menu ul.primary-menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 43%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #111010;
  border-bottom: 2px solid #111010;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.main-menu ul.primary-menu li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
.main-menu ul.primary-menu li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(-135deg);
}
.main-menu ul.primary-menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu ul.primary-menu .sub-menu li {
  margin-left: 0;
}
.main-menu ul.primary-menu .sub-menu li a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  display: block;
}
.main-menu ul.primary-menu.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 8rem;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 5rem;
  z-index: 1000;
  overflow-y: auto;
  background: #fff;
  align-items: flex-start;
}
.main-menu ul.primary-menu.mobile-menu li {
  margin-left: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: menuFade 0.4s ease forwards;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.6em;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(1) {
  animation-delay: 0.06s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(2) {
  animation-delay: 0.12s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(3) {
  animation-delay: 0.18s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(4) {
  animation-delay: 0.24s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(5) {
  animation-delay: 0.3s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(6) {
  animation-delay: 0.36s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(7) {
  animation-delay: 0.42s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(8) {
  animation-delay: 0.48s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(9) {
  animation-delay: 0.54s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(10) {
  animation-delay: 0.6s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(11) {
  animation-delay: 0.66s;
}
.main-menu ul.primary-menu.mobile-menu li:nth-child(12) {
  animation-delay: 0.72s;
}
.main-menu ul.primary-menu.mobile-menu li a {
  font-size: 2.4rem;
  font-weight: 600;
}
.main-menu ul.primary-menu.mobile-menu .menu-item-has-children .sub-menu {
  position: static !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: visible;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  transform: translateY(0);
}
.main-menu ul.primary-menu.mobile-menu .menu-item-has-children.open .sub-menu {
  max-height: 600px;
  opacity: 1;
  background: transparent !important;
  box-shadow: none;
}
.main-menu ul.primary-menu.mobile-menu .menu-item-has-children:hover {
  transform: none !important;
}
.main-menu ul.primary-menu.mobile-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.main-menu ul.primary-menu.mobile-menu .sub-menu {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0 !important;
}
.main-menu ul.primary-menu.mobile-menu .sub-menu li {
  margin-bottom: 0;
}
.main-menu ul.primary-menu.mobile-menu .sub-menu li:last-child {
  margin-bottom: 1rem;
}
.main-menu ul.primary-menu.mobile-menu .sub-menu li a {
  font-size: 2rem;
  font-weight: 400;
  padding-left: 0 0 0 2rem;
  opacity: 0.8;
}

/* =========================
   ANIMATIONS
========================== */
@keyframes menuFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.image-text-sect-1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.image-text-sect-1 .sect-content {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.image-text-sect-1 h2 {
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.image-text-sect-1 h2 span {
  color: #2c1d80;
  font-weight: 600;
}
.image-text-sect-1 p {
  color: #1F1F1F;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5em;
}
.image-text-sect-1 p b {
  font-weight: 500;
}
.image-text-sect-1 .cta-button {
  margin-top: auto;
}
@media (min-width: 768px) {
  .image-text-sect-1 .sect-content {
    padding-left: 3rem;
  }
  .image-text-sect-1 h2 {
    margin-top: 0;
  }
}

.counter-section {
  background-color: #2c1d80;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.counter-section .counter-items {
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
  align-items: flex-start;
}
.counter-section .counter-items .counter-item {
  display: flex;
  flex-direction: column;
  flex: 0 1 20%;
}
.counter-section .counter-items .counter-item .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  height: 100%;
}
.counter-section .counter-items .counter-item .icon img {
  max-width: 100px;
}
.counter-section .counter-items .counter-item .value {
  text-align: center;
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
.counter-section .counter-items .counter-item .description {
  font-size: 1.8rem;
  text-align: center;
}

.info-box-1 {
  background-color: #2c1d80;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.info-box-1 h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
}
.info-box-1 .info-items {
  display: flex;
  flex-direction: column;
}
.info-box-1 .info-items .info-item {
  display: flex;
  align-items: center;
  line-height: 4.5rem;
}
.info-box-1 .info-items .info-item img {
  width: 3rem;
  height: 3rem;
  margin: 0 2rem 0 0;
}

.info-box-2 {
  background-color: #fff;
  color: #2c1d80;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.info-box-2 h2 {
  color: #2c1d80;
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
}
.info-box-2 .ib-2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-box-2 .info-items {
  display: flex;
  flex-direction: column;
}
.info-box-2 .info-items .read-more-button img {
  width: 3rem;
  height: 3rem;
  margin: 0 2rem 0 0;
}

.info-box-3 {
  background-color: #161616;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.info-box-3 .small-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
.info-box-3 h2 {
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 4rem;
  color: #fff;
  font-weight: 600;
}
.info-box-3 h2 span {
  color: #2c1d80;
  font-weight: 600;
}
.info-box-3 p {
  color: #1F1F1F;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5em;
}
.info-box-3 p b {
  font-weight: 500;
}
.info-box-3 .info-box-left {
  padding-right: 3rem;
  padding-left: 1rem;
}
.info-box-3 .info-box-right {
  padding-left: 1rem;
}
.info-box-3 .info-box {
  position: relative;
  border-top: 1px solid #ccc;
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100%;
}
.info-box-3 .info-box:last-child {
  border-bottom: 1px solid #ccc;
}
.info-box-3 .info-box .title {
  color: #d46f10;
  padding-left: 3rem;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.info-box-3 .info-box .title a {
  color: #d46f10;
}
.info-box-3 .info-box .title::before {
  position: absolute;
  left: 0;
  top: 2.3rem;
  content: "";
  background-image: url(../../assets/images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 15px;
  width: 20px;
}
.info-box-3 .info-box .text {
  padding-left: 3rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4em;
}
@media (min-width: 768px) {
  .info-box-3 .small-title {
    font-size: 2.6rem;
  }
  .info-box-3 h2 {
    font-size: 5rem;
  }
  .info-box-3 .contact-details {
    flex-direction: row;
    padding-left: 4rem;
    align-items: center;
    margin-bottom: 0;
  }
  .info-box-3 .contact-details .contact-title {
    font-size: 5rem;
    margin-bottom: 0;
  }
  .info-box-3 .contact-details .contact-contacts .contact a {
    margin-left: auto;
  }
  .info-box-3 .info-box-left {
    padding-right: 6rem;
  }
  .info-box-3 .info-box-right {
    padding-left: 6rem;
  }
}

.testimonials {
  padding: 6rem 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/images/testimonials-background.png);
  background-blend-mode: multiply;
}
.testimonials h2 {
  text-align: left;
  color: #2a2b2c;
  font-size: 4.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 0;
  margin-bottom: 7rem;
  position: relative;
}
.testimonials h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4rem;
  height: 1px;
  width: 30%;
  background-color: #2a2b2c;
}
.testimonials p {
  color: #2a2b2c;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  opacity: 0.8;
  margin-bottom: 3rem;
  text-align: left;
}
.testimonials .testimonial-items {
  display: flex;
}
.testimonials .testimonial-items .testimonial-item {
  margin: 0 15px;
  padding: 3rem 2rem;
  background-color: #fff;
  height: 100%;
  min-height: 400px;
}
.testimonials .testimonial-items .testimonial-stars {
  width: 126px;
  margin: 0 auto 20px auto;
}
.testimonials .testimonial-items .testimonial-content p {
  color: #111010;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
  opacity: 0.6;
  margin-bottom: 4rem;
}
.testimonials .testimonial-items .testimonial-person .testimonial-name {
  color: #2c1d80;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 140%;
  opacity: 0.8;
}
.testimonials .testimonial-items .testimonial-person .testimonial-position {
  text-align: center;
  color: #2c1d80;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 125%;
  opacity: 0.8;
}
.testimonials .owl-theme .owl-dots {
  bottom: -60px;
}
.testimonials .cta-button {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.testimonials.testimonials-2 h2 {
  text-align: left;
  color: #2a2b2c;
  font-size: 4.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 0;
  margin-bottom: 5rem;
  position: relative;
}
.testimonials.testimonials-2 h2::after {
  display: none;
}

.client-logos {
  padding: 6rem 0;
}
.client-logos .client-logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.client-logos .client-logos-container .logo {
  max-width: 270px;
}

.cta-sect.cta-sect-1 {
  padding: 6rem 0;
}
.cta-sect.cta-sect-1 H2 {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 5.6rem;
  line-height: 5.9rem;
  margin-bottom: 3rem;
}
.cta-sect.cta-sect-1 p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}
.cta-sect.cta-sect-1 p.txt-lg {
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
}
.cta-sect.cta-sect-1 .cta-button {
  width: 100%;
  margin-top: 4rem;
}
.cta-sect.cta-sect-1 .cta-button a {
  margin: 0.5rem auto 2rem auto !important;
}

.newsl-sect.newsl-sect-1 {
  padding: 6rem 0;
}
.newsl-sect.newsl-sect-1 H2 {
  font-family: "Libre Baskerville", serif;
  text-align: center;
  font-size: 5.6rem;
  line-height: 5.9rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
.newsl-sect.newsl-sect-1 p {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #909090;
}
.newsl-sect.newsl-sect-1 p.txt-lg {
  text-transform: uppercase;
}
.newsl-sect.newsl-sect-1 .cta-button {
  width: 100%;
  margin-top: 4rem;
}
.newsl-sect.newsl-sect-1 .cta-button a {
  margin: 0.5rem auto 2rem auto !important;
}

.contact-section-1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.contact-section-1 .form-content {
  display: flex;
  align-items: stretch;
  /* Ensures both columns are equal height */
}
.contact-section-1 .it-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 2rem;
}
.contact-section-1 .it-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-width: 100%;
  /* Ensures coverage if image is too narrow */
}
.contact-section-1 h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 5rem;
  font-weight: 300;
}
.contact-section-1 .sect-content {
  padding: 0;
}
.contact-section-1 .contact-button {
  position: fixed;
  bottom: -80px;
  /* hidden below screen initially */
  left: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 23.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: #0170C1;
  border: 1px solid #0170C1;
  border-radius: 6px;
  padding: 10px 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  display: flex;
  transition: all 0.3s ease;
}
.contact-section-1 .contact-button:hover {
  color: #0170C1;
  background-color: #fff;
}
.contact-section-1 .contact-button:hover svg {
  fill: #2c1d80;
}
.contact-section-1 .contact-button.show {
  bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.ft-spc {
  height: 4rem;
  width: 100%;
}

footer {
  margin-top: auto;
  padding: 3rem 0 0 0;
}
footer .footer-widgets .footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}
footer .footer-widgets .footer-logo img {
  max-width: 250px;
}
footer.footer-one {
  background-color: #161616;
  color: #faebd7;
  font-size: 1.4rem;
}
footer.footer-one p {
  color: #cbc4ba;
  font-size: 1.4rem;
}
footer.footer-one a {
  color: #cbc4ba;
}
footer.footer-one .footer-social-legal {
  padding: 2.5rem 0;
  border-top: 1px solid #373737;
}
footer.footer-one .footer-social {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  margin-left: auto;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
footer.footer-one .footer-social .icon {
  opacity: 0.7;
  margin: 0 15px 15px 15px;
  height: 2.5rem;
  width: auto;
  transition: all 0.2s ease;
}
footer.footer-one .footer-social .icon:first-child {
  margin-left: 15px;
}
footer.footer-one .footer-social .icon img {
  width: auto;
  height: 100%;
}
footer.footer-one .footer-social .icon:hover {
  opacity: 1;
}
footer.footer-one .footer-disclaimer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #373737;
}
footer.footer-one .legal-stuff-menu ul {
  display: flex;
  justify-content: center;
}
footer.footer-one .legal-stuff-menu ul li {
  font-size: 1.4rem;
  margin-left: 2rem;
}
footer.footer-one .legal-stuff-menu ul li:first-child {
  margin-left: 0;
}
footer.footer-one .copyright {
  padding: 0.7rem 0;
  background-color: #111010;
  color: #585858;
  font-size: 1.3rem;
}
footer.footer-one .copyright .copyright-copy,
footer.footer-one .copyright .developer-company {
  text-align: center;
}
footer.footer-two {
  background-color: #203d86;
  color: #E6E6E6;
  font-size: 1.4rem;
}
footer.footer-two p {
  color: #E6E6E6;
  font-size: 1.4rem;
}
footer.footer-two a {
  color: #E6E6E6;
}
footer.footer-two .about-us-short {
  margin-bottom: 3rem;
}
footer.footer-two .footer-disclaimer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #2956c9;
}
footer.footer-two .footer-social {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  margin-left: auto;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
footer.footer-two .footer-social .icon {
  opacity: 0.7;
  margin: 0 1rem 1rem 1rem;
  height: 2rem;
  width: auto;
  transition: all 0.2s ease;
}
footer.footer-two .footer-social .icon:first-child {
  margin-left: 15px;
}
footer.footer-two .footer-social .icon img {
  width: auto;
  height: 100%;
}
footer.footer-two .footer-social .icon:hover {
  opacity: 1;
}
footer.footer-two .copyright {
  border-top: 1px solid #2956c9;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.3rem;
}
footer.footer-two .copyright .developer-company {
  text-align: center;
}
footer.footer-two .copyright-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer.footer-two .copyright-copy .legal-stuff-menu {
  margin-left: 2rem;
}
footer.footer-two .copyright-copy .legal-stuff-menu ul {
  display: flex;
  justify-content: center;
}
footer.footer-two .copyright-copy .legal-stuff-menu ul li {
  font-size: 1.3rem;
  margin-left: 1rem;
}
footer.footer-two .copyright-copy .legal-stuff-menu ul li a {
  opacity: 1;
}
footer.footer-two .copyright-copy .legal-stuff-menu ul li:first-child {
  margin-left: 0;
}
footer.footer-three {
  background-color: #161616;
  color: #faebd7;
  font-size: 1.4rem;
}
footer.footer-three p {
  color: #cbc4ba;
  font-size: 1.4rem;
}
footer.footer-three a {
  position: relative;
  color: #cbc4ba;
  text-decoration: none;
  display: inline-block;
}
footer.footer-three a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(58.2929936306, 38.4203821656, 169.5796178344) 0%, #2c1d80 50%, rgb(29.7070063694, 19.5796178344, 86.4203821656) 100%);
  opacity: 0;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
footer.footer-three a:hover {
  color: rgb(58.2929936306, 38.4203821656, 169.5796178344);
}
footer.footer-three a:hover::after {
  width: 100%;
  opacity: 1;
}
footer.footer-three .footer-logo {
  display: flex;
  justify-content: flex-start;
}
footer.footer-three .footer-menu {
  margin-bottom: 0;
}
footer.footer-three .footer-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer.footer-three .footer-menu ul li {
  margin-right: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
}
footer.footer-three .footer-menu ul li .sub-menu {
  display: none;
}
footer.footer-three .footer-social-legal {
  padding: 2.5rem 0;
  border-top: 1px solid #373737;
}
footer.footer-three .footer-social {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  margin-left: auto;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
footer.footer-three .footer-social .icon {
  opacity: 0.7;
  margin: 0 1rem 1rem 1rem;
  height: 2rem;
  width: auto;
  transition: all 0.2s ease;
}
footer.footer-three .footer-social .icon img {
  width: 23px;
  height: 23px;
}
footer.footer-three .footer-social .icon:hover {
  opacity: 1;
}
footer.footer-three .footer-disclaimer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #373737;
}
footer.footer-three .legal-stuff-menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer.footer-three .legal-stuff-menu ul li {
  font-size: 1.4rem;
  margin-left: 2rem;
}
footer.footer-three .legal-stuff-menu ul li:first-child {
  margin-left: 0;
}
footer.footer-three .copyright {
  padding: 0.7rem 0;
  background-color: #111010;
  color: #585858;
  font-size: 1.3rem;
}
footer.footer-three .copyright .copyright-copy,
footer.footer-three .copyright .developer-company {
  text-align: center;
}

.featured-image {
  margin-bottom: 30px;
}

.post-category {
  margin-bottom: 10px;
}

.post-date {
  margin-bottom: 10px;
}

form .ff-btn-submit {
  font-family: "Poppins", sans-serif !important;
  color: #fff !important;
  text-align: center !important;
  font-size: 1.8rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  background-color: #0170C1 !important;
  border: 1px solid #0170C1 !important;
  border-radius: 6px !important;
  padding: 18px 30px 14px 30px !important;
  margin: 10px 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  line-height: 1em !important;
}
form .ff-btn-submit:hover {
  color: #0170C1 !important;
  background-color: #fff !important;
}

.ff-el-form-control {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
}

.card {
  box-shadow: 0px 10px 23px 0px rgba(77, 77, 77, 0.15);
  overflow: hidden;
  padding-bottom: 25px;
  position: relative;
  padding-bottom: 80px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.card.rnd-corners {
  border-radius: 8px;
}
.card .card-image {
  margin-bottom: 2rem;
  height: auto;
  position: relative;
  overflow: hidden;
  max-height: 287px;
}
.card .card-image img {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}
.card .card-title {
  font-family: "Poppins", sans-serif;
  color: #2a2b2c;
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: 700;
  padding: 0 2.3rem 0 2.3rem;
  margin-bottom: 1.3rem;
  transition: all 0.3s ease;
}
.card .card-content {
  padding: 0 2.3rem 0 2.3rem;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #2a2b2c;
  transition: all 0.3s ease;
}
.card .card-read-more {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #848e99;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  right: 2.6rem;
}
.card.card-2 {
  padding: 40px 15px 70px 15px;
}
.card.card-2:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.card.card-2:hover .card-title,
.card.card-2:hover .card-content {
  color: #fff;
}

.cta-button {
  cursor: pointer;
}
.cta-button a.btn {
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 23.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: #0170C1;
  border: 1px solid #0170C1;
  border-radius: 6px;
  padding: 20px 50px;
  display: block;
  margin: 15px 0;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 180px;
  text-align: center;
  display: flex;
  transition: all 0.3s ease;
}
.cta-button a.btn svg {
  fill: #FFF;
  width: 15px;
  margin-left: 2rem;
  transition: all 0.3s ease;
}
.cta-button a.btn:hover {
  color: #0170C1;
  background-color: #fff;
}
.cta-button a.btn:hover svg {
  fill: #2c1d80;
}
.cta-button a.btn.ghost {
  color: #0170C1;
  background-color: none;
  border: 1px solid #0170C1;
}
.cta-button a.btn.ghost:hover {
  color: #fff;
  background-color: #0170C1;
}
.cta-button a.btn.footer-stripe {
  padding: 10px 30px;
  font-size: 1.6rem;
}
.cta-button .get-offers-button {
  color: #FFF;
  text-align: center;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 23.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #2c1d80;
  border: 1px solid #2c1d80;
  border-radius: 6px;
  padding: 5px 30px;
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 180px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button .get-offers-button:hover {
  color: #2c1d80;
  background-color: #fff;
}

@media (min-width: 768px) {
  /*** ----- GENERAL STYLES  ----- ***/
  h1 {
    font-size: 3.4rem;
    line-height: 1em;
  }
  h1.front {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 2.8rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  .main-menu ul.primary-menu {
    display: flex;
    justify-content: flex-end;
  }
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 187px;
  }
  .card .card-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  /*** ----- counter-section  ----- ***/
  .counter-section .counter-items {
    padding-left: 7rem;
    padding-right: 7rem;
  }
  /*** ----- Footer  ----- ***/
  footer .footer-widgets .footer-logo {
    justify-content: flex-start;
  }
  footer.footer-one .footer-social {
    justify-content: flex-start;
    height: 2rem;
    margin-bottom: 0;
  }
  footer.footer-one .footer-social .icon {
    height: 2.1rem;
  }
  footer.footer-one .footer-social .icon:first-child {
    margin-left: 0;
  }
  footer.footer-one .legal-stuff-menu ul {
    justify-content: flex-end;
  }
  footer.footer-one .legal-stuff-menu ul li:first-child {
    margin-left: 2rem;
  }
  footer.footer-one .copyright .copyright-copy {
    text-align: left;
  }
  footer.footer-one .copyright .developer-company {
    text-align: right;
  }
  footer.footer-two .footer-social {
    justify-content: flex-start;
    height: 2rem;
    margin-bottom: 0;
  }
  footer.footer-two .footer-social .icon {
    height: 2.1rem;
  }
  footer.footer-two .footer-social .icon:first-child {
    margin-left: 0;
  }
  footer.footer-two .legal-stuff-menu ul {
    justify-content: flex-end;
  }
  footer.footer-two .legal-stuff-menu ul li:first-child {
    margin-left: 2rem;
  }
  footer.footer-two .copyright .copyright-copy {
    text-align: left;
    justify-content: flex-start;
  }
  footer.footer-two .copyright .developer-company {
    text-align: right;
  }
  footer.footer-three .footer-social {
    height: 2rem;
    margin-bottom: 3rem;
  }
  footer.footer-three .footer-social .icon {
    height: 2.1rem;
  }
  footer.footer-three .footer-social .icon:first-child {
    margin-left: 0;
  }
  footer.footer-three .footer-menu {
    margin-bottom: 4rem;
  }
  footer.footer-three .footer-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  footer.footer-three .footer-menu ul li {
    margin-right: 2rem;
    margin-bottom: 0;
  }
  footer.footer-three .footer-logo {
    display: flex;
    justify-content: center;
  }
  footer.footer-three .legal-stuff-menu ul {
    flex-direction: row;
  }
  footer.footer-three .legal-stuff-menu ul li {
    margin-left: 2rem;
  }
  footer.footer-three .legal-stuff-menu ul li:first-child {
    margin-left: 2rem;
  }
  footer.footer-three .copyright .copyright-copy {
    text-align: right;
  }
  footer.footer-three .copyright .developer-company {
    text-align: left;
  }
}
@media (min-width: 992px) {
  /*** ----- GENERAL STYLES  ----- ***/
  h1 {
    font-size: 3.8rem;
    line-height: 1em;
  }
  h1.front {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 160px;
  }
}
@media (min-width: 1200px) {
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 195px;
  }
}
.hero-section-1 {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.hero-section-1 .hero-content {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-section-1 .hero-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 5.5rem;
  text-align: left;
  margin-bottom: 3rem;
  max-width: 730px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.65);
}
.hero-section-1 .hero-content .hero-titles .subtitle {
  color: #f1f1f5;
  font-size: 2.2rem;
  line-height: 1.4em;
}
.hero-section-1 .hero-content .hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-section-1 .hero-content .hero-cta .hero-social {
  display: flex;
  justify-content: flex-start;
  height: 2rem;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.hero-section-1 .hero-content .hero-cta .hero-social .icon {
  height: 3rem;
  margin-right: 2rem;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.hero-section-1 .hero-content .hero-cta .hero-social .icon a {
  width: auto;
  height: 2.2rem;
  display: flex;
}
.hero-section-1 .hero-content .hero-cta .hero-social .icon:first-child {
  margin-left: 0;
}
.hero-section-1 .hero-content .hero-cta .hero-social .icon:hover {
  opacity: 1;
}
.hero-section-1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  /* Covers bottom half */
  background: linear-gradient(to top, black, transparent);
  pointer-events: none;
  /* So it doesn’t block clicks */
}
.hero-section-1.front-hero-section {
  overflow: hidden;
  position: relative;
}
.hero-section-1.front-hero-section video {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .hero-section-1.front-hero-section video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-section-1.front-hero-section video {
    width: auto;
    height: 100%;
  }
}
.hero-section-1.page-hero-section {
  margin-top: 0;
  height: 450px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-position: center;
}
.hero-section-1.page-hero-section video {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .hero-section-1.page-hero-section video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-section-1.page-hero-section video {
    width: auto;
    height: 100%;
  }
}
.hero-section-1.page-hero-section .hero-content {
  position: relative;
  bottom: 2rem;
  padding-left: 3rem;
  left: auto;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  transform: none;
  justify-content: flex-start;
}
.hero-section-1.page-hero-section .hero-content h1 {
  color: #fff;
  font-weight: 500;
  font-size: 4rem;
  text-align: left;
  margin-bottom: 3rem;
}
.hero-section-1.page-hero-section .hero-content h1 strong {
  font-weight: 700;
}

.hero-section-2 {
  min-height: 90vh;
  padding: 0;
  width: 100%;
}
.hero-section-2 .hero-front {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background-color: rgba(30, 34, 69, 0.5);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.hero-section-2 .hero-front .hero-content {
  padding: 2rem 3.5rem 4rem 4rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-section-2 .hero-front .hero-content h1 {
  color: #FFF;
  text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.05em;
  margin-bottom: 4rem;
}
.hero-section-2 .hero-front .hero-content .subtitle {
  color: #FFF;
  text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4em;
  font-weight: 500;
  margin-bottom: 7rem;
  max-width: 700px;
}
.hero-section-2 .hero-front .hero-content .subtitle p {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4em;
}
.hero-section-2 .hero-front .hero-content .subtitle ul li {
  padding-left: 3rem;
  position: relative;
  color: #FFF;
  line-height: 1.4em;
  margin-bottom: 1rem;
}
.hero-section-2 .hero-front .hero-content .subtitle ul li::before {
  content: "";
  position: absolute;
  background-image: url("../../assets/images/bullet_header_01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  left: 0;
  top: 5px;
}
@media (min-width: 576px) {
  .hero-section-2 .hero-front .hero-content {
    padding-top: 8rem;
    padding-left: 6rem;
  }
  .hero-section-2 .hero-front .hero-content h1 {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1.1em;
  }
  .hero-section-2 .hero-front .hero-content .subtitle {
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 4rem;
  }
}
.hero-section-2 .owl-nav {
  position: absolute;
  right: 110px;
  bottom: 55px;
}
.hero-section-2 .owl-nav button {
  background-color: #fff !important;
  border-radius: 50% !important;
  height: 50px;
  width: 50px;
}
.hero-section-2 .owl-nav button.owl-prev {
  background: #fff !important;
  background-image: url(../../assets/images/caret-gal.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 25% !important;
  background-position: 40% center !important;
}
.hero-section-2 .owl-nav button.owl-next {
  background: #fff !important;
  background-image: url(../../assets/images/caret-gal.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 25% !important;
  background-position: 40% center !important;
  transform: rotate(180deg);
}

.em-anim {
  position: relative;
  opacity: 0;
  transition: 1.5s all ease;
}

.em-anim-left-a {
  transform: translatex(-80%);
  transition: 1s all ease;
  animation-delay: 1s;
}

.em-anim-left-b {
  transform: translatex(80%);
  transition: 1s all ease;
}

.em-anim.active {
  transform: translateY(0);
  opacity: 1;
}
.em-anim.active .em-anim-left-a {
  transform: translatex(0);
}
.em-anim.active .em-anim-left-b {
  transform: translatex(0);
}
.em-anim.active .bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.75s;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .bounceInLeft {
  animation-name: bounceInLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .bounceInLeft-delay1 {
  animation-name: bounceInLeft;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}
.em-anim.active .bounceInLeft-delay2 {
  animation-name: bounceInLeft;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.4s;
}
.em-anim.active .bounceInLeft-delay3 {
  animation-name: bounceInLeft;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.6s;
}
.em-anim.active .bounceInLeft-delay4 {
  animation-name: bounceInLeft;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}
.em-anim.active .bounceInLeft-delay5 {
  animation-name: bounceInLeft;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.7s;
}
.em-anim.active .bounceInRight {
  animation-name: bounceInRight;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .bounceInRight-delay {
  animation-name: bounceInRight;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}
.em-anim.active .flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .pulse {
  animation-name: pulse;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-delay: 0.6s;
}
.em-anim.active .flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .fadeInUp-delay {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.7s;
}
.em-anim.active .fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .rubberBand {
  animation-name: rubberBand;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.em-anim.active .rubberBand-delay-1 {
  animation-name: rubberBand;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.8s;
}

header .em-anim.active {
  transform: none;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    transform: none;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pseudo-anim {
  position: relative;
}

/* Before and after base styles */
.pseudo-anim::before,
.pseudo-anim::after {
  content: "";
  position: absolute;
  transition: transform 1s ease;
}

.pseudo-anim::before {
  transition-delay: 1s;
  left: -200px !important;
}

.pseudo-anim::after {
  transition-delay: 0.5s;
}

/* Animate state */
.pseudo-anim.animate::before {
  transform: translateX(80px);
}

.pseudo-anim.animate::after {
  transform: translateX(-10%);
}

.pseudo-anim-2 {
  position: relative;
}

/* Before and after base styles */
.pseudo-anim-2::before {
  content: "";
  position: absolute;
  transition: transform 1s ease;
}

.pseudo-anim-2::before {
  transition-delay: 0.5s;
  left: -300px !important;
}

/* Animate state */
.pseudo-anim-2.animate::before {
  transform: translateX(200px) scale(1.2);
}

/* Animation for loop 1 */
.loop-anim-1 {
  animation: moveScaleOne 10s ease-in-out infinite;
}

@keyframes moveScaleOne {
  0% {
    transform: translate(-10px, -20px) scale(1) rotate(5deg);
  }
  50% {
    transform: translate(0px, 0px) scale(1);
  }
  100% {
    transform: translate(-10px, -20px) scale(1) rotate(5deg);
  }
}