/* reset basics */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  /* border: 1px solid green; */
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #0d2261;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  display: block;
}

main {
  display: block !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.image-fluid {
  width: 100%;
  height: auto;
}

.image-responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading--support {
  font-size: 0.8em;
  font-weight: 800;
  line-height: 2;
  text-transform: uppercase;
  color: #9f1826;
}

.heading--section {
  font-size: 2.441em;
  font-weight: 800;
}

/* https://typescale.com/ */
h1 {
  font-size: 3.815em;
  font-weight: 700;
}
@media (max-width: 420px) {
  h1 {
    font-size: 3.052em;
  }
}

h2 {
  font-size: 3.052em;
  font-weight: 400;
}
@media (max-width: 480px) {
  h2 {
    font-size: 2.441em;
  }
}

h3 {
  font-size: 2.441em;
  font-weight: 300;
}
@media (max-width: 480px) {
  h3 {
    font-size: 1.953em;
  }
}

h4 {
  font-size: 1.953em;
  font-weight: 400;
}

h5 {
  font-size: 1.563em;
  font-weight: 400;
}

h6 {
  font-size: 1.25em;
  font-weight: 400;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

small {
  font-size: 0.8em;
  font-weight: 400;
}

a {
  font-weight: 400;
}

input,
textarea {
  font-weight: 400;
}

@media (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #0f2570;
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.75rem;
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  cursor: pointer;
  transition: all 330ms ease-in-out;
}
@media (max-width: 480px) {
  .button {
    font-size: 0.6em;
  }
}
.button.cta-primary {
  background: #9f1826;
  border: 1px solid #9f1826;
}
.button.cta-primary:hover {
  background: transparent;
  color: #9f1826;
}
.button.cta-secondary {
  background: transparent;
  border: 1px solid #0f2570;
  color: #0f2570;
}
.button.cta-secondary svg {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.button.cta-secondary:hover {
  border: 1px solid #9f1826;
  color: #9f1826;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  font-size: 1rem;
  padding: 1.5rem 0;
  z-index: 9999;
  transition: all 330ms ease-in-out;
}
.navbar.active {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
  background-color: #ffffff;
  transition: all 330ms ease-in-out;
}
.navbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo img {
  width: 145px;
}
.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.navbar__menu li a {
  text-transform: uppercase;
  color: #0d2261;
  font-size: 0.8em;
  font-weight: 600;
  transition: all 330ms ease-in-out;
}
.navbar__menu li a:hover {
  color: #9f1826;
}
@media (max-width: 991px) {
  .navbar__menu {
    position: fixed;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    opacity: 0;
  }
  .navbar__menu li a {
    display: inline-block;
    font-size: 1.563em;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 660ms ease-in-out;
  }
  .navbar__menu.active {
    background: #ffffff;
    height: 100vh;
    opacity: 1;
    transition: all 660ms ease-in-out;
  }
  .navbar__menu.active li a {
    opacity: 1;
    transform: translateY(0);
  }
  .navbar__menu.active li:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .navbar__menu.active li:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .navbar__menu.active li:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .navbar__menu.active li:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .navbar__menu.active li:nth-child(5) a {
    transition-delay: 0.6s;
  }
}
.navbar__hamburger {
  display: none;
  z-index: 9999;
  background: transparent;
  border: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.navbar__hamburger img {
  width: 100%;
}
@media (max-width: 991px) {
  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.hero {
  position: relative;
  font-size: 1rem;
  padding: 16rem 0;
  background: url("../images/hero.webp") no-repeat center center/cover;
}
@media (max-width: 768px) {
  .hero {
    padding: 16rem 0 12rem;
  }
}
.hero {
  /* &__background {
  	position: absolute;
  	top: 0;
  	right: 0;
  	width: calc(1 / 2 * 100%);
  	height: 100%;
  	background: $bg-dark-blue;
  	z-index: -1;
  	border-top-left-radius: 2rem;
  	border-bottom-left-radius: 2rem;
  } */
}
.hero__wrapper {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero__wrapper h1 span {
  color: #9f1826;
}
.hero__wrapper h2 {
  font-size: 1em;
  line-height: 1.5;
  margin: 2rem 0 4rem;
  color: rgba(24, 42, 92, 0.6);
}
.hero__btns {
  display: flex;
  gap: 2rem;
}

.stats {
  font-size: 1rem;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .stats {
    padding: 8rem 0 12rem;
  }
}
.stats__heading {
  margin: 0 auto;
  text-align: center;
}
.stats__heading h2 {
  margin-bottom: 1rem;
}
.stats__heading p {
  color: rgba(24, 42, 92, 0.6);
  margin-bottom: 1rem;
}
.stats__heading {
  margin-bottom: 4rem;
}
.stats__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 4rem;
}
@media (max-width: 768px) {
  .stats__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.stats__card {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}
.stats__card h3 {
  font-weight: 800;
  line-height: 1.5;
}
.stats__card p {
  text-transform: uppercase;
  font-size: 0.8em;
  color: rgba(24, 42, 92, 0.6);
  font-weight: 600;
}
.stats__card:nth-child(1) {
  background: rgba(232, 245, 252, 0.5);
}
.stats__card:nth-child(1) h3 {
  color: #219ce9;
}
.stats__card:nth-child(2) {
  background: rgba(245, 231, 233, 0.5);
}
.stats__card:nth-child(2) h3 {
  color: #9f1826;
}
.stats__card:nth-child(3) {
  background: rgba(254, 247, 235, 0.8);
}
.stats__card:nth-child(3) h3 {
  color: #f8b634;
}
.stats__card:nth-child(4) {
  background: #f2f4f8;
}
.stats__card:nth-child(4) h3 {
  color: #0d2261;
}

.about {
  position: relative;
  font-size: 1rem;
  padding: 12rem 0;
  background: #0f2570;
  color: #ffffff;
  border-radius: 2rem;
  /* &::before {
  	content: '';
  	position: absolute;
  	inset: 0;
  	background: url('/images/background.webp') no-repeat center center / cover;
  	opacity: 0.15;
  	z-index: 1;
  } */
}
@media (max-width: 768px) {
  .about {
    padding: 8rem 0;
  }
}
.about__heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about__heading h2 {
  margin-bottom: 1rem;
}
.about__heading p {
  font-size: 1em;
  margin-bottom: 1rem;
}
.about__heading {
  margin-bottom: 4rem;
}
.about__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
@media (max-width: 768px) {
  .about__wrapper {
    grid-template-columns: 1fr;
  }
}
.about__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.about__card__header h3 {
  font-size: 1.25em;
  font-weight: 700;
}

.services {
  font-size: 1rem;
  padding: 8rem 0 0;
}
.services__heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 4rem;
}
.services__heading h2 {
  color: #0d2261;
  line-height: 1.2;
  font-weight: 700;
}
.services__heading p {
  color: rgba(24, 42, 92, 0.6);
  text-align: right;
}
@media (max-width: 991px) {
  .services__heading {
    display: block;
  }
  .services__heading p {
    text-align: left;
    margin: 1rem 0;
  }
}
.services__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
@media (max-width: 768px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
}
.services__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.1);
}
.services__card h3 {
  font-size: 1.953em;
  font-weight: 700;
}
.services__card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services__card ul li {
  font-size: 0.875em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: rgba(24, 42, 92, 0.6);
}
.services__card ul li svg {
  width: 1.25rem;
  height: 1.25rem;
}
.services__card a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-weight: 700;
}
.services__card a svg {
  width: 1rem;
  height: 1rem;
}
.services__card:nth-child(1) ul li svg {
  color: #219ce9;
}
.services__card:nth-child(1) a {
  color: #219ce9;
}
.services__card:nth-child(2) ul li svg {
  color: #9f1826;
}
.services__card:nth-child(2) a {
  color: #9f1826;
}
.services__card:nth-child(3) ul li svg {
  color: #f8b634;
}
.services__card:nth-child(3) a {
  color: #f8b634;
}

.portfolio {
  position: relative;
  font-size: 1rem;
  padding: 12rem 0;
  background: #0f2570;
  color: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .portfolio {
    padding: 8rem 0;
  }
}
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/background.webp") no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}
.portfolio__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  color: #ffffff;
}
.portfolio__heading p {
  margin-top: 1rem;
  color: #cdd0d8;
}
.portfolio__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
@media (max-width: 768px) {
  .portfolio__wrapper {
    grid-template-columns: 1fr;
  }
}
.portfolio__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 2rem;
  color: #ffffff;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
}
.portfolio__card:nth-child(2) {
  background: #9f1826;
}
.portfolio__card:nth-child(2) ul li svg {
  color: #ffffff;
}
.portfolio__card:nth-child(2) a {
  background: #ffffff;
  color: #9f1826;
}
.portfolio__card h3 {
  font-size: 1.563em;
  font-weight: 600;
}
.portfolio__card p {
  font-size: 0.8em;
  font-weight: 600;
  color: #cdd0d8;
}
.portfolio__card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.portfolio__card ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.portfolio__card ul li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #219ce9;
}
.portfolio__card a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  color: #ffffff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 1rem;
}

