:root {
  --color-logo: #09577c;
  --lime: #d2f85c;
  --deep-ocean-blue: #0e0e52;
  --pink: #e500a4;
  --black: #1c2120;
  --black-2: #292c34;
  --white: #ffffff;
  --yellow: #f89e2f;
}

@font-face {
  font-family: "Century Gothic", sans-serif;
  src: url("centurygothic.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Century Gothic Bold", sans-serif;
  src: url("centurygothic_bold.ttf") format("truetype");
  font-weight: bold;
}
body {
  font-family: "Century Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  color: var(--deep-ocean-blue);
  line-height: 1.75;
}

#preloader.done {
  visibility: hidden;
  opacity: 0;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 60px;
  height: 60px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}
.preloader span {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--deep-ocean-blue);
  animation: preloader 1.3s linear infinite;
}
.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.text-blue {
  color: var(--deep-ocean-blue) !important;
}

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

.bg-blue {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
}

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

.bg-black-2 {
  background-color: var(--black-2);
}

.btn-white {
  background-color: var(--black);
  color: var(--white);
  font-weight: 600;
  padding: 8px 25px 6px;
  font-size: 1.15rem;
  border: 1px solid var(--black);
  border-radius: 60px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn-white:hover {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  border-color: var(--deep-ocean-blue);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.btn-black,
.btn-blue {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  font-weight: 600;
  padding: 8px 25px 6px;
  font-size: 1.15rem;
  border: 1px solid var(--deep-ocean-blue);
  border-radius: 60px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn-black:hover,
.btn-blue:hover {
  background-color: var(--pink);
  color: var(--black);
  border-color: var(--pink);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.btn-pink {
  background-color: var(--pink);
  color: var(--black);
  font-weight: 600;
  padding: 8px 25px 6px;
  font-size: 1.15rem;
  border: 1px solid var(--pink);
  border-radius: 60px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.btn-pink:hover {
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  border-color: var(--deep-ocean-blue);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.text-justify {
  text-align: justify;
}

header {
  padding: 0;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
}
header.nav-mobile {
  display: none;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6));
  padding: 10px 0;
}
header nav .logo {
  margin: 0 -5px;
  background-color: var(--deep-ocean-blue);
  border-radius: 100%;
  overflow: hidden;
  z-index: 3;
}
header nav .logo img {
  transition: all 0.6s ease;
  padding: 10px;
  width: 140px;
  height: 140px;
}
header nav .left-nav,
header nav .right-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
header nav .left-nav li,
header nav .right-nav li {
  line-height: 3;
  border-right: 1px solid #444;
  padding: 0;
  display: flex;
  align-items: center;
}
header nav .left-nav li:last-child,
header nav .right-nav li:last-child {
  border: 0;
}
header nav .left-nav li a,
header nav .right-nav li a {
  width: 200px;
  text-align: center;
  color: var(--white);
  background-color: var(--deep-ocean-blue);
  text-decoration: none;
  font-size: 1em;
  line-height: 2.5;
  transition: all 0.4s ease;
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 5px;
}
header nav .left-nav li a.active, header nav .left-nav li a:hover,
header nav .right-nav li a.active,
header nav .right-nav li a:hover {
  font-weight: 600;
  background-color: var(--pink);
  color: var(--black);
}
header nav .left-nav li:first-child a {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
header nav .right-nav li:last-child a {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
header nav .contact-link {
  position: absolute;
  right: 50px;
  line-height: 2.5;
  background-color: var(--pink);
  padding: 0 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-family: "Century Gothic Bold", sans-serif;
  border: 1px solid transparent;
}
header nav .contact-link a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: all 0.3s ease;
}
header nav .contact-link:hover {
  border: 1px solid var(--deep-ocean-blue);
  background-color: var(--deep-ocean-blue);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}
header nav .contact-link:hover a {
  color: var(--white);
}
header.scrolled {
  background-color: var(--white);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
header.scrolled nav {
  padding: 5px;
}
header.scrolled nav .logo img {
  width: 110px;
  height: 110px;
}
header.scrolled nav .left-nav li a,
header.scrolled nav .right-nav li a {
  width: 185px;
  font-size: 1rem;
  line-height: 2.25;
}
header.scrolled nav .contact-link {
  font-size: 1.1rem;
  line-height: 2.25;
}

.hero {
  height: 100vh;
  background-color: var(--deep-ocean-blue);
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero .content {
  z-index: 3;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 120px;
}
.hero .title {
  font-family: "Century Gothic Bold", sans-serif;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
}
.hero .text {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.5;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.55);
}
.hero .title2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
}
.hero .hero-image {
  border-radius: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 3;
}
.hero .sliding-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  transform: translate(0, -50%);
}
.hero .sliding-text h1 {
  width: 7948px;
  font-size: 400px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(41, 44, 52, 0.0588235294);
  margin-bottom: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  animation: slidein 30s linear infinite;
}

@keyframes slidein {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -7948px;
  }
}
/* for Firefox */
/* for Chrome */
@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* for Firefox */
/* for Chrome */
@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.bg-element-lime {
  background-image: linear-gradient(177deg, rgba(0, 0, 0, 0) 49%, var(--deep-ocean-blue) 56%);
  height: 150px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-element-black {
  background-image: linear-gradient(183deg, rgba(0, 0, 0, 0) 49%, var(--deep-ocean-blue) 59%);
  height: 130px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  color: var(--deep-ocean-blue);
  font-size: 3em;
  font-weight: 600;
  font-style: normal;
  line-height: 1.13em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.5px;
}
.section-title.black {
  color: var(--black);
}

.subtitle {
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 600;
}

.img-container-about {
  position: relative;
}
.img-container-about .img-front {
  position: relative;
  z-index: 2;
}
.img-container-about .img-front img {
  height: 700px;
}
.img-container-about .img-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: auto;
}
.img-container-about .img-back img {
  height: 380px;
}

.section-heading {
  margin-top: 160px;
  padding: 40px 0;
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-heading .title {
  font-size: 3em;
  font-weight: 600;
  font-style: normal;
  line-height: 1.75em;
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.5px;
}
.section-heading .breadcrumb {
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 14px;
}
.section-heading .breadcrumb a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}
.section-heading .breadcrumb a:hover {
  border-color: var(--white);
}
.section-heading .breadcrumb .breadcrumbs_delimiter {
  margin: 0 0.9em;
}
.section-heading .breadcrumb .page-name {
  color: var(--pink);
}

.fusion-section {
  height: 100%;
  background-color: var(--white);
  background-image: url("../images/cric_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
}
.fusion-section .fusion-card {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--bs-box-shadow);
  transition: all 0.5s ease;
}
.fusion-section .fusion-card .img {
  border-radius: 50%;
  background-color: #4a4a86;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  padding: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.fusion-section .fusion-card .img img {
  filter: brightness(0) invert(1);
  width: 55px;
}
.fusion-section .fusion-card .title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.fusion-section .fusion-card .text {
  font-size: 1.025rem;
  text-align: justify;
  margin-bottom: 0;
  font-weight: 500;
}
.fusion-section .fusion-card:hover {
  background-color: var(--deep-ocean-blue);
  animation: bounce 2s infinite;
}
.fusion-section .fusion-card:hover .img {
  border-radius: 10px;
}
.fusion-section .fusion-card:hover .title,
.fusion-section .fusion-card:hover .text {
  color: var(--white);
}

.fusion {
  width: 260px;
  margin: auto;
  text-align: center;
}
.fusion .img-box {
  background-color: var(--black);
  margin: auto;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 1;
}
.fusion .img-box img {
  width: 150px;
  height: 150px;
}
.fusion .text-area {
  margin-top: -10px;
  border-radius: 50px;
  padding: 20px;
  text-align: center;
  background-color: #f1f1f1;
}
.fusion .text-area h5 {
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 900;
}

.revenue-section {
  position: relative;
}
.revenue-section .revenue-card {
  position: relative;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  max-width: 100%;
  transition: all 0.1s ease;
  cursor: pointer;
  color: var(--deep-ocean-blue);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  height: 100%;
}
.revenue-section .revenue-card:hover {
  animation: bounce 2s infinite;
}
.revenue-section .revenue-card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.revenue-section .revenue-card .body {
  padding: 1.5rem;
}
.revenue-section .revenue-card .title {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.revenue-section .revenue-card .title .icon {
  background-color: #4a4a86;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.revenue-section .revenue-card .title .icon i {
  font-size: 24px;
  color: white;
}
.revenue-section .revenue-card p {
  margin-bottom: 0;
  text-align: justify;
  font-weight: 500;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-16px);
  }
  60% {
    transform: translateY(-8px);
  }
}
.milestones {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.milestones::after {
  content: " ";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  background-image: linear-gradient(to bottom, rgba(9, 87, 124, 0.767), rgba(9, 87, 124, 0.767));
}
.milestones li {
  width: 50%;
  height: auto;
  padding: 15px 20px;
  background-color: var(--deep-ocean-blue);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.218);
  position: relative;
  margin-bottom: 30px;
  z-index: 99;
}
.milestones li .circle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(9, 87, 124, 0.25);
  top: 30px;
  display: grid;
  place-items: center;
}
.milestones li .circle::after {
  content: " ";
  width: 12px;
  height: 12px;
  background-color: rgb(9, 87, 124);
  border-radius: 50%;
}
.milestones li:nth-child(odd) {
  align-self: flex-start;
  text-align: right;
  transform: translateX(-30px);
}
.milestones li:nth-child(odd) .circle {
  transform: translate(50%, -50%);
  right: -30px;
}
.milestones li:nth-child(even) {
  align-self: flex-end;
  transform: translateX(30px);
}
.milestones li:nth-child(even) .circle {
  transform: translate(-50%, -50%);
  left: -30px;
}
.milestones li p {
  margin-bottom: 0;
}

.video_thumb_container {
  max-width: 768px;
  margin: auto;
}
.video_thumb_container iframe {
  width: 100%;
  height: 100%;
  max-height: 520px;
  min-height: 480px;
  border-radius: 10px;
}

footer {
  display: flex;
  flex-direction: column;
  padding: 80px 60px;
  background-color: var(--black);
  background-image: url("../images/footer-bg2.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .footer-logo {
  margin-bottom: 20px;
}
footer .footer-logo img {
  max-width: 300px;
  max-height: 300px;
}
footer .footer-about {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 300;
  position: relative;
  padding-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: 1px;
}
footer .footer-about::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 4px;
  background-color: var(--yellow);
}
footer .social-icons a {
  font-size: 3vw;
  color: var(--white);
  text-decoration: none;
  transition: all 0.75s ease;
}
footer .social-icons a:hover {
  color: var(--deep-ocean-blue);
}
footer .qr {
  position: absolute;
  top: 160px;
  left: -100px;
}
footer .footer-links {
  position: relative;
}
footer .footer-links::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -140px;
  width: 4px;
  height: 500px;
  background-color: var(--yellow);
}
footer .footer-links h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 30px;
}
footer .footer-links ul {
  list-style: none;
}
footer .footer-links ul li {
  position: relative;
  padding-left: 5px;
  line-height: 1;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
footer .footer-links ul li i {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 1rem;
  color: var(--white);
}
footer .footer-links ul li:hover i,
footer .footer-links ul li:hover a {
  color: var(--pink);
}
footer .footer-links ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.75px;
  line-height: 1;
}
footer .footer-links ul li p {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.5s ease;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0;
}
footer .footer-links ul li p:hover {
  color: var(--pink);
}

