* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
  color: #150099;
  background-color: #ffffff;
  overflow-x: hidden;
}

.section-header {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}

.header-container {
  width: 1400px;
  display: grid;
  grid-template-columns: 1fr auto;
  opacity: 0;
  animation: fadeInHeader 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInHeader {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo-container {
  display: grid;
  grid-template-columns: 2rem auto;
  padding: 3rem 0rem;
}

.logo-image {
  width: 2rem;
  height: auto;
  align-self: center;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: bold;
  align-self: center;
  color: #150099;
  font-weight: 900;
  padding-left: 0.2rem;
}
.logo-title .logo-title-span {
  color: #000000;
}

.navigation-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.nav-btn {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.2rem;
  padding: 0.6rem 0rem;
  width: 10rem;
  text-align: center;
  color: black;
  align-self: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-btn:hover {
  background-color: #150099;
  color: white;
  cursor: pointer;
}

.nav-btn-active {
  background-color: #150099;
  color: white;
}

.navigation-mobile-container {
  display: none;
  align-self: center;
  width: 2rem;
  height: auto;
}

.mmenu-open-svg {
  width: 1.8rem;
  height: auto;
  cursor: pointer;
}
.mmenu-open-svg path {
  fill: black;
}
.mmenu-open-svg:hover {
  cursor: pointer;
}
.mmenu-open-svg:hover path {
  fill: rgb(89.25, 89.25, 89.25);
}

.mobile-menu {
  display: block;
  padding: 2.4rem;
  position: absolute;
  top: 0;
  left: 100%;
  width: 99%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgb(229.5, 229.5, 229.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.mmenu-title-container {
  display: grid;
  grid-template-columns: 1fr auto;
}

.mmenu-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: black;
}

.mmenu-close {
  width: 2rem;
  height: auto;
  justify-self: end;
  cursor: pointer;
}
.mmenu-close path {
  fill: black;
}
.mmenu-close:hover {
  cursor: pointer;
}
.mmenu-close:hover path {
  fill: rgb(89.25, 89.25, 89.25);
}

.mmenu-links-container {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 2rem;
  margin-top: 4rem;
}

.mmenu-link {
  font-size: 1rem;
  font-weight: 700;
  color: #150099;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  background-color: transparent;
  padding: 1rem 0rem;
}
.mmenu-link:hover {
  color: rgb(10.5, 0, 76.5);
  border-bottom: 1px solid #150099;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .section-header {
    grid-template-columns: 1fr;
    padding: 0rem 3%;
  }
  .header-container {
    width: auto;
  }
  .navigation-container {
    display: none;
  }
  .navigation-mobile-container {
    display: block;
  }
}
@media (max-width: 400px) {
  .logo-title {
    align-self: center;
  }
  .logo-title::before {
    content: "LTFS";
    color: #150099;
    font-weight: 900;
    align-self: center;
  }
  .logo-title,
  .logo-title .logo-title-span {
    color: transparent;
  }
  .logo-title-span {
    display: none;
  }
}
@media (max-width: 240px) {
  .logo-title {
    display: none;
  }
  .logo-title::before {
    content: "LTFS";
    color: #150099;
    font-weight: 900;
    align-self: center;
  }
  .logo-title,
  .logo-title .logo-title-span {
    color: transparent;
  }
  .logo-title-span {
    display: none;
  }
}
.btn-primary {
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #150099;
  border-radius: 0.3rem;
  padding: 0.8rem 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: white;
  align-self: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary:hover {
  background-color: #0e0066;
  color: white;
  cursor: pointer;
}

.btn-primary-w-icon {
  display: grid;
  grid-template-columns: auto auto;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #150099;
  border-radius: 0.3rem;
  padding: 0.8rem 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  align-self: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary-w-icon a {
  color: white;
}
.btn-primary-w-icon:hover {
  background-color: #0e0066;
  color: white;
  cursor: pointer;
}

.section-hero {
  display: grid;
  height: 800px;
  background-image: url("../../images/homepageherobg.jpg");
  background-size: cover;
  background-position: center 80%;
  border-bottom: 0.5rem solid #c0c0c0;
}

.hero-card {
  width: 400px;
  align-self: center;
  margin-left: 15%;
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 1rem;
  opacity: 0;
  animation: fadeInHero 1.5s ease-out 0.5s forwards;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-card-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 3.5rem;
  color: black;
}

.hero-card-description {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 300;
  color: black;
}

.section-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  padding: 10rem 0rem;
}

.c1-container {
  display: grid;
  grid-template-rows: auto auto;
  width: 1400px;
  justify-self: center;
}

.c1-title-container {
  text-align: center;
  padding-bottom: 0.5rem;
}
.c1-title-container .c1-title-h1 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 2.5rem;
}
.c1-title-container .c1-t-sp-1 {
  color: #150099;
}
.c1-title-container .c1-t-sp-2 {
  color: black;
}

.c1-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: 3rem 0rem;
}

.c1-card-box {
  border-radius: 1rem 1rem 0rem 0rem;
  background-color: #fbfbff;
}
.c1-card-box .c1-card-img {
  width: 100%;
  height: auto;
}
.c1-card-box .c1-card-title {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  font-size: 2rem;
  color: black;
  font-weight: 600;
  align-self: start;
}
.c1-card-box .c1-card-text {
  padding: 0rem 1rem;
  font-size: 1.2rem;
  color: black;
  font-weight: 300;
  line-height: 2rem;
  align-self: start;
}
.c1-card-box .c1-card-end {
  margin-top: 2.5rem;
  width: 100%;
}

.section-content-2 {
  display: grid;
  grid-template-columns: 1fr;
  padding: 10rem 0rem;
  background-image: url("../../images/homepagecontent2bg.jpg");
  background-position: center;
  background-size: cover;
  border-top: 0.5rem solid #fff4ba;
}

.c2-container {
  display: grid;
  grid-template-columns: auto auto;
  width: 1400px;
  justify-self: center;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.c2-image {
  width: 85%;
  height: auto;
  align-self: center;
  justify-self: end;
}

.c2-content-block {
  padding: 0rem 2rem 0rem 0rem;
}
.c2-content-block .c2c-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
  padding-bottom: 1rem;
}
.c2-content-block .c2c-text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: black;
}
.c2-content-block .c2c-button {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: center;
  align-content: center;
  margin-top: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #ffde38 0%, #ffea81 100%);
  color: #000000;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.c2-content-block .c2c-button a {
  color: #000000;
}
.c2-content-block .c2c-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}
.c2-content-block .c2c-button .c2c-button-icon {
  width: 1.5rem;
  height: auto;
  align-self: center;
}
.c2-content-block .c2c-button .c2c-button-text {
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 1460px) {
  .c1-container {
    width: auto;
    padding: 0rem 2rem;
  }
  .c2-container {
    display: grid;
    grid-template-columns: auto auto;
    width: auto;
    justify-self: center;
    align-items: center;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media (max-width: 1150px) {
  .c1-cards-container {
    display: block;
    padding: 3rem 0rem;
  }
  .c1-card-box {
    margin-bottom: 3rem;
  }
  .c1-card-box .c1-card-img {
    display: none;
  }
}
@media (max-width: 950px) {
  .section-hero {
    display: grid;
    height: 600px;
    background-image: url("../../images/homepageherobg.jpg");
    background-size: cover;
    background-position: left;
  }
  .hero-card {
    margin-left: 10%;
  }
}
@media (max-width: 580px) {
  .c1-cards-container {
    display: block;
    padding: 3rem 0rem;
  }
  .c1-card-box {
    margin-bottom: 3rem;
  }
  .c1-card-box .c1-card-img {
    display: block;
    height: auto;
    border: 1px solid lime;
  }
}
@media (max-width: 850px) {
  .c2-image {
    display: none;
  }
  .c2-content-block {
    padding: 0rem 2rem 0rem 2rem;
  }
}
@media (max-width: 480px) {
  .hero-card {
    width: auto;
    align-self: center;
    justify-self: center;
    padding: 0rem 1.5rem;
  }
}
@media (max-width: 400px) {
  .hero-card {
    width: auto;
    margin-left: 0%;
    align-self: center;
    justify-self: center;
    padding: 0rem 1.5rem;
  }
  .hero-card-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.5rem;
    color: black;
  }
  .hero-card-description {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 300;
    color: black;
  }
}
.section-hero-services {
  background-image: url("../../images/servicesherobg.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 15rem 2rem;
}

.services-hero-block {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  background: linear-gradient(0deg, #14008c 0%, #003eb7 104.17%);
  border: 1px solid #003eb7;
  border-radius: 25px;
}

.services-hero-title {
  font-weight: 600;
  font-size: 4rem;
  line-height: 2.9rem;
  color: #ffffff;
  margin-top: -2rem;
  text-align: center;
}

.services-hero-description {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #ffffff;
  padding: 2rem 3rem 2.5rem 3rem;
}

.section-services-content-1 {
  display: grid;
  grid-template-columns: 1fr;
}

.services-container {
  justify-self: center;
  width: 1400px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  row-gap: 6rem;
  margin-top: -2rem;
  padding-bottom: 8rem;
}

.services-block {
  display: grid;
  grid-template-columns: auto 1fr;
  border-radius: 0rem 1rem 1rem 0rem;
  overflow: hidden;
}
.services-block .services-image {
  background-color: #fff1e4;
  border-radius: 10rem 0% 0% 10rem;
  padding: 1rem;
  width: 20rem;
  height: auto;
  justify-self: center;
  align-self: center;
}
.services-block .si-bg-1 {
  background-color: #fff1e4;
}
.services-block .si-bg-2 {
  background-color: #e4f9ff;
}
.services-block .si-bg-4 {
  background-color: #ffe4f4;
}
.services-block .services-details-container {
  display: grid;
  grid-template-rows: auto;
  align-content: center;
  row-gap: 1rem;
  padding-right: 2rem;
  padding-left: 1rem;
}
.services-block .services-details-container .services-title {
  font-size: 2rem;
  font-weight: 800;
  color: black;
  padding-bottom: 0.3rem;
}
.services-block .services-details-container .services-description-row {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.services-block .services-details-container .services-description-row svg {
  width: 1.8rem;
  height: auto;
  align-self: center;
}
.services-block .services-details-container .services-description-row h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  line-height: 1.8rem;
}
.services-block .services-details-container .services-description-row h1 span {
  font-weight: 300;
}

@media (max-width: 1480px) {
  .services-container {
    width: auto;
    padding-bottom: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1060px) {
  .services-block {
    grid-template-columns: auto;
    border-radius: 1rem 1rem 1rem 1rem;
  }
  .services-block .services-image {
    display: none;
  }
  .services-block .services-details-container {
    padding: 3rem;
  }
}
@media (max-width: 885px) {
  .services-hero-block {
    width: auto;
  }
}
@media (max-width: 666px) {
  .services-block .services-details-container .services-description-row {
    grid-template-columns: 1fr;
  }
  .services-block .services-details-container .services-description-row svg {
    display: none;
  }
}
.section-hero-contact {
  background-image: url("../../images/contactherobg.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 15rem 2rem;
}

.hero-contact-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  width: 1400px;
  justify-self: center;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.contact-hero-left-container {
  background-color: rgba(20, 0, 140, 0.7);
  background: linear-gradient(rgba(20, 0, 140, 0.55), rgba(0, 62, 183, 0.45));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 3rem;
  border-radius: 1rem;
}

@keyframes slideUpFromBottom {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.contact-hero-left-container {
  will-change: transform, opacity;
  animation-name: slideUpFromBottom;
  animation-duration: 2000ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-delay: 800ms;
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-left-container,
  .contact-form-container {
    animation: none !important;
    transition: none !important;
  }
}
.contact-hero-left-title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 2.5rem;
  color: #ffffff;
  padding-bottom: 1.5rem;
}

.contact-hero-left-text {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #c2c2c2;
}

.section-contact-content-1 {
  background-color: white;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 6rem 2rem;
}

.contact-content-1-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  width: 1400px;
  justify-self: center;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.contact-content-1-left-container {
  padding: 0rem 3rem;
}

.contact-content-left-title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 2.5rem;
  color: black;
  padding-bottom: 1.5rem;
}

.contact-content-left-text {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #4d4d4d;
}

.contact-content-left-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #dbf2ff;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.contact-content-left-btn:hover {
  background-color: #a4dfff;
}

.contact-form-container {
  background-color: #f3f3f3;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin-top: -45rem;
  /* same slide-up-from-bottom load animation as hero */
  will-change: transform, opacity;
  animation-name: slideUpFromBottom;
  animation-duration: 2000ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-delay: 900ms;
  /* same slide-up-from-bottom load animation as hero */
  will-change: transform, opacity;
  animation-name: slideUpFromBottom;
  animation-duration: 2000ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-delay: 900ms;
}

.contact-form-title {
  font-weight: 700;
  font-size: 2rem;
  color: black;
  margin-bottom: 2em;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}
.form-row input[type=text],
.form-row .form-textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  margin-bottom: 4rem;
}
.form-row input[type=text]:focus,
.form-row .form-textarea:focus {
  outline: none;
  border-color: #14008c;
  box-shadow: 0 0 5px rgba(20, 0, 140, 0.5);
}
.form-row .form-textarea {
  height: 30rem;
  margin-bottom: 2rem;
}

.form-row-error {
  font-size: 0.9rem;
  color: red;
  margin-top: 0.3rem;
  display: none;
  padding-bottom: 0.3rem;
}

.form-submit-btn {
  background-color: #14008c;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 15rem;
}
.form-submit-btn:hover {
  background-color: #003eb7;
}

@media (max-width: 1500px) {
  .hero-contact-container {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .contact-hero-left-container {
    width: 80%;
    justify-self: center;
  }
  .contact-hero-right-empty {
    display: none;
  }
  .contact-content-1-container {
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: auto auto;
  }
  .contact-form-container {
    width: 80%;
    margin-top: -15rem;
    justify-self: center;
    order: 1;
  }
  .contact-content-1-container > :first-child {
    grid-row: 2;
  }
  .contact-content-1-container > :last-child {
    grid-row: 1;
  }
  .contact-content-1-left-container {
    width: 80%;
    justify-self: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 800px) {
  .hero-contact-container {
    width: 100%;
  }
  .contact-hero-left-container {
    width: 100%;
  }
  .contact-content-1-container {
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: auto auto;
  }
  .contact-form-container {
    width: 100%;
    margin-top: -15rem;
    justify-self: center;
    order: 1;
  }
  .contact-content-1-container > :first-child {
    grid-row: 2;
  }
  .contact-content-1-container > :last-child {
    grid-row: 1;
  }
  .contact-content-1-left-container {
    width: 100%;
    justify-self: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.section-hero-termsandconditions {
  display: grid;
  grid-template-columns: 1fr;
  padding: 8rem 0rem;
}

.tnc-container {
  width: 1400px;
  justify-self: center;
}

.tnc-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  color: black;
  padding-bottom: 2.5rem;
}

.tnc-p {
  font-size: 1.1rem;
  line-height: 2rem;
  font-weight: 400;
  color: #616161;
  padding-bottom: 2rem;
}

@media screen and (max-width: 1500px) {
  .tnc-container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.section-footer {
  background-image: url("../../images/footerbg.jpg");
  background-position: center;
  background-size: cover;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-left-container {
  padding: 5rem;
}

.footer-left-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  border-left: 1rem solid #555555;
  padding-left: 1rem;
}

.footer-left-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: #afafaf;
  line-height: 1.8rem;
  padding-bottom: 2rem;
}

.footer-contact-us-btn {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: center;
  align-content: center;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(90deg, #ffde38 0%, #ffea81 100%);
  color: #000000;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.footer-contact-us-btn a {
  color: #000000;
}
.footer-contact-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}
.footer-contact-us-btn .c2c-button-icon {
  width: 1.5rem;
  height: auto;
  align-self: center;
}
.footer-contact-us-btn .c2c-button-text {
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-center-container {
  padding: 4.1rem 3rem 5rem 3rem;
}

.ftc-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #eeeeee;
  margin-bottom: 2rem;
  border-top: 1px solid #c4bbff;
  padding-top: 1rem;
}

.ftc-center-links-container {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  row-gap: 1rem;
}
.ftc-center-links-container a {
  font-size: 1rem;
  font-weight: 300;
  color: #afafaf;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
}
.ftc-center-links-container a svg {
  align-self: center;
  width: 1rem;
}
.ftc-center-links-container a span {
  margin-left: 0.5rem;
  align-self: center;
  line-height: 0rem;
}
.ftc-center-links-container a:hover {
  color: white;
  cursor: pointer;
}

.ftc-right-contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.ftc-right-contact-row svg {
  align-self: center;
  width: 1.2rem;
}
.ftc-right-contact-row .ftc-right-contact-text {
  font-size: 1rem;
  font-weight: 600;
  color: #afafaf;
  margin-left: -0.5rem;
  align-self: center;
  line-height: 0rem;
}

.footer-copyright {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: #696387;
  padding: 2rem 0rem;
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-left-container {
    padding: 3rem;
  }
  .footer-center-container {
    padding: 3rem;
  }
  .footer-right-container {
    padding: 3rem;
  }
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-left-container {
    padding: 3rem;
  }
  .footer-center-container {
    padding: 3rem;
  }
  .footer-right-container {
    padding: 3rem;
  }
}/*# sourceMappingURL=default.css.map */