.process {
  font-size: 1rem;
  padding: 8rem 0 0;
}
@media (max-width: 768px) {
  .process {
    padding: 4rem 0 0;
  }
}
.process__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.process__heading p {
  color: rgba(24, 42, 92, 0.6);
}
.process__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
@media (max-width: 768px) {
  .process__wrapper {
    grid-template-columns: 1fr;
  }
}
.process__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.process__card span {
  display: inline-block;
  font-size: 1.563em;
  line-height: 1.2;
  font-weight: 900;
  background: #9f1826;
  color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0px 5px 5px -2px rgba(159, 24, 38, 0.1), 0px 5px 5px -2px rgba(159, 24, 38, 0.1);
}
.process__card h3 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  color: #0d2261;
}
.process__card p {
  font-size: 0.875em;
  color: rgba(24, 42, 92, 0.6);
  font-weight: 400;
  text-align: center;
}

.faqs {
  font-size: 1rem;
  padding: 8rem 0 4rem;
}
.faqs__heading {
  text-align: center;
  margin-bottom: 4rem;
}
.faqs__wrapper {
  margin: 0 auto;
  max-width: 850px;
}
.faqs__accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faqs__accordion__item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 400mss ease;
}
.faqs__accordion__item.is-open {
  box-shadow: 0px 8px 20px rgba(37, 99, 235, 0.1);
  transition: all 400mss ease;
}
.faqs__accordion__item.is-open .faqs__accordion__trigger {
  color: #0f2570;
}
.faqs__accordion__item.is-open .faqs__accordion__icon {
  background: #9f1826;
  color: #ffffff;
}
.faqs__accordion__item.is-open .faqs__accordion__icon svg {
  transform: rotate(45deg);
}
.faqs__accordion__trigger {
  font-family: inherit;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1em;
  color: #0f2570;
}
.faqs__accordion__trigger span:first-child {
  flex: 1;
}
.faqs__accordion__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 245, 252, 0.5);
  color: #0f2570;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.faqs__accordion__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.3s ease;
}
.faqs__accordion__content {
  padding: 0 1.75rem 1.5rem 1.75rem;
}
.faqs__accordion__content p {
  color: rgba(24, 42, 92, 0.6);
  line-height: 1.5;
  max-width: 95%;
}
.faqs__accordion__content.hidden {
  display: none;
}