.connect-btn-box {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: transparent;
  z-index: 999;
}
.connect-btn-box a {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  line-height: 1;
  color: #25d366;
  border-radius: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 3.5rem;
  transition: all 0.3s ease;
}
.connect-btn-box a:hover {
  color: var(--white);
  background-color: #25d366;
}

ul.contact {
  list-style: none;
}
ul.contact li {
  position: relative;
  padding-left: 5px;
  line-height: 1;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
ul.contact li i {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 1.25rem;
  color: var(--deep-ocean-blue);
}
ul.contact li:hover i,
ul.contact li:hover a {
  color: var(--pink);
}
ul.contact li a {
  color: var(--deep-ocean-blue);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.75px;
  line-height: 1;
}
ul.contact li p {
  color: var(--deep-ocean-blue);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.5s ease;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0;
}
ul.contact li p:hover {
  color: var(--pink);
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.25px;
  }
  .btn-black,
  .btn-blue,
  .btn-pink {
    font-size: 1rem;
  }
  header {
    background-color: #ffffff;
  }
  header.nav-desk {
    display: none;
  }
  header.nav-mobile {
    display: flex;
  }
  header.nav-mobile.open .absolute-nav {
    left: 0;
  }
  header nav {
    padding: 10px;
    filter: none;
    position: relative;
  }
  header nav .logo {
    background-color: transparent;
    border-radius: 0%;
    overflow: hidden;
    z-index: 3;
  }
  header nav .logo img {
    transition: all 0.6s ease;
    padding: 0px;
    width: 100px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  header nav .absolute-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  header nav .absolute-nav button.btn-link#closeMenu {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  header nav .absolute-nav ul {
    padding-left: 16px;
  }
  header nav .absolute-nav li {
    line-height: 3;
    padding: 0;
    display: flex;
    align-items: center;
  }
  header nav .absolute-nav li a {
    text-align: center;
    color: var(--deep-ocean-blue);
    text-decoration: none;
    font-size: 1em;
    line-height: 2.5;
    transition: all 0.4s ease;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  header nav .absolute-nav li a.active, header nav .absolute-nav li a:hover {
    font-weight: 600;
    color: var(--pink);
  }
  .hero video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: -400px;
       object-position: -400px;
  }
  .hero .title,
  .hero .title2 {
    font-size: 30px;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .section-heading {
    margin-top: 80px;
    padding: 10px 0;
  }
  .section-heading .title {
    font-size: 2.25em;
  }
  .fusion-section {
    background: var(--white);
  }
  .fusion-section .section-title.text-light {
    color: var(--deep-ocean-blue) !important;
  }
  .milestones::after {
    left: -11px;
    transform: translateX(0);
  }
  .milestones li {
    width: 100%;
  }
  .milestones li:nth-child(odd) {
    text-align: left;
    transform: translateX(10px);
  }
  .milestones li:nth-child(odd) .circle {
    right: unset;
    left: -40px;
  }
  .milestones li:nth-child(even) {
    align-self: flex-start;
    transform: translateX(10px);
  }
  .milestones li:nth-child(even) .circle {
    left: -20px;
  }
  footer {
    padding: 40px 20px;
  }
  footer .footer-logo img {
    max-width: 200px;
    max-height: 200px;
  }
  footer .footer-about {
    font-size: 1rem;
  }
  footer .social-icons {
    margin-bottom: 20px;
  }
  footer .social-icons a {
    font-size: 2.5rem;
  }
  footer .footer-links::before {
    height: 0;
  }
  footer .footer-links ul li i {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=main.css.map */