.contact {
  font-size: 1rem;
  padding: 12rem 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
}
.contact__heading h2 {
  margin-bottom: 1rem;
}
.contact__heading p {
  font-size: 0.875em;
  color: #cdd0d8;
}
.contact__heading {
  margin-bottom: 4rem;
}
.contact__wrapper {
  display: flex;
  border-radius: 2rem;
  box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .contact__wrapper {
    flex-direction: column;
  }
}
.contact__content {
  flex: 0 0 40%;
  background: #0f2570;
  color: #ffffff;
  padding: 4rem;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (max-width: 991px) {
  .contact__content {
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 768px) {
  .contact__content {
    padding: 4rem 2rem;
  }
}
.contact__form {
  flex: 0 0 60%;
  padding: 4rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
@media (max-width: 991px) {
  .contact__form {
    border-top-right-radius: 0;
    border-bottom-left-radius: 2rem;
  }
}
@media (max-width: 768px) {
  .contact__form {
    padding: 4rem 2rem;
  }
}
.contact__form small {
  display: block;
  padding: 2rem 0;
  font-size: 0.7em;
  font-weight: 600;
  color: rgba(24, 42, 92, 0.6);
}
.contact__form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact__form__grid {
    grid-template-columns: 1fr;
  }
}
.contact__form__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact__form__field label {
  font-size: 0.8em;
  font-weight: 600;
}
.contact__form__field input,
.contact__form__field textarea {
  font-size: 0.875em;
  font-family: "Montserrat", sans-serif;
  color: #0d2261;
  width: 100%;
  background: rgba(232, 245, 252, 0.25);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(139, 139, 139, 0.2);
}
.contact__form__field input:focus,
.contact__form__field textarea:focus {
  outline: 1px solid #9f1826;
}
.contact__form__field textarea {
  min-height: 200px;
  resize: none;
}
.contact__form__textarea {
  margin: 2rem 0;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__card {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact__card span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 244, 248, 0.1);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.5rem;
}
.contact__card span svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact__card:nth-child(1) span svg {
  color: #219ce9;
}
.contact__card:nth-child(2) span svg {
  color: #9f1826;
}
.contact__card:nth-child(3) span svg {
  color: #f8b634;
}
.contact__card:nth-child(4) span svg {
  color: #cdd0d8;
}
.contact__card h3 {
  font-size: 1em;
  font-weight: 700;
  color: #cdd0d8;
}
.contact__card p {
  color: #ffffff;
  font-size: 0.875em;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-size: 0.875em;
  color: #0f2570;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 0.875em;
  color: #0f2570;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  font-size: 0.875em;
  color: #0f2570;
  opacity: 1;
}

/* .contact {
	font-size: 1rem;
	padding: 8rem 0;

	@include breakpointDesktop(768px) {
		padding: 4rem 0;
	}

	&__heading {
		text-align: center;
		margin-bottom: 4rem;
	}

	&__wrapper {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: auto;
		gap: 2rem;

		@include breakpointDesktop(768px) {
			grid-template-columns: 2fr;
		}
	}

	&__card {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 2rem;
		background: $white;
		border-radius: 1rem;
		box-shadow: 0px 10px 15px -2px rgba(0, 0, 0, 0.1);

		span {
			display: inline-block;
			background: rgba(242, 244, 248, 0.4);
			color: $white;
			padding: 1rem 1.25rem;
			border-radius: 0.5rem;

			svg {
				width: 2rem;
				height: 2rem;
			}
		}

		&:nth-child(1) {
			span svg {
				color: $cyan;
			}
		}

		&:nth-child(2) {
			span svg {
				color: $red;
			}
		}

		&:nth-child(3) {
			span svg {
				color: $yellow;
			}
		}

		&:nth-child(4) {
			span svg {
				color: $blue;
			}
		}

		h3 {
			font-size: 1.25em;
			font-weight: 700;
			margin: 1rem 0;
		}
		p {
			color: $text-blue;
			font-size: 0.875em;
		}
	}
}
 */
.footer {
  font-size: 1rem;
  background: #0f2570;
  color: #ffffff;
  padding: 4rem 0 2rem;
}
.footer h3 {
  font-size: 1.25em;
  font-weight: 700;
}
.footer p {
  font-size: 0.875em;
  color: #cdd0d8;
}
.footer__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__wrapper {
    display: block;
  }
}
.footer__content {
  flex: 0 0 40%;
}
.footer__content p {
  margin: 1.5rem 0;
  line-height: 2;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(139, 139, 139, 0.2);
  border-radius: 0.5rem;
  transition: all 300ms ease;
}
.footer__social a svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}
.footer__social a:hover {
  background: #9f1826;
}
.footer__links {
  flex: 0 0 30%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__links {
    margin-top: 4rem;
    display: block;
  }
}
.footer__links div {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__links div ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__links div a {
  font-size: 0.8em;
  color: #cdd0d8;
  transition: all 300ms ease;
}
.footer__links div a:hover {
  color: #9f1826;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 139, 139, 0.2);
}
@media (max-width: 768px) {
  .footer__bottom {
    display: block;
  }
}
.footer__bottom p {
  font-size: 0.875em;
}
@media (max-width: 768px) {
  .footer__bottom p {
    margin-bottom: 1rem;
    font-size: 0.75em;
  }
}
.footer__bottom a {
  font-size: 0.875em;
  color: #cdd0d8;
  transition: all 300ms ease;
}
.footer__bottom a:hover {
  color: #9f1826;
}
@media (max-width: 768px) {
  .footer__bottom a {
    font-size: 0.75em;
  }